@charset "utf-8";
/* CSS Document */

/* 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 {
	position:relative;
	text-align:left;
	width: auto;
	height:227px;
	z-index: 999;
	background:#6B717A;
}

#menuv
	{
	position:absolute;				/* position, size, and text of the menuv */
	top:0;
	left:0;
	z-index: 1000;
	width:227px;					/* width of menuv boxes */
	text-align:left;
	font-size: 12px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color:#000;
	line-height: 14px;

	}

#menuv a
	{
	display:block;
	width: 198px;
	padding:3px 5px 5px 24px;					/* expands menuv box */
	border-bottom:1px solid #43474d;
	}

#menuv a, #menuv a:visited				/* menuv at rest */
	{
	color:#fff;
	font-size: 12px;
	background:url(../images/cat_arrow.gif) 8px center no-repeat #6b717a;
	text-decoration:none;				/* removes underlines from links */
	}

#menuv a.parent 	/* attaches parent-arrow on all parents */
	{
	display:block;
	/* background-image: url(../images/nav_bordaeux.gif);
	background-position: right center;
	background-repeat: no-repeat; */
	}

#menuv a.parent:hover
	{
	/* background-image: url(../images/nav_ccc.gif);
	background-position: right center;
	background-repeat: no-repeat; */
	}
#menuv a:hover	/* on mouse over -- all menuvs */
	{
	color:#fff;
	background-color:#43474d;
	}

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

#menuv ul li
	{
	position:relative;
	}

#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 227px;	/* distance from of left menuvs (should be same as width) */
	display: none;
	}

div#menuv ul, #menuv ul ul, div#menuv ul ul ul
	{
	margin:0;			/* keeps the menuv parts together */
	padding:0;
	width:227px;			/* width of sub menuvs */
	}

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;
	}

