@charset "utf-8";
/* Couleur du site
Bleu pale : 4CA1CA
Bleu fonce : 0B3B87
Orange : E88337
Gris : C0C0C0 */
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-size: x-small;
	background-image: url(bg_body.jpg);
	scrollbar-face-color: #0B3B87;
	scrollbar-track-color: #4CA1CA;
	SCROLLBAR-ARROW-COLOR: #E88337	
}
.thrColFixHdr #container {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(bg-container-980px.jpg);
} 
/* DETERMINE LES PROPRIETES DU HEADER (EN HAUT) */
.thrColFixHdr #header {
	background: #0a3a86;
	height: 150px;		
} 
.thrColFixHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	margin-left: 200px;
}
/* DETERMINE LES PROPRIETES DE LA COLONNE DE GAUCHE */
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 5px 5px 5px; /* padding keeps the content of the div away from the edges */
	font-size: x-small;
	background-image: url(bg-sidebar1.jpg);
	color: #FFFFFF;
	height: auto;
	}
.thrColFixHdr #sidebar1 a{
	text-decoration:none;  /* on enlève le soulignement */
	color:#ffffff;
	
}
.thrColFixHdr #sidebar1 a:hover{
	color:#E88337;
	text-decoration:none;
		}			
/* DETERMINE LES PROPRIETES DE LA COLONNE DE DROITE */
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 15px 10px 15px 15px; /* padding keeps the content of the div away from the edges */
	/* background-image: url(bg-sidebar2.jpg); REMPLACER PAR LE BACKGROUND DU CONTAINER */
	text-decoration: underline;
/*	margin-left: 640px;*/
	}
/* DETERMINE LES PROPRIETES DU CORPS DE INDEX.HTM */
.thrColFixHdr #mainContent {
	margin: 0 192px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	background-color: #C0C0C0;
	} 
/* DETERMINE LES PROPRIETES DU CORPS DES PAGES SAUF INDEX.HTM */
.thrColFixHdr #mainContent2colonnes {
	margin: o; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #CCCCCC;
	width: auto;
	float: right;
} 
.thrColFixHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-image: url(bg_footer.jpg);
	text-align: center;
	color: #FFFFFF;
} 
.thrColFixHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.thrColFixHdr #menu-gauche {
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
	}
.thrColFixHdr #banniere-compt{ /* Controle la localisation de la banniere comptable */
	margin: 0 192px;	
}

/* DETERMINE LES PROPRIETES DU MENU DE GAUCHE */
.sous_menu{
	margin: 0; /* on retire les marges intérieures et extérieures */
	padding:0;
	border : solid 1px #a3c0d5;  /* on applique des bordures à la balise ul */
	border-bottom: none; /* et on retire celle du bas */
	background-image: url(bg-menu-sidebar1.jpg);	
	}
.sous_menu li{
	list-style-type:none; /* on enlève la puce */
	margin: 0; /* on retire les marges intérieures et extérieures */
	padding: 0;
	border-bottom: 1px solid #a3c0d5;  /* ici on affiche  une bordure uniquement en bas */
	height: 30px;
	
}
.sous_menu a{
	text-decoration:none;  /* on enlève le soulignement */
	color:#000000;
	display:block;   /* C'est ici qu'il faut bien comprendre (j'explique plus bas) */
	padding-left:1.5em;  /* une marge intérieure gauche juste pour l'esthétique */
	font-size: x-small;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	height: 30px;
	
}
.sous_menu a:hover{
	background-color:#e9eefb;
	color:#E88337;
	height: 30px;
	background-image: url(menu-gauche-over.jpg);
}

/* DETERMINE LES PROPRIETES DES TITRES */
.thrColFixHdr h1{
	color:#0b3b87;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
		}
.thrColFixHdr h2{
	color:#0b3b87;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
		}
.thrColFixHdr h3{
	color:#e88337;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: x-small;
	}	
--> 
<!--[if IE 5]>

/* place css box model fixes for IE 5* in this conditional comment */
.thrColFixHdr #sidebar1 { width: 180px; }
.thrColFixHdr #sidebar2 { width: 190px; }
</style>
<![endif]--><!--[if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
.thrColFixHdr #sidebar2, .thrColFixHdr #sidebar1 { padding-top: 30px; }
.thrColFixHdr #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */


