/* * * * Functionality Menu Code  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

#nav * {

	margin: 0;

	padding: 0;

	list-style-type: none;

	z-index:100;

}	





* html #nav ul {

	display:inline;	/* fixes margin-doubling bug in IE6 */

}



#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 */

	line-height: 1;

}		



#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 */

}











/* * * * drop-downs start here * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

#nav ul li ul { 

	border:0; /* stops inheritance from level 1 ul */

	margin-left:0px; /* stops inheritance from level 1 ul */

	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */

	width: 12em; /* sets the width of menu levels 2 - 4 */

}



#nav ul li ul li {

	width:100%;

	padding:0; /* stops inheritance */

	border-left:0; /* stops inheritance */

	border-right:0; /* stops inheritance */

}



#nav ul li ul {

	display:none; /* conceals the drop-down when menu not hovered */

}



#nav ul li:hover ul,

#nav ul li.hover ul {

	display:block; /* shows the drop-down when the menu is hovered */

	z-index:1000; /* Safari needs this to display menu on top of other page elements */

}



#nav .vertical li ul li:first-child {

	border-top: none; /* removes top border from first drop-down li */

}





/* inevitable hacks for IE6  and < */

* html #nav {

	z-index:1; /* IE6 won't respect high z-index on abs-pos'd child (ul li ul) without this on its parent rel-pos'd element */

}				/* see http://www.last-child.com/conflicting-z-index-in-ie6/ */

* html #nav ul li ul {

	z-index:400; /*ensures menu is on top of other page elements */

}

* html #nav a {

/* cannot find a way to get the top level 'a' to fill the unwidthed menu choices without drop-down in IE : ( */

}

* html #nav.vertical a {

/* now hasLayout in IE - works on the vert menu as container has width */

	zoom:100%;

}

* html #nav ul ul a { /* second level of horiz menu */

	zoom:100%;  /* now IE 'haslayout" - IE now makes background hot in horizontal menus */

}





/* * * * Customizable Menu Code  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

#nav {

	background:#4583ba; /* background color of the level 1 menu items */

	height: 30px;

	line-height: 30px;

}



#nav ul {

	font-size:1em; /* prevents inheritence */



}



#nav li {

	border-right: 1px solid white; /* adds border to the right of each horiz level 1 menu item *//* set to 0px to remove */

}



#nav li:hover,

#nav li.hover {

	background: grey; /* background color of hovered menu items */

}



#nav ul li.first  {

	border-left: none; /* no divider needed to the left of first list item */

}



#nav ul li.last  {

	border-right: none; /* no divider needed to the right of first last item */

}



#nav a {

	color:#fff;	/* sets the color of all menu types */

	text-decoration: none;

	line-height: 30px;

}

#nav a:hover {

	background:#609fd8; /* background color of hovered menu items */

	color: #fff; /* MH CORE default. Developer should change */

}

#nav a span {

	display: block;

	padding: 0 15px; /* pads the link away from the list item on the first level */

}

#nav li ul a span {

	padding: .6em 15px; /* pads the link away from the list item on the dropdowns */

}



/* start of drop style */

#nav li li { 

	background:aqua; /* background color of the level 2 menu */

	border-bottom:1px solid #000; /* lines between menu choices - set to 0px if not wanted */

}



#nav ul li ul li ul  {

	border-top:1px solid #000; /* sets the border-top of levels 3 and 4 of a horizontal menu - set to 0px to remove - for a vertical menu, you will set this for levels 1 - 4 below */

}



#nav li li li {

	background:#000; /* background color of the level 3 menu */

}



#nav li li li li {

	background:#000; /* background color of the level 4 menu */

}



#nav li ul  {

	border-top: 1px solid #000; /* hack - adds a top border to the drop-downs for IE6 */

}



/* * * * Nav Active  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */



.home #nav-home a,

.gallery #nav-gallery a,

.mobile #nav-mobile a,

.contact #nav-contact a



{

	background:#609fd8; /* background color of hovered menu items */

	color: #fff; /* MH CORE default. Developer should change */



}



