/* CSS for drop down menus */
/* Important note: transparency looks great, but it makes 3rd level menus disappear in IE6, so comment them out if you need 3-level dropdowns. (or see if tweeking the code helps)*/

#nav, #nav ul { /* all lists */
	display:relative;
	z-index:5;
	padding: 0;
	margin: 0;
	list-style: none;

	font-family:Verdana, Arial, Helvetica, sans-serif;
	line-height:1em;
	font-weight:bold;
	font-size:10px;
	text-transform:uppercase;
}


#nav li li {
	display:block;
	clear:both;
	width:auto;
}

#nav a {
	display: block;
	color:#fff;
	text-decoration:none;
	padding:0.75em 2.25em;
}

#nav a:hover {
	color:#ffcc33;
	text-decoration:none;
}

#nav li li a {
	color:#fff;
	width:23em;
	background:#999999;
	border-bottom:solid #000000 1px;
	padding:0.8em 0.8em; 
}
* html #nav li li a {
	background:none;
	background:#023999;
}


#nav li li a:hover {
	color:#FFFFFF;
	background:#333333;
}	

#nav li { /* all list items */
	float: left;
}

#nav li ul { /* second-level lists */
	position: absolute;
	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: -2.6em  0 0 24.6em;												/* position of 3rd level menu */
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

#navBar {
	position:relative;
	height:36px;
	width:100%;
	font-size:10px;
	color:#fff;
	font-weight:bold;
	background:url(../images/jpegs/nav_BG.jpg) repeat-x;
	z-index:3;
}

	