@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FDFDFD url(images/page_background.jpg);
	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;
}
h1, h2, h3 {
	font-weight: normal;
	color: #00583F;
}
h1 {
	font-size: 130%;
}
h2 {
	font-size: 110%;
}
h3 {
	font-size: 100%;
}
 #container {
	width: 800px;
	margin: 0 auto;
	text-align: left;
	background: url(images/body_BG.jpg);
} 
 #header {
	background: url(images/headerBG.jpg) no-repeat;
	padding: 0 0px 0px 5px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 





 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 162px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 10px 15px 15px;
	background-image: url(images/container_bg.gif);
	border: thin solid #630;
}
ul#nav {
	margin: 0px 0px 10px;
	padding: 0px 0px 20px;
	list-style: none;
}
#nav li a {
	font-size: 80%;
	color: #CC9;
	text-decoration: none;
	background: #000;
	display: block;
	padding: 10px;
	border-bottom: 1px solid #D9D7B9;
	text-transform: uppercase;
	font-weight: bold;
}
#nav li a:hover, #nav li active, #nav li focus {
	color: #E0E0C8;
	background: #6E7649;
	text-decoration: underline;
}
 #mainContent {
	margin: 0 0 0 195px; /* the left margin on this div element creates the column down the left 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 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

 ********************** Footer ***************************/
#footer {
	width:800px;
	height:97px;
	text-align:center;
	float:left;
	clear:both;
}
#column1 {
	float: right;
	width: 300px;
	text-align: center;
	background-color: #CCB;
	padding: 4px;
	border: thin dotted #633;
}


#column2 {
	background: #CCB;
	float: right;
	width: 200px;
	padding: 8px;
	margin-left: 15px;
	padding-top: 1px;
	border: thin dotted #630;
}


#footer ul{


}
#footer {
}

#footer li{
	display:inline;
	float:none;
	text-align:center;
	padding: 0px 10px 0px 12px;
	border-right: solid 1px #908a68;
}
.lastchild{
	border-right: 0px none !important;
}
#footer a{
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-weight: bold;
	text-transform:uppercase;
	color: #908a68;
	text-decoration: none;
}
#footer a:hover{text-decoration: underline;}
#footer span{
	font-size: 10px;
	color: #666;
	margin:10px;
	display:block;
	text-align: center;
}
#mainContent p, #sidebar1 p, #footer p {
	line-height: 1.5;
	font-size: 80%;
}
#mainContent table tr td p {
	line-height: normal;
	font-size: 70%;
}

.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;
}
