/* CSS Document */
/* Règle la mise en page générale (1 en-tête / 3 colonnes / 1 pied de page "pas actif" )*/
* {margin:0;padding:0}
p {margin-bottom:1em}
ul{margin-left:20px;margin-bottom:1em}
/* commented backslash hack v2 \*/ 
html, body{height:100%;} 
/* end hack */ 

body {
	background:rgb(0,105,153);
	border-left:0px solid #fff;
	border-right:0px solid #fff;
}
/* avec ligne blanche au milieu */
#outer{
	margin-left:155px;
	margin-right:105px;
	background: rgb(229,238,247) url(../Logos/1x10_w.gif) repeat-y center;
	border-left:10px solid #fff;
	border-right:10px solid #fff;
	margin-bottom:-5px;
	min-height:100%
}

/* Sans ligne blanche au milieu */
#outer1{
	margin-left:155px;
	margin-right:105px;
	background: rgb(229,238,247);
	border-left:10px solid #fff;
	border-right:10px solid #fff;
	margin-bottom:-5px;
	min-height:100%
}

#header{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:150px;
	background: #fff;
	border-top:5px solid #fff;
	border-bottom:0px solid #000;
	overflow:hidden;
}
#left {
	position:relative;/*ie needs this to show float */
	width:160px;
	float:left;
	margin-left:-164px;/*must be 1px less than width otherwise won't push footer down */
	z-index:100;
	left:-1px;
}
#left p, 
#right p {padding:3px}
#right {
	position:relative;/*ie needs this to show float */
	width:105px;
	float:right;
	margin-right:-114px;/*must be 1px less than width otherwise won't push footer down */
	left:1px;
	color: #000;
}
#footer {
	width:100%;
	clear:both;
	height:5px;
	border-top:0px solid #000;
	border-bottom:0px solid #000;
	background-color: #fff;
	text-align:center;
	position:relative;
}
#clearheader{height:155px;}/*needed to make room for header*/
#clearfooter{clear:both;height:7px;}/*needed to make room for footer*/
* > html #clearfooter {float:left;width:100%;}/* ie mac styles */
#centrecontent {
	width:100%;
	float:left;
	position:relative;
	z-index:1;
	margin:0 0px;/* moz fix*/
	color: #000;
}

html>body #minHeight{float:right;width:0px;height:100%;margin-bottom:-52px;} /*safari wrapper */


