/* --Masque opaque noir de fond--
#fade { 
	display: none; 
	background: #000;
	position: fixed; left: 0; top: 0;
	width: 100%; height: 100%;
	opacity: .80;
	z-index: 9999;
}
*/
.popup_block{
	display: none; /*--masqué par défaut--*/
	background: #fff;
	padding: 10px;
	border: 30px solid #ddd;
	float: left;
	font-size: 12px;;
	position: fixed;
	top: 50%; left: 50%;
	z-index: 99999;
	/*--Les différentes définitions de Box Shadow en CSS3--*/
	-webkit-box-shadow: 0px 0px 20px #000;
	/* -moz-box-shadow: 0px 0px 20px #000; */
	box-shadow: 0px 0px 20px #000;
	/*--Coins arrondis en CSS3--*/
	-webkit-border-radius: 10px;
	/* -moz-border-radius: 10px; */
	border-radius: 10px;
}
img.btn_close {
	float: right;
	margin: -38px -38px 0 0;
}
/*--Gérer la position fixed pour IE6--
html #fade {
position: absolute;
}
html .popup_block {
position: absolute;
}
 */
