/* 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: 165px; /* [1] width of menu item (i.e., box) */
	text-align: left;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	float: left;
	position: relative;
	font-weight: bold;
	padding-top: 10px;
	padding-left: 10px;
	}

#menuv a
	{
	width: 100%;
	display:block;
	padding-top: 5px;	/* expands menu box vertically*/
	padding-bottom: 5px;
	white-space:nowrap;
	padding-left: 5px;
	}

#menuv a, #menuv a:visited	/* all menus at rest */
	{
	color: #1c8e49; /* green color */
	text-decoration:none;  /* removes underlines from links */
	}
	
#menuv ul li ul li a:visited /* this is for visited flyouts second and third tier */
	{
	color: #1c8e49; /* white text color */
	text-decoration:none; /* removes underlines from links */
	}
	
#menuv a.parent
	{
	color: #1c8e49; /* green text on secondary links */
	/*background-color: #ffffff; /* white background on secondary links */
	/*filter:alpha(opacity=90);
	opacity:0.85;*/
	/*position:absolute;*/
	z-index:550;
	}
	
	
#menuv a.parent:hover	/* attaches parent-arrow on all parents */
	{
	color: #0082c8; /*blue text on hover for secondary links */
	background-color: #ebf4fb; /* on hover color for secondary links */
	/*filter:alpha(opacity=90);
	opacity:0.90;*/
	text-decoration: none;
	/*position:absolute;*/
	z-index:550;
	}	

#menuv a:hover /* all menus on mouse-over */
	{
	color: #0082c8; /* blue text on hover first level of links */
	background-color: #ebf4fb; /* light blue background on hover first level of links */
	text-decoration:none;
	/*filter:alpha(opacity=90);
	opacity:0.85;*/
	/*position:absolute;*/
	z-index:550;
	
	}
	
#menuv a.sub /* attaches parent-arrow on all children */
	{
	color: #1c8e49; /* green text on secondary links */
	background-color: #ffffff; /* white background on secondary links */
	/*filter:alpha(opacity=90);
	opacity:0.85;*/
	/*position:absolute;*/
	z-index:550;
	border: 1px solid #CCC;
	}
	
#menuv a.sub:hover 	/* attaches parent-arrow on all children */
	{
	color: #0082c8; /*blue text on hover for secondary links */
	background-color: #ebf4fb; /* on hover color for secondary links */
	/*filter:alpha(opacity=90);
	opacity:0.90;*/
	text-decoration: none;
	/*position:absolute;*/
	z-index:550;
	border: 1px solid #CCC;
	}	
	
#menuv a.subarrowparent /* attaches parent-arrow on all children */
	{
	color: #1c8e49; /* green text on secondary links */
	/*background-color: #ffffff; /* white background on secondary links */
	/*filter:alpha(opacity=90);
	opacity:0.85;*/
	/*position:absolute;*/
	z-index:550;
	background-image: url(../images/bluearrow.gif);
	background-repeat: no-repeat;
	background-position: 160px 10px;
	
	}
	
#menuv a.subarrowparent:hover 	/* attaches parent-arrow on all children */
	{
	color: #0082c8; /*blue text on hover for secondary links */
	background-color: #ebf4fb; /* on hover color for secondary links */
	/*filter:alpha(opacity=90);
	opacity:0.90;*/
	text-decoration: none;
	/*position:absolute;*/
	z-index:550;
	background-image: url(../images/bluearrow.gif);
	background-repeat: no-repeat;
	background-position: 160px 10px;
	
	}	

#menuv a.subarrow /* attaches parent-arrow on all children */
	{
	color: #1c8e49; /* green text on secondary links */
	background-color: #ffffff; /* white background on secondary links */
	/*filter:alpha(opacity=90);
	opacity:0.85;*/
	/*position:absolute;*/
	z-index:550;
	background-image: url(../images/bluearrow.gif);
	background-repeat: no-repeat;
	background-position: 160px 10px;
	border: 1px solid #CCC;
	}
	
#menuv a.subarrow:hover 	/* attaches parent-arrow on all children */
	{
	color: #0082c8; /*blue text on hover for secondary links */
	background-color: #ebf4fb; /* on hover color for secondary links */
	/*filter:alpha(opacity=90);
	opacity:0.90;*/
	text-decoration: none;
	/*position:absolute;*/
	z-index:550;
	background-image: url(../images/bluearrow.gif);
	background-repeat: no-repeat;
	background-position: 160px 10px;
	border: 1px solid #CCC;
	}	



	
	
#menuv li
	{
	list-style-type:none; /* removes bullets */
	}

#menuv ul li
	{
	position:relative;
	}

#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 178px;	 /* 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: 0px; /* keeps the menu parts together */
	padding: 0px;
	width: 173px;
	line-height: 16px;
	/* 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: #000000;
	
}
