/* CSS Document */
/*
IE7- FIX::
be sure to adjust the z-index of the #header for < IE8 so that the layers are properly calculated

something like...
<!--[if lt IE 8]>
	<style type="text/css">#header{z-index:99;}</style>
<![endif]-->
...works fine
*/
ul.nav{
	margin:32px 0 10px;
	padding:0;
	list-style:none;
	background:url(../images/bg-nav.png) no-repeat;
	text-align:center;
	width:975px;
	text-transform:uppercase;
}
.inner ul.nav,
.inner2 ul.nav{margin:32px 0 20px; }
ul.nav li[level="0"]{
	display:inline;
	background:url(../images/separator-nav.gif) no-repeat;
	
	
	/*line-height:40px;*/
	position:relative;
}
/*
* html ul.nav li[level="0"]{padding:11px 17px 0 22px;}
* +html ul.nav li[level="0"]{padding:11px 17px 0 22px;}
*/
ul.nav li[level="0"]:first-child{background:none;}
ul.nav li a[level="0"]{ color:#fff; padding:11px 17px 11px 22px; /*padding:0 0 11px;*/}
ul.nav li a[level="0"]:hover{
	color:#fec057;
	text-decoration:none;
}

ul.nav li li a {
		padding:0px;
		color:#fff;
		text-decoration:none;
	}


ul.nav li a:hover {
	background:url('../images/nav-hover.gif') repeat-x;
}
	ul.nav li li a:hover {
		background:none;
	}


ul.nav, ul.nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	position:relative;
	display:inline-block;
	z-index:80;
}

ul.nav a {
	display: block;
	/*width: 200px;*/
}

ul.nav li { /* all list items */
	float: left;
	/*width: 200px;*/ /* width needed or else Opera goes nuts */
}
	ul.nav li li { /* all list items */
		padding:0px;
		margin:0px;
		width: 204px; /* width needed or else Opera goes nuts */
		
		text-align:left;
		text-transform:none;
	}

		ul.nav li li a { /* all list items */
			color:#2B4718;
			border-width: 0px;
			padding: 5px 4px 5px 4px;
		}
		ul.nav li li a:hover { /* all list items */
			padding: 5px 4px 5px 4px;
			background:#fff;
			color: #2B4718;
		}

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


ul.nav li ul ul { /* third-and-above-level lists */
	border-width: 0px;
	margin: -26px 0 0 204px;
	background: #2c2c4c;
	display:none; /*prevents tier > 2 from appearing; should also twart the screenreader's best put forth efforts so long as they don't start reading display:none elements*/
}

ul.nav li:hover ul ul, ul.nav li.sfhover ul ul {
	left: -9999em;
	visibility:hidden;
}

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


/*ul.nav li, ul.nav ul, ul.nav li a, */
ul.nav li li, ul.nav ul ul, ul.nav li li a, 
ul.nav li li li, ul.nav ul ul ul, ul.nav li li li a
{
	border-left: 0px solid #000;
	border-right: 0px solid #000;
	border-bottom: 0px solid #000;
	background-image: none;
}
	ul.nav li li
	{
		border-left: 2px solid #455E35;
		border-right: 2px solid #455E35;
		border-bottom: 1px solid #455E35;
	}/*
	ul.nav li li a
	{
		border-left: 1px solid #000;
		border-right: 1px solid #000;
	}
	*/	ul.nav ul
	{
		border-bottom: 1px solid #455E35;
	}
