/****
HHGR_keyBoardDropDown
Pure CSS Drop Down Menu [HHGR_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 */
#HHGR_dropMenu,
#HHGR_dropMenu *
{
	margin: 0;
	padding: 0;
	z-index: 10;
}

/* "Master" UL (the whole Menu) */
#HHGR_dropMenu
{
	position: relative;
	float: left;
	margin-bottom: 0;
}

/* sub-menu ULs */
#HHGR_dropMenu li ul
{
	/* leaves room for padding */
	cursor: default;
	position: absolute;
	height: auto;
	display: none;
	background: url(clear.gif);
	/* trick to keep'em open */
}

/* All LIs */
#HHGR_dropMenu li
{
	position: relative;
	
	width: 719px;
/* width: 200px; */

	height: 35px;
/* height: 30px; */

	cursor: pointer;
	float: center;
	list-style-type: none;
	font-size: 1em;
	font-weight: bold;
	margin-bottom: 1px;
	margin-left: 1px;
}

/* sub-menu LIs */
#HHGR_dropMenu li ul li
{
	/*FF*/
	width: 200px;
	padding: 0;
	border-top: none;
	height: 30px;
}

/* All anchors */
#HHGR_dropMenu li a
{
	cursor: pointer;
	color: #000;
	text-decoration: none;
	display: block;
	text-align: center;
	padding: .4em;
	line-height: 1.1em;
}

/* sub-menu Anchors */
#HHGR_dropMenu li ul li a
{
	/*FF*/
	padding: 0 0 0 7px;
	margin-left: -2px;
	
	width: 164px;
/* width: 200px; */
	
	height: 30px;
	top: 6px;
	position: relative !important;
	/* ie Mac */
	cursor: pointer !important;
	white-space: nowrap;
	text-align: left;
	line-height: 30px;
	font-weight: normal;
	color: #FFF;
	border-top: 1px solid #F2F2E6;
	background-color: #0000CC;
	filter:alpha(opacity=85);
	-moz-opacity:.85;
	opacity:.85;
}

/* :hover and stuff */
#HHGR_dropMenu li a:hover,
#HHGR_dropMenu li a:focus,
#HHGR_dropMenu li a:active { color: #000; }

/* move the declarations from the rule below the one above if you want a background swap on *all* anchors, including the top level ones */
#HHGR_dropMenu ul a:hover,
#HHGR_dropMenu ul a:focus,
#HHGR_dropMenu ul a:active
{
	color: #fff !important;
	background: #f90300;
}

/* display and z-index for the sub-menus */
#HHGR_dropMenu li:hover ul,
#HHGR_dropMenu li.msieFix ul
{
	display: block;
	z-index: 10;
	top: 29px !important;
/* top: 24px !important; */
}

#HHGR_dropMenu li#AB { margin-left: 0;}

/* 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  */
#HHGR_dropMenu li#AB { z-index: 6; }
#HHGR_dropMenu li#CF { z-index: 5; }
#HHGR_dropMenu li#GJ { z-index: 4; }
#HHGR_dropMenu li#KR { z-index: 3; }
#HHGR_dropMenu li#ST { z-index: 2; }

/* Current location - class on Body must match LI's id */
.AB #HHGR_dropMenu li#AB a,
.CF #HHGR_dropMenu li#CF a,
.GJ #HHGR_dropMenu li#GJ a,
.KR #HHGR_dropMenu li#KR a,
.ST #HHGR_dropMenu li#ST a,{ color: #000;}

/* Keeping current menu accessible to JAWS */
.AB #HHGR_dropMenu li#AB ul,
.CF #HHGR_dropMenu li#CF ul,
.GJ #HHGR_dropMenu li#GJ ul,
.KR #HHGR_dropMenu li#KR ul,
.ST #HHGR_dropMenu li#ST ul
{
	display: block;
	top: -1000px;
}

/* background colors */
#AB,#AB li a { background-color: #f90300; }
#CF,#CF li a { background-color: #A4BAA9; }
#GJ,#GJ li a { background-color: #A4BAA9; }
#KR,#KR li a { background-color: #A4BAA9; }
#ST,#ST li a { background-color: #A4BAA9; }

/* "trigger" and "msieFix" classes */
#HHGR_dropMenu li.msieFix a { }

/* last nested UL. keeping it in */
#HHGR_dropMenu li#ST ul { left: 0px !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 #HHGR_dropMenu li#AB ul li a:focus,
.AB #HHGR_dropMenu li#AB ul li a:active,
.CF #HHGR_dropMenu li#CF ul li a:focus,
.CF #HHGR_dropMenu li#CF ul li a:active,
.GJ #HHGR_dropMenu li#GJ ul li a:focus,
.GJ #HHGR_dropMenu li#GJ ul li a:active,
.KR #HHGR_dropMenu li#KR ul li a:focus,
.KR #HHGR_dropMenu li#KR ul li a:active,
.ST #HHGR_dropMenu li#ST ul li a:focus,
.ST #HHGR_dropMenu li#ST ul li a:active
{
	position: absolute !important;
	top: 1028px !important;
}

.indexheight
{
	line-height: 30px;
}