/* CSS Document */

/* Begin CSS Popout Menu */


#menuh
	{
	font-size: 10pt;
	font-family: "Trebuchet MS";
	width:100%;
	float:left;
	margin:0;
	margin-top: 1px;
	}
		
#menuh a
	{
	font-size: 10pt;
	font-family: "Trebuchet MS";
	text-align: center;
	display:block;
	border: 1px solid #003366;
	white-space:nowrap;
	margin:0;
	padding: 0.2em;
	}
	
#menuh a, #menuh a:visited	/* menu at rest */
	{
	font-size: 10pt;
	font-family: "Trebuchet MS";
	color: white;
	background-color: #00458a;
	text-decoration:none;
	}
	
#menuh a:hover	/* menu at mouse-over  */
	{
	font-size: 10pt;
	font-family: "Trebuchet MS";
	color: white;
	background-color: #00458a;
	background-image: url(p7_cssexpress/p7exp/images/navhover.jpg);
	background-repeat: repeat-x;
	}	
			
#menuh a.top_parent 
	{
	font-size: 10pt;
	font-family: "Trebuchet MS";
	color: white;
	background-image: url(p7_cssexpress/p7exp/images/p7exp_mbar1.jpg);
	background-position: bottom;
	background-repeat: repeat-x;
	background-color: #6699cc;
	}
	#menuh a.top_parent:hover  /* attaches down-arrow to all top-parents */
	{
	font-size: 10pt;
	font-family: "Trebuchet MS";
	color: white;
	background-color: #00458a;
	background-image: url(p7_cssexpress/p7exp/images/navhover.jpg);
	background-repeat: repeat-x;
	}
	
	#menuh ul
	{
	font-size: 10pt;
	font-family: "Trebuchet MS";
	color: white;
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width:150px;	/* width of all menu boxes */
	}

#menuh li
	{
	font-size: 10pt;
	font-family: "Trebuchet MS";
	color: white;
	position:relative;
    min-height: 1px; 	/* Sophie Dennis contribution for IE7 */
    vertical-align: bottom; /* Sophie Dennis contribution for IE7 */
	}

#menuh ul ul
	{
	font-size: 10pt;
	font-family: "Trebuchet MS";
	color: white;
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	padding: 1em;
	margin:-1em 0 0 -1em;
	visibility: visible;
	}

#menuh ul ul ul
	{
	font-size: 10pt;
	font-family: "Trebuchet MS";
	color: white;
	top:0;
	left:100%;
	}

div#menuh li:hover
	{
	font-size: 10pt;
	font-family: "Trebuchet MS";
	color: white;
	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;
	font-family: "Trebuchet MS";
	font-size: 10pt;
}

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;
	font-family: "Trebuchet MS";
	font-size: 10pt;
}


