/* Begin CSS Drop Down Menu */

#menuh-container{		
	background:#ffffff;
	border:1px solid black;
	border-bottom:0;
	border-top:0;
	margin:0 auto 0 auto;
	padding:0 0 60px 0;
	width:960px;
	}

#menuh {
	
}
		
#menuh a {
	color:black;
}
	
#menuh a:link, #menuh a:visited, #menuh a:active /* menu at rest */{
	text-decoration:none;
}
	
#menuh a:hover	/* menu on mouse-over  */{
	color: white;
	background-color: cornflowerblue;
	text-decoration:none;
}	
	

#menuh ul{
	float:left;
	list-style:none;
	padding-left:10px;
	width:13.1%;	/* width of all menu boxes */
	/* NOTE: For adjustable menu boxes you can comment out the above width rule.
	However, you will have to add padding in the "#menh a" rule so that the menu boxes
	will have space on either side of the text -- try it */
	}

#menuh ul li{
	background:#cc9;
	border: 1px solid #555;
	border-top:0;
	margin:0;
	height:45px;
	text-align: center;
	vertical-align:middle;
}

#menuh ul li:hover{
	background:cornflowerblue;
	color:#fff;
}
	
#menuh ul li:hover a{
	color:#fff;
}
#menuh ul li:hover ul li a{
	color:black;
}
#menuh ul li:hover ul li ul li a{
	color:black;
}
#menuh ul li ul li:hover a{
	color:#fff;
}
#menuh ul li ul li ul li:hover a{
	color:#fff;
}

#menuh li{
	position:relative;
	min-height: 1px;		/* Sophie Dennis contribution for IE7 */
	vertical-align: bottom;		/* Sophie Dennis contribution for IE7 */
	}

#menuh ul ul{
	display:none;
	margin:-1em 0 0 -10px;
	padding: 1em;
	position:absolute;
	top:auto;
	width:100%;
	z-index:500;
	}
#menuh ul ul li{
	border-top:1px solid black;	
}

#menuh ul ul ul{
	
	top:0;
	left:100%;
	}

#menuh ul ul ul li a{
	border-top:1px solid black;	
}
#menuh ul ul ul li a{
	height:20px;
	}
div#menuh li:hover{
	cursor:pointer;
	z-index:100;
	}

div#menuh li:hover ul ul,
div#menuh li li:hover ul ul,
div#menuh li li li:hover ul ul,
div#menuh li li li li:hover ul ul
{display:none;}

div#menuh li:hover ul,
div#menuh li li:hover ul,
div#menuh li li li:hover ul,
div#menuh li li li li:hover ul
{display:block;}

/* End CSS Drop Down Menu */
