#nav, #nav ul { /* all lists */
	list-style: none;
	margin: 0px;
	padding: 0px;
	line-height: 2;
}

#nav li { /* all list items */
	float: left;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 2px;
}

#nav li a {
	display: block;
	font-weight: bold;
	text-decoration: none;
	color: #4b4b4b;
	padding-right: 2px;
	padding-left: 2px;
}
#nav li a:hover {
	color: #007483;
	background-color: inherit;
}
#nav li ul a {
	display: block;
	font-weight: normal;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #007483;
	color: #fff;
	padding-left: 4px;
}
#nav li ul a:hover {
	background-color: #007483;
	background-image: url(../img/bg-menu-over.gif);
	background-repeat:  repeat-x;
	color: #FFFFFF;
}

#nav li ul li{ /* all list items */
	float: left;
	width: 130px;
	margin: 0px;
	padding: 0px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin-left: 3px;
	background: #02abc0;
	width: 130px;
	margin-top: -2px;
	font-size: 10px;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

.navend {
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #007483;
}