@charset "utf-8";
/* CSS Document */


/* NAVIGATION

---------------------------------------------------------------------------------------------------------------------------------------------------*/

div#menu {
	width:970px;
	height:29px;
	position:relative;
	display:block;
}

/* zeroing padding/margin for all elements */

#dropDownMenu,

#dropDownMenu * { margin:0;padding:0;}

/* "Master" UL (the whole Menu) */

#dropDownMenu {
	position:relative; 
	background: #1a1a1a url(/images/indentbg2.gif) top center repeat-x; 
	width:970px;
	height:29px;
	float:left;
	border-bottom:1px solid #1a1a1a;

}

/* sub-menu ULs */

#dropDownMenu li ul {

	width:11em !important;/* leaves room for padding */
	cursor:default;
	position:absolute;
	height:29px;
	display:none;
	left:-10px;
	padding:1px 10px 10px 10px;
	background:url(/img/clear.gif);/* trick to keep'em open */

}

/* All LIs */

#dropDownMenu li {

	position:relative;
	cursor:pointer;
	float:left;
	list-style-type:none;
	font-weight:bold;

}

/* sub-menu LIs */

#dropDownMenu li ul li {


	padding:0;
	border:none;
	border:1px solid #1a1a1a;
	border-top:none;
	border-left:0;

}

/* All anchors */

#dropDownMenu li a {

	cursor:default;
	color:#ffffff;
	border-left:1px solid #1a1a1a;
	text-decoration:none;
	display:block;
	float:left;
	padding: 0 10px;

/*  uncomment the declaration below if you want to go "full width" */

/*	width:7.47em; */

	height:29px;
	line-height:29px;

}

/* sub-menu Anchors */

#dropDownMenu li ul li a {

	width:13em/*FF*/;
	position:relative !important; /* ie Mac */
	cursor:pointer !important;
	white-space:nowrap;
	line-height:1.7em;
	height:1.7em;
	font-weight:normal;
	border:1px solid #1a1a1a;
	color:#4e4d4d;
	background-color:#eee;
	background-position:0 50% !important;

}

/* :hover and stuff */

#dropDownMenu li a:hover,
#dropDownMenu li a:focus,
#dropDownMenu li a:active {color:#cf128b ; background: #1a1a1a url(../images/nav_tile.gif) top center repeat-x;}

/* move the declarations from the rule below the one above if you want a background swap on *all* anchors, including the top level ones */

#dropDownMenu ul a:hover,
#dropDownMenu ul a:focus,
#dropDownMenu ul a:active {color:#cf128b !important;background:#1a1a1a}

/* display and z-index for the sub-menus */

#dropDownMenu li:hover ul,
#dropDownMenu 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  */

#dropDownMenu li#CF {z-index:5;}




/* Current location - class on Body must match LI's id */

.CF #dropDownMenu li#CF a,



/* Keeping current menu accessible to JAWS */

.CF #dropDownMenu li#CF ul,


/* "trigger" and "msieFix" classes */

#dropDownMenu li.msieFix a {}

/* last nested UL. keeping it in */





/* 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...                             */

.CF #dropDownMenu li#CF ul li a:focus,

.CF #dropDownMenu li#CF ul li a:active,


