/* Begin CSS Drop Down Menu */

#menuh-container
	{
	display:block;
	margin:0 0 0 0;
	text-align:center;
	position: relative;	
	top: 0em;
	/* commented out as does not seem to be needed */
	/*left: 1em; */
	}

#menuh
	{
	margin-left:auto; /*centers in Fire Fox - thanks downtap of csscreater.com */
	margin-right:auto; /*centers in Fire Fox - thanks downtap of csscreater.com */
	}
		
#menuh a
	{
	text-align: center;
	display:block;
	white-space:nowrap;
	margin:0 0 0 0;
	padding: 0.3em;
	}
	
#menuh a:link, #menuh a:visited, #menuh a:active	/* menu at rest */
	{
	color: #28292B;
	text-decoration:none;
	background-color: #C8C7C7;
	font-family: Arial, Helvetica, sans-serif;
	}
	
#menuh a:hover	/* menu at mouse-over  */
	{
	text-decoration:none;
	background-color: #AFAFAF;
	color: #28292B;
	font-family: Arial, Helvetica, sans-serif;
	}	
	
#menuh a.top_parent, #menuh a.top_parent:hover  /* attaches down-arrow to all top-parents */
	{
	font-size: 17px;
	background: none;
	}
	
#menuh a.parent, #menuh a.parent:hover 	/* attaches side-arrow to all parents */
	{
	background-color: #C8C7C7;
	}

#menuh ul
	{
	list-style:none;
	margin: 0 0 0 0;
	padding:0;
	float:left; 	/* this keeps the cells horizontal as apposed to a vertical list */
	width:21.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; /* centers child under parent - thanks downtap of csscreater.com */
	left:0; /* centers child under parent - thanks downtap of csscreater.com */
	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;
	}

#menuh ul li ul li a { font-size: 13px; line-height: 30px;}

.clearBoth { /* from centering in zencart */
 clear:both;
 height:0;
 font-size:0;
 line-height:0;
 margin:0;
 padding:0;
 }

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 */
