@charset "UTF-8";
/* CSS Document */

body { 
   behavior:url("csshover.htc"); 
}

#nav {
		float: left;
		margin-left: 62px;
		top:50px;
		margin-top:20px;
		font-family: arial, helvetica, sans-serif;
		position:absolute;

	}

	#nav li.on ul, #nav li.off ul {
		padding: 0;
	}

	#nav a {
		text-decoration: none;
			}
			
	#nav li{
		float: left;
		display: block;
		padding-right: 1px;
		text-align:center;
		background: #bdd045;
		}
		
	#nav li.on, #nav li.off { /*float the main list items*/
		background: #999999;
	}

	#nav li ul {
		display: none;
	}

	
	#nav li.off ul, #nav li.on ul { /*put the subnav below*/
	position: absolute;
	left: 42px;
	width: 799px;
	background: #0b5e23;
	}

	#nav li a {
		color: #999999;
		background: #ffffff;
		display: block;
		width: auto;
		padding:16px 10px 14px 10px;
		font-size:14px;

	}

	#nav li.on a {
	color: #ffffff;
	background: #0b5e23;
	text-align:center;
	}
	
	#nav li.on ul li.on a {
	color: #ffffff;
	}
	

	#nav li.on ul a, #nav li.off ul a {
		float: left; /*ie doesn't inherit the float*/
		border: 0;
		color: #bdd045;
		width:auto;
		font-size:12px;
		/*margin-right: 15px;*/
	}

	#nav li.on ul {
		display: block;
	}

	#nav li.off:hover ul {
		display: block;
		z-index: 6000;
				}

	#nav li.off a:hover, #nav li:hover a, #nav li.on a:hover {
		color: #ffffff;
		background: #0b5e23;
	}
	
	#nav li.off ul.empty {
	position: absolute;
	left: 42px;
	padding-top:26px;
	width: 799px;
	background: #0b5e23;
		
	}

