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

body {
	margin: 0px;
	padding: 0px;
	text-align: left;
	background: #FFFCF6 url(images/layout.jpg) repeat-y; 
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #090E0B;
}

/* 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 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
/* Redefines the p tag */
p, li, td, address {
	font-size: 11px;
}
p {
	line-height: 20px;
}
li {
	line-height: 18px;
}
td{
	line-height: 14px;
}
address {
	font-style: normal;
	line-height: 14px;
}
h1 {
	color: #2F4036;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	border-bottom: 1px solid #2F4036;
	width: 90%;
}
h2 {
	color: #2F4036;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
}
h3 {
	color: #2F4036;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
/* Create styles to float images and groups of images.*/

.left {
	float: left;
	margin: 0px 5px 5px 0px;
	
}
img.leftimage{
	float: left;
	margin: 0px 5px 5px 0px;
}
.right {
	float: right;
	margin: 0px 0px 5px 5px;
}
img.rightimage{
	float: right;
	margin: 0px 0px 5px 5px;
}
p.center {	
    margin: 0px auto;
	text-align: center;
}
/* Creates DIV for layout container. Setting the left and right margins to auto will center DIV. */
div#container {
	width: 100%;
	margin: 0px;
	padding: 0px;
}
/* Creates DIV container for header. */
img.header {
	margin: 0px;
	padding: 0px;
	}

/* Creates DIV container for sidebar content */ 
div#sidebar {
	width: 220px;
	float: left;
	padding: 10px 0px 10px 10px;
}
/* Creates DIV container for sidebar content */ 
div#sidebar address{
	color: #C1CFC6;
}
/* Creates DIV container for main content */ 
div#content {
	float: right;
	height: 100%;
	width: 66%;
	padding: 10px 0px 10px 12px;
	margin-right: 2%;
	
}
/* Creates DIV container for main content */ 
div#content p, h1, h2, h3, div#privacy {
	margin-left: 5px;
	margin-right: 30px;
	padding-right:5px;
}
/* Styles FORM container for contact form */ 
form#formdoc {
	width: 450px;
	margin: 0px;
	text-align: left;
}
div#privacy {
	font-size: 10px;
	text-align: left;
	line-height: 15px;
	padding-bottom: 10px;
	}
/* Creates DIV container for footer. Setting the left and right margins to auto will center DIV. */
div#footer {
	width: 100%;
	margin: 0px;
	padding: 10px 0px;
	background: #3C4F43;
	clear: both;
	color: #84A08F;
	}
/* Creates DIV container for sub-navigation */ 
div#subnav {
	font-size: 10px;
	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-bottom: 10px;
	margin-left: 10px;
}
div#subnav a {
	color: #ADC2B5;
	text-decoration: underline;
}
div#subnav a:hover {
	color: #FFFCF6;
	text-decoration: none;
}
/* Creates DIV container for main content */ 
div#copyright {
	font-size: 9px;
	line-height: 14px;
	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-bottom: 10px;
	margin-left: 10px;
}
div#copyright a {
	color: #ADC2B5;
	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: 219px;
	
}

/* 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: 11px;
	color: #FFFCF6;
	text-decoration: none;
	display: block;
	width: 144px;
	padding: 15px 0px 15px 75px;
	text-transform: uppercase;
	font-weight: bold;
	height: 20px;
	background: url(images/linkbackground.jpg) no-repeat;
}
/* 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 {
	width: 144px;
	background: url(images/currentlinkbackground.jpg) no-repeat;
	height: 20px;
}
/* Creates hack for content DIV to make IE behave. */
/* \*/
div#content {
	float: right;
	width: 66%;
	}
/* */ 
