/* zeroing padding/margin for all elements */
.navigation, .navigation * { 
margin:0;
padding:0;
}
/* "Master" UL (the whole Menu) */
.navigation {
position:relative;
background:#8A8989;
/* width:50em; 
max-width:100%;
*/
width:100%;
float:left;
border-bottom:1px solid #666;
}
/* sub-menu ULs */
.navigation li ul {
	width:18em !important;/* leaves room for padding */
	cursor:default;
	position:absolute;
	height:auto;
	display:none;
	left:-10px;
	margin:0 0 0 13px;
	background:url(/img/clear.gif);/* trick to keep'em open */
}
/* All LIs */
.navigation li {
	position:relative;
/*
	width:8.30em;
	max-width:16.5%;
*/
	cursor:pointer;
	float:left;
	list-style-type:none;
	font-weight:bold;
}
/* sub-menu LIs */
.navigation li ul li {
	width:10em/*FF*/;
	padding:0;
	margin:0;
	border:none;
	max-width:120%;
	border-top:none;
}
/* All anchors */
.navigation li a {
font-size: 98%;
font-weight:bold;
color: #ddd;
	text-decoration:none;
	display:block;
	float:left;
	padding:0 2.2em;
	margin:0 !important;
/*  uncomment the declaration below if you want to go "full width" */
/*	width:7.47em; */
	height:2.3em;
font: 1em/2.3em 'tahoma' bold !important;
letter-spacing: 1px;
font-weight:bold !important;
 background: #8A8989 !important;
}
/* sub-menu Anchors */
.navigation li ul li a {
	width:9em/*FF*/;
	position:relative !important; /* ie Mac */
	white-space:nowrap;
	line-height:1.7em;
	height:1.7em;
	font-weight:normal;
color: #ddd;
}
/* :hover and stuff */
.navigation li a:hover,
.navigation li a:focus,
.navigation li a:active { color: #fff; background: #565656 !important;}
/* move the declarations from the rule below the one above if you want a background swap on *all* anchors, including the top level ones */
.navigation ul a:hover,
.navigation ul a:focus,
.navigation ul a:active {color: #fff !important; background:#666; }
/* display and z-index for the sub-menus */
.navigation li:hover ul,
.navigation li.msieFix ul {display:block;z-index:10;top:2em !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  */
.navigation li#AB {z-index:6;}
.navigation li#CF {z-index:5;}
.navigation li#GJ {z-index:4;}
.navigation li#KR {z-index:3;}
.navigation li#ST {z-index:2;}
.navigation li#UZ {z-index:1;}

/* Current location - class on Body must match LI's id */
.AB .navigation li#AB a,
.CF .navigation li#CF a,
.GJ .navigation li#GJ a,
.KR .navigation li#KR a,
.ST .navigation li#ST a,
.UZ .navigation li#UZ a {color:#000;}
/* Keeping current menu accessible to JAWS */
.AB .navigation li#AB ul,
.CF .navigation li#CF ul,
.GJ .navigation li#GJ ul,
.KR .navigation li#KR ul,
.ST .navigation li#ST ul,
.UZ .navigation li#UZ 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 */
.navigation li.msieFix a {}
/* last nested UL. keeping it in */
.navigation li#UZ 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 .navigation li#AB ul li a:focus,
.AB .navigation li#AB ul li a:active,
.CF .navigation li#CF ul li a:focus,
.CF .navigation li#CF ul li a:active,
.GJ .navigation li#GJ ul li a:focus,
.GJ .navigation li#GJ ul li a:active,
.KR .navigation li#KR ul li a:focus,
.KR .navigation li#KR ul li a:active,
.ST .navigation li#ST ul li a:focus,
.ST .navigation li#ST ul li a:active,
.UZ .navigation li#UZ ul li a:focus,
.UZ .navigation li#UZ ul li a:active {position:absolute !important;top:1028px !important;}