@charset "utf-8";
/* CSS Document */


#nav, #nav ul { /* all lists */
	list-style: none;
	line-height: 2em;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	float: left;
	width: 100%;
	height: 15px;

}
#nav {
float:left;
width: 750px;
padding-left: 50px;
}

#nav li { /* all list items */
	float: left;
	width: 17%; /* width needed or else Opera goes nuts */
	background-color: #760900;
	padding-left: 13px;

}
#nav  li a {
	display: block;
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
}


#nav li a:hover { /* Top menu items on hover */
	background-color: #D0CA8C;
	color: black;
	font-weight: bold;
}

#nav li li {
	float: left;
	width: 130%; /* width needed or else Opera goes nuts */
	color: #000000;
	background-color: #D0CA8C;
	border-left: 4px solid #760900;
	border-top: 1px solid #000000;

	padding-left: 0;
}
#nav li li a {
	color: #000000;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #ffffff;
	padding-left: 3px;
}


#nav li li a:hover { /* Drop down menus items on hover */
	color: white;
	background-color:#760900;
}

#nav li ul { /* second-level lists */
	position: absolute;
	z-index: 10;
	width: 10em;
	left: -999em; 
	padding: 0;/* using left instead of display to hide menus because display: none isn't read by screen readers */
	
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	background-position: 0 0;
}

.DD {
	background-image: url(../SpryAssets/SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 0% center;
}
