@charset "utf-8";
/* CSS Document */

/* Begin CSS Drop Down Menu */

#menuh-container
{
	position: relative;		
}

#menuh
{
	font-size: 14px;
	font-family: arial, helvetica, sans-serif;
	width:100%;
	float:left;
}
		
#menuh a
{
	text-align: center;
	display:block;
	padding: 0.3em;
}
	
#menuh a:link, #menuh a:visited, #menuh a:active	/* menu at rest */
{
    color: #000077;
	text-decoration:none;	
}
	
#menuh a:hover						/* menu on mouse-over  */
{
	color: #093;
	text-decoration:none;
	
}	
	
#menuh a.top_parent:hover						/* menu on mouse-over  */
{
	color: #093;
	background-image:url(../../images/interface/winter/stars_roll.png);
	background-repeat:no-repeat;
	background-position:center;
	text-decoration:none;
}	
		
	
#menuh #dropstyle a:link, #menuh #dropstyle a:visited, #menuh #dropstyle a:active	/* menu at rest */
{
	color: #093;
	background-color: #bbd8ee;
	text-decoration:none;
	text-align:left;
	border: 1px solid #fff;
}
	
#menuh #dropstyle a:hover						/* menu on mouse-over  */
{
	color: white;
	background-color:#6495ED;
	text-decoration:none;
	text-align:left;
	border: 1px solid #093;
	
}		
	
	
	
	
#menuh a.top_parent, #menuh a.top_parent:hover  /* attaches down-arrow to all top-parents */
{
	padding-top:5px;
	padding-bottom:5px;
}
	
	
#menuh a.parent, #menuh a.parent:hover 	/* attaches side-arrow to all parents */
{
	background-image: url(nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
}

#menuh ul
{
	font-size:16px;
	list-style:none;
	margin:8px 0px 0px 0px;
	
	float:left;
	

	/* width:190px;	 width of all menu boxes */
	padding:0px 20px 0px 0px;	/* Do not add left padding, will offset drop down */
	
	/* padding:0px; */
	/* 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;
	display:none;
	padding: 2px;
	margin:0px 0px 0px 0px;
	/* float:left; */
	top:auto;
	left:0px;
	width:190px;		/* Add width to accomidate more text */
}

#menuh ul ul ul
{
	top:0px;
	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 */

