
/* CSS Popout menuv */

/* Fix IE. Hide from IE Mac \*/
* html #menuv ul li{float:left;height:48px;}
/** html #menuv ul li a{height:43px;}*/
/* End */

#menuv		/* position, size, and font of  menu */
	{	
/*	position:absolute;	
	top:19em;
	left:6em;*/
	z-index: 10;
/*	width: 8em;						 [1] width of menu item (i.e., box) 
	text-align: center;
	font-size: 0.9em;
	font-family: helvetica, arial, geneva, sans-serif;*/
	}

#menuv a
	{
	width: 151px;
	display:block;						
/*	padding-top: 0.2em;						 expands menu box vertically
	padding-bottom: 0.2em;
	border-bottom:1px solid #555;		 adds bottom border */
	/*white-space:nowrap;*/
	}

#menuv a, #menuv a:visited				/* all menus at rest */
	{
/*	color: white;
	background-color: royalblue;
	text-decoration:none;				 removes underlines from links */
	}

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

#menuv a:hover				/* all menus on mouse-over */
	{
/*	color: white;*/
/*	background-color: cornflowerblue;*/
	}
		
#menuv li
	{
	list-style-type:none;		/* removes bullets */
	}
	
#menuv ul li
	{
	position:relative;
	}
	
#menuv li ul
	{
	position: absolute;
	top: 0;
	left: 190px;				/* distance from  left menu (this should be the same as width value in #menuv [1]) above */
	display: none;
	 border-left: 1px solid #f3f9fe;
	}

div#menuv ul, #menuv ul ul
	{
	margin:0;				/* keeps the menu parts together */
	padding:0;
	width: 190px;			/* width of sub menus  (this should be the same as width value in #menuv [1]) above */
	}

div#menuv ul ul, div#menuv ul li:hover ul ul
	{
	display: none;
	}

div#menuv ul ul li:hover ul
	{
	display: block;
	}
	
	div#menuv ul li:hover ul
	{
	display: block;
   	}
	
		div#menuv ul ul li
		{

background-image: none;
height: 31px;
padding: 0;
margin: 0;

	}
	
		div#menuv ul ul li a
		{
	padding: 7px 0 0 15px;
	margin:0 0 -1px 0;
		background-color: #ff9600;
	width: 200px;
 border-bottom: 1px solid #f3f9fe;

	}
	
	div#menuv ul ul li a:hover
		{
	display: block;
	background-color: #b06800;
	background-image: none;
	text-align: left;
	color: #fff;
	}

	
