/* CSS Document */

/*********************************************************************************
 * Gestion des erreurs dans les DIV                                              *
 *                                                                               *
 * Voici le code à insérer en bas de page (dans les vues):                       *
 *                                                                               *
 *		<!--// Affichage des erreurs de saisies ou du chargement //-->           *
 *		<div id="error_background" style="display:none" align="center"></div>    *
 *		<div id="error_box" style="display:none" align="center">                 *
 *			<div id="error_header" align="center"></div>                         *
 *			<div id="error_main" align="left"></div>                             *
 *		</div>                                                                   *
 *		<!--// Fin //-->                                                         *
 *                                                                               *
 *********************************************************************************/
#error_background {
	position:fixed;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	background-color:#CDCDCD;
	opacity: .45;
}

#error_box {
	position:fixed;
	z-index:300;
	background-color:#333333;
	border:solid #000000 2px;
	overflow:visible;
	width:350px;
	height:100px;
	opacity: 1;
	vertical-align:middle;
}
#error_header {
	position:fixed;
	padding:3px 0 3px 0;
	font-weight:bold;
	color:#000000;
	background-color:#73150D;
	border-bottom:solid #000000 1px;
	width:inherit;
}
#error_main {
	position:fixed;
	padding:10px 10px 10px 0;
	width:250px;
	vertical-align:middle;
}

/*********************************************************************************
 * Gestion des erreurs sur les boutons                                           *
 *********************************************************************************/
.bouton_on_err {
	font-family: Arial, Helvetica, sans-serif;
	color: #F1E7E8;
	background:#73150D;
	font-size: 12px;
	border:1px solid #F1E7E8;
	padding:3px 7px 2px 7px;
	font-weight: bold;
	text-align:center;
}
.bouton_off_err {
	font-family: Arial, Helvetica, sans-serif;
	color: #73150D;
	background:#F1E7E8;
	font-size: 12px;
	border:1px solid #73150D;
	padding:3px 7px 2px 7px;
	font-weight: bold;
	text-align:center;
}
