
/* 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 */

/* position, size, and font of the menu */
#menuv {	
/*	border: medium double rgb(255,0,255);  */
	position:absolute;	
	top: 300px;
	left: 14px;
	z-index: 10;
	width: 180px;		/* [1] width of menu item (i.e., box) */
	text-align: center;
	font-size: 12px;	/* was 15px */
	font-family: helvetica, arial, geneva, sans-serif;
}

#menuv a
	{
	width: 100%;
	display:block;						
/* expands menu box vertically */
/*
	padding-top: 0.2em;			
	padding-bottom: 0.2em;
*/
	padding-top: 3px;			
	padding-bottom: 3px;

	border-bottom:1px solid #e8e8e8;		/* adds bottom border */
	border-left: 1px solid #e8e8e8;
	border-right: 1px solid #e8e8e8;
	border-top: 1px solid #e8e8e8;

	white-space:nowrap;
	}

#menuv a, #menuv a:visited				/* all menus at rest */
	{
/*	color: white; 
	background-color: royalblue; */

	color: #555753;
	background-color: white; 
/*
	background: url(button1.jpg) no-repeat;
*/

	text-decoration:none;				       /* removes underlines from links */
	}

#menuv a.parent, #menuv a.parent:hover 	/* attaches parent-arrow on all parents */
	{
	background-image: url(arrow.png);
	background-position: right center;
	background-repeat: no-repeat;
	}

#menuv a:hover				             /* all menus on mouse-over */
	{
/*
	color: white; */
	color: black;
	/* #6fb74b green */
	background-color: #a2baf8;
/*
	background-color: cornflowerblue;
*/
	}
	
#menuv li
	{
	list-style-type:none;		            /* removes bullets */
	}

#menuv ul li
	{
	position:relative;
	}

#menuv li ul {
	position: absolute;
	top: 0;
	left: 180px;	   /* 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: 180px;	/* 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;
	}
