/* 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 */


#menuv
	{
	width: 8em;					/* width of menuv boxes */
	text-align: left;
	font-size: 1.0em;
	font-family: small arial;
	}

#menuv a
	{
	display:block;
	padding: 0.2em;					/* expands menuv box */
	white-space:nowrap;
	background-color: #5F1212;		/* background color for menu */
	}

#menuv a, #menuv a:visited				/* menuv at rest */
	{
	color: white;						/* color of menu font */
	text-decoration:none;				/* removes underlines from links */
	}

#menuv a.parent, #menuv a.parent:hover 	/* attaches parent-arrow on all parents */
	{
	background-image: url(nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}

#menuv a:hover	/* on mouse over -- all menuvs */
	{
	color: white;						/* color of menu font */
	background-color: #211C63;  /* rollover color for menus */
	}
	
#menuv li
	{
	list-style-type:none;	/* removes bullets */
	}

#menuv ul li
	{
	position:relative;
	}

#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 15em;	/* distance from of left menuvs (should be same as width) */
	display: none;
	}

div#menuv ul, #menuv ul ul, div#menuv ul ul ul
	{
	margin:0;			/* keeps the menuv parts together */
	padding:0;
	width: 15.2em;			/* 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;
	}

