@charset "utf-8";
/* CSS Document */

#nav{
height:40px;
padding-top:12px;
width:100%;}

html>body #nav{
padding-left:20px;}


#nav ul { /* all lists */
	padding: 0;
	margin: 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;
	margin-top:5px;
	width: 200px; /* width needed or else Opera goes nuts */
	background-color:#99FF00;
}
 
#nav li ul { /* second-level lists */

	position: absolute;
	background: orange;
	background-color:#CC00FF;
	width: 200px;
	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:auto; /* must have a fixed width for ie6 */
height:40px;
line-height:40px;
text-decoration:none;
padding:0 8px 0 8px;
font-weight:bold;
background-color:#ce2202;
color:#f4f2ed;
margin-right:10px;
float:left;
}

/* variable width setting can be used for other browsers */
html>body #nav li a:link, html>body #nav li a:visited {
width:auto;
} 

/* second level */
#nav li ul a:link, #nav li ul a:visited{
width:200px;
height:30px;
background-color:#CC0000;
margin:5px 0 0 0;
}

/* normal states */

/* first level */
#nav li a:hover, #nav li a.active{
background-color:#554d51;
}
/* second level */
#nav li ul a:hover{
background-color:#0000FF;
}


