/* CSS Popout menuv */

/* Fix IE. Hide from IE Mac \*/
* html #menuv ul li{
	float:left;
	height:1%;
	color: #333;
}
* html #menuv ul li a{
	height:1%;
}
/* End */

#menuv		/* position, size, and font of  menu */
	{
	position:absolute;
	z-index: 10;
	width: 227px;						/* [1] width of menu item (i.e., box) */
	text-align: left;
	font-size: small;
	font-family: helvetica, arial, geneva, sans-serif;
	text-indent: 15px;
	font-weight: bold;
	
	
	}

#menuv a
	{
	width: 100%;
	display:block;
	padding-top: 0.4em;						/* expands menu box vertically*/
	padding-bottom: 0.4em;		/* adds bottom border */
	white-space:nowrap;
	text-decoration:none;
	background-color: #C60B46;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #9B0938;
	}


#menuv a.parent, #menuv a.parent:hover 	/* attaches parent-arrow on all parents */
	{
	background-image: url(../images/bread.gif);
	background-position: right center;
	background-repeat: repeat-x;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CFCFCF;
	color: #000000;
	}

#menuv a:hover				/* all menus on mouse-over */
	{
	color: #FFF;
	background-color: #434D3E;
	}
		
#menuv li
	{
	list-style-type:none;
	}
	
#menuv ul li
	{
	position:relative;
	}
	


#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 227px;				/* distance from  left menu (this should be the same as width value in #menuv [1]) above */
	display: none;
	color: #FFF;
	}

div#menuv ul, #menuv ul ul, div#menuv ul ul ul
	{
	margin:0;				/* keeps the menu parts together */
	padding:0;
	width: 227px;			/* 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;
	}
	
.parent	
	{
	color: #434D3E;
	}	
	
.sub	
	{
	color: #FFFFFF;
	}		