#nav, #nav * { z-index: 999; }

#nav, #nav ul { /* all lists */
  font-size: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
	float : left;
	width : auto;
	z-index: 10000;
}

#nav li { /* all list items */
	position : relative;
	float : left;
	line-height : 1.25em;
	margin-bottom : -1px;
	width: auto;
	z-index: 10000;
}

#nav li ul { /* second-level lists */
	position : absolute;
	left: -999em;
	margin-left : 0px;
	margin-top : -1px;
	z-index: 10000;
}

#nav .selected_li a {
  background-image: url('images/nav_bg_yellow.gif'); 
  background-repeat: repeat-x;
}

#nav li ul ul { /* third-and-above-level lists */
z-index: 10000;
	left: -999em;
	margin-left : 180px;
	margin-top : -25px;
}

#nav li a, span.nolink {
	background-image: url('images/nav_bg_blue.gif'); 
  background-repeat: repeat-x;
	height: 20px;
	width: auto;
	w\idth : auto; /* not a typo, browser hack */
	display : block;
	color : white;
	font-weight : bold;
	text-decoration : none;
	padding: 0px;
	padding-top: 5px;
	padding-left: 7px;
	padding-right: 7px;
	margin: 0;
}

#nav li li {
	width: 180px;
}



#nav li ul li a, span.nolink {
	background-image: url('images/nav_bg_blue_light.gif'); 
  background-repeat: repeat-x;
	height: 20px;
	width: auto;
	w\idth : auto; /* not a typo, browser hack */
	display : block;
	color : white;
	font-weight : bold;
	text-decoration : none;
	padding: 0px;
	padding-top: 5px;
	padding-left: 7px;
	padding-right: 7px;
	margin: 0;
}


#nav li:hover {
  position: relative;
}


#nav li a:hover {
	color : white;
	background-image: url('images/nav_bg_yellow.gif'); 
  background-repeat: repeat-x;
}

#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: 0;
}


