@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:210px;
	z-index: 999;
}

#menuv
	{
	position:absolute;				/* position, size, and text of the menuv */
	top:0;
	left:0;
	z-index: 1000;
	width:180px;					/* width of menuv boxes */
	text-align:left;
	font-size: 11px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color:#333;
	
	}

#menuv a
	{
	display:block;
	width: 151px;
	padding:3px 25px 5px 13px;					/* expands menuv box */
	border-bottom:1px solid #d5d5d5;
	}

#menuv a, #menuv a:visited				/* menuv at rest */
	{
	color:#333;
	font-size: 11px;
	background-color:#f7f7f7;
	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;
	width:151px;
	}
	
#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:#000;
	background-color:#FFF;
	}
	
#menuv li
	{
	list-style-type:none;	/* removes bullets */
	}

#menuv ul li
	{
	position:relative;
	}

#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 180px;	/* 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:180px;			/* 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;
	}
	