/* Based partially on Matthew Carroll's keyboard accessible flavor of Suckerfish 
 * Dropdowns by Patrick Griffiths and Dan Webb. 
 * http://carroll.org.uk/sandbox/suckerfish/bones2.html
 */
/* ----[ LINKS ]----*/
/* all menu links */
#hnav a, #subMenusContainerH a{
	text-decoration:none;
	display:block;
	padding: 11px 20px 11px 20px;
	background-color: transparent ;
	font-family : Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: White;
}

/* Just main menu links --[for non-javascript users this applies to submenu links as well]*/
#hnav a{
	margin:0;
	float:left;
	height: 20px;

}

/* Just sub menu links */
#subMenusContainerH a, #hnav li li a{
	text-align:left;
	padding-top: 4px;
	padding-left: 4px;
	height: 20px;
	border-bottom: 1px solid #ededed;
	color: Black;
	line-height: 18px;
}

/* All menu links on hover or focus */
#hnav a:hover, #hnav a:focus, #subMenusContainerH a:hover, #subMenusContainerH a:focus, #hnav a.mainMenuParentBtnFocused, #subMenusContainerH a.subMenuParentBtnFocused{
	color: White;
}

/* sub menu links on hover or focus */
#subMenusContainerH a:hover, 
#subMenusContainerH a:focus, 
#hnav a.mainMenuParentBtnFocused, 
#subMenusContainerH a.subMenuParentBtnFocused,
#hnav li a:hover,
#hnav li a:focus{
	background-color: #bc6c1f;
}

/* Parent Sub Menu Links ---[javascript users only]*/
.subMenuParentBtn{ 
/*	background: url(arrow_right.gif) right center no-repeat;  */
}

/* Parent Sub Menu Links on hover or focus ---[javascript users only]*/
.subMenuParentBtnFocused{ 
/*	background: url(arrow_right_over.gif) right center no-repeat;*/
}

/* Parent Main Menu Links ---[javascript users only]*/
.mainMenuParentBtn{	
/*	 background: url(arrow_down.gif) right center no-repeat; */
}

/* Parent Main Menu Links on hover or focus ---[javascript users only]*/
.mainMenuParentBtnFocused{	
/*	background: url(arrow_down_over.gif) right center no-repeat; */
}

/* ----[ OLs ULs, LIs, and DIVs ]----*/
/* Submenu Outer Wrapper - each submenu is inside a div with this class - javascript users only */
.smOW{ 
	display:none; 
	position: absolute; 
	overflow:hidden; 
	/*the 2px left & right padding lets you have a 1px border on the ul or ol inside since overflow is set to hidden*/
	padding:0 2px;
	margin:0 0 0 -2px;
}

/* All submenu OLs and ULs */
#hnav ol, #hnav ul, #subMenusContainerH ul, #subMenusContainerH ol {	
	/*border around submenu goes here*/
	background: #b0c6c2;	
	border: 1px solid #cbc8dd;
	left:0;
}

/* All ULs and OLs */
#hnav, #hnav ul, #hnav ol, #subMenusContainerH ul, #subMenusContainerH ol { 
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1em;
}

/* List items in main menu --[for non-javascript users this applies to submenus as well]  */
#hnav li { 
	/*great place to use a background image as a divider*/
	display:block;
	list-style:none;
	position:relative;
	float:left;
	background-image: none;
}

#subMenusContainerH li{
	list-style: none;
	background-image: none;
	padding-left: 0px;
}

/* main menu ul or ol elment */
#hnav{
	display:block;
	position: relative;
	list-style:none;
	margin:0 0 0 0;
	z-index:5;
	text-align: center;
	display:block;
}

#subMenusContainerH{	
	display:block; 	
	position:absolute;	
	top:0;	
	left:0;	
	width:100%;	
	height:0;	
	overflow:visible;	
	z-index:1000000000;
	}
/* --------------------------[ The below is just for non-javscript users ]--------------------------*/
#hnav li li{	float:none; }

#hnav li li a{ /* Just submenu links*/	
	position:relative;
	float:none;
}

#hnav li ul { /* second-level lists */
	position: absolute;
	width: 10em;
	margin-left: -1000em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	margin-top:2.2em;
}

