/**
  navigation
**/



#navigation {
  position: absolute;
  left: 200px;
  top: 10px;
  width: 50em; /* 8em width * 6 items + some */
}

#navigation ul, #navigation ul ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#navigation ul a {
	display: block;
	width: 8em;
}

#navigation ul li { /* all list items */
	float: left;
	width: 8em; /* width needed or else Opera goes nuts */
}

#navigation ul li ul, #navigation ul li.sfhover ul ul { /* second-level lists */
	position: absolute;
	width: 8em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

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

/* main li styling */
#navigation ul li a {
	margin: 0;
	padding: 25px 0 25px 0;
	white-space: nowrap;
	text-align: center;
	font-size: 1.1em;
	font-weight: bold;
	background: transparent url(/images/layout/nav-bg.png) no-repeat 50% 0;
	text-decoration: none;
}

#navigation ul li a:hover {
	background: transparent url(/images/layout/nav-bg.png) no-repeat 51% 3px;
}

/* sublists no crazy styling */
#navigation ul li ul li a {
  background: #fff;
  padding: 0;
  margin: 0;
}
#navigation ul li ul li a:hover {
  background: #4a669b; /* nothing crazy for now */
  color: #fff;
}

  

