#menuh-container
	{
	/* define the length and color of the menuh div here*/
	background: url(images/menubg.jpg) repeat-x;
	width: 900px;
	height: 40px;
	margin-left: 30px;
	font-size: 100%;
	}

#menuh
	{
	width: 100%;
	margin: 0;
	}
		
#menuh a
	{
	/* define links margin, borders and padding related to height of the block */
	text-align: center;
	display: block;
	white-space: nowrap;
	padding: 10px 2px 5px 2px;
	}
	
#menuh a:link, #menuh a:visited, #menuh a:active /* menu at rest */
	{
	color: #fff;
	text-decoration: none;
	}
	
#menuh a:hover /* menu at mouse-over  */
	{
	color: #fff;
	text-decoration: underline;
	}
	
#menuh a#selected
	{
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	}

#menuh ul
	{
	list-style: none;
	margin: 0;
	padding: 0;
	}

#menuh li
	{
	float: left;
	width: 150px;
	height: 40px;
	background: url(images/menubg2.jpg) repeat-x;
	position: relative;
	min-height: 1px; 		/* Sophie Dennis contribution for IE7 */
    vertical-align: bottom; /* Sophie Dennis contribution for IE7 */
	}

#menuh ul ul
	{
	position: absolute;
	z-index: 500;
	top: auto;
	display: none;
	padding: 1em;
	margin: -10px 0 0 -1em;
	}

/* below border only affects drop down menu*/
#menuh ul li ul li
	{	
	border-left:1px solid #444;
	border-right:1px solid #444;
	}

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

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;}

/* Special thanks to Peter Nederlof, Arnoud Berendsen, Martin Reurings, and Robert Hanson for csshover.htc and tedd from sperling.com for this css example */
