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

#Navs { /* Navigation area */
	width: 950px;
	padding-top: 24px;
	float: left;
}
#Navs, #Navs ul { /* all lists */
	list-style: none;
	z-index: 500;
	//line-height: .85em; /* Hack -- IE sees the line height after // but mozilla does not. */
	width: 950px; 
	text-align: left; 
	float: left;
	line-height:1;
}
#Navs a {
	display: block;
	color: #999;
	text-align: center;
	width: 190px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #CCC;
	padding-top: 2px;
	padding-bottom: 2px;
	font-size: 1em;
	line-height: 1em;
	margin-bottom: 7px;
}
#Navs a:hover {
	color: #09C;
	text-decoration:none;
}
#Navs li ul li a { /* only second level list items */
	text-align: left;
	border:none;
	font-size: 0.95em;
	width: 180px;
}
#Navs li ul li a:hover {
	text-decoration:underline
}
#Navs li { /* all list items */
	float: left;
	width: 190px; /* width needed or else Opera goes nuts */
}
#Navs li ul { /* hidden block */
	position: absolute;
	background-color: #FFF;
	width: 180px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border: 1px solid #CCC;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 10px;
}
#Navs li:hover ul, #Navs li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
