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

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
/*	line-height: 1; */
	line-height: 44px;
}

#nav {
	height: 44px;
	margin-left: 10px;
}

#nav a {
	display: block;
}

#nav li { /* all list items */
	float: left;
	padding: 0px 10px;
}

#nav li ul li {
	line-height: normal;
	padding: 4px 0px;
}

#nav li ul { /* second-level lists */
	padding: 15px 10px 15px 14px;
	position: absolute;
	background: #E6E6E6;
	border-top: #100069 9px solid;
	width: 120px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li a {
	width: 100px;

}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
