/* 6:12:07 removed the max-width and change the width of the float from PX to EM */
/****
TJK_keyBoardDropDown
Pure CSS Drop Down Menu [TJK_keyBoardDropDown] v1.2
Copyright 2006, Thierry Koblentz - TJKDesign.com - All rights reserved.
Read www.TJKDesign.com/articles/Pure_CSS_dropdown_Menus.asp
****/
/* zeroing padding/margin for all elements */
#TJK_dropDownMenu,
#TJK_dropDownMenu * { margin:0;padding:0;}
/* "Master" UL (the whole Menu) */
#TJK_dropDownMenu {position:relative;background:#000 no-repeat 100% 50%;width:/*50em*/300px;
	max-width:100%;float:left;margin-bottom:1em;
}
/* sub-menu ULs */
#TJK_dropDownMenu li ul {
	width:11em !important;/* leaves room for padding */
/*	cursor:default;*/
	position:absolute;
	height:auto;
	display:none;
	left:150px;
	padding:0;
	background:url(/img/clear.gif);/* trick to keep'em open */
}
/* All LIs */
#TJK_dropDownMenu li {
	position:relative;
	width:/*8.30em*/150px;
max-width:50%;
	/*cursor:pointer;*/
	float:left;
	list-style-type:none;
	font-weight:100;
clear:left;
}
/* sub-menu LIs */
#TJK_dropDownMenu li ul li {
	width:10em/*FF*/;
	padding:0;
	border:none;
	max-width:120%;
	border:none;
}
/* All anchors */
#TJK_dropDownMenu li a {
/*	cursor:default;*/
	color:#999;

	text-decoration:none;
	display:block;
	float:left;
	padding:0 ;
/*  uncomment the declaration below if you want to go "full width" */
/*	width:7.47em; */
padding:0 1.2em;
min-height:1em;
line-height:1em;letter-spacing:.5px;

}
/* sub-menu Anchors */
#TJK_dropDownMenu li ul li a {
	width:9em/*FF*/;
	position:relative !important; /* ie Mac */
	/*cursor:pointer !important;*/
	white-space:nowrap;
	line-height:1em;
	height:1em;
	font-weight:100;
	font-size:100%;
	color:#999;
	background-position:0 50% !important;
}
/* :hover and stuff */
#TJK_dropDownMenu li a:hover,
#TJK_dropDownMenu li a:focus,
#TJK_dropDownMenu li a:active {color:#fff}
/* move the declarations from the rule below the one above if you want a background swap on *all* anchors, including the top level ones */
#TJK_dropDownMenu ul a:hover,
#TJK_dropDownMenu ul a:focus,
#TJK_dropDownMenu ul a:active {color:#fff !important;background:#000}
/* display and z-index for the sub-menus */
#TJK_dropDownMenu li:hover ul,
#TJK_dropDownMenu li.msieFix ul {display:block;z-index:10;top:-1.8em !important;}
/* safari: users can keep sub-menus up by from sub-menus to next top level  */
/* didn't find a solution for users going back from the last one. I prefer  */
/* to leave it like that vs. taking the last sub-menu *out of* the wrapper  */
#TJK_dropDownMenu li#AB {z-index:6;}
#TJK_dropDownMenu li#CD {z-index:5;}
#TJK_dropDownMenu li#EF {z-index:4;}
#TJK_dropDownMenu li#GH {z-index:3;}
#TJK_dropDownMenu li#JK {z-index:2;}
#TJK_dropDownMenu li#LM {z-index:1;}

/* Current location - class on Body must match LI's id */
.AB #TJK_dropDownMenu li#AB a,
.CD #TJK_dropDownMenu li#CD a,
.EF #TJK_dropDownMenu li#EF a,
.GH #TJK_dropDownMenu li#GH a,
.JK #TJK_dropDownMenu li#JK a,
.LM #TJK_dropDownMenu li#LM a {color:#000;}
/* Keeping current menu accessible to JAWS */
.AB #TJK_dropDownMenu li#AB ul,
.CD #TJK_dropDownMenu li#CD ul,
.EF #TJK_dropDownMenu li#EF ul,
.GH #TJK_dropDownMenu li#GH ul,
.JK #TJK_dropDownMenu li#JK ul,
.LM #TJK_dropDownMenu li#LM ul {display:block;top:-1000px}

/* background colors
#AB,#AB li a {background-color:#e2facd;}
#CF,#CF li a {background-color:#fffcd0;}
#GJ,#GJ li a {background-color:#ffe1cc;}
#KR,#KR li a {background-color:#fccae5;}
#ST,#ST li a {background-color:#c9c9ff;}
#UZ,#UZ li a {background-color:#ffcebe;} */
/* "trigger" and "msieFix" classes */
#TJK_dropDownMenu li.msieFix a {}
/* last nested UL. keeping it in */
#TJK_dropDownMenu li#LM ul {left:-2.3em !important;}

/* If JS is OFF we need to style the links in the sub-menu of the current page     */
/* so they are accessible to keyboard users. Using a class on each link would let  */
/* us stick each link in the same place, but we would have to plug a lot of        */
/* attributes in the markup and many rules here, so...                             */
.AB #TJK_dropDownMenu li#AB ul li a:focus,
.AB #TJK_dropDownMenu li#AB ul li a:active,
.CD #TJK_dropDownMenu li#CD ul li a:focus,
.CD #TJK_dropDownMenu li#CD ul li a:active,
.EF #TJK_dropDownMenu li#EF ul li a:focus,
.EF #TJK_dropDownMenu li#EF ul li a:active,
.GH #TJK_dropDownMenu li#GH ul li a:focus,
.GH #TJK_dropDownMenu li#GH ul li a:active,
.JK #TJK_dropDownMenu li#JK ul li a:focus,
.JK #TJK_dropDownMenu li#JK ul li a:active,
.LM #TJK_dropDownMenu li#UZ ul li a:focus,
.LM #TJK_dropDownMenu li#UZ ul li a:active {position:absolute !important;top:1028px !important;}
