
/* 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 */
	{	
	z-index: 10;
	width: 150px;						          /* [1] width of menu item (i.e., box) */
/*	text-align: center;*/
	font-size: 12px;
	font-family: tahoma;
	}

#menuv a
	{
	width: 150px;
	display:block;						
	padding: 3px 10px 3px 0;						/* expands menu box vertically*/
	border-bottom:1px dotted #FFF;		/* adds bottom border */
	white-space:nowrap;
	background:url(../images/arrow.gif) no-repeat right;
	}

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

#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: white;
	/*background-color: #4acfef;*/
	}
	
#menuv li
	{
	list-style-type:none;		            /* removes bullets */
	}

#menuv ul li
	{
	position:relative;
	}

#menuv li ul
	{
	position: absolute;
	top: 0;
	right: 160px;				                 /* distance from  left menu (this should be the same as width value in #menuv [1]) above */
	display: none;
	background:url(../images/Menu_Right_Fix.png) center center no-repeat;
	}

#menuv li ul a{background:url(../images/arrow.gif) no-repeat right ;}

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

#myTreeMenu a.nobg{ background-color:#00acda;}

