/* CSS Popout menuv */

/* Fix IE. Hide from IE Mac \*/
* html #menuv ul li{float:left;height:1%;}
* html #menuv ul li a{height:1%;}
/* End */

body
	{
	margin: 0;
	padding: 0;
	color: white;
	font-size: 100.01%;
	}

#menuv
	{
	width: 10em;					/* width of menuv boxes */
	text-align: left;
	font-size: 9pt;
	font-family: Arial, Helvetica, sans-serif;
	text-decoration: none;
	background-color: #FFFFFF;
	}


#menuv a
	{
	display:block;
	padding: 0.2em;
	white-space:nowrap;
	text-decoration: none;
	}

#menuv a, #menuv a:visited				/* menuv at rest */
	{
	color: red;
	background-color: white;
	text-decoration:none;				/* removes underlines from links */
	}



#menuv a.parent, #menuv a.parent:hover 	/* attaches parent-arrow on all parents */
	{
	background-position: right center;
	background-repeat: no-repeat;
	text-decoration: none;
	color: #FFFFFF;
	}

#menuv a:hover	/* on mouse over -- all menuvs */
	{
	color: white;
	background-color: red;
	text-decoration: none;
	}
	
#menuv li
	{
	list-style-type:none;	/* removes bullets */
	}
	
#menuv li a:hover
	{
	color: #FFFFFF;
	}

#menuv ul li
	{
	position:relative;
	}

#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 10em;	/* distance from of left menuvs (should be same as width) */
	display: none;
	z-index: 100;
	}

div#menuv ul, #menuv ul ul, div#menuv ul ul ul
	{
	margin:0;			/* keeps the menuv parts together */
	padding:0;
	width: 10em;			/* width of sub menuvs */
	}

div#menuv ul ul, div#menuv ul ul ul, div#menuv ul li:hover ul ul, div#menuv ul li:hover ul ul ul
	{
	display: none;
	}

div#menuv ul li:hover ul, div#menuv ul ul li:hover ul, div#menuv ul ul ul li:hover ul
	{
	display: block;
	color: #FFFFFF;
	}
#menuv a:hover {
}
