/* CSS Popout menuv */

/* Fix IE. Hide from IE Mac \*/
* html #menu ul li{float:left;height:1%;}
* html #menu ul li a{height:1%;}
/* End */


#menu
	{
	line-height:normal;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	display: block;
	width: 850px;
	margin-right: auto;
	margin-left: 200px;
	}
		
#menu a
	{
	text-align: left;
	display:block;
	white-space:nowrap;
	padding-top: 0.3em;
	padding-right: 0.9em;
	padding-bottom: 0.3em;
	padding-left: 0.9em;
	margin-top: 0;
	margin-right: 2;
	margin-bottom: 0;
	margin-left: 2;
	}

#menu a:hover span, #menu a.selected span {
	background-position:100% -38px;
}
	
#menu a:link, #menu a:visited, #menu a:active	/* menu at rest */
	{
	color: #FFF;
	background-color: #00549E;
	text-decoration:none;
	}
	
#menu a:hover						/* menu on mouse-over  */
	{
	color: #FFF;
	background-color: #F83418;
	text-decoration:none;
	}	
	
#menu a.parent  /* attaches down-arrow to all top-parents */
	{
	text-align: center;
	font-weight: bold;
	background-image: url(../images/navbg.gif);
	width: 100%;
	background-position: 5 top;
	background-repeat: repeat-x;
	}
	
#menu a.parent:hover 	/* attaches side-arrow to all parents */
	{
	text-align: center;
	font-weight: bold;
	color: #F93;
	}

#menu ul
	{
	list-style:none;
	margin:0;
	float:left;	/* width of all menu boxes */	/* NOTE: For adjustable menu boxes you can comment out the above width rule.
	However, you will have to add padding in the "#menh a" rule so that the menu boxes
	will have space on either side of the text -- try it */
	padding-top: 0;
	padding-right: .3em;
	padding-bottom: 0;
	padding-left: .3em;
	}

#menu li
	{
	margin:0;
	padding:0;
	position:relative;
	min-height: 1px;		/* Sophie Dennis contribution for IE7 */
	vertical-align: bottom;
	}

#menu ul ul
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	padding: 1em;
	margin:-1em 0 0 -1em;
	}

#menu ul ul ul
	{
	top:0;
	left:100%;
	}

div#menu li:hover
	{
	cursor:pointer;
	z-index:100;
	}

div#menu li:hover ul ul,
div#menu li li:hover ul ul,
div#menu li li li:hover ul ul,
div#menu li li li li:hover ul ul
{display:none;
}

div#menu li:hover ul,
div#menu li li:hover ul,
div#menu li li li:hover ul,
div#menu li li li li:hover ul
{display:block;
}

.sub{
 	width: 12em;
}

.parent{
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #CCC;
}

