/* CSS Document */

#nav ul {
font-weight:bold;
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin-bottom:0;
margin-right:0;
margin-top:0;
padding:0 0 0 0px;
z-index:100;
}

#nav { /* all lists */
	margin: 0;
	list-style: none;
	z-index: 100;
	font-weight: bold;
	height: 40px;
	font-size:11px;
	line-height: 40px;
	text-align:center;

	
}

#nav_ul, #nav_ul li {
padding:0px;
margin: 0px;

}

#nav a {
	display: block;
	width: auto;
	text-decoration: none;
	color: #ffffff;
	text-indent: 0px;
	text-align:left;
	padding-left: 8px;
	padding-right: 7px;
}

#nav a:hover {
	color: #FFF;
	background-image:url("images/nav_bg_hover.gif");
	width: auto;
	}

#nav li { /* all list items */
	float: left;
	width: auto; /* width needed or else Opera goes nuts */
	padding-left:0px;
	padding-right:0px;
		display: block;
	
}

#nav li ul { /* second-level lists */
position:absolute;
display:block;
	background: #78bbe5;
	width:130px;
	line-height: 20px;
	left: -999em;
	margin-left: 0px; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	text-align: left;
	
}

#nav li ul li { 
	width:130px;
	text-align: left;
}

#nav li ul a:hover {
color: #015ca4;
width: auto;
background-image:none;
}


#nav li ul ul { /* third-and-above-level lists */
	margin: -21px 0 0 0;
}

#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;
}
