/*
    Document   : style
    Created on : 26 ao�t 2013, 17:52:13
    Author     : olivier
    Description:
        Purpose of the stylesheet follows.
*/


#fade1 { /*--Masque opaque noir de fond--*/
	display: none; /*--masqu� par d�faut--*/
	background: #000;
	position: fixed; left: 0; top: 0;
	width: 100%; height: 100%;
	opacity: .80;
	z-index: 99;
}
.popup_block1{
	display: none; /*--masqu� par d�faut--*/
	padding: 10px;
	border: 3px solid #ddd;
	float: left;
	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;
        background: #fff;
}
img.btn_close1 {
	float: right;
	margin: -24px -24px 0 0;
}
/*--G�rer la position fixed pour IE6--*/
*html #fade1{
position: absolute;
}
*html .popup_block1 {
position: absolute;
}
