/* Top Navbar */
	
#nav, #nav ul {
	position: relative;
	top: 50px;
	left: 440px;
	width: 550px;
	margin: 0px;
	padding: 0px;
	list-style: none;
	z-index: 175;

}

#nav a, #nav a:hover {
	display: block;
	float: left;
	/* took out height: 16px; */
	padding: 2px 15px 0 15px;
	text-decoration: none;
	color: #000;
	font-size: 1.6em;
}

#nav a:hover { 
	text-decoration: underline;
	}

#nav li {
	float: left;
	list-style:none;
	position: relative;
}
	
/* Dropdown Menus */
	
#nav li ul {
	position: absolute;
	left: -999em;
	height: auto;
	width: 174px;
	border-bottom: 1px solid #6e7073;
	z-index: 175;
}

#nav li li {
	width: 172px;
	border-top: 1px solid #6e7073;
	border-right: 1px solid #6e7073;
	border-left: 1px solid #6e7073;
	background: #1e1f21;
}

#nav li li a, #nav li li a:hover {
	width: 162px;
	height: auto;
	padding: 5px;
	background: none;
	font-weight:normal;
	color:#fff;
	
}

#nav li li a:hover {
	background: #4a4f54;
}
		
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
	top: 20px;
	position:absolute;
	left:0;
	/*chaged to left: 0 from left: auto; to take care of IE6 and IE7 menu shift to the right  added position:relative to  #nav li also*/
	
}

/* Main Navbar */
	
/* like bottom with all the hovers for nav, need to make main nav relative was abs with 130px top, so dropdowns line up in ie7, pos abs and left 0  -- created div around menu applied absolute */	
#main-nav, #main-nav ul {
	position: relative;
	width: 960px;
	margin: 0px;
	padding: 0px;
	list-style: none;
	border-top: 3px white solid;
	/* 		border-bottom: 2px white solid; */
	background: #75B524;
	z-index: 150;
}

#main-nav a, #main-nav a:hover {
	display: block;
	float: left;
	 /*was height: 24px; took out to fix IE6 and IE7 to make them stop extending the nav bar over the photos, IE6 still extends a tiny bit, not enough for me to care or look wrong */
	padding: 8px 10px 5px 10px;
	text-decoration: none;
	color: #fff;
	font-size: 1.2em;
}

#main-nav a:hover { 
	text-decoration: underline;
	}

#main-nav li {
	float: left;
	list-style:none;
	position: relative;
}
	
/* Dropdown Menus */
	
#main-nav li ul {
	position: absolute;
	left: -999em;
	height: auto;
	width: 174px;
	border-bottom: 1px solid #6e7073;
	z-index: 100;
}

#main-nav li li {
	width: 172px;
	border-top: 1px solid #6e7073;
	border-right: 1px solid #6e7073;
	border-left: 1px solid #6e7073;
	background: #1e1f21;
}

#main-nav li li a, #main-nav li li a:hover {
	width: 162px;
	height: auto;
	padding: 5px;
	background: none;
	font-weight:normal;
	color:#fff;
}

#main-nav li li a:hover {
	background: #4a4f54;
}
		
#main-nav li:hover ul, #main-nav li li:hover ul, #main-nav li li li:hover ul, #main-nav li.sfhover ul, #main-nav li li.sfhover ul, #main-nav li li li.sfhover ul {
	top: 28px; /*was 33px */
	position: absolute;
	left: 0;
}

