#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	z-index: 1000;
	background-color: white;
}

#nav a {
	display: block;
	width: 85%;
}

#nav li { /* all list items */
	float: left;
	width: 100px; /* width needed or else Opera goes nuts */
}

#nav li ul a { /* 2nd & 3rd level links */
	padding: 6px 0px 6px 7px;
	color: #293D6B;
	font-weight: bold;
	text-decoration: none;
}

#nav li.parent {
	background-image: url(../img/icons/parent.gif);
	background-repeat: no-repeat;
	background-position: right center;
}

#nav li ul a:hover { /* 2nd & 3rd level links */
	text-decoration: none;
	color: black;
}

#nav li li { /* 2nd & 3rd level elements */
	float: left;
	width: 148px; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	margin-left: 0px;
	margin-top: -2px; /* ie hack down */
	position: absolute;
	background-color: #FFFFFF;
	width: 148px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border: 1px solid #3A3A3A;
	/*opacity: .90;*/
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -22px 0 0 148px;
}

#nav li ul ul ul { /* third-and-above-level lists */
	margin: -23px 0 0 148px;
}

/* IE HACK in ie6_fixes.css */

#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: auto;
	display: block;
}

#nav li:hover, #nav li.sfhover {
	background-color: #CCCCCC;
}

