/* ------- HORIZONTAL DROPDOWN WITH IE HACK - SEE PAGE BOTTOM FOR EDITING EXAMPLES --------- */
#menu {
	float:right;
	height:14px;
	width:auto;	
}



/* ---------------------------- 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:auto;} /* set menu item width with ul, not 'a' */
#menu a, #menu a:visited {
	padding:0 13px 6px 13px; /* don't use 'height' attribute - instead use top & bottom padding to set menu item height and place text vertically */
	line-height:12px; /* SAFARI HACK; use with line-height along with top & bottom padding to set menu item height */
	color:#000; 
	background-image: url(/images/menu_right_border.gif);
	background-position:right top;
	background-repeat: no-repeat; 
	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;
}
#menu a.no_right_border, #menu a:visited.no_right_border, #menu a:hover.no_right_border {
	background-image:none;
}
/* LEVEL 1 hover state */
#menu a:hover, #menu a:active {
	color:#C60000; 
}
/* 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 {
	background:#606A79;
} 

/* ******************************************************************* */
/* ***************** LEVEL 2 (DROPDOWN) MENU ITEMS  ****************** */
#menu ul li ul {
	border:solid 1px #000;
	background:#E6EBEE;
	padding-bottom:5px;
}

#menu ul li ul li a, #menu ul li ul li a:visited {
	text-align:left; 
	width:auto; /* defaults to width of LEVEL 1 menu item */
	white-space: normal; /* allows text to wrap on LEVEL 2 (3, etc.) */
	color:#1F2766;
	background:#E6EBEE;
	border-right:none;
	padding:7px 8px 3px 8px ;
	font-weight:normal;
	line-height:normal;
	text-transform:none;
	white-space:nowrap; 
}
/* LEVEL 2 hover */
#menu ul li ul li a:hover, #menu ul li ul li a:active {
 	color:#C60000; 
}

/* LEVEL 2 selected state */
#menu ul li ul li a.tdcMenuSelected, #menu ul li ul li a:visited.tdcMenuSelected, #menu ul li ul li a.hover, #menu ul li ul li a:active.tdcMenuSelected {
	color:#C60000;
} 

