@charset "utf-8";
/* CSS Document */
/*
red #bf2b37
blue #004586
*/
#menuh-container
	{
	position: relative;		
	height:24px;
	margin-left:140px;
	margin-top:4px;
	padding-top:1px;
	z-index:850;
	}

#menuh
	{
	font-family: arial, helvetica, sans-serif;
	width:100%;
	float:left;
	}
		
#menuh a
	{
	font-size:16px;
	text-align:center;
	display:block;
	white-space:nowrap;
	margin:0;
	height:24px;
	}
	
#menuh a:link, #menuh a:visited	/* menu at rest */
	{
	color: #ffffff;
	font-size:16px;
	text-decoration:none;
	font-weight:bold;
	}
#menuh a:active {
	font-size:16px;
 	color: #ffffff;
	background-color: #000000;
	text-decoration:none;
 }
	
#menuh a:hover						/* menu on mouse-over  */
	{
	font-size:16px;
	color: #000000;
	background-color: #ffffff;
	text-decoration:none;
	}	
	
#menuh a.top_parent  /* attaches down-arrow to all top-parents */
	{
	color: #004586;
	background-color:transparent;
	font-size:16px;
	margin-left:0px; 
	margin-right:24px;
	padding-top:2px;
	}
#menuh a.top_parent:hover   /* hover */
	{
	color: #000000;
	background-color: #ffffff;
	font-size:16px;
	margin-left:0px; 
	margin-right:24px;
	}
#menuh a.current {
	/*background-color: #eeeeee;*/
	background-image:url(../images/currMenuBG2.png);
	background-repeat:repeat-x;
}

#menuh ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	text-align:center;
	width:140px;	 /*width of all menu boxes 9em*/
	/* 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
	{
	font-size:16px;
	position:relative;
	min-height: 1px;		/* Sophie Dennis contribution for IE7 */
	vertical-align: bottom;		/* Sophie Dennis contribution for IE7 */
	text-align:center;
	}
	
#menuh ul li ul a {
	text-align:left;
	/* added for color changes */
	color: #ffffff;
	background-color: #bf2b37;
}
#menuh ul li ul a:hover {  /* added for mouseover color for sub menu */
	/*text-align:left;*/
	/* added for color changes */
	color: #ffffff;
	background-color: #004586;
}

#menuh ul ul
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	/*padding: 1em;*/
	margin:0;
	/*margin:-1em 0 0 -1em;*/
	background-color:#bf2b37;
	border:1px solid #000000;
	text-align:left;
	}

#menuh ul ul ul
	{
	top:0;
	left:100%;
	margin:0;
	z-index:570;
	text-align:left;
	}
#menuh ul ul ul .moveUp {
	position:relative;
	margin-top:-224px;
}
#menuh ul ul .rightArrow {

}
#menuh ul ul .rightArrow:hover {

}
div#menuh li:hover
	{
	cursor:pointer;
	z-index:100;
	}

div#menuh li li:hover
	{
	cursor:pointer;
	z-index:100;
	color:#3b5186;
	background-color:#000000;
	}

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;}

<!--[if lte IE 7]>
div#menuh li li li li:hover ul ul ul {
	display:none;
	}
<![endif]-->

/* End CSS Drop Down Menu */

