/* Begin CSS Drop Down Menu */

#menuh-container
	{
		z-index:2;
		padding-left:25px;
	float:left;
	}

#menuh
	{
		z-index:2;
	/*font-size: small;*/
	font-family: arial, helvetica, sans-serif;
	
	float:left;
	/*margin:2em;
	margin-top: 1em;*/
	}
		
#menuh a
	{
		z-index:3;
	text-align: center;
	display:block;
	/*border: 1px solid #555;
	white-space:nowrap;*/
	margin:0;
	padding: 0.3em;
	font-size:12px;
	font-weight:bold;
	padding-left:11px;
	padding-right:2px;
	padding-top:10px;
	padding-bottom:6px;
	
}
#menuh img{
	padding:0px;
	margin:0px;
	border:none;
	float:left;
}
	
#menuh a:link, #menuh a:visited, #menuh a:active	/* menu at rest */
	{
	color: white;
	/*background-color: #3968ae;*/
	background-image:url(../images/b-menu-out.jpg);
	background-repeat:no-repeat;
	text-decoration:none;	
	}
	
#menuh a:hover						/* menu on mouse-over  */
	{
	color: white;
	background-image:url(../images/b-menu-over.jpg);
	background-repeat:no-repeat;
	text-decoration:none;
	}	



#menuh a.top_parent, #menuh a.top_parent:hover  /* attaches corner image to all parent */
	{
	background-image:url(../images/b-menu-out-corner.jpg);
	background-position: right center;
	background-repeat: no-repeat;
	}
	
#menuh a.parent:link, #menuh a.parent:visited, #menuh a.parent:hover 	/* attaches side-arrow to all parents */
	{
	background-image: url(../images/nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}

#menuh ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	/*width:9em;	 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 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:30px;
	left:0px;
	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;}


/* SUB MENU */
#menuh ul ul li a {
	font-size:11px;
	font-weight:normal;	
	border-top:1px solid #7d94b7;
	border-bottom:1px solid #1d3965;
	padding-top:6px;
	padding-bottom:6px;
	padding-left:12px;
	padding-right:15px;
	text-align:left;
	width:150px;
	padding-top:5px;
	padding-bottom:5px;
	min-width:130px;
	/*width:125px;*/
}
#menuh ul ul ul li a {
	/*width:auto;*/
	border-left:1px solid #7d94b7;
}
#menuh ul ul li a:link, #menuh ul ul li a:visited, ul ul li #menuh a:active	/* menu at rest */
	{
		background-image:none;
	color: white;
	background-color: #274d87;
	text-decoration:none;
	}
	
#menuh ul ul li a:hover						/* menu on mouse-over  */
	{
	background-image:none;
	color: white;
	background-color: #1a3866;
	text-decoration:none;
}
