@charset "utf-8";
/* CSS Document */

#nav{
height:42px;
padding: 30px 0 0 80px;
font-size:.8em;
}


#nav ul { /* all lists */
	margin: 0;
	padding:0;
	list-style: none;
	line-height: 1;
}
 
#nav a {
	display: block;	
}

#nav li { /* all list items */
	float: left;
	width: auto;
}
 
#nav li ul li { /* all list items */
	float: left;
	width: 120px; /* width needed or else Opera goes nuts */
}
 
#nav li ul { /* second-level lists */

	position: absolute;
	background-color:#f4d136;
	z-index:100000;
	width: 120px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
 
#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

/* normal states */

/* first level */
#nav li a:link, #nav li a:visited{
width:120px; /* must have a fixed width for ie6 */
height:42px;
line-height:55px;
text-decoration:none;
margin-right:11px;
color:#FFFFFF;
text-align:center;
background-image:url(../images/menu.gif);
background-position:bottom;
}

/* variable width setting can be used for other browsers */
html>body #nav li a:link, html>body #nav li a:visited {
width:120px;
} 

/* second level */
#nav li ul a:link, #nav li ul a:visited{
width:120px;
height:30px;
background-color:#f4d136;
margin:5px 0 0 0;
text-align:left;
text-indent:10px;
background-image:none;
line-height:30px;
color:#323232;
}

/* normal states */

/* first level */
#nav li a:hover, #nav li a.active{
color:#323232;
background-position:top;
line-height:42px;
}
/* second level */
#nav li ul a:hover{
color:#FFFFFF;
background-color:#323232;
}







