/* 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 */
	{
	z-index: 10;
	width: 11.2em;						          /* [1] width of menu item (i.e., box) */
	text-align: left;
	text-indent: 5px;
	display: block;
	padding-right: 5px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	font-weight: bold;
	padding-left: 0px;
	line-height: 21px;
	margin: 0px;
	padding-top: 5px;
	padding-bottom: 0px;
	}

#menuv a
	{
	width: 100%;
	display:block;
	padding-top: 5px;						/* expands menu box vertically*/
	padding-bottom: 5px;
	white-space:nowrap;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #726B6A;
	list-style-type: circle;
	margin-right: 5px;
	padding-right: 10px;
	color: #FFF;
	}

#menuv a, #menuv a:visited				/* all menus at rest */
	{
	text-decoration:none;				       /* removes underlines from links */
	}

#menuv a.parent, #menuv a.parent:hover 	/* attaches parent-arrow on all parents */
	{
	background-repeat: repeat-x;
	}

#menuv a:hover				             /* all menus on mouse-over */
	{
	color: #FFFFFF;
	background-color: #726B6A;
	filter:alpha(opacity=95);
	opacity:0.90;
	/*position:absolute;*/
	z-index:550;
	}
	
#menuv a.sub 	/* attaches parent-arrow on all children */
	{
	color: #FFFFFF;
	filter:alpha(opacity=95);
	opacity:0.90;
	/*position:absolute;*/
	z-index:550;
	background-color: #657725;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #C8BA97;
	}
	
#menuv a.sub:hover 	/* attaches parent-arrow on all children */
	{
	color: #FFFFFF;
	background-color: #C99D4E;
	filter:alpha(opacity=85);
	opacity:0.85;
	text-decoration: none;
	/*position:absolute;*/
	z-index:550;
	}	
	
#menuv li
	{
	list-style-type:none;		            /* removes bullets */
	}

#menuv ul li
	{
	position:relative;
	}

#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 11.2em;		 /* 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: 11.2em;			              /* 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;
	}
	
#flyout{
	color: #FFFFFF;
}
