
/* 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 */
	{ 
	position:relativ; 
	top:19em; 
	z-index: 1000; 
	width: 200px;						/* [1] width of menu item (i.e., box) */
	text-align: center; 
	font-size: 0.9em; 
	font-family: helvetica, arial, geneva, sans-serif; 
	background-color: #6b152d; 
	}

#menuv a
	{ 
	width: 100%; 
	display:block; 
	padding-top: 0.2em;						/* expands menu box vertically*/
	padding-bottom: 0.2em; 
	border-bottom:1px solid #9d475f;		/* adds bottom border */
	white-space:nowrap; 
	z-index: 1000; 

	}

#menuv a, #menuv a:visited				/* all menus at rest */
	{
	color: white;
	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;
	border-bottom:1px solid #9d475f;		/* adds bottom border */ 
	background-repeat: no-repeat; 
	}
	
#menuv a:hover				/* all menus on mouse-over */
	{
	color: white;
	background-color: #9d475f;
	}
.menuv-active { color: white; background-color: #9d475f; }
#menuv li
	{
	width: 200px; 
	list-style-type:none;
	z-index: 1000; 
		/* removes bullets */
	}
	
#menuv ul li
	{ 
	position:relative;
	z-index: 1000; 
	}

#menuv li ul
	{ 
	background-color: #6b152d; 
	position: absolute; 
	top: 0; 
	left: 200px;				/* distance from  left menu (this should be the same as width value in #menuv [1]) above */
	display: none;
	z-index: 1000;  
	}

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