@charset "utf-8";
body {
	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: #fff;
	background-image: url(images/fond.png);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-color: #1C374A;
	background-position: center bottom;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	height: 100%;
	width: 100%;
}
object, img, a, input[type="submit"] {
	outline:none;
}
a:link {
	text-decoration: none;
	color: #F9CE00;
	font-size: 90%;
	font-weight: bold;
	text-align:center
}
a:visited {
	text-decoration: none;
	color: #999;
}
a:focus {
	text-decoration: none;
	color: #CCC;
}
a:hover {
	text-decoration: underline;
}
#container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 1000px;
	text-align: left;
	margin-right: auto;
	margin-left: auto;
	background-image: url(images/fond_container.png);
	background-repeat: repeat-x;
	background-position: right top;
	background-attachment: fixed;
}
#header {
	height: 120px;
	margin-left:220px;
	padding-left:60px;
	padding-top: 25px;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #999;
}
#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 */
	color:#47879C;
	font-weight:500;
}
#mainContent {
padding:15px;
text-align:justify;
}
#mainContent p {
	text-align: justify;
	padding-right: 30px;
	padding-left: 30px;
}
.encart {
	float:right;
	text-align: justify;
	-moz-border-radius:5px;
	background-image: url(images/fond_sidebar2.png);
	background-repeat: repeat;
	border: thin solid #F9CE00;
	padding:2px;
	min-height:280px;
	margin: 5px;
}
.encart h4 {
	color: #F9CE00;
	text-align:center;
}
.encart p {
	font-size:75%;
}

#footer {
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	text-align: center;
	clear: both;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #999;
	background-image: url(images/fond_sidebar2.png);
	background-repeat: repeat;
}
#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 */
	font-size: small;
}
.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;
}
