/* CSS Document */
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: #000000;
	font-family: Georgia, Times New Roman, Times, serif;
	background-color: #F9E2D2;
	font-size: 100%;
}
/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/

.twoColHybLtHdr #container {
	width:1080px;  /* this will create a container 80% of the browser width */
	background-image: url(../images_site/bg_doc.gif);
	background-repeat: no-repeat; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	z-index: 1;
	background-color: #FFFFFF;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-position: 75px 150px;
} 
.twoColHybLtHdr #header {
	background-image: url(../images_site/bg_top4.jpg);
	background-repeat: no-repeat;
	background-color:#FFFFFF;
	z-index: 2;
	background-position: 0px 0px;
	height: 174px;
	padding: 0;
	width: auto;
	margin: 0px;
} 

.twoColHybLtHdr #header h1 {
	margin: 0;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 10px;
	display: none;
}

/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybLtHdr #sidebar1 p" rule.
*/

.twoColHybLtHdr #jumpmenu {
	float: left;
	width: 150px; /* the background color will be displayed for the length of the content in the column, but no further */
	/* top and bottom padding create visual space within this div  */
	
	background-position:  top;
	padding-left:20px;
	padding-bottom: 0px;
	padding-top:20px;
	padding-right: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 60px;
	margin-left: 0px;
}
/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybLtHdr #sidebar1 p" rule.
*/
.twoColHybLtHdr #sidebar1 {
	float: left;
	width: 220px;
	height: 950px;
	color: #000000;
	z-index: 3;
	background-image: url(../images_site/bg_menu2.gif);
	background-position: top;
	background-repeat: no-repeat;
	margin: 0;
	background-attachment: scroll;

}

.twoColHybLtHdr #sidebar1 h3 {
	color: #7d775c;
	font-size: 1.2em;
	font-family: Georgia, Times New Roman, Times, serif;
	font-style: italic;
	line-height: normal;
	margin-top: 20px;
	margin-bottom: 0px;
	margin-right: 5px;
	margin-left:40px;
}
.twoColHybLtHdr #sidebar1 p {
	color: #7d775c;
	font-size: 1em;
	font-family: Georgia, Times New Roman, Times, serif;
	font-style: italic;
	line-height: normal;
	margin-top: 20px;
	margin-bottom: 10px;
	margin-right: 5px;
	margin-left:40px;
}


.twoColHybLtHdr #sidebar1 h4 {
	margin-left: 1px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 0px;
	margin-right: 0px;
}



.twoColHybLtHdr #sidebar1 ul {
	list-style-image: url(../images_site/bulln.gif);
	font-family: Times New Roman, Times, serif;
	line-height: 0.9em;
	color: #000000;
	font-size: 0.9em;
}
.twoColHybLtHdr #sidebar1  li {
	text-decoration: none;
	list-style-type: none;
	list-style-position: inside;
	font-family: Times New Roman, Times, serif;
	
	color: #000000;
}


.twoColHybLtHdr #sidebar1  a:link {
	text-decoration: none;
	color: #660000;
	font-family: Times New Roman, Times, serif;
	font-size: 1em;
}

.twoColHybLtHdr #sidebar1  a:hover {
	color: #000000;
	font-family: Times New Roman, Times, serif;
	text-decoration: none;
	font-size: 1em;
 }
 
.twoColHybLtHdr #sidebar1  a:visited {
	text-decoration: none;
	color: #000000;
	font-family: Times New Roman, Times, serif;
	font-size: 1em;
 }
 
 


/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
 
 .twoColHybLtHdr #content {
	background-image: url(../images_site/bg_doc.gif);
	
	height: auto;
	text-align: left;
	background-repeat: no-repeat;
}


.twoColHybLtHdr #mainContent {
	padding-top: 0px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the p
	age. */
	font-family:  Georgia, Times New Roman, Times, serif;
	font-size: 1em;
	z-index: 4;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	padding-bottom: 0px;
	margin-left: auto;
	text-align: left;
	width: auto;
	padding-left: 220px;
} 
.twoColHybLtHdr #mainContent P {
	font-size: 1em;
	font-family: Georgia, Times New Roman, Times, serif;
	font-style: normal;
	text-align: justify;
	padding-right: 10px;
	
 }

  
.twoColHybLtHdr #mainContent BLOCKQUOTE {
	font-size: 1em;
	font-family: Georgia, Times New Roman, Times, serif;
	font-style:italic;
	text-align: justify;

 }
 
.twoColHybLtHdr #mainContent h1 {
	letter-spacing: 1px;
	padding: 1em;
	color: #7d775c;
	font-size: 1.4em;
	font-family: Georgia, Times New Roman, Times, serif;
	font-weight: normal;
	font-style: normal;
	line-height: normal;
	margin: 0px;
	background-attachment: fixed;
}

 .twoColHybLtHdr #mainContent h2 {
	color: #7d775c;
	font-size: 1.4em;
	font-family: Georgia, Times New Roman, Times, serif;
	letter-spacing: 1px;
	padding-top: 1em;
	padding-right: 1em;
	padding-bottom: 1em;
	padding-left: 2em;
	font-style: oblique;
	margin: 0px;
 }
 
.twoColHybLtHdr #mainContent h3 {
	color: #7d775c;
	font-size: 1.1em;
	font-family: Georgia, Times New Roman, Times, serif;
	font-weight: bolder;
	font-style: italic;
	line-height: normal;
	text-indent: 16px;

}


.twoColHybLtHdr #mainContent h4 {
	color: #7d775c;
	font-size: 1em;
	font-family: Georgia, Times New Roman, Times, serif;
	font-weight: normal;
	font-style: italic;
	line-height: normal;
	text-indent: 16px;
	text-align: center;
}

	
.twoColHybLtHdr #mainContent h5 {
	font-size: 0.9em;
	font-family: Georgia, Times New Roman, Times, serif;
	font-weight: normal;
	font-style: italic;
	margin-top: 1.67em;
	margin-right: 0;
	margin-bottom: 1.67em;
	margin-left: 0;
	padding-right: 10px;
}

.twoColHybLtHdr #mainContent a {
	color: #CC0F11;
	font: 1em Georgia, "Times New Roman", Times, serif;
	text-decoration: none;
}


 
.twoColHybLtHdr #mainContent a:hover {
	color: #199116;
	font-size: 1em;
	font-family: Georgia, Times New Roman, Times, serif;
	text-decoration: none;
 }
.twoColHybLtHdr #mainContent a:visited {
	color: #008000;
	font-size: 1em;
	font-family: Times, serif;
	text-decoration: none;
}


.twoColHybLtHdr #birds {
	position: absolute;
	width: 400px;
	z-index: 6;
	right: 22px;
	background-image: url(../images_site/bg_oiseaux.gif);
	height: 175px;
	top: 0px;
}
.twoColHybLtHdr #footer {
	text-align: center;
	z-index: 5;
	width: 1200px;
	clear: both;
} 

.twoColHybLtHdr #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 */
	text-align: center;
	font-size: 0.9em;
	font-family: Times, serif;
}
.twoColHybLtHdr #footer  a:link {
	color: #41413c;
	font-size: 0.9em;
	font-family: Times, serif;
	text-decoration: none;
 }

/* Miscellaneous classes for reuse */
.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;
}
.twoColHybLtHdr #container #mainContent img {
	padding: 10px;
	margin: 0px;
}

