/* ATK nav */
#menu{
	height:23px;
	width:735px;
	margin:0 auto 10px auto;
	border:1px solid #e4e4e4;
	border-right:none;
	clear:both;
	font-size:11px;
	color:#2d2d2d;
	}
	#menu ul{
		list-style:none;
		margin:0;
		padding:0;
		}
		#menu ul li{
			float:left;
			position:relative;
			margin:0;
			background:url(../images/nav-bg.gif) no-repeat right top;
			}
			#menu ul li.spacer{
				display:none;
			}
			
			#menu ul li a{
				height:24px;
				color:#2d2d2d;
				text-decoration:none;
				padding:0px 18px;
				line-height:23px;
				display:block;
			}
			#menu ul li.selected {
				background:url(../images/nav-bg2.gif) no-repeat right top #AB2E34;
				color:#fff;				
			}
			#menu ul li.selected a{
				color:#fff;
			}
			#menu ul li a:hover,
			#menu ul li:hover a,
			#menu ul li.selected a:hover{
				height:24px;
				background:url(../images/nav-bg2.gif) no-repeat right top #AB2E34;
				color:#fff;
			}
	
		
	#menu ul li table{
		margin:-1px 0;              	/* IE5 needs -1px top and bottom table margins */
	}
/*======= TOP LEVEL MENU DEFINITIONS =======*/

#menu ul li ul,
#menu ul.level-two {
	display:none;                 /* initially hide the entire list hierarchy */
	padding:1px;                   /* this is our box border width */
}



/*===== 2ND LEVEL MENU DEFINITIONS =====*/

#menu ul li:hover ul.leftbutton,
#menu ul li a:hover ul.leftbutton {        /* 2nd level drop-down box */
	display:block;
	position:absolute;
	top:22px;
	left:0px;
	margin:0;
	padding:0;
	height:auto;     	/* the drop-down height will be determiend by line count */
	background:#fff;                /* this sets the unselected-text color */
	border:1px solid #AB2E34;
	z-index:2;				/*to put dropdown menu above buttons */
	width:100px;
	}
	
	/*dropdown menu unselected links*/
	#menu ul li:hover ul.leftbutton li,
	#menu ul li a:hover ul.leftbutton li{   /* 2nd level unselected items */		
		height:auto;
		color:#fff;
		}
		#menu ul li:hover ul.leftbutton li a,
		#menu ul li a:hover ul.leftbutton li a{
			line-height:14px;
			height:auto;
			margin:0;
			border-top:1px solid #AB2E34;
			width:64px;
			padding:5px 18px;
			display:block;
			background:#fff;
			color:#2d2d2d;
		}
	
		/*dropdown menu selected links*/
		#menu ul li:hover ul.leftbutton li:hover a,
		#menu ul li a:hover ul.leftbutton li a:hover{  /* 2nd level selected item */
			background:#AB2E34;				   	/*highlights over list items*/
			height:auto;
			color:#fff;
		} 


