/* CSS Popout menuv */

#menucont {
	float: left;
	padding: 37px 0px 0px 0px;
	margin-top:0;
	margin-left: 11px;
	text-align: left;
	width: 216px;
	font-size: 1.1em;
	border: solid 0px orange;
}

* html #menucont { margin-left: 5px; }

/* Fix IE. Hide from IE Mac \*/
* html #menu ul li{float:left;height:1%;}
* html #menu ul li a{height:1%;}
/* End */

#menu {		                                 /* position, size, and font of  menu */
	position:relative;	
	z-index: 10;
	width: 193px;						          /* [1] width of menu item (i.e., box) */
	text-align: right;
	font-size: 1.1em;
	font-family: helvetica, arial, geneva, sans-serif;
	border: solid 0px red;
}

* html #menu { width: 216px; }
	
#menu a, #menu span {
	width: 193px;
	display: block;						
	padding-top: 0.2em;						/* expands menu box vertically*/
	padding-right: 23px;
	padding-bottom: 0.2em;
	white-space: nowrap;
	text-align: right;
	border: solid 0px green;
	}

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

* html #menu a, * html #menu span { width: 216px; }
	
#menu li ul a:link, #menu li ul a:visited, #menu li ul span {
	background-color: #a5a5a5; /*royalblue;*/
	border-bottom: 1px solid #555;	/* adds bottom border */
}

#menu li ul a:hover, #menu li ul span:hover {
	color: white;
	background-color: cornflowerblue;
}

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

#menu a:hover, #menu span:hover {	             /* all menus on mouse-over */
	color: white;
	background-color: cornflowerblue;
	}
	
#menu li
	{
	list-style-type:none;		            /* removes bullets */
	}

#menu ul li
	{
	position:relative;
	}

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

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

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

div#menu ul li:hover ul, div#menu ul ul li:hover ul, div#menu ul ul ul li:hover ul
	{
	display: block;
	}
	
div#menu ul ul a, div#menu ul ul span {
	padding-top: 0.4em;
	padding-bottom: 0.4em;
}
