/* ============================================================================
	NAVIGATION 																																	 
============================================================================
#nav ul {
  padding-top: 4px;
}
#nav ul li {
  display: inline;
  margin: 0 10px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  margin-top: 4px;
  padding: 4px 19px;
}
#nav li:hover {
  background: #f19001 url(../images/background-hover.png) repeat-x;
  border: solid 1px #ffc352;
  border-bottom: none;
  padding: 3px 18px 4px 18px;
}
#nav a {
  color: #fff;
  text-decoration: none;
  display: block;
}
#nav a.active {
  background: transparent url(../images/nav-active.png) 50% 50% repeat-x;
}
#nav ul ul {
 display: none;
}
*/
#navigation {
  color: #fff;
  background: transparent url(../images/background-navigation.png) repeat-x;
  font-family: helvetica, arial, sans-serif;
  font-weight: normal;
  height: 21px;
  padding-top: 4px;
  padding-left: 8px;
}

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}
#nav ul {
  margin-top: -4px;
  margin-left: -8px;
}
#nav a {
  color: #fff;
	display: block;
	width: 7em;
	font-weight: normal;
	font-size: 100%;
  text-decoration: none;
}
#nav li {
  float: left;
}
#nav li a, #nav li span { /* all list items */
	width: 87px; /* width needed or else Opera goes nuts */
  display: block;
	padding: 7px 1px 4px 1px;
	text-align: center;
	cursor: pointer;
}
#nav li a:hover, #nav li span:hover {
  background: #f19001 url(../images/background-hover.png) repeat-x;
}

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

#nav li ul li a { /* second-level */
  font-size: 100%;
  text-align: left;
  display: block;
  float: left;
  clear: both;
  width: 110px;
  padding: 4px;
}
#nav li ul li a:hover { /* second-level */
	background: #f2ad1c;
  width: 102px;
}

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

.mainlevel_active-nav, #active_menu-nav {
  background: url(../images/background-hover.png) repeat-x;
}
