/*********************************************************/
/* 		BOITE DE DIALOGUE		*/

#boite {
    position: relative;
    width:450px;
    left: 35%;
	font:14px ;
    text-align:center;
    /*background-color:#69ABDD;*/
    background-color:#333;
    padding:20px;
    border:1px #ccc solid;
    border-radius:3px;
    color:#fff;
    text-shadow: 1px 1px 0px #333;
    box-shadow:2px 2px 2px #333;
    /*text-shadow: 2px 2px 0px #333;*/
}

 html>body #boite {
    position:fixed;
}

#boite_info {
    position: relative;
    width:450px;
    top: 1%;
    left: 45%;
	font:14px ;
    text-align:center;
    /*background-color:#69ABDD;*/
    background-color:#333;
    padding:20px;
    border:1px #ccc solid;
    border-radius:3px;
    color:#fff;
    text-shadow: 1px 1px 0px #333;
    box-shadow:2px 2px 2px #333;
    /*text-shadow: 2px 2px 0px #333;*/
	z-index: 10000;
}

html>body #boite_info {
    position:fixed;
}


#boite_succes{
	position: relative;
    width:450px;
	top: 8%;
	left: 40%;
	font:14px ;
	text-align:center;
	background-color:#5cb85c;
	padding:20px;
	border:1px #ccc solid;
	border-radius:5px;
	color:#fff;
	text-shadow: 1px 1px 0px #333;
	box-shadow:2px 2px 2px #333;
	z-index: 10000;
}
html>body #boite_succes{
	position:fixed;
}

#boite_echecs{
	position: relative;
    width:450px;
	top: 8%;
	left: 40%;
	font:14px ;
	text-align:center;
	background-color:#d9534f;
	padding:20px;
	border:1px #ccc solid;
	border-radius:5px;
	color:#fff;
	text-shadow: 1px 1px 0px #333;
	box-shadow:2px 2px 2px #333;
	z-index: 10000;
}
html>body #boite_echecs{
	position:fixed;
}

#boite_infos{
	position: relative;
    width:450px;
	top: 8%;
	left: 40%;
	font:14px ;
	text-align:center;
	background-color:#31b0d5;
	padding:20px;
	border:1px #ccc solid;
	border-radius:5px;
	color:#fff;
	text-shadow: 1px 1px 0px #333;
	box-shadow:2px 2px 2px #333;
	z-index: 10000;
}
html>body #boite_infos{
	position:fixed;
}

