@charset "UTF-8";
body {
	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: #333;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 100%;
	background-color: #281701;
}
div, h1, h2, h4, h5, h6, p, pre, address, blockquote, span, ul, ol, li, dl, dd, dt, img {
	margin: 0px;
	padding: 0px;
}
#container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 3px solid #0A6666;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#header {
	height: 167px;
	background-color: #FDE5C7;
}
#nav {
	float: left;
	width: 900px;
	background-color: #F89E2E;
	background-image: url(../assets/images/navBg.gif);
	margin: 0px;
}#nav ul{
	padding:0;
	list-style:none;
	float: left;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 20px;
}
#nav li {
	float: left;
}
#nav li a:link,#nav li a:visited {
	display:block;
	font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size:13px;
	font-weight:normal;
	color:#000;
	text-decoration:none;
	line-height:2.1em;
	margin-right:0.2em;
	text-transform: uppercase;
	background-color: #F89E2E;
	padding-top: 0.2em;
	padding-right: 1.5em;
	padding-bottom: 0.1em;
	padding-left: 1.5em;
}
#nav li a:hover {
	color: #FFF;
	background-color: #006666;
}
#nav li a.current, #nav li a.current:hover, #nav li a.current:active {
	color: #FDE5C7;
	background-color: #006666;
	cursor: default;
}
#mainContent {
	background: #FFFFFF;
	margin-bottom: 20px;
	float: left;
	margin-top: 15px;
	width: 900px;
}
#mainContent #heading {
	background-color: #0A6666;
	height: 30px;
	width: 430px;
	float: left;
	text-align: right;
	padding-right: 15px;
	padding-top: 3px;
	padding-bottom: 3px;
}
#mainContent  h1{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	font-weight: normal;
	color: #F69E36;
	line-height: 30px;
}
#mainContent h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #0A6665;
	margin-bottom: .8em;
}
#mainContent h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #0A6665;
	margin-bottom: 0.2em;
	margin-top: 0px;
}
#mainContent p{
	line-height: 1.7em;
}
#mainContent li{
	margin-left: 10px;
	line-height: 1.7em;
	list-style-type: square;
	color: #BB7726;
}
#mainContent #img {
	float: right;
	height: 259px;
	width: 385px;
	margin-right: 30px;
	margin-bottom: 0px;
	background: no-repeat;
}
#mainContent #img2 {
	float: right;
	height: 259px;
	width: 385px;
	margin-bottom: 0px;
	background: no-repeat;
	margin-top: 10px;
}
#mainContent #bottom {
	width: 830px;
	clear: both;
	margin-left: 35px;
	float: left;
	margin-top: 15px;
}
#mainContent #infoBox1 {
	width: 410px;
	margin-top: 20px;
	margin-left: 35px;
	font-size: 11px;
	float: left;
}
#mainContent #infoBox2 {
	float: left;
	width: 390px;
	background-color: #FDE5C7;
	padding: 10px;
	color: #000;
	font-size: 11px;
	min-height: 125px;
}
#mainContent #infoBox3 {
	float: right;
	width: 360px;
	background-color: #c7dddd;
	padding: 10px;
	color: #000;
	font-size: 11px;
	min-height: 125px;
}
#mainContent #infoBox4 {
	width: 830px;
	margin-top: 20px;
	margin-left: 35px;
	font-size: 11px;
	float: left;
	clear: both;
}
#infoBox4 a:link, #infoBox4 a:visited, #infoBox4 a:active {
	color: #F69E36;
	text-decoration: underline;
}
#mainContent #infoBox4 a:hover {
	color: #0F6665;
	text-decoration: underline;
}
#infoBox3 li {
	color: #0F6665;
}
#mainContent .green {
	color: #0F6664;
}
#mainContent .orange {
	color: #BB7726;
}
#mainContent .contactbox1 {
	padding: 5px;
	background: #FDE5C7;
}
#mainContent .contactbox2 {
	padding: 5px;
	background: #c7dddd;
	margin-top: 3px;
	margin-bottom: 3px;
}
#footer {
	height: 38px;
	background-color: #006666;
	background-image: url(../assets/images/footerBg.gif);
	clear: both;
	padding: 0 10px;
}
#footer a:link, #footer a:visited, #footer a:active {
	color: #FFF;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 10px;
	line-height: 24px;
	text-align: center;
	color: #FFF;
	font-weight: normal;
}

