/* 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 {	
	width: 194px;						          /* [1] width of menu item (i.e., box) */
	font-size: 12px;
	margin: 0 0 0 7px;
	padding: 8px 0;
	}
#menuv li {
	list-style-type:none;		            /* removes bullets */
}

#menuv a {
	width: 194px;
	display:block;			
	padding: 4px 8px;
	border-bottom:1px solid #f0eee1;		/* adds bottom border */
}

#menuv a, #menuv a:visited {
	color: #02254e;
	text-decoration:none;				      
}
#menuv a.parent 	/* attaches parent-arrow on all parents */
	{
	background-image: url(../images/bg_sub.jpg);
	background-position: right center;
	background-repeat: no-repeat;
	}

#menuv a.parent:hover 	/* attaches parent-arrow on all parents */
	{
	background-image: url(../images/bg_sub_active.jpg);
	background-position: right center;
	background-repeat: no-repeat;
	}

#menuv a:hover				             /* all menus on mouse-over */
	{
	color: white;
	background-color: #67aa0d;
	}
	

#menuv ul li
	{
	position:relative;
	}

#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 210px;				                 /* distance from  left menu (this should be the same as width value in #menuv [1]) above */
	display: none;
	}

#menuv ul ul, div#menuv ul ul ul
	{
	margin:0;				               /* keeps the menu parts together */
	padding:0;
	width: 224px;			              /* 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;
	}
#menuv li ul li a {
	background: url(../images/bg_menuhover.png) repeat;
	behavior: url(iepngfix.htc);
	border-bottom: none;
}
#menuv ul li h1 {
	font-weight:normal;
	margin: 0;
	padding: 0;
}
