#menu{
	height:21px;
	background:#98002e;
	clear:both;
	position:relative;
	color:#fff;
	font-size:12px;
	width:850px;
	}
	#menu ul{
		padding:0 0 0 24px;
		margin:0 0 0 24px;
		border:0;
		list-style-type:none;          /* we don't want to view the list as a list */
		
		} 
		#menu li{
			float:left; 
			line-height:21px;           /* use this instead of padding */
			}	
			#menu li a,
			#menu li a:visited{
				color:#fff;
				text-decoration:none;
				height:21px;
				padding:2px 6px;
			}
			#menu li:hover a,
			#menu li a:hover,
			#menu .selected{
				background:#b74d6d;
				height:21px;
				text-decoration:none;
			}
			
		#menu table{
			margin:-1px;              	/* IE5 needs -1px top and bottom table margins */
			border-collapse:collapse;      	/* IE5 needs this for the sub-menus to work */
			width:0;
			height:0;
		}

/*======= 2ND LEVEL MENU DEFINITIONS =======*/

#menu ul.dropmenu {
	display:none;                 /* initially hide the entire list hierarchy */	
	margin:0;
	padding:0;
	list-style-type:none;
	position:absolute;			/*absolute keeps page from jumping when this appears*/
	font-size:10px;
	width:530px;
	top:21px;
	left:315px;
	border-top:solid 1px #fff;
}
#menu ul li:hover ul.dropmenu,
#menu ul li a:hover ul.dropmenu{
	display:block;
	background:#98002e;
	}
	#menu ul li:hover ul.dropmenu li,
	#menu ul li a:hover ul.dropmenu li{
		float:left;				/*needed for IE 6*/
		line-height:25px;
		padding:0px;
	}
	#menu ul li:hover ul li a,
	#menu ul li a:hover ul li a{
		background:#98002e;
	}
	#menu ul li a:hover ul.dropmenu li a,
	#menu ul li ul.dropmenu li a{	
		height:25px;
		padding:6px;
	}
	#menu ul li a:hover ul li a:hover,
	#menu ul li ul li a:hover,
	#menu ul li:hover ul li.selected a,
	#menu ul li ul li.selected a{	
		background:#b74d6d;
		height:25px;
	}
	

/*======= Career Areas MENU DEFINITIONS =======*/
#menu ul.dropmenu-careers {
	display:block;                 /* initially hide the entire list hierarchy */	
	margin:0;
	padding:0;
	list-style-type:none;
	position:absolute;			/*absolute keeps page from jumping when this appears*/
	font-size:10px;
	width:530px;
	top:21px;
	left:315px;
	border-top:solid 1px #fff;
	background:#98002e;
	}
	#menu ul li ul.dropmenu-careers li{
		float:left;				/*needed for IE 6*/
		line-height:25px;
		padding:0px;
	}
	#menu ul li a:hover ul.dropmenu-careers li a,
	#menu ul li ul.dropmenu-careers li a{	
		height:25px;
		padding:6px;
	}
