
/* 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 */
	{	
	position: relative;	
	top: 5px;
	left: 0em;
	z-index: 10;
	width: 125px;						          /* [1] width of menu item (i.e., box) */
	text-align: left;
	font-size: small;
	font-family: helvetica, arial, geneva, sans-serif;
	}

#menuv a
	{
	width: 125px;
	display: block;
	padding: 0em;
	padding-left: 0.4em;						/* expands menu box vertically*/
	white-space: normal;
	font-weight:bold;
	}

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

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

#menuv a.parent:hover {background-image: url(../images/arw_blu_r.gif);}

#menuv a:hover				             /* all menus on mouse-over */
	{
	color: #000;
	border: 1px solid #9494B1;		/* adds bottom border */
	border-top: none;
	background-color: #F5F3FE;
	}
	
#menuv li a:hover
	{
	background-color: #f3f3f3;
	}
	
#menuv li
	{
	list-style-type: none;		            /* removes bullets */
	}

#menuv ul li
	{
	position: relative;
	}

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

#menuv li ul a, #menuv li ul a:visited
	{
	color: #000;
	background-color: #F5F3FE;
	border: 1px solid #9494B1;
	border-top: none;
	}

#menuv li ul a:hover {background-color: #D0D7F4}

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

#menuv ul ul a {width: 150px;}

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 li ul a.firstrw {border-top: 1px solid #9494B1;}