/* * * * Functionality Menu Code  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#nav * {
	margin: 0;
	padding: 0;
	list-style-type: none;
	z-index:100;
}	

#nav  {
	background:#604a35;
	border-bottom: 1px solid #745d47;
	float: left; /* makes the div enclose the ul */
	width: 960px;
}	

#nav ul {
	display:inline;	/* fixes margin-doubling bug in IE6 */
	float: left; /* makes the ul enclose the li's */
}	

#nav li {
	float: left; /* makes the list items sit side by side. note: if you try to get the list items to stack by unfloating the li elements, IE6+ leaves gaps */
	position: relative; /* positioning content for the nested ul (drop down) */
}

#nav a {
	display: block; /* no divider needed to the left of first list items */

}	


/* start of drop style */

#nav ul li ul li ul  {
	top:-1px; /* set to negative value of border-top for perfect pop-out alignment -set to 0 if border is 0 - don't remove! */
} 

#nav li ul {
	display: none; /* hides the drop-down (revealed when hovered. see below) */
	position: absolute; /* positions the drop-down relative to the parent li position context */
	left: -1px; /* precisely positions the drop-down */
	width: 7em;	/* sets the width of the drop-down */
}		

#nav li:hover ul,
#nav li.hover ul {	
	display: block; /* displays the menu when hovered */
}

#nav li ul li {	
	width: 100%; /* makes each li the width of the ul and therefore stack */
}

#nav ul li ul { 
	border:0; /* stops inheritance from level 1 ul */
	margin-left:0; /* stops inheritance from level 1 ul */
	padding: 0;
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width: 10em; /* sets the width of menu levels 2 - 4 */
	background: #595738;
}

#nav ul li ul li {
	width:100%;
	padding:0; /* stops inheritance */
	border-left:0; /* stops inheritance */
	border-right:0; /* stops inheritance */
	background: #595738;
}



/* * * * Customizable Menu Code  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#nav ul {
	font-size:1.3em; /* prevents inheritence */
	padding-left: 30px;
}	

#nav li {
	background:#604a35; /* background color of the level 1 menu items */
}

#nav li:hover,
#nav li.hover {	
	background: #69533d; /* background color of hovered menu items */
}

#nav a {
	color:#d7cdb7;	/* sets the color of all menu types */
	padding: .75em 25px; /* pads the link away from the list item - set vertical height in ems */
	text-decoration: none;
}	
#nav a:hover {
	background:#69533d; /* background color of hovered menu items */
	color: #fff; /* MH CORE default. Developer should change */
}

/* * * * Active Class  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.home li#nav-home a,
.services li#nav-services a,
.gallery li#nav-gallery a,
.testimonials li#nav-testimonials a,
.request li#nav-request a,
.contact li#nav-contact a {
	background: #604a35 url(/images/design/arrow.gif) no-repeat 5% 50%;
	color: #fff; /* MH CORE default. Developer should change */
}

#nav ul li ul li a, .gallery li#nav-gallery ul li a {font-size: 0.8em; background: none; padding: 10px; line-height: 1em;}
#nav ul li ul li a:hover {background: #69533d;}

