/* LIST-BASED MENU */
/* the horizontal menu starts here */
div#listmenu {
        height: 0px;
        position: absolute;
	width:750px; 	/* makes the div full width */
	float:left; /*makes the div enclose the list */
	border-top:1px solid #069;	/* draws line on top edge of div */
	border-bottom:1px solid #069;	 /* draws line on bottom edge of div */
	font-size:1em;	/* SET FONT-SIZE HERE */
	background-color:#1F2638; /* colors the div */
	margin-top:85px; 
	margin-bottom:-2px; 
	margin-left:0px;
        padding-left:0px;
	}
div#listmenu ul {
	margin: 0px;
	padding: 0px;
}
div#listmenu li {
	z-index:100; /* had to add this to make the drop be on top in Safari */
	float:left;	/* causes the list to align horizontally instead of stack */
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	background-color:#1F2638; /*sets the background of the menu items */
 /*sets the background of the menu items */
	font-size:12px;	/* SET FONT-SIZE HERE */
	font-family:verdana, helvetica, arial, sans-serif;
	font-variant:lowercase;
	font-weight:bold;
	}
div#listmenu li:hover { 
	color:#C5E2FF; 
	}
div#listmenu a {
	display:block; /*makes rolled list items in drop down highlight link text, and wrapped lines indent correctly */
	padding:4px 8px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#C5E2FF;	/* sets the type color */
	}
div#listmenu a:hover {
	color:#FFFFBD;
	}
div#listmenu ul li.current a{
	/* background-color:#DCDFF2; */
	padding:4px 8px; /*creates space each side of menu item's text */
	color:#DCDFF2;
	}
div#listmenu ul li.hidden a{
	/* background-color:#DCDFF2; */
	padding:4px 8px; /*creates space each side of menu item's text */
	color:#1F2638;
        display:none;
	}
/* the horizontal menu ends here */

