#nav, #nav ul {
	padding: 0;
	margin: 0;
}

#nav li { /* all menu list items */
	float: left;
	position: relative;
	/*width:9em;*/
	padding-left:0.5em;
	padding-right:0.5em;
	list-style: none;
	z-index:999;
}

#nav a { text-decoration:none; white-space:nowrap; color:#FFF; }
#nav li.active a, #nav a:hover { color:#CCC; }

#nav li.level0 { padding:0.3em 1em 0.3em 1em; border-left:1px solid #CCC; border-right:1px solid #000; }

#nav li ul.level0 { /* second-level lists */
	display: none;
	position:absolute;
	top:1.5em;
	left:0;
	background:#ecf3f6;
	border:1px solid black;
}

#nav li ul.level0 li { /* For IE6 */
	float: none;
	white-space:nowrap;
	padding:0.5em;
	background:url(../images/nav_divider.gif) repeat-x 0 100%;
}

#nav li ul.level0 li.last {
	background:none;
}

li>ul.level0 { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

#nav li:hover ul.level0,
#nav li.over ul.level0 
{	/* lists nested under hovered list items */
	display: block;
}

#nav li ul.level0 li:hover { background-color:#d5e4eb; }

#nav ul li a,
#nav ul li a:hover { color:#2f2f2f !important; }
