/* 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:#CCCCCC;
	opacity: .45;
}

#error_box {
	position:fixed;
	z-index:300;
	background-color:#FFFFFF;
	border:solid black 1px;
	overflow:visible;
	width:350px;
	height:100px;
	opacity: 1;
}
#error_header {
	position:fixed;
	padding:3px 0 3px 0;
	font-weight:bold;
	color:#000000;
	background-color:#FF7900;
	border-bottom:solid black 1px;
	width:inherit;
}
#error_main {
	position:fixed;
	padding:30px 10px 10px 0;
	width:inherit;
}

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