﻿/* Begin CSS Drop Down Menu */

#menuh-container
	{
	width: 800px;
	height: 36px;
	}

#menuh
	{
	font-size: 14px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	width:100%;
	float:left;
	}

		
#menuh a
	{
	text-align: left;
	display:block;
	white-space:nowrap;
	margin: 0;
	padding-top: 10px;
	padding-right: 9px;
	padding-bottom: 6px;
	padding-left: 9px;
	}
	
	
#menuh a:link, #menuh a:visited, #menuh a:active	/* menu at rest */
	{
	color: #FFFFFF;
	text-decoration:none;
	}
	
#menuh a:hover	/* menu at mouse-over  */
	{
	text-decoration:none;
	}	
	
#menuh a.top_parent /* attaches down-arrow to all top-parents */
	{
	font-size: 14px;
	background-image: url('../images/menu_bg.gif');
	background-repeat: repeat-x;
	text-transform: uppercase;
	}
	
 #menuh a.top_parent:hover{
	font-size: 14px;
	text-transform: uppercase;
	background-image: url('../images/BackgroundStripRollOver.gif');
	background-repeat: repeat-x;
 }
	
#menuh a.parent	/* attaches side-arrow to all parents */
	{
	font-size: 12px;
	background-color: #111010;
	background-image: url('../images/BackgroundStripParent.gif');
	background-repeat: repeat-x;
}
	
#menuh a.parent:hover{
	font-size: 12px;
	background-color: #111010;
	background-image: url('../images/BackgroundStripParentRollOv.gif');
}	
	
#menuh a.child /* attaches side-arrow to all parents */
	{
	font-size: 10px;
	background-color: #111010;
	background-image: url('../images/BackgroundStripParent.gif');
	background-repeat: repeat-x;
	}
 #menuh a.child:hover 	{
	font-size: 10px;
	background-color: #111010;
	background-image: url('../images/BackgroundStripParentRollOv.gif');
 }	
	
	


#menuh ul
	{
	list-style:none;
	margin:0;
	float:left;
	width:auto;	/* width of all menu boxes */
	border-right-width: thin;
	border-right-style: ridge;
	border-right-color: #2C2C2C;
	padding: 0;
	}

#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;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	}

#menuh ul ul ul
	{
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	left: 100%;
	top: 0px;
	}

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

