/* 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		                                 /* position, size, and font of  menu */
	{
	z-index: 10;
	width: 200px;						          /* [1] width of menu item (i.e., box) */
	text-align: left; 
	left: 19px;
	top: 123px;
	}

#menuv a
	{
	width: 100%;
	display:block; padding-left:5px;						
	padding-top: 3px;						/* expands menu box vertically*/
	padding-bottom: 3px;
	border-bottom:1px solid #555;		/* adds bottom border */
	white-space:nowrap;
	font-weight:bold;
	text-decoration:none; color:#000080;
	font-size: 10px; !important  
	font-family: georgia, arial, helvetica, sans-serif; !important
	}

#menuv a, #menuv a:visited				/* all menus at rest */
	{
	color: #00080;
	background-color: #f8d757;
	font-weight:bold;
	font-size: 10px; !important  
	font-family: georgia, arial, helvetica, sans-serif; !important
	text-decoration:none;				       /* removes underlines from links */
	}

#menuv a.vparent, #menuv a.vparent:hover 	/* attaches parent-arrow on all parents */
	{
	background-position: right center;
	background-repeat: no-repeat; 
	}

#menuv a:hover				             /* all menus on mouse-over */
	{
	color: white; 
	background-color: cornflowerblue;
	}
	
#menuv li
	{
	list-style-type:none; 		            /* removes bullets */
	}

#menuv ul li
	{
	position:relative; z-index: 1;
	}

#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 140px; 			                 /* distance from  left menu (this should be the same as width value in #menuv [1]) above */
	display: none;
	}

div#menuv ul, #menuv ul ul, div#menuv ul ul ul
	{
	margin:0;				               /* keeps the menu parts together */
	padding:0;width: 140px;			              /* width of sub menus  (this should be the same as width value in #menuv [1]) above */
	}

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;width: 240px; 
	}

div#menuv ul li:hover ul, div#menuv ul ul li:hover ul, div#menuv ul ul ul li:hover ul
	{
	display: block; 
	}
