/* CSS Popout menuv */

/* Fix IE. Hide from IE Mac \*/
* html #menuv ul li{float:left;height:12px;}
* html #menuv ul li a{height:12px;}
/* End */

#menuv		                                 /* position, size, and font of  menu */
	{	
	position:relative;	
	top: 5px;
	z-index: 10;
	width:115px;						          /* [1] width of menu item (i.e., box) */
	text-align: left;
	font-size:11px;
	font-weight:bold;
	font-family: Verdana,Tahoma, Arial,sans-serif;
	}

#menuv a
	{
	display:block;
	text-decoration: none;
	width: 115px;
	display:block;						
	padding-top: 0.2em;						/* expands menu box vertically*/
	padding-bottom: 0.2em;
	background-image:url(../images/man-icon.gif);	
	background-repeat:no-repeat;
	border-bottom:0px solid #555;		/* adds bottom border */
	white-space:nowrap;

	padding: 0.3em 0.6em 0.2em 1.8em;
	border: 1px solid #ccc; /* IE6 Bug */
	border-bottom: 0;
	font-weight: normal;
	height: 1.3em;
	}

#menuv a, #menuv a:visited				/* all menus at rest */
	{
	color: black;
	background-color: rgb(255,255,255);
	text-decoration:none;				       /* removes underlines from links */
	}

#menuv a.parent, #menuv a.parent:hover 	/* attaches parent-arrow on all parents */
	{
	border-left: solid 0.5em rgb(175,175,175);
	text-decoration: none;
	background-image:url(../images/man-icon_over.gif);
	background-repeat:no-repeat;
	vertical-align:text-bottom;
	font-size: 11px;
	color:#FF0000;	
	}

#menuv a:hover				             /* all menus on mouse-over */
	{
	border-left: solid 5px rgb(175,175,175);
	text-decoration: none;	
	color:#FF0000;	
	background-color: rgb(255,255,255);
	width: 111px;	
	}
	
#menuv li
	{
	list-style-type:none;		            /* removes bullets */
	}

#menuv ul li
	{
	position:relative;
	}

#menuv li ul
	{
	left:143px;
	position: absolute;
	top: 0;
				                 /* 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: 118px;			              /* 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;
	}

