/* 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 */
	{	
	position:relative;	
	top:0px;
	left:0px;
	z-index: 1000;
	width: 160px;
	text-align: left;
	font-family: helvetica, arial, geneva, sans-serif;	
	TEXT-INDENT: 8px! important; 
	}

#menuv a
	{
	width: 100%;
	display:block;						
	padding-top: 0.2em;						/* expands menu box vertically*/
	padding-bottom: 0.2em;
	border-bottom:1px solid #555;		/* adds bottom border */
	white-space:nowrap;
	}

#menuv a, #menuv a:visited				/* all menus at rest */
	{
	color: white;
	background: url('../img/MenuItemHover.gif');
	text-decoration:none;			       /* removes underlines from links */
	}
#menuv a.nonparent
{
	color: white;
	background: url('../img/MenuItemTile.jpg');
	background-repeat: repeat-x;
}
#menuv a.nonparent:hover
{
	color: Yellow;
	background: url('../img/MenuItemTileHover.gif');
	background-repeat: repeat-x;
}

#menuv a.parent
	{
	background: url('../img/MenuItemArrow.gif');
	text-decoration:none;
}

#menuv a.parent:hover 	
	{
	background: url('../img/MenuItemTileHoverArrow.gif');
	text-decoration:none;
	color:Yellow;
}

#menuv a:hover				             /* all menus on mouse-over */
	{
	color: Yellow;
	background: url('../img/MenuItemHover.gif');
	text-decoration:none;
	}
	
#menuv li
	{
	list-style-type:none;		            /* removes bullets */
	}

#menuv ul li
	{
	position:relative;
	}

#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 160px;				                 /* 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: 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;
	z-index:1000;
	}

