/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	margin: 0px 0px 0px 0px;
	text-align: left;
	background: #ffffff;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
}

/* This sets a default font for all of our tag selectors. We set the text align back to left so it won't center (based on the body tag to compensate for IE.) */

p, h1, h2, h3, h4, h5, a, ul, li, lo, td, address {
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* Redefines the p, li, td, and address tags */
p, li, td, address {
	font-size: 11px;
}
/* Sets the line-height for these tags */
p, td {
	line-height: 20px;
}
li {
	line-height: 16px;
}
ul.nomargin {
	margin-top: 0px;
}
address {
	line-height: 12px;
	font-style: normal;
	}
h1 {
	color: #000000;
	font-size: 16px;
	text-transform: uppercase;
	font-family: Arial, Helvetica, sans-serif;
	padding: 0px;
	margin:0px;
}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
/* Styles the DIV that serves as the container for the layout. Setting the left and right margins to auto will center DIV. */
div#container {
	width: 770px;
	background: url(images/layout.gif) repeat-y; /* Faux column bg for page */
	margin: 0px;
}
/* Creates DIV container for header. */
div#header {
	width: 770px;
	margin: 0px;
	padding: 0px;
	}
/* Creates DIV container for main content */ 
div#content {
	width: 467px;
	float: left;
	padding: 0px 0px 10px;
	clear: left;
	background: url(images/tree.gif) no-repeat right bottom;
}
/* Creates DIV container(s) for page headings */ 
div#heading1, div#heading2, div#heading3 {
	width: 467px;
	height: 145px;
	padding: 0px;
	margin: 0px;
}
div#heading1 {
	background: url(images/heading1.gif) no-repeat; 
	text-indent: -1500px;
}
div#heading2 {
	background: url(images/heading2.gif) no-repeat; 
	text-indent: -1500px;
}
div#heading3 {
	background: url(images/heading3.gif) no-repeat; 
	text-indent: -1500px;
}
div#content p, form#formdoc {
	margin: 0px 25px;
}
/* Creates DIV container for sidebar content */ 
div#sidebar {
	width: 303px;
	float: right;
	padding-bottom: 10px;
	color: #DCD0C4;
	clear: right;
}
div#sidebar address {
	font-size: 10px;
	padding-top: 4px;
	}
div#sidebar a {
	color: #ffffff;
}
div#sidebar img {
	padding: 0px;
}
div#sidebar img.left{
	float: left;
	margin-right: 25px;
}
div#sidebar img.clear{
	clear: both;
	padding: 0px;
	margin-bottom:0px;
}

/* Creates DIV container for privacy statement */
div#privacy {
	font-size: 10px;
	line-height: 16px;
	margin: 5px 25px;
	text-align: left;
}
/* Creates DIV container for sub-navigation */
div#subnav {
	font-size: 10px;
	width: 770px;
	margin: 0px;
	text-align: center;
	clear: both;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding:5px 0px;
	background: #ffffff;
	border-top: 10px solid #000000;
}
div#subnav a {
	color: #645443;
	text-decoration: underline;
} 
/* Creates DIV container for copyright statement */
div#copyright {
	font-size: 9px;
	width: 770px;
	margin: 0px;
	text-align: center;
	clear: both;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding:0px 0px 5px;
	background: #ffffff;
}
div#copyright a {
	color: #645443;
	text-decoration: underline;
}
/* ----------------- MAIN NAVIGATION ----------------- */

/* Apply the ul#mainnav style to our entire <ul>.*/

/* Sets a background color and width for our navigation box. Removes all default margins and padding. */
ul#mainnav {
	margin: 0px;
	padding: 0px;
	width: 770px;
	background: #311B03;
	height: 25px;
}

/* Removes the default bullets. */
ul#mainnav li {
	display: inline; /* Redefined here only to remove stray padding. */
	list-style: none;
}

/* Styles our links. Setting the display to block ensures our links will stack back on top of one another as block level elements. The width sets the "hit" area of the links.  */
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	font-size: 10px;
	color: #C0AE99;
	text-decoration: none;
	padding: 4px 10px;
	text-transform: uppercase;
	font-weight: bold;
	display: block;
	float: left;
}
/* Creates our hover status and our current custom class. Be sure to apply .current to each applicable a tag on individual pages. */
ul#mainnav li a:hover, ul#mainnav li a.current:link, ul#mainnav a.current:visited {
	color: #FFFFFF;
	width: auto;
}
