/* ------- HORIZONTAL DROPDOWN WITH IE HACK - SEE PAGE BOTTOM FOR EDITING EXAMPLES --------- */
#menu {
	height:27px;
	width:900px;	
	background-image:url(/images/menu_bg.jpg);
	background-position:top;
	background-repeat:repeat-x;
	background-color:#CCC;
	margin-bottom:-1px; /* SAFARI HACK; to remove extra pixel of padding at bottom of menu */

}

/* ---------------------------- DON'T EDIT OR MOVE THIS BLOCK! ------------------------------ */
#menu ul					{list-style:none;margin:0;padding:0;float:left;}
#menu a, #menu a:visited 	{display:block;width:auto;margin:0;}
#menu li 					{position:relative;}
#menu ul ul					{position:absolute;z-index:500;top:auto;display:none;}
#menu a.x, #menu a.x:visited{background:#eee url(/css/images/expand3.gif) no-repeat 100% 100%;}
#menu a.x, #menu a.x:visited{font-weight:normal;color:#000;}
#menu a.x:hover				{color:#FFF;background:#000;}
#menu a.x:active			{color:#060;background:#CCC;}
div#menu li:hover			{cursor:pointer;z-index:100;}
div#menu li li li li:hover ul ul, div#menu li li:hover ul ul, div#menu li li li:hover ul ul, 
div#menu li:hover ul ul		{display:none;}
div#menu li li li li:hover ul, div#menu li li:hover ul, div#menu li li li:hover ul, 
div#menu li:hover ul 		{display:block;}
/* ----------- ------------------ END OF 'DON'T EDIT' BLOCK --------------------------------- */

/* ******************************************************************* */
/* ******************** LEVEL 1 (TOP) MENU ITEMS  ******************** */
#menu ul {width:84px;} /* set menu item width with ul, not 'a' */
#menu a, #menu a:visited {
	padding:6px 2px 6px 2px; /* don't use 'height' attribute - instead use top & bottom padding to set menu item height and place text vertically */
	line-height:130%; /* SAFARI HACK; use with line-height along with top & bottom padding to set menu item height */
	color:#0A2046; 
	border-right:solid 1px #54708D; 
	text-decoration:none; 
	text-align:center; 
	font:bold 12px Arial, Helvetica, sans-serif; 
	white-space:nowrap; /* keeps text from wrapping on LEVEL 1 */
	text-transform:uppercase;
}
/* LEVEL 1 hover state */
#menu a:hover, #menu a:active {
	color:#FFF;
	background:#005088;
}
/* LEVEL 1 selected state */
#menu ul li a.tdcMenuSelected, #menu ul li a:visited.tdcMenuSelected, #menu ul li a.hover, #menu ul li a:active.tdcMenuSelected {
	color:#FFF;
	background:#005088;
} 
