/* 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		                                 /* position, size, and font of  menu */
{	
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 200px;
	text-align: left;
	font-size: 0.9em;
	font-family: helvetica, arial, geneva, sans-serif;
	margin: 0 0 0 30px;
	padding: 0;
	background-color: #EBEBEB;
	border-left: 1px solid #BFBFBF;
	border-right: 1px solid #BFBFBF;
	border-bottom: 2px solid #E6CEA0;
			
}
#menuv a
{
	padding:5px;
	width: 178px;
	text-align: left;
	font-weight:bold;
	font:1.5em;
	text-decoration:none;
	line-height:2.5;
	padding-top: 0.2em;						/* expands menu box vertically*/
	padding-bottom: 0.2em;
	border-bottom:1px solid #555;		/* adds bottom border */
	white-space:nowrap;
	
}
#menuv li
{
	list-style-type:none;		            /* removes bullets */
	margin:0;
	padding:0;
	width:178px;
	border-bottom: 1px solid #EBEBEB;
}

#menuv ul li
{
	position:relative;
}

#menuv li ul
{
	position: absolute;
	top: 0;
	left: 198px;				                 /* distance from  left menu (this should be the same as width value in #menuv [1]) above */
}

div#menuv ul, #menuv ul ul, div#menuv ul ul ul
{
	margin:0;				               /* keeps the menu parts together */
	padding:0;
	width: 178px;			              /* 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
{
	clear:both;
	display: block;
	margin:0;	
	padding:0;
	width:180px;
	background-color:#D76100;
}
#menuv ul li a
{
	clear:both;
	width:178px;
	background: url(../../images/homepage/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
	display: block;
	padding: 2px 0;
	margin-left:2px;
	padding-left: 19px; /*link text is indented 19px*/
	text-decoration: none;
}

#menuv ul li a:link, a:visited
{
	color:#5995BA;
}

#menuv ul li a.parent
{
	clear:both;
	width:157px;
	background: url(../../images/homepage/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
	display: block;
	padding: 2px 0;
	margin-left:2px;
	padding-left: 19px; /*link text is indented 19px*/
	text-decoration: none;
}
#menuv ul li a.parent:link{
	color:white;
}

#menuv ul li a.parent:visited{
	color:white;
}
#menuv ul li a.parent:hover{ /*hover state CSS*/
	color: #A70303;
	background-color: #A3E3E3;
}	
#menuv li ul.child a:link, #menuv li ul.child a:visited{ /*hover state CSS*/
	color: white;
	background-color: #A3E3E3;
}	


#menuv li ul.child a:hover{ /*hover state CSS*/
	color: #A70303;
	background-color: #A3E3E3;
}	

#menuv li ul.child
	{
	position: absolute;
	top: 0;
	left: 179px;				                 /* distance from  left menu (this should be the same as width value in #menuv [1]) above */
	}
#menuv li ul.child a.leaf
{
	clear:both;
	width:157px;
	background: url(../../images/homepage/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
	display: block;
	padding: 2px 0;
	margin-left:2px;
	padding-left: 19px; /*link text is indented 19px*/
	text-decoration: none;
}
#menuv li ul.child a:hover{ /*hover state CSS*/
	background-color: #A3E3E3;
}	

#menuv ul li a:visited{
	color:#5995BA;
}

#menuv ul li a:hover{ /*hover state CSS*/
	color: #A70303;
	background-color: #A3E3E3;
}	
