/* CSS Popout menuv */

#menuv		/* position, size, and font of  menu 	;
*/
	{	
	position:relative;	
	top:0em;
	left:0em;
	width: 14.2em;						          /* [1] width of menu item (i.e., box) */
	text-align: left;
	font-size: 0.8em;
  font-family: arial, geneva, sans-serif;
  font-style:bold;
	}

#menuv a
	{
	width: 100%;
	display:block;						
	padding-top: 0.2em;						/* expands menu box vertically*/
	padding-bottom: 0.2em;
  padding-right: 0.8em;
  padding-left: 0.2em;
	border-bottom:1px solid #fff;		/* adds bottom border */
  border-right:2px solid #fff;
	border-left:2px solid #fff;
  border-top:1px solid #fff;
  white-space:nowrap;
	}

#menuv a 			/* #menuv a:visited	all menus at rest */
	{
	color: white;
	background-color: #336699;
	text-decoration:none;				       /* removes underlines from links */
	}

/*#menuv a:visited{
	color: #990000;
	background-color: #BBD1E8;
	text-decoration:none;				       
}*/
#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, #menuv a.child1:hover	, #menuv a.child2:hover	, #menuv a.child3:hover		             /* all menus on mouse-over */
	{
	color: #990000;
	background-color: #BBD1E8;
	}

  #menuv a.child1           /* all menus on mouse-over */
	{
	color: white;
	background-color: #3A76B1;
	}
  #menuv a.child2           /* all menus on mouse-over */
	{
	color: white;
	background-color: #6599CD;
	}
  #menuv a.child3           /* all menus on mouse-over */
	{
	color: white;
	background-color: #9DBEDF;
	}

#menuv li
	{
	list-style-type:none;		            /* removes bullets */
	}

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

#menuv li ul
	{
	position: absolute;
  top: 0;
	left: 14em;				                 /* 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: 13em;			              /* 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;
	}

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