
/* 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:relative;	/*came out of the can with absolute positioning top:10em;
	left:5em;*/
	left:1em;
	z-index: 10;
	width: 9em;						/* [1] width of menu item (i.e., box) */
	text-align: center;
	}

#menuv a
	{
	width: 100%;
	display:block;						
	padding-top: 0.1em;						/* expands menu box vertically*/
	padding-bottom: 0.1em;
	border-bottom:0px solid #555;		/* adds bottom border */
	white-space:nowrap;
	border: 0px solid #000;/*roger added*/
	}

#menuv a, #menuv a:visited				/* all menus at rest */
	{
	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:  #928575;
	background-color:#cac5c1;
	}
		
#menuv li
	{
	list-style-type:none;		/* removes bullets */
	}
	
#menuv ul li
	{
	position:relative;
	padding-top: .3em;/*roger added to align second tier with main tier*/
	}
	
#menuv ul li ul li a
	{
	padding: 0em 0 .2em 0; /*Roger added to make 2nd tier boxes even with 1st.*/
	font-size: .9em;/* was 1.2 this keeps the 2nd tier 'a' the same font size as the 1st tier li*/
	text-align: left;/*Roger added*/
	}

div#menuv ul, #menuv ul ul, div#menuv ul ul ul
	{
	margin:0;	/* keeps the menu parts together */
	padding:0;
	width: 9em;	/* width of sub menus  (this should be the same as width value in #menuv [1]) above */
	border: 0px solid #000;
	}
	
	#menuv li ul /*Second tier ul*/
	{
	position: absolute;
	top: 0;
	left: 10em;	/* distance from  left menu (should be same as width value in #menuv [1]) above */
	display: none;
	background: #cac5c1;
	border: 0px solid #000;
	width: 16em;/*was 11em*/
	margin-top: .3em;/*align 1st and 2nd tier ul boxes*/
	padding-left: 2em;/*roger added...gives some space.
	}
	
	#menuv li ul li {font-size: .8em;}

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;
	text-align: left; /*roger added*/
	}

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