@charset "UTF-8";

/* old bg rgb(0,0,102) */

/*  creates the box and makes the div surround the text.  positions the box. */
#navbar {width:790px;
		height: 25px;
		margin: 5px 5px -3px 5px;
		position:relative;
		background-color: #FFFFFF;
		z-index: 1000;
		}
		
/* hack to correct IE5.5 faulty box model */
* html .navbar {
		width: 790px;
}	


/* remove all the bullets, borders and padding from the default list styling */
#navbar ul {padding: 0px;
		 margin: 0px;
		 list-style-type: none;
	}
	
/* floats the navbar items to be horizontal */
#navbar li {float: left;
}	
	
/* style the links for the top level. styles the text. colors the box. auto-height allows DDM to have two lines. without the block, the IE hack will not work. */
#navbar a:link, #navbar a:visited {
		font-family:  Arial, Helvetica, sans-serif;
		display: block;
		width: 98.75px;
		height: auto;
		font-size: 10px;
		text-decoration: none;
		color: #000000;	
		padding: 5px 0;
		line-height: 14px;
		background-color: #ffffff;
		text-align: center;
}

#current a:link, #current a:visited {
		font-family:  Arial, Helvetica, sans-serif;
		display: block;
		width: 98.75px;
		height: auto;
		font-size: 10px;
		text-decoration: none;
		color: #000000;	
		padding: 5px 0;
		line-height: 14px;
		background-color: #FFFFFF;
		text-align: center;
}
	
/* makes the rollover background black and text white */
#navbar a:hover {
		background-color: #000000;
		color:#FFFFFF; 
}		
	
/* drop-down box. sets size, position. the ridiculous "left" is an IE hack */
#navbar ul li ul {float: left;
		position: absolute;
		left: -999em;
}

/* drop-down box. makes each DD menu a particular size */
#navbar ul li ul {
		width: 8em;
		}
		
/* drop-down box. makes each DD li item 100% of the menu, so it stays vertical */
#navbar ul li ul li {
		width: 100%; 
		}		


/* drop-down box. makes it pop down when you mouse over top item  */
#navbar ul li:hover ul {
		display: block;
}


/* drop-down box. IE hack so it drops DOWN and not RIGHT */
#navbar li:hover ul, #navbar li.sfhover ul {
		left: auto;
}

	