﻿#nav, #nav ul {
	/* all lists */
	border-style: none;
	padding: 0;
	margin: 0;
	list-style: none;
	font: 16px "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
	height: auto;
	line-height: 41px;
	color: #1F74AA;
	cursor: pointer;
}
ul#nav,ul#nav li,ul#nav ul,ul#nav ul li{
	margin: 0;
	padding: 0 8px 0 8px;
	list-style-type: none;
	height: 41px;
}

#nav a {
	display: block;
	width: 8em;
    text-decoration:none;
}
#nav a:hover {
    text-decoration:none;
}

#nav li {
	/* all list items */
	float: left;
	position: relative;
	padding: 0 5px 0 5px;
	width: auto;
	text-decoration: none;
}
#nav li ul {
	/* second-level lists */
	position: absolute;
	width: 9em;
	float: none;
	display: inline;
	color: white;
	background: #FF6600;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -28px 0 0 9.5em;
	background: #8CC229;
	background-image:url('images/04.JPG');
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: -1px; 
	top: 41px;
	z-index:100;
}

