@charset "utf-8";
/* CSS Document */

<style type="text/css">

body  {
	background-color: #D7891D;
	background-image: url(images/bg_fade.JPG);
	background-repeat: repeat-x;
	text-align: center; 

}

#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; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 


/* -------------  specific header styles -------------------*/

#header {
	background: #ffffff;
	padding: 10px 10px 0 20px;
	background-repeat: no-repeat;
	height: 220px;
	background-image: url(images/header.png);
}

#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: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* -------------  main navigation menu -------------------*/

#header ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

#header li {
	display: inline;
} 

#header li a:link,#header li a:visited {
	padding: .2em .3em;
	font: 1em Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
	font-weight: 300;
	color: #d7891e;
	margin-right: .5em;
}
#header li a:hover,#header li a:active {
	color: #A4540D;
}

#header li a.current,#header li a.current:hover,#header li a.current:active {
	color: #690E34;
	cursor: default;
}

#header h4 a {
	margin-left: 540px;
	font-size: 1em;
}	

/* -------------  specific sidebar styles  -------------------*/

#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0 20px;
	background-color: #FFFFFF;
}

#sidebar1 h1 {
	font-size: 1.2em;
	color: #d7891e;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin: 0px;
	padding: 0px;
}

#sidebar1 p {
	font-size: 0.8em;
}
/* -------------  main content area styles  -------------------*/

#mainContent { 
	margin: 0 250px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

#mainContent h1 {
	font-size: 1.2em;
	color: #d7891e;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}


/* -------------  specific footer styles  -------------------*/

#footerL {
	float: left;
	width: 360px;
	font-size: 85%;
	background-color: #FFFFFF;
	font-weight: bold;
	padding: 20px 20px 20px 20px;
} 
#footerL p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	line-height: 1.5;
	color: #690E34;
}
#footerR {
	float: right;
	width: 360px;
	padding: 20px 20px 20px 0;
	font-size: 85%;
	background-color: #FFFFFF;
	font-weight: bold;
} 
#footerR p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	line-height: 1.5;
	text-align: right;
	color: #690E34;
}
.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;
}


p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	line-height: 1.5;
	margin: 0em;
	padding-left: 0em;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 1em;
}
h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #D7891E;
}
h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #D7891E;
	margin-top: -1em;
}
a:link,a:visited {
	text-decoration: none;
	font-weight: 300;
	color: #d7891e;
	line-height: 1.2 multiples;
	}
	
a:hover,a:active {
	color: #A4540D;
	font-weight: 400;
	}

a.style2:link,a.style2:visited {
	text-decoration: none;
	font-weight: 300;
	color: #690E34;
	line-height: 1.2 multiples;
	}

a.style2:hover,a.style2:active {
	text-decoration: underline;
	color: #690E34;
	}

#mainContent ul {
	text-decoration: none;
	}

#mainContent li {
	margin-bottom: 1em;
	line-height: 2;
	margin-top: 0em;
	margin-left: -3.2em;
	list-style-type: none;
	font-size: .9em;
	}	

body  {
	font: 90% Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	background-color: #D7891D;
	background-image: url(images/bg_fade.JPG);
	background-repeat: repeat-x;
	text-align: center;

}

</style>
#mainContent ul {
	padding-left: 20pt;
}
