#nav, #nav ul { /* all lists */
	padding: 0;
	margin-left: 15px;
	margin-right: 15px;
	list-style: none;
	line-height: 1;
}

#nav li a {
	display: block;
	width: 110px;
	color: #fff;
	font-weight: 800;
	text-decoration: none;
	font-size: 1.10em;
	font-variant:small-caps;
	font-family: Helvetica, Arial, sans-serif;
	letter-spacing: 1px;
}

#nav li { /* all list items */
	float: left;
	text-align: center;
	background-image: url('../../../images/content/pagebuilder/nav_level1_bg.png');
	background-repeat: no-repeat;
	padding-top: 8px;
	height: 22px;
	width: 110px; /* width needed or else Opera goes nuts */
	margin-left: 5px;
}

#nav li ul a {
	display: block;
	width: 110px;
	text-decoration: none;
}

#nav li ul { /* second-level lists */
	position: absolute;
	z-index:99;
	background: transparent;
	width: 110px;
	text-align: center;
	padding-top: 12px;
	margin-left: -5px;
	display: none;
	/*left: -999em;  using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li ul li { /* second-level lists */
	background-image: url('../../../images/content/pagebuilder/nav_level2_bg.png');
	background-repeat: no-repeat;
	padding-bottom: 1px;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	display: none;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	/*left: auto;*/
	position: absolute;
	width: 110px;
	display:block;
}