@charset "UTF-8";
/* CSS Document */

* {
	margin: 0px;
	padding: 0px;
}
#wrapper {
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 10px;
}
#header {
	height: 100px;
	width: 100%;
	float: left;
	color: #000000;
	font-size: 11px;
	line-height: 16px;
}
#header img {
	margin: 55px 0px 0px 15px;
}
#mainNav {
	height: 22px;
	padding: 0px 0px 0px 15px;
	width: 100%;
	float: left;
	clear: both;
	background-image: url(images/bg_lime.gif);
}
#content {
	min-height: 380px;
	height: 100%;
	width: 100%;
	float: left;
	clear: both;
	background-color:#a29a9d;
	border-bottom: 2px #b1db0a solid;
}
#bottombar {
	width: 100%;
	height: 25px;
	background-color: #000000;
}
#maincopy {
	float: left;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	font-style: normal;
	line-height: 16px;
	margin: 25px 0px 0px 50px;
	width: 450px;
}
#maincopy a {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 10px;
	text-transform: uppercase;
	color: #669933;
	height: 15px;
	text-decoration: none;
	}

#maincopy a:hover {
	color: #99CC00;
	text-decoration: line-through;
}
#maincopy p {
	margin: -3px 0px 0px 0px;
}

#maincopy li {
	margin: 0px 0px 0px 40px;
}

H1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 22px;
	color: #333333;
	line-height: 24px;
	letter-spacing: 1px;
	font-weight: normal;
}


h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	color: #666666;
	line-height: 24px;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-bottom-style: dotted;
	border-bottom-width: thin;
	border-top-width: thin;
	border-top-style: dotted;
	border-top-color: #333333;
	border-bottom-color: #333333;
	font-weight: normal;
}

.form {
		font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	color: #000000;
	line-height: 22px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 5px;
} 
.formbox {
		font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 11px;
	color: #000000;
	line-height: 22px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 5px;
	height: 15px;
	width: 80px;
	border: 1px solid #000000;
	vertical-align: middle;
	background-color: #CCCCCC;
} 
.formbutton {
		font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 10px;
	color: #FFFFFF;
	line-height: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 10px;
	background-color: #669933;
	vertical-align: middle;
	padding: 2px;
	height: 20px;
	width: 60px;
	border: 1px solid #000000;
} 

#formbutton a:hover {
	background-color: #000000;
}

/* main navigation */

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);


/* set the main dimensions for the wrapper/container for the menu, longer width for horizontal menues, longer height for vertical menus */

#navContainer {
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 22px;
	position: absolute;
	z-index: 999;
	
}

/* set initial settings for the menu */

#nav, #nav ul {
	padding: 0px;
	list-style: none;
	font-size: 10px;
	font-family: Geneva, Verdana, Arial, Helvetica, sans-serif;
	line-height: 22px;
}

/* set inital width, height, font styles and background styles here for main (top level) menu items for the a property */

#nav a {
	display: block;
	margin: 0px;
	padding: 0px 2px 0px 0px;
	width: 100%;
	height: 22px;
	color: #000000;
	text-indent: 4px;
	text-decoration: none;
}

/* set hover width, height, font styles and background styles here for the hover property, should closesy mimic a propery above*/

#nav a:hover {
	display: block;
	margin: 0px;
	padding: 0px 2px 0px 0px;
	width: 100%;
	height: 22px;
	color: #ffffff;
	text-indent: 4px;
	background-color: #99CC33;
}

/* set top level menu items background color (the width should be set in the a and a:hover tags above)  */

#nav li {
	font-size: 10px;
	float: left;
	padding: 0px 2px 0px 0px;
	margin: 0px 0px;
	min-width: 25px;
}

/* set 2nd level menu items background color  */

#nav li li {
	float: left; 
	margin: 0px;
	background-color:#b1db0a;
	text-align: left;
	min-width: 175px;
	padding: 0px;
}

/* set properies of 2nd level menu item, could also be done above in #nav li li */
#nav li li a {
	background-color:#b1db0a;
	color: #000000;
	padding: 0px;
	margin: 0px;
	height: 22px;
	width: 100%;
	padding: 0px 5px;
}


/* again should closely mimic above style */

#nav li li a:hover {
	background-color:#99CC33;
	color: #ffffff;
	padding: 0px;
	margin: 0px;
	height: 22px;
	padding: 0px 5px;
}


#nav li ul {
	position: absolute;
	width: 185px;
	left: -999em;
	margin-top: 0px;
	border-top: 3px #a39a9d solid;
	
}

/* for this next part every li:hover there must be a li.sfhover, it references the javascript for ie */
	
#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}
/* for this next every li:hover there must be a li.sfhover, it references the javascript for ie */
#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul {
	left: auto;
}

/* end main navigation */
