/* 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 */
#innerpageLEFTNAV a, #subMenusContainer a{
	text-decoration:none;
	display:block;
	padding:5px;
}

/* Just main menu links --[for non-javascript users this applies to submenu links as well]*/
#innerpageLEFTNAV a{
	margin:0;
}

/* Just sub menu links */
#subMenusContainer a, #innerpageLEFTNAV li li a{
	text-align:left;
}

/* All menu links on hover or focus */
#innerpageLEFTNAV a:hover, #innerpageLEFTNAV a:focus, #subMenusContainer a:hover, #subMenusContainer a:focus, #innerpageLEFTNAV a.mainMenuParentBtnFocused, #subMenusContainer a.subMenuParentBtnFocused{
	color:#000000;
}

/* sub menu links on hover or focus */
#subMenusContainer a:hover, 
#subMenusContainer a:focus, 
#innerpageLEFTNAV a.mainMenuParentBtnFocused, 
#subMenusContainer a.subMenuParentBtnFocused,
#innerpageLEFTNAV li a:hover,
#innerpageLEFTNAV li a:focus{
	color:#000000;
}


/* ----[ 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 0px;
}

/* All submenu OLs and ULs */
#innerpageLEFTNAV ul, #subMenusContainer ul, {	
	/*border around submenu goes here*/
	border:1px solid #bdbdbd;
	background-color:#0066FF;
	overflow:hidden;
}

/* All ULs and OLs */
#innerpageLEFTNAV, #innerpageLEFTNAV ul, #subMenusContainer ul, { 
	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]  */
#innerpageLEFTNAV li { 
	/*great place to use a background image as a divider*/
	display:block;
	list-style:none;
	position:relative;
}

#subMenusContainer li{
	list-style: none;
}

/* main menu ul or ol elment */
#innerpageLEFTNAV{
	display:block;
	position: absolute;
	list-style:none;
	margin:0 0 0 0px;
	width:144px;
	z-index:5;

}

#subMenusContainer{	display:block; width:100%; overflow:visible; z-index:1000000000;}


/* --------------------------[ The below is just for non-javscript users ]--------------------------*/
#innerpageLEFTNAV li li{ float:none; }

#innerpageLEFTNAV li li a{ /* Just submenu links*/	
	position:relative;
	float:none;
	
}

#innerpageLEFTNAV 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 */
}

/* third-and-above-level lists */
#innerpageLEFTNAV li ul ul { margin: -1em 0 0 -1000em; }
#innerpageLEFTNAV li:hover ul ul {	margin-left: -1000em; }

 /* lists nested under hovered list items */
#innerpageLEFTNAV li:hover ul{	margin-left: 186px; margin-top:-2.5em;}
#innerpageLEFTNAV li li:hover ul {	margin-left: 10em; }

/* extra positioning rules for limited noscript keyboard accessibility */
#innerpageLEFTNAV li a:focus + ul {  margin-left: 186px; margin-top:-2.5em; }
#innerpageLEFTNAV li li a:focus + ul { left:186px; margin-left: 1010em; margin-top:-2.5em;}
#innerpageLEFTNAV li li a:focus {left:186px; margin-left:1000em; width:10em;  margin-top:-2.5em;}
#innerpageLEFTNAV li li li a:focus {left:186px; margin-left: 2010em; width: 10em;  margin-top:-2.5em;}
#innerpageLEFTNAV li:hover a:focus{ margin-left: 0; }
#innerpageLEFTNAV li li:hover a:focus + ul { margin-left: 10em; }





#innerpagelistBOX{ width:350px; overflow:hidden; font-family:Arial; font-size:12px;}
#innerpageLEFTLIST{ float:left; overflow:hidden; width:220px;}
#innerpageRIGHTLIST{ float:right; overflow:hidden; width:130px;}

#innerpageHEADING{ font-size:12px; background-color:#e2e2d0; overflow:hidden; padding:3px 20px 3px 20px;}


