#nav {
	width: 726px;
    height: 40px;
    background-image: url(../img/menu-background.jpg);
    padding-left: 0px;
    z-index: 100;
    padding-top: 0px;
	padding-bottom: 0px;
    margin-top: 0px;
	margin-bottom: 0px;
}

#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
	/*width: 10em;*/
}

#nav li { /* all list items */
	float: left;
	width: 7em; /* width needed or else Opera goes nuts */
    list-style: none;
    margin: 0px;
}
#nav li a {
    overflow: hidden;
    /*text-indent: -10000px;*/
    background-position: left top;
    margin-top: 1px;
	color: #012d16;
	font-size: 15px;
	text-decoration: none;
}
#nav li a:hover {
	background-position: right top;
	text-decoration: underline;
	color: #000;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: orange;
	width: 9em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
    border-left: solid 1px #006B33;
    border-right: solid 1px #006B33;
    border-bottom: solid 1px #006B33; 
	height: auto;
}
#nav li ul li { /* second-level lists */
	padding: 4px;
}
#nav li ul li a { 
	color: #FFF;
    text-decoration: none;
    text-indent: 0px;
    font-family: Geneva,"Arial", Helvetica, sans-serif;
    font-size: 15px;
    padding-bottom: 2px;
    overflow: visible;
}
#nav li ul li a:hover { 
    text-decoration: underline;
}
#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}


/* --------------IE 7 sticky menu fix ----------*/

 li:hover, #nav li.hover {
    position: static;
}

/*--------------- Top Level Menu Items --------------------*/

/*#navHome {	
	background: url(../img/menu-home.gif);
    width: 75px;
    height: 18px; 
}
#navServices {
	background: url(../img/menu-services.gif) no-repeat;
    width: 78px;
    height: 18px;
}
#navMortgages {
	background: url(../img/menu-mortgages.gif);
    width: 91px;
    height: 18px;
}
#navCommunity {
	background: url(../img/menu-community.gif);
    width: 98px;
    height: 18px;    
}
#navTestimonials {
	background: url(../img/menu-testimonials.gif);
    width: 106px;
    height: 18px;    
}
#navRates {
	background: url(../img/menu-rates.gif);
    width: 58px;
    height: 18px;   
}
#navContact {
	background: url(../img/menu-contact.gif);
    width: 73px;
    height: 18px;  
}
#navBlog {
	background: url(../img/menu-blog.gif);
    width: 49px;
    height: 18px;  
}
*/

