/* 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 */
	{
	display: block;
	padding: 0px;
	float: left;
	text-align: left;
	text-indent: 5px;
	margin: 0px;
	font: normal small Geneva, Arial, Helvetica, sans-serif;
	}

#menuv a
	{
	width: 155px;
	display:block;
	white-space:nowrap;
	background: #3C547D;
	padding-top: 5px;
	padding-bottom: 5px;
	}

#menuv a, #menuv a:visited				/* all menus at rest */
	{
	color: #ffffff;
	text-decoration:none;
	
	}

#menuv a.parent, #menuv a.parent:hover 	/* attaches parent-arrow on all parents */
	{
	background-position: right center;
	background-repeat: no-repeat;
	}
	
#menuv a.child, #menuv a.child:hover 	/* attaches parent-arrow on all parents */
	{
	background: #00FFFF no-repeat right center;
	}	

#menuv a:hover				             /* all menus on mouse-over */
	{
	color: #243942;
	}
	
#menuv li
	{
	list-style-type:none;		            /* removes bullets */
	}

#menuv ul li
	{
	position:relative;
	}

#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 155px;				                 /* 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: 155px;			              /* 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;
	}
