#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}
#nav {
	position: relative;
	z-index: 999;
}
#nav a {
	display: block;
	text-align: center;
	width: 126px;
	text-decoration: none;
	color: #fff;
	padding: 5px 0 5px 0;
}
#nav a:hover{
	text-decoration: underline;
}
#nav ul li ul li a{
	font-size: 10px;
	color: #585858;
}
#nav ul .active a{
	font-weight: bold;
}
#nav ul .active ul li a{
	font-weight: normal;
}
#nav ul li ul .active a{
	font-weight: bold;
}
#nav ul li ul li a:hover{
	background: #EEE; 
}
#nav ul li ul{
	border-top: 1px solid #666;
	border-left: 1px solid #666;
	border-right: 1px solid #666;	
}
#nav ul li ul li{
	border-right: none;
	border-bottom: 1px solid #666;
}
#nav li { /* all list items */
	float: left;
	width: 124x; /* width needed or else Opera goes nuts */
	border-right: 1px solid #fff;
}
#nav li ul { /* second-level lists */
	position: absolute;
	background: #dbdbdb;
	width: 126px;
	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;
}
#nav #contact{
	border-right: none;
}

