/* CSS Popout right */

/* Fix IE. Hide from IE Mac \*/
* html #right ul li{float:left;height:1%;}
* html #right ul li a{height:1%;}
/* End */

#right		/* position, size, and font of  menu */
	{	
	position:absolute;	
	top:240px;
	left:750px;
	z-index: 0;
	width: 12em;						
/* [1] width of menu item (i.e., box) */
	text-align: left;
	font-size: 10pt;
	font-weight:normal;
	font-family: arial,sans-serif;
	
	}

#right a
	{
	width: 150%;
	display:block;						
	padding-top: 0.2em;	
					
/* expands menu box vertically*/
	padding-bottom: 0.2em;
	
	border-bottom:1px hairline brown; padding:5px;
	border-top:1px solid brown; padding:5px;
	




		/* adds bottom border */
	white-space:nowrap;
	}

#right a, #menuv a:visited				/* all menus at rest */
	{
	color:black;
	background-color:none;
	text-decoration:none;				/* removes underlines from links */
	}

#right a.parent, #menuv a.parent:hover 	/* attaches parent-arrow on all parents */
	{
	
	
	background-position: right center;
	background-repeat: no-repeat;
	}

#right a:hover				/* all menus on mouse-over */
	{
	color: black;
	background-color:khaki;
	
	
	}
		
#right li
	{
	list-style-type:none;		/* removes bullets */
	}
	
#right ul li
	{
	position:relative;
	}

#right 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#right ul, #right ul ul, div#right ul ul ul
	{
	margin:0;				/* keeps the menu parts together */
	padding:0;
	width: 12em;			/* width of sub menus  (this should be the same as width value in #menuv [1]) above */
	}

div#right ul ul, div#right ul ul ul, div#right ul li:hover ul ul, div#right ul li:hover ul ul ul
	{
	display: none;
	}

div#right ul li:hover ul, div#right ul ul li:hover ul, div#right ul ul ul li:hover ul
	{
	display: block;
	}