/* CSS Popout menuv */

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

#menuv2		                                 /* position, size, and font of  menu */
	{	
	position:relative;
	top:301px;
	z-index: 10;
	width: 137px;						          /* [1] width of menu item (i.e., box) */
	text-align: left;
	border-bottom: 1px none;
	font-size:11px;
	font-family: helvetica, arial, geneva, sans-serif;
	}

#menuv2 a
	{
	width: 100%;
	display: block;						
	padding-top: 3px;
	padding-left: 3px;
	padding-bottom: 3px;
	border-bottom: 1px solid #fff;		/* adds bottom border */
	white-space:nowrap;
	}

#menuv2 a, #menuv2 a:visited				/* all menus at rest */
	{
	color: #FFFFFF;
	background-color: #006699;
	text-decoration:none;				       /* removes underlines from links */
	}

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

#menuv2 a:hover				             /* all menus on mouse-over */
	{
	color: white;
	background-color: #0066FF;
	}
	
#menuv2 li
	{
	list-style-type:none;		            /* removes bullets */
	}

#menuv2 ul li
	{
	position:relative;
	}

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

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

div#menuv2 ul ul, div#menuv2 ul ul ul, div#menuv2 ul li:hover ul ul, div#menuv2 ul li:hover ul ul ul
	{
	display: none;
	}

div#menuv2 ul li:hover ul, div#menuv2 ul ul li:hover ul, div#menuv2ul ul ul li:hover ul
	{
	display: block;
	}