/* CSS Popout menuv */

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

#menuv1		                                 /* position, size, and font of  menu */
	{
	position:absolute;
	top:0px;
	left:-1px;
	z-index: 10;
	width: 17em;						          /* [1] width of menu item (i.e., box) */
	text-align: center;




	font-size: 1.em;
	font-family: helvetica, arial, geneva, sans-serif;
	}

#menuv1 a
	{
	width: 100%;
	display:block;
	padding-top: 0.4em;						/* expands menu box vertically*/
	padding-bottom: 0.4em;
	padding-left: 1.2em;		/* adds bottom border */
	white-space:nowrap;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	}

#menuv1 a, #menuv a:visited				/* all menus at rest */
	{
	color: #0099CC;
	background-color: #EEEEEE;
	text-decoration:none;				       /* removes underlines from links */
	}

#menuv1 a.parent, #menuv a.parent:hover 	/* attaches parent-arrow on all parents */
	{
	background-image: url(nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}

#menuv1 a:hover				             /* all menus on mouse-over */
	{
	color: white;
	background-color: #A7C6E2;
	}
	
#menuv1 li
	{
	list-style-type:none;		            /* removes bullets */
	width: 17em;
	}

#menuv1 ul li
	{
	position:relative;
	}

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

div#menuv1 ul, #menuv ul ul, div#menuv ul ul ul
	{
	margin:0;				               /* keeps the menu parts together */
	padding:0;
	width: 17em;			              /* width of sub menus  (this should be the same as width value in #menuv [1]) above */
	}

div#menuv1 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#menuv1 ul li:hover ul, div#menuv ul ul li:hover ul, div#menuv ul ul ul li:hover ul
	{
	display: block;
	}
