#nav, #nav ul { /* all lists */
	list-style: none;
	line-height: 2;
	padding: 0px;
	margin: 0px;
}

#nav li { /* all list items */
	float: left;
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 2px;
	position: relative;
	z-index: 100;
}

#nav li a {
	display: block;
	font-weight: bold;
	text-decoration: none;
	color: #003e5c;
}
#nav li a:hover {
	color: #006A9D;
}
#nav li ul a {
	display: block;
	font-weight: normal;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #b2c5ce;
	color: #003e5c;
	padding-left: 4px;
}
#nav li ul a:hover {
	background-color: #D6E0E4;
	background-image: url(../img/bg-menu-over.gif);
	background-repeat:  repeat-x;
}

#nav li ul li{ /* all list items */
	float: left;
	width: 167px;
	margin: 0px;
	padding: 0px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: #e5ecef;
	width: 167px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	padding-top: 4px;
}

#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: #b2c5ce;
}