ul#nav {
	position: absolute;
	right: 40px;
	bottom: 0px;
	list-style: none;
	font-size: 1.275em;
}

ul#nav li {
	list-style: none;
	float: left;
	background: transparent url('../wsimages/nav_li_bg.png') no-repeat top left;
	margin-right: 2px;
	line-height: 24px;
}

ul#nav li a {
	background: transparent url('../wsimages/nav_li_a_bg.png') no-repeat top right;
	line-height: 24px;
	margin-left: 4px;
	padding: 0 10px 0 6px;
	float: left;
	text-decoration: none;
}

	ul#nav li.active a {
		text-decoration: underline;
	}


/**/
ul#nav li ul { /* second-level lists */
	position: absolute;
	top: 24px;
	width: 200px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	border-left: 1px dotted #ccc;
	border-right: 1px dotted #ccc;
}

ul#nav li ul a {
	width: 180px;
	padding: 0 10px;
	display: block;
	background: #fff url('../wsimages/hr_bg.gif') repeat-x bottom left;
	margin: 0;
}
	/* Reset styles */
	ul#nav li.active ul a {
		text-decoration: none;
	}

	ul#nav li ul a:hover,
	ul#nav li ul li.active a {
		background-color: #eee;
	}

ul#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}

ul#nav li:hover ul ul,
ul#nav li:hover ul ul ul,
ul#nav li.sfhover ul ul,
ul#nav li.sfhover ul ul ul {
	left: -999em;
}

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