/* drop down menus */

#nav {
	height:				24px;
	width:				100%;
	margin:				0;
	padding:			0;
	background-color:	#e1a400;
}
#nav .nav_left {
	float:				left;
}
li.navtop {
	float:				left;
	text-indent:		-9999px;
	height:				24px;
}

#nav a:link.selected, #nav a:visited.selected {
	background-position:0 -24px;
}

#nav #about {
	width:				96px;
	height:				24px;
	background-image:	url(../images/nav_about.gif);
	background-repeat:	no-repeat;
}
#nav #programs {
	width:				85px;
	height:				24px;
	background-image:	url(../images/nav_programs.gif);
	background-repeat:	no-repeat;
}
#nav #reports {
	width:				74px;
	height:				24px;
	background-image:	url(../images/nav_reports.gif);
	background-repeat:	no-repeat;
}
#nav #updates {
	width:				75px;
	height:				24px;
	background-image:	url(../images/nav_updates.gif);
	background-repeat:	no-repeat;
}
#nav #contacts {
	width:				80px;
	height:				24px;
	background-image:	url(../images/nav_contacts.gif);
	background-repeat:	no-repeat;
}


/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0;
 padding: 0;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 10px;
 margin-top: 13px; /* I'm using ems and px to allow people to zoom their font */
 left: 0;
 width: 180px;
 text-indent: 0;
 font:				10px verdana;
 line-height:		1.2em;
 z-index:			99;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: -1px;
 margin-top: 0;
 left: 148px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
 float: left;
 display: block;
 position: relative;
 background: none;
 border: none;
}
.menulist .sub li {
	margin-top:	1px;
	border: 1px solid #fff;	/* border color for menus */
	background-color: #D1D8DF;
	margin-right: -1px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin: 0;
 margin-bottom: -2px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a {
 display: block;
 color: #23355F;
 text-decoration: none;
}
.menulist ul a {
	padding:	8px 3px 8px 12px;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #23355F;
 background-color: #E8EDF5;
 text-decoration: none;
	background-position:0 -48px;	/* only affects top level graphics */
}
.menulist  a.highlighted {
	background-position:	0 -48px;
}


/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display: none;
}
.menulist ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist ul li {
 float: left;
 width: 100%;
}

* html .menulist ul li {
 float: left;
 height: 1%;
}
* html .menulist ul a {
 height: 1%;
}
/* End Hacks */

/* End Drop down Menus */