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

body {
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	background: #FFFFF6 url(images/bg_site.gif) repeat-x;
	font-family: Arial, Verdana, Helvetica, sans-serif;
}

/* 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 {
	color:#08322A;
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* Redefines the p,  tag */
p, li, td, address {
	font-size: 11.25px;
	line-height: 18px;
}
p.right {
	text-align:right;
	width: 540px;
}
address {
	font-style:normal;
}
td { 
	vertical-align:top;
	}
h1 {
	font-size: 16px;
	text-transform: uppercase;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;	
	width: 540px;
	border-bottom: 1px solid #08322A;
}
h2 {
	font-size: 13px;
	text-transform: uppercase;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: bold;	
}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	width: 770px;
	margin: 0px auto;
	}
div#navigation {
	width: 760px;
	margin: 0px auto;
	padding:0px 5px;
	height:31px;
	background: url(images/navigationbg.jpg) no-repeat;
}
/* Styles the div that serves as the container for the content and sidebar navigation.*/
div#container {
	width: 770px;
	margin: 0px auto;
	background: url(images/layout.jpg) repeat-y; /* Faux column bg for page */
}
/* Creates DIV container for sidebar navigation */ 
div#sidebar {
	width: 185px;
	float: left;
	margin-top:10px;
	padding:0px 5px 0px 15px;
	border-right:1px solid #08322A;
	clear:left;
	margin-bottom: 10px;
}
/* Creates DIV container for content */ 
div#content {
	width: 540px;
	float: right;
	padding:10px 15px 10px 0px;
}
table#services {
	margin:0px auto
}
table#services td{
	padding:5px
}
table#services td.header{
	border-bottom:1px solid #2A7F64;
}
table#services td.middle{
	border-left:1px solid #2A7F64;
	border-right:1px solid #2A7F64;
}
form#formdoc {
	width: 540px;
	margin:0px auto;
}
form#formdoc table{
	margin:0px auto;
}
div#privacy {
	text-align:left;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 16px;
	color:#08322A;
}
div#images {
 	text-align:center;
 	margin:0px auto;
 	padding:2px 0px;
 }
div#images .img1{
	border:1px solid #2A7F64;
	margin-right:15px;
	}
div#images .img2{
	border:1px solid #2A7F64;
	}
div#footer {
	font-size: 10px;
	width: 760px;
	margin: 0px auto;
	text-align: center;
	clear: both;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	padding:10px 0px;
	background: #18694F;
	color: #FFFFF6;
}
div#footer a {
	color: #FFFFF6;
	text-decoration: underline;
}
div#copyright {
	font-size: 9px;
	margin: 0px auto;
	text-align: center;
	clear: both;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	padding-top:8px;
}
div#copyright a {
	color: #FEFCF3;
	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. */
div#navigation ul#mainnav {
	margin: 0px auto;
	padding: 0px;
	height:31px;
	width: 760px;
}

/* 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: 12px;
	color: #FFFFF6;
	text-decoration: none;
	padding: 6px 10px;
	text-transform: uppercase;
	font-family: Georgia, "Times New Roman", Times, serif;
	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 {
	background: #0A4E38;
	color: #FFFFF6;
	width: auto;
}

