/* ------- HORIZONTAL DROPDOWN WITH IE HACK - SEE PAGE BOTTOM FOR EDITING EXAMPLES --------- */
#menu {
	height:400px;
	width:190px;	
	/*background-image:url(/images/menu-bg.png);
	background-position:bottom;
	background-repeat:no-repeat;*/
	background-color:#efe8e0;
	float:left;
}
#menu_heading {
	width:180px;
	height:24px;
	padding:8px 0 0 10px;
	background-image:url('/images/menu-heading-bg.png');
	margin:0 0 7px 0;
	color:#FFF;
	font-size:16px;
	font-weight:bold;
}
/* Two columns simply requires float left */
/* ---------------------------- DON'T EDIT OR MOVE THIS BLOCK! ------------------------------ */
#menu ul{list-style:none;margin:0;padding:0;}#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:none;}
/* cross-browser hack to set minimum width for top-level items */
#menu ul {min-width:1px; width:181px !important; width:1px; } /* Need to adjust all to set px if not auto for IE */
/* ----------- ------------------ END OF 'DON'T EDIT' BLOCK --------------------------------- */

/* ******************************************************************* */
/* ******************** LEVEL 1 (TOP) MENU ITEMS  ******************** */
#menu ul {width:100px; margin-left:4px; margin-bottom:2px;} /* set menu item width with ul, not 'a' */
#menu a, #menu a:visited {
	padding:6px 5px 6px 10px; /* 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:#666; 
	text-decoration:none;
	text-transform:uppercase;
	text-align:left; 
	font:bold 11px Arial, Helvetica, sans-serif; 
	white-space:nowrap; /* keeps text from wrapping on LEVEL 1 */
	background:transparent url('/images/menu-bg-sprite.png') no-repeat left top;
}
/* LEVEL 1 hover state */
#menu a:hover, #menu a:active {
	background-position:left -26px;
}
/* LEVEL 1 selected state */
#menu ul li a.tdcMenuSelected, #menu ul li a:visited.tdcMenuSelected, #menu ul li a:active.tdcMenuSelected
, #menu ul li a.tdcMenuSubSelected, #menu ul li a:visited.tdcMenuSubSelected, #menu ul li a:active.tdcMenuSubSelected {
	background-position:left -26px;
} 

/* ******************************************************************* */
/* ***************** LEVEL 2 (DROPDOWN) MENU ITEMS  ****************** */
#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;
	font-weight:normal;
}
/* LEVEL 2 hover */
#menu ul li ul li a:hover, #menu ul li ul li a:active {
 	background:#DEE7EF; 
}

/* 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 {
	background:#D3D5D8;
} 

/* ******************************************************************* */
/* ************ LEVEL 3 (FLYOUT TO RIGHT) MENU ITEMS ************** */
#menu ul ul ul {
	top:0; 
	left:100%; 
	border-top:solid 1px #AAA; /* adding 1px top border and -1px top/left margin keeps flyout menus vertically aligned and borders from doubling up in width */
	margin:-1px 0 0 -1px; 
	background:#DEE7EF; 
}

/** ********* EXAMPLES OF EDITING UNIQUE MENU ITEMS BY CLASS ************ **/
/* 	set width on unique LEVEL 1 menu item */
/*#menu ul.tdc_3_ul {width:150px; background:#606A79; }*/

/* remove right border from far right menu item */
/*#menu ul li a.tdc_9_a, #menu ul li a:visited.tdc_9_a {border-right:none;}*/

/* set background color on unique LEVEL 2 menu item */
/*#menu ul li ul li a.tdc_21_a, #menu ul li ul li a:visited.tdc_21_a {background-color:#99FFFF;}*/
