
/* 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 */
	{ font-size: 14px; font-family: arial, helvetica, sans-serif; width:100%; float:left; margin-top: 2px; margin-right: 0em; margin-bottom: 2em; margin-left: 0em; 	}

#menuv a
	{
	width:100%;;
	text-align: left;
	display:block;
	border-bottom:1px solid #ccc;
	white-space:nowrap;
	margin:0;
	margin-left:5px;
	padding: 0.3em;
	}

#menuv a, #menuv a:visited				/* all menus at rest */
	{
	color: #333;
	background-color: #f1f2f4;
	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				             /* all menus on mouse-over */
	{
	color: #668ba5;
	}
	
#menuv li
	{
	list-style-type:none;
	            /* removes bullets */
	}

#menuv ul li
	{
	position:relative;
	}

#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 11.3em;		                 /* 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
	{
list-style:none;
	margin:0;
	padding:0;
	float:left;
	width:10.6em;	}

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;
	}
