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

body {
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	background: #2C6549;
	color:#011D0C;
}

/* 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;
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* Redefines the p, li, and td tags */
p, li, td {
	font-size: 11px;
	line-height:17px;
}
address {
	font-size: 11px;
	font-style:normal;
	line-height:16px;
	}
h1 {
	color: #073C1B;
	font-size: 16px;
	text-transform: uppercase;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	width:530px;
	border-bottom:1px solid #073C1B;
}

p.subhead {
	color: #073C1B;
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	border:0px;
}
.underline {
	text-decoration: underline;	
}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
/* Create styles to float images and groups of images.*/
.right {
	float: right;
	margin: 10px 0px 10px 10px;
}
img.rightimage{
	border:1px solid #2A521D;
	margin-bottom:10px;
}
img.rightimage1{
	border:1px solid #2A521D;
}
/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	width: 750px;
	margin: 0px auto;
	}

/* Styles the div that serves as the container for the content and sidebar navigation.*/
div#container {
	width: 750px;
	margin: 0px auto;
	background: url(images/layout.gif) repeat-y; /* Faux column bg for page */
}
/* Creates DIV container for sidebar content */ 
div#sidebar {
	width: 180px;
	float: left;
	padding:10px;
	color:#073C1B;
	clear: left;
}
div#sidebar a{
	color:#275E43;
}
div#sidebar a:visited{
	color:#0F3B26;
}
div#sidebar a:hover {
	color:#275E43;
	text-decoration: none;
}
div#sidebar a:active {
	color:#1B4F36;
	}
/* Creates DIV container for content */ 
div#content {
	width: 530px;
	float: right;
	padding:10px;
}
div#content a:link {
	color:#4A7B64;
	}
div#content a:visited {
	color:#011D0C;
	}
div#content a:hover {
	color:#4A7B64;
	text-decoration: none;
}
div#content a:active {
	color:#285641;
	}
/* Creates DIV container for Google map */
div#maps {
	width:528px;
	margin:0px auto;
	border:1px solid #2A521D;
	overflow:hidden;
} 
div#maps iframe{
	overflow:hidden;
}
/* Creates DIV container for text links */ 
div#links {
	text-align:center;
	clear: both;
	font-size: 10px;
}
div#links a:link {
	color:#4A7B64;
	}
div#links a:visited {
	color:#011D0C;
	}
div#links a:hover {
	color:#4A7B64;
	text-decoration: none;
}
div#links a:active {
	color:#285641;
	}
div#copyright {
	font-size: 9px;
	width: 730px;
	margin: 0px auto;
	text-align: right;
	clear: both;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding: 10px;
	background:#467E63;
	color:#B7D4C6;
}
div#copyright a {
	color: #CFE4DA;
	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;
	list-style-type: none;
	text-align: left;
	height:30px;
	background:#175E32;
}

/* 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: #EDF8F3;
	text-decoration: none;
	float: left;
	display: block;
	padding: 6px 10px 7px;
	text-transform: uppercase;
	font-weight: bold;
	background:#175E32;
}
/* 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: #153A28;
	color: #FFFFFF;
	width: auto;
}

