/* position, size, and font of  menu */
#menuv		                                 
	   { position: relative;
             left: 10px;
             top: 40px;
             width: 6em;					/* [1] width of menu item (i.e., box) */
             text-align: left;
             font-size: 0.9em;
             font-family: georgia, times, "times new roman", serif; }
             
            
#menuv a     
	   { width: 100%;
	     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; }


/* all menus at rest */
#menuv a, #menuv a:visited				
	   { color: white;
	     background-color: black;
	     text-decoration:none; }				/* removes underlines from links */
/* 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 */



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


/* all menus on mouse-over */
#menuv a:hover
           { color: black;
             background-color: yellow; }
	

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

#menuv ul li
	   { position:relative; }


#menuv li ul
	   { position: absolute;
	     top: 0;
	     left: 6em;				               /* distance from  left menu (this should be the same as width value in #menuv [1]) above */
	     display: none; }


div#menuv ul, #menuv ul ul, div#menuv ul ul ul
	   { margin:0;				               /* keeps the menu parts together */
	     padding:0;
             width: 6em; }			               /* 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, div#menuv ul ul ul li:hover ul
	   { display: block; }