@charset "UTF-8";
body {
	font: 11px Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	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;
}
.oneColFixCtr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
h1 {
font-size: 20px;
}
p {
font-size: 11px;
}
#logo {
	margin: 50px 0px 0px 1px;
	padding: 0;
	width: 315px;
	border: none;
	text-align: left;
	float: left;
}
#titre {
	margin: 75px 0px 0px 60px;
	padding: 0;
	width: 300px;
	border: none;
	text-align: left;
	float: left;
}
#centre {
	margin: 20px auto 0px auto;
	padding: 0;
	width: 600px;
	border: none;
	text-align: center;
}
#pieddepage {
	margin:  0px auto 0px auto;
	padding: 0px 0px 0px 0px;
	width: 100%;
	border: none;
	background-color: #e2e2e2;
	height: 30px;
}
#pieddepage p {
	line-height: 25px;
	font-size: 9px;
	text-align: center;
	margin-top: 0px;
}
.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;
}