
/* 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 */
	            { color: white; font-size: 0.8em; font-family: "Lucida Grande", Verdana, sans-serif; background-color: #1b3f6f; text-align: left; z-index: 10; top: 130px; left: 0; width: 130px }

#menuv a
	 { text-align: left; white-space: nowrap; display: block; padding-top: 0.2em; padding-bottom: 0.2em; padding-left: 0.5em; width: 100%; border-bottom: 1px solid #555 }

#menuv a, #menuv a:visited				/* all menus at rest */
	   { color: white; text-decoration: none; background-color: #1b3f6f }

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

#menuv a:hover				             /* all menus on mouse-over */
	  { color: black; background-color: #fc0 }
	
#menuv li
	  { list-style-type: none; width: 150px }

#menuv ul li
	    { position: relative; left: 0; width: 150px }

#menuv li ul
	   { display: none; position: absolute; top: 0; left: 155px }

div#menuv ul, #menuv ul ul, div#menuv ul ul ul
	{
	margin:0;				               /* keeps the menu parts together */
	padding:0;
	width: 8em;			              /* 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;
	}
#menuv  ul li a:link#current { background-color: red }
