/* BEGIN NAVIGATION STYLES */

/*** ALT NAV ***/
/* Alt nav adds a cleaner look to the items without any drop-downs */
.altNav, navTop * {
	margin:	0;
	padding: 0;
	list-style: none;
	position: relative;
	z-index: 99;
	white-space: normal;
}

.altNav {
	line-height: 1.0;
	width: 163px;
	height: auto;
	clear: both;
	margin: 5px 0px 0px 0px;
}

.altNav li {
	list-style-type: none;
}

.altNav li a {
	width: 163px;
	display: block;
	padding: 5px 2px 4px 5px;
	
	font-size: 12px;
	text-transform: uppercase;
	color: #ffffff;
	
	text-decoration: none;
	letter-spacing: 0px;
	font-weight: normal;
	
	list-style-type: none;
}

.altNav li a:hover {
	color: #f46c22;
	background: #ffffff;
	
	text-decoration: none;
}

/*** DROPDOWN FUNCTIONALITY ***/
.nav, .nav * {
	margin:	0;
	padding: 0;
	list-style: none;
	position: relative;
	z-index: 99;
	white-space: normal;
}

.nav {
	line-height: 1.0;
	width: 165px;
	height: auto;
	clear: both;
	margin: 0 0 20px 0;
}

.nav ul {
	position: absolute;
	top: -999em;
	width: 170px; /* ul width must be matched by subs, instance 1 of 3 */
	left: 0;
	margin: -21px 0 0 170px; /* this positions the dropdown to the right instead of directly below  */
	padding: 2px;
	z-index: 10000;
}

.nav ul li {
	width: 100%;
}

.nav ul.wide {
	width: 165px;
}

.nav li:hover {
	visibility: inherit; /* fixes IE7 'sticky bug' */
}

.nav li {
	float: left;
	position: relative;
	padding: 5px 2px 4px 5px;
	width: 100%;
}

.nav li li {
	padding: 0;
}

.nav li li a {
	padding: 5px 0 5px 5px;
	width: 165px;
}

.nav a {
	display: block;
	position: relative;
	height: 100%;
}

.nav li:hover ul,
.nav li.sfHover ul {
	left: 0;
	top: 1.75em; /* match top ul list item height */
	z-index: 99;
}

ul.nav li:hover li ul,
ul.nav li.sfHover li ul {
	top: -999em;
}

ul.nav li li:hover ul,
ul.nav li li.sfHover ul {
	left: 170px; /* ul width must be matched by subs, instance 2 of 3 */
	top: 0;
}

ul.nav li li:hover li ul,
ul.nav li li.sfHover li ul {
	top: -999em;
}

ul.nav li li li:hover ul,
ul.nav li li li.sfHover ul {
	left: 170px; /* ul width must be matched by subs, instance 3 of 3 */
	top: 0;
}

/*** DROPDOWN SKIN STYLES ***/
.nav {
	float: left;
	margin-bottom: 0em;
	font-size: 12px;
	text-transform: uppercase;
	color: #ffffff;
	white-space: nowrap;
}

.nav ul {
	background-color: #f46c22;
}

.nav a {
	/* padding: .75em 1em; */
	/* padding: 5px 1px 5px 5px; */
	height: 100%;
	width: 100%;
	text-decoration: none;
	text-transform: uppercase; 
}

.nav a, .nav a:visited { 
	color: #ffffff;
	font-weight: normal;
	font-size: 12px;
}

.nav li   {
	height: 100%;
}

.nav li ul, 
.nav li ul ul {
	border: 2px solid #f46c22;
	background-color: #ffffff;
}

.nav li li {
	background-color: #f46c22;
}

.nav li:hover, .nav li.sfHover,
.nav a:focus, .nav a:hover, .nav a:active {
	color: #f46c22;
	background:	#ffffff;
	outline: 0;
	text-decoration: none;
	height: 100%;
}

/*** END NEW NAVIGATION STYLES ***/