@charset "utf-8";
/* CSS Document */

body  {
	font-family: Helvetica, Arial, sans-serif; 
	font-size:12px;
	background: #7A1D1C;
	margin: 0; 
	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: #1c2514;
}

#container { 
	width: 940px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FAFFDF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #524745;
	text-align: left; /* this overrides the text-align: center on the body element. optional color =#f3cf9d or   #fff6be; */
} 

#nav	{
	width: 208px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	margin: 0; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	float: left;
	margin: 20px 0 0 0;
	background: url(img/col3_bg.jpg) repeat-y left top;
}
#menu {
	display: block;
	width: 208px;
	margin: 20px 0 50px 0;
}
#menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#menu ul li {
	padding: 0;
	display: block;
	border-bottom: #4c5842 thin solid;
	width: 208px;
}
#menu ul li.last {
	border-bottom: none;
}
#menu ul li a {
	color: #4c5842;
	font-size: 12px;
	text-decoration: none;
	font-weight: normal;
	width: 178px;
	display: block;
	padding: 5px 15px;
}
#menu ul li:hover > a {	
	background-color: #4c5842;
	color: #FAFFDF;
}
#menu ul li:hover {
	display: block;
	background-color: #4c5842;
	color: #FAFFDF;
}
#menu ul li a:hover {
	color: #FAFFDF;
	text-decoration: none;
	font-weight: normal;
}

#wrapper	{
	background: url(img/col5_bg.jpg) repeat-y left top;
	margin: 0;
}

#main	{
	width: 612px;
	background-color:#FAFFDF;
	margin: 30px 20px 30px 218px;
	text-align: center;
	padding: 0 50px;
	min-height: 400px;
}
#sidebar {
	float: right; 
	width: 175px; 
	background-color: #4c5842;
	margin: 10px 10px;
}

p {
	padding-left: 12px;
	line-height: 18px;
	font-weight: normal;
}

.centertext {
	line-height: 18px;
	font-weight: normal;
	text-align:center;
}

.bold	{
	font-weight:bold;
}

ol	{
	margin-left: 20px;
	margin-right: 20px;
	font-size: 12px;
	text-align: left;	
    line-height: 18px;

}

li	{
	 font-weight: normal;
	 line-height: 18px;
}

.h1	{
	font-family: Helvetica, Arial, sans-serif;
	font-size: 22px;
	font-weight: bold;
	text-align:center;
	color: #7A1D1C;
	line-height: 18px;
}
h1	{
	font-family: Helvetica, Arial, sans-serif;
	font-size: 22px;
	font-weight: bold;
	text-align:center;
	color: #7A1D1C;
	line-height: 1.2em;
}
.h2	{
	font-size: 16px;
	font-weight: bold;
	color: #7A1D1C;
	text-align: center;
}

.h3	{
	font-size: 15px;
	font-weight: bold;
	color: #4C5842;
	text-align:center;
}


.emphasis	{
	font-size: 12px;
	color:#790102;
	font-weight: bold;
}

.caption {
	text-align: left;
	font-size: 11px;
	
}
#main a:link, #main a:active, #main a:visited {
	color: #790102;
	text-decoration: underline;
}

#main a:hover {
	color: #790102;
	font-weight: bold;
	text-decoration: none;
}

a:link, a:active, a:visited {
	color: #790102;
	text-decoration: underline;
}

a:hover {
	color: #790102;
	font-weight:bold;
	text-decoration: none;
}

#sidebar p {
	color: #FAFFDF;

}

.attrib {
	color: #FAFFDF;
	text-align: right;
	font-style:italic;
}

#sidebar a:link, #sidebar a:active, #sidebar a:visited {
	color: #FAFFDF;
	text-decoration: underline;
}
#sidebar a:hover {
	color: #FAFFDF;
	text-decoration: none;
	font-weight:bold;
}

#sidebar ul	{
	color: #FAFFDF;
	margin-right: 5px;
	font-size: 12px;
	text-align: left;
    line-height: 18px;

}

#sidebar ol	{
	color: #FAFFDF;
	margin-left: 2px;
	margin-right: 10px;
	font-size: 12px;
	text-align: left;
    line-height: 18px;
}

#sidebar li	{
	color: #FAFFDF;
	font-weight: normal;
	line-height: 18px;
}

#sidebar .h3	{
	font-size: 14px;
	font-weight: bold;
	color:#FAFFDF;
}

#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. background-color: #b6654d;*/
	background-color: #4C5842;
} 
#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 */
	text-align:center;
	font-size:12px;
	color: #FAFFDF;
}

#footer a:link, a:active, a:visited {
	color: #FAFFDF;
	text-decoration: underline;
}
#footer a:hover {
	color: #fff;
	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;
}
 
</style>[if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
#main1, #main2, #sidebar { padding-top: 30px; }
/* #main2 { zoom: 1; padding-top: 15px; }/* 
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]
