/*
-----------------------------------------------
Navigation
----------------------------------------------- */

/* navigation (.nav =  horizontal top navigation )
----------------------------------------------- */
#topnav {
    background: #f26522;
}
ul.nav,
ul.nav * { margin:0;padding:0;}
ul.nav {
  position:relative;
  background:#f26522;
  max-width:100%;
  height:2em;
  margin-left: 338px;
}
ul.nav li {
	float:left;
	text-align:center;
	list-style-type:none;
	font-weight:normal;
	padding-top: .5em;
}
ul.nav li ul {
	width:100%;
	max-width:100%;
	position:absolute;
	height:auto;
	top:2.5em;
	background-position:0 0 !important;
	left:-9000px;
}
ul.nav li ul li {
	padding:0;
	border:none;
	width:auto;
	max-width:none;
}
ul.nav li a {
	color:#fff;
	font-weight:bold;
	text-decoration:none;
	display:block;
	float:left;
	padding:0 2em;
	height:1em;
	line-height:1em;
	text-transform: uppercase;
	border-left: 2px solid #fff;
}
ul.nav li.first a {
    border-left: none;
}
ul.nav li ul li a {
	position:relative !important; /* ie Mac */
	cursor:pointer !important;
	white-space:nowrap;
	line-height:2em;
	height:2em;
	font-weight:normal;
	background-position:0 50% !important;
}
ul.nav li:hover a,
ul.nav li a:hover,
ul.nav li a:focus {
	color: #000;
}
ul.nav li a:active {
/*
	background: #fff;
*/
}
ul.nav li:hover ul {
	left: 0;
	z-index: 10;
}
ul.nav li:hover ul li a { color: #444; }
ul.nav li:hover ul li a:hover {
	color: #000;
	background: #fff;
}
ul.nav li:hover ul li a:active {
	color: #666;
	background: #fff;
}
ul.nav li.current ul {
	left: 0;
	z-index: 5;
}
ul.nav li.current ul li a {
	color: #444;
	background: #ccc;
	font-weight: normal;
}
ul.nav li.current ul li a:hover {
	color: #000;
	background: #fff;
}
ul.nav li ul li.current a,
ul.nav li ul li.current a:hover,
ul.nav li.current:hover ul li a:active {
	color: #666;
	background: #fff;
}


