@charset "utf-8";
html {
     overflow: -moz-scrollbars-vertical;
     overflow: scroll;
}

body  {
	font: 13px Verdana, Arial, Helvetica, sans-serif;
	background-image:url(images/fond.gif);
	
	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;
}
.twoColFixLtHdr #container { 
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-color:#000000;
	border-style:solid;
	border-width: 0px 1px 1px 1px;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	background: #DDDDDD; 
	padding: 0;
	height:90px;
	width:950px;
} 

.twoColFixLtHdr #sidebar1 {
	float: left; /* 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 */
	background:#FFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 5px 5px 20px;
}
.twoColFixLtHdr #sidebar1 ul {
	/*list-style-type:none;*/
	list-style-image: url("images/puce.png");
	padding: 0 0 0 10px;
	line-height: 100%;
}
.twoColFixLtHdr #sidebar1 a {
	color:#000;
	text-decoration:none;
}

.twoColFixLtHdr #sidebar1 a:hover {
	text-decoration:underline;
	color:#0066CC;
}
.twoColFixLtHdr #sidebar1 #meteo {
	width: 150px;
	height: 50px;
}
.twoColFixLtHdr #sidebar1 img{
	margin:10px auto;
    display:block;
	border-width:0;
}

.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 185px; 
	padding: 10px;
	font-size: 15px;
}

.twoColFixLtHdr #mainContent a { 
	text-decoration:none;
	

}
.twoColFixLtHdr #footer { 
	padding: 0 20px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	text-align: right;
} 
.twoColFixLtHdr #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 */
}

.twoColFixLtHdr div.news {
	border: 1px dashed black;
	padding: 5px 15px 15px 15px;
	width: 690px;
	margin: 10px;
	float:left;
	text-align: justify;
	background-color: #EEEEEE;
}

.twoColFixLtHdr div.news img.photo {
	padding: 15px;
	vertical-align:middle;
}

/* Titres */
.twoColFixLtHdr h1 {
	color:red;
	margin:0px 0px 10px 0px;
	font-size:18px;
	text-align:center;
}
.twoColFixLtHdr h2 {
	color:#0066CC;
}
.twoColFixLtHdr parc {
	color:green;
	font-weight:bold;
}


.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;
}

