/*******************************************************************************
*                                                                              *
*                      FORMATAGE DE LA FENETRE PRINCIPALE                      *
*                                                                              *
*******************************************************************************/

/* DIV de centrage relatif en la fenetre principale ***************************/
/* ATTENTION Le centrage est relatif mais l'héritage est absolut! *************/

.window_div_center
{
	position: absolute; 
	display: block; 
	z-index: 1; 
	padding-top: 0px; 
	padding-bottom: 0px; 
	padding-left: 0px; 
	padding-right: 0px; 
	left: 50%; 
}

/* DIV de positionnement élargi relatif au DIV de centrage ********************/
/* ATTENTION Le centrage est relatif mais l'héritage est absolut! *************/

.window_div_elargi
{
	position: absolute; 
	display: block; 
	z-index: 2; 
	padding-top: 0px; 
	padding-bottom: 0px; 
	padding-left: 0px; 
	padding-right: 0px; 
	left: -640px; 
	width: 1280px; 
}

/*******************************************************************************
*                                                                              *
*                 FORMATAGE DES FENETRES PRINCIPALES DES POPUP                 *
*                                                                              *
*******************************************************************************/


/* DIV de formatage du POPUP de la selection d'une photo **********************/

.popup_div_main_photo
{
	position: relative; 
	display: block; 
	width: 50%; 
	height: 80%; 
	padding-top: 0px; 
	padding-bottom: 0px; 
	padding-left: 0px; 
	padding-right: 0px;
	left: 50%; 
	top: 20%;
}

/*******************************************************************************
*                                                                              *
*                    FORMATAGE DES TITRES DES FENETRES POPUP                   *
*                                                                              *
*******************************************************************************/

/* Formatage de table d'entete de la POPUP de la WEBCAM ***********************/

.popup_div_entete_photo
{
	/*width: 60%;
	height: 60%;*/
	background-color: #ee0000;
	x2background-color: #0066cc;
	x1background-color: #999999;
	text-align: center; 
	margin-left: auto; 
	margin-right: auto;
	border: 1px solid #000000;
}

/* Formatage du titre de la POPUP de la selection d'une photo *****************/

.popup_div_titre_photo
{
	color: #000000; 
	font: arial; 
	font-size: 12px; 
	font-style: normal;
    font-weight: bold;
}
