#masthead {

	height : 86px;
	margin-bottom: 25px;
	
	position: relative;
	z-index: 3;

	border-style: solid;
	border-color: #003366;
	border-width: 0 2px 2px 2px;

	-moz-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);
	box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3);

	-moz-border-radius-bottomleft: 8px;		
	-moz-border-radius-bottomright: 8px;;
	-webkit-border-radius: 0 0 8px 8px;
	border-radius: 0 0 8px 8px;
	
	background: #2F79A8 url(../images/masthead-bg.png) repeat-x;
	
}

#masthead:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
* html #masthead {
	zoom: 1;
}
*:first-child+html #masthead{
	zoom: 1;
}

#logo {
	float: left;
	padding: 5px 5px 0 45px;
}
#logo a {
	display: block;
	width: 181px;
	height: 68px;
	background: url(../images/logo.png?1) no-repeat;
	color: #005B95;				
	font-size: 13px;
	text-decoration : none;
}
#menu {
	height : 86px;
	float: left;
	background: #004976 url(../images/menu-bg.png) repeat-x;				
}
#menu .hot {
	color: #FF0 !important;
}
#menu a {  /* default menu link - everything but .top-level-links */
	display: block;
	white-space: nowrap;
	color: #005B95;				
	font-size: 13px;
	padding: 5px;
	text-decoration : none;
}
#menu table {  /* IE 5.5 and 6 need tables to contain submenus */
	border-collapse : collapse;
	height : 0;
	left : 0;
	position : absolute;
	top : 0;
	width : 0;
}
#menu li.top-level {  /* top level anchor containers */
	float: left;
	margin-right : 1px;
	height: 86px;
}
#menu a.top-level-link {  /* top level anchors */
	float : left;  /* old IE will expand to 100% width if not floated */
	font-size : 14px;
	font-weight : bold;
	color : #DDD;
	height : 31px;
	padding : 55px 20px 0 20px;
	background-color: #004976;
	border: none;
	margin: 0;
}
#menu a.top-level-link:hover {  /* highlight text on hover of top level menu items */
	color: #FFF;
	text-shadow : rgba(255, 255, 255, 0.5) 0 0 5px;
}
#menu li.top-level:first-child {  /* prevent faux border on first navigation menu item */
	margin-left: 0;
}
#menu li.top-level:last-child {  /* prevent faux border on last navigation menu item */
	margin-right: 0;
}
#menu li.top-level:first-child a.top-level-link {  /* draw inset on left edge of first navigation link */
	-moz-box-shadow: inset 2px 0 3px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: inset 2px 0 3px rgba(0, 0, 0, 0.2);
	box-shadow: inset 2px 0 3px rgba(0, 0, 0, 0.2);
}
#menu li.top-level:last-child a.top-level-link {  /* draw inset on right edge of last navigation link */
	-moz-box-shadow: inset -2px 0 3px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: inset -2px 0 3px rgba(0, 0, 0, 0.2);
	box-shadow: inset -2px 0 3px rgba(0, 0, 0, 0.2);
}
#menu a.top-level-link:hover {
	background: url(../images/menu-item-bg.png) repeat-x;
}

#menu li,
#menu li a {
	z-index: 2;
}
#menu li a:hover,
#menu li:hover {  /* must be set on :hover or IE7 will fail to close submenus */
	position: relative;
}
#menu li li a:hover {  /* dropdown link hover state */
	color: #00F;
}
#menu li li a:hover a {  /* don't italicize submenus */
	color: #00F;
}
#menu li li a:hover a:hover {  /* blue submenu labels on hover - overriding rule above */
	color: #00F;
}
#menu li li:hover a {  /* dropdown link container hover state on link */
	
}

#menu ul {  /* hidden dropdown menus */

	position : absolute;
	top: -999px;
	left : -1px;  /* to line up with faux gradient border */				
	width : 300px;
	background: #FFF;
	border-bottom: 5px solid #005B95;
	padding: 10px;
	
	-moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	
}
#menu :hover ul ul {  /* hide grand-children when child-menus show */
	top: -999px;
}
#menu :hover ul {  /* visible dropdown menus */
	top : 86px;				
}

#menu :hover ul :hover ul {  /* visible second-level dropdowns */
	left : 300px;
	top : -1px;
	z-index : 2;
}
#menu :hover ul li a {  /* non-dropdown activator styles */
	width : 300px;
}
#menu :hover ul li a.activator {  /* dropdown activator styles */
	background : url(../images/sidebar-bullet.gif) no-repeat 290px center;
}
#menu :hover ul :hover {  /* non-activator selected state */
	
}
#menu :hover ul :hover a.activator {  /* activator selected state */
	
}