/* Begin CSS Drop Down Menu */
/* http://sperling.com/examples/menuh/ 

#menuh-container
	{
	width: 750px;
	position: absolute;
	top: 129px;
	left: 128px;
	border-top: solid #000 1px;
	border-bottom: solid #000 1px;
	background-color: #ff0000;
	}*/
body {
text-align: center;
min-width: 990px;
}

#wrapper {
margin:0 auto;
width:100%;
text-align: center;
background-color: #ff0000;
}
#menuh
	{
font-size: small;
font-family: arial, helvetica, sans-serif;
height: 31px;
border-top: solid #000 1px;
border-bottom: solid #000 1px;
background-color: #ff0000;
margin-left:120px;
margin-left:80px;
	}
#menuh a
	{
	text-align: center;
	display:block;
	border: 1px solid #000;
	white-space:nowrap;
	margin:0;
	padding: 0.10em;
	}
	
#menuh a, #menuh a:visited	/* menu at rest */
	{
	background-color: #ff0000;
	text-decoration:none;
	padding: 5px 5px;
	color: #fff;
	font-weight: bold;
	}
	
#menuh a:hover	/* menu at mouse-over  */
	{
	font-weight: bold;
	color: #ff0000;
	background-color: #fff;
	}	
#menuh ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width:7.5em;	/* width of all menu boxes */
	}

#menuh li
	{
	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:-1em 0 0 -1em;
	}

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

/* End CSS Drop Down Menu */

