@charset "utf-8";
/* 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-container { float: left; position: relative; width: 210px; margin: 5px 0 20px; }
#menuv { /* position, size, and font of menu */
	float: left;
	position: relative;
	z-index: 10;
	width: 210px;						          /* [1] width of menu item (i.e., box) */
	text-align: left;
	font-size: 110%;
	font-family: helvetica, arial, geneva, sans-serif;
}
#menuv a {
	width: 195px;
	display: block;
	padding-left: 15px;					
	padding-top: 5px;			/* expands menu box vertically*/
	padding-bottom: 6px;
	border-bottom: 1px solid #cbc3b8;		/* adds bottom border */
	white-space: nowrap;
}
#menuv a, #menuv a:visited { /* all menus at rest */
	color: #756f71;
	background-color: #fff;
	text-decoration: none;				       /* removes underlines from links */
}
#menuv a.parent, #menuv a.parent:hover { /* attaches parent-arrow on all parents */
	background-image: url(../images/navarrow.gif);
	background-position: 195px center;
	background-repeat: no-repeat;
}
#menuv ul li ul li a:link, #menuv ul li ul li a:active, #menuv ul li ul li a:visited { background-color: #f8eff0; }
#menuv a:hover, #menuv a.currentpage, #menuv ul li ul li a:hover { /* all menus on mouse-over */
	color: #760100;
	background-color: #fff4b8;
}
#menuv li {	list-style-type: none; }
#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 li ul li { border-left: solid 1px #cbc3b8; }
div#menuv ul, #menuv ul ul, div#menuv ul ul ul {
	margin:0;				               /* keeps the menu parts together */
	padding:0;
	width: 195px;			              /* 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;	}
