/* 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, #menuv2		/* position, size, and font of  menu */
	{	
/*	position:absolute;	
	top:19em;
	left:6em;
*/
	z-index: 0;
/*	width: 8em;						 [1] width of menu item (i.e., box) */
/*
width: 149px;
*/
width: 131px;
	text-align: left;
	font-size: 0.9em;
	font-family: helvetica, arial, geneva, sans-serif;
	font-weight:bold;
	}

#menuv a, #menuv2 a
	{
	width: 100%;
	display:block;			
padding:3px;
padding-right:8px;
/*	padding-top: 0.2em;						 expands menu box vertically*/
/*	padding-bottom: 0.2em;
/*	border-bottom:1px solid #555;		/* adds bottom border */
border:1px #F0F0F0 solid;
	white-space:nowrap;
	}

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

#menuv a.sub1, #menuv a.sub1:visited, #menuv a.sub1parent	/* sub menus at rest */
	{
	color: white;
	background-color:#383;
	text-decoration:none;				/* removes underlines from links */
	}

#menuv a.sub2, #menuv a.sub2:visited, #menuv a.sub2parent	/* sub menus at rest */
	{
	color: white;
	background-color:#883;
	text-decoration:none;				/* removes underlines from links */
	}

#menuv a.sub3, #menuv a.sub3:visited, #menuv a.sub3parent	/* sub menus at rest */
	{
	color: white;
	background-color:#888;
	text-decoration:none;				/* removes underlines from links */
	}

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

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

#menuv a:hover, #menuv2 a:hover, #menuv a.sub1:hover, #menuv a.sub1parent:hover, #menuv a.sub2parent:hover, #menuv a.sub2:hover, #menuv a.sub3:hover, #menuv a.sub3parent:hover				/* all menus on mouse-over */
	{
	color: white;
	background-color: #6495ED;
	}
		
#menuv li
	{
	list-style-type:none;		/* removes bullets */
	}
	
#menuv ul li
	{
	position:relative;
	}

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

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