
/* 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 */

/******************
*
*******************/
.diffmenu h4 { 
	border:1px solid #682067;
	background:url(../img/titlebg.jpg) top left repeat-x #682067;
	color:white;
	padding: 0.2em 0.2em 0.2em 0.2em;
	margin:2px 1px 3px 1px;
}

#menuv		                                 /* position, size, and font of  menu */
	{	
	position:absolute;	
	top:9.5em;
	left:3px;
	z-index: 10;
	width: 164px;						          /* [1] width of menu item (i.e., box) */
	text-align: left;
	font-family: helvetica, arial, geneva, sans-serif;
	border:1px solid #dedede; 
	}

#menuv a
	{
	width: 100%;
	display:block;		
	height:auto;
	padding:0.6em 0.4em 0.6em 0.4em;
	border-bottom:1px solid #555;		/* adds bottom border */
	}

#menuv a, #menuv a:visited				/* all menus at rest */
	{
	color: white;
	background-color: royalblue;
	text-decoration:none;				       /* removes underlines from links */
	background:url(../img/leftcols/menu_bg.jpg) repeat-x bottom left #6b9fb2;
	border:1px solid #cecece;
	margin-top:0px;
	font-weight:bold;
	}

#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: cornflowerblue;
	}
	
#menuv li
	{
	list-style-type:none;		            /* removes bullets */
	}

#menuv ul li
	{
	position:relative;
	}

#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 161px;				                 /* 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: 150px;			              /* width of sub menus  (this should be the same as width value in #menuv [1]) above */
	height:auto;
	font-size:12px;
	}

div#menuv ul
	{
		margin-left:1px; 
		margin-bottom:6px;
	}
	
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;
	}
