#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	font-family:arial;
	font-size:12px;
}

#nav { height:28px; }
#nav li { background-color:0; width:83px; padding:0; margin:0px; }

#nav li a.top-level {
	color:black;
	text-decoration:none;
	text-transform: uppercase;
	text-align:center;
	background-color:#fff;
  padding:15px 0px;
	width: 83px;
  border:0;
}

#nav li a.top-level-selected, #nav li a.top-level:hover  {
  background-color:#9BC3D8;
	color:#fff;
	border:0;
	text-decoration:none;
	text-transform: uppercase;
	text-align:center;
  padding:15px 0px;
	width: 83px;
}

#nav a {
  overflow:hidden;
	display: block;
	outline:none;
	color:#606161;
	text-decoration:none;
  border-bottom:1px dotted #fff;
  background-color:#CDE1EB;
  padding:6px 0px 6px 6px;
	width: 130px;
}

#nav a:hover {
  color:#fff;
  background-color:#9BC3D8;
  border-bottom:1px dotted #fff;
}

#nav a.secondary { /* second-level lists */
  display: block;
	color:black;
	text-decoration:none;
  background-color:#fff;
  padding:6px 0px 6px 6px;
	width: 130px;
	border:0;
}

#nav li.office a {
  width: 155px;
}

#nav li.riverfront a {
  width: 155px;
}

#nav li { /* all list items */
	float: left;
	width: 83px; /* width needed or else Opera goes nuts */
}

#nav ul li.office, #nav ul li.riverfront { /* all list items */
	float: left;
	background-color:#CDE1EB;
	width: 161px; /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background-color:#CDE1EB;
	width: 136px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li.office ul, #nav li.riverfront ul { /* second-level lists */
  background-color:#CDE1EB;
	position: absolute;
	width: 161px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin: -25px 0 0 161px;
}

#nav li ul ul { /* third-and-above-level lists */
	margin: -25px 0 0 136px;
}

#nav li.office ul ul { /* third-and-above-level lists */
	margin: -25px 0 0 156px;
}

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

#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;
	height: 1%; /* sticky menu IE7 bug fix*/
}


