
<!--A:link 
	     { color: blue; font-size: 10pt; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: normal; text-decoration: none }
	A:visited 
	     { color: blue; font-size: 10pt; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: normal; text-decoration: none }
	A:active 
	    { color: red; font-size: 10pt; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: normal; text-decoration: blink }
	A:hover 
	      { color: red; font-size: 10pt; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: normal; text-decoration: none }
	
	
TD	      { color: #000000; font-size: 10pt; font-family: Verdana, Arial, Helvetica, sans-serif; font-stretch: normal; text-decoration: none }

/* 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:16.5em;
	left:14em;
	z-index: 10;
	width: 8.5em;						/* [1] width of menu item (i.e., box) */
	text-align: left;
	font-size: 0.9em;
	font-family: verdana, arial, helvetica, geneva, sans-serif;
	}

#menuv a
	{
	width: 100%;
	display:block;						
	padding: 0.1em;	
	border: 0px;					/* expands menu box vertically*/
	white-space:nowrap;
	margin: 0;
	}

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

#menuv a:hover				/* all menus on mouse-over */
	{
	color: red;
	background-color: #ffffff;
	}
		
#menuv li
	{
	list-style-type:none;		/* removes bullets */
	}
	
#menuv ul li
	{
	position:relative;
	}

#menuv li ul
	{
	position: absolute;
	top: -0.3em;
	left: 8.5em;				/* 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.3em 0.8em 0.8em 0;				/* keeps the menu parts together */
	padding:0.1em;
	width: 8.5em;			/* 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;
	}
