/* 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
 * NOTE: CSS3 elements introduced - Dec 2012 tony_collings@conair.com
 */

/* ----[ LINKS ]----*/

/* all menu links */

#nav a {

   	text-decoration: none !important;   
    color: #fff;  
    text-shadow: none;  
    -webkit-transition: 500ms linear 0s;  
    -moz-transition: 500ms linear 0s;  
    -o-transition: 500ms linear 0s;  
    transition: 500ms linear 0s;  
    outline: 0 none;

}  

#subMenusContainer a:hover,
#nav a:hover{
	text-shadow: -1px 1px 8px #ffc, 1px -1px 8px #fff !important;
	text-decoration: none !important; 
}

#subMenusContainer a {
	text-decoration:none;
	display:block;
	padding: 10px 20px;
	color: #fff;
	
	/*font-weight: bolder; 
	text-transform: lowercase; */
	white-space: nowrap; _white-space: normal;
}


/* Just sub menu links */
#subMenusContainer a, #nav li li a{
	text-align:left;
}

/* All menu links on hover or focus */
#nav a:hover, #nav a:focus, #subMenusContainer a:hover, #subMenusContainer a:focus, #nav a.mainMenuParentBtnFocused, #subMenusContainer a.subMenuParentBtnFocused{
	color: #fff;
	font-weight: normal; 
	text-decoration: underline;
}

/* sub menu links on hover or focus */
#subMenusContainer a:hover, 
#subMenusContainer a:focus, 
#subMenusContainer a.subMenuParentBtnFocused
{
	background-color:#b0d203;
	color:#fff;
	text-decoration: none; 
	/*font-weight: bolder; 
	text-transform: lowercase; */
}

#subMenusContainer li:first-child a:hover, 
#subMenusContainer li:first-child a:focus, 
#subMenusContainer li:first-child a.subMenuParentBtnFocused{
	background: #b0d203 url('img/sub-nav-on.png') left top repeat-x; 
}



/* Parent Sub Menu Links ---[javascript users only]*/
.subMenuParentBtn{ 
/*
	background: url(../img/arrow_right.gif) right center no-repeat;  
*/
}

/* Parent Sub Menu Links on hover or focus ---[javascript users only]*/
.subMenuParentBtnFocused{ 
/*
	background: url(../img/arrow_right_over.gif) right center no-repeat;  
*/
}

/* Parent Main Menu Links ---[javascript users only]*/
.mainMenuParentBtn{	
/*
	 background: url(../img/arrow_down.gif) right center no-repeat; 
*/
}

/* Parent Main Menu Links on hover or focus ---[javascript users only]*/
.mainMenuParentBtnFocused{	
/*
	background: url(../img/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:0px;
	margin-top: 9px; /* Shim menu down from the inline-li element */ 


}

.smOW ul {	
	border-top: 0px; 
}


/* All ULs and OLs */
#nav ul, #nav ol, #subMenusContainer ul, #subMenusContainer ol { 
	padding: 0px;
	margin: 0px;
	list-style: none;
	background-color: #7c7c7c;
}

#subMenusContainer ul li:first-child, 
#subMenusContainer ol li:first-child{
	background: #7c7c7c url('img/sub-nav-off.png') left top repeat-x;
}

/* All submenu OLs and ULs */
#nav ol, #nav ul, #subMenusContainer ul, #subMenusContainer ol {	
	/*border around submenu goes here*/	 
	/*
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	*/
		
	/*background:#000000; border:1px solid #211c18;*/
	left:0;
}




#subMenusContainer li {
	list-style: none;
}
/* For IE6 Only... */
#subMenusContainer li a {
	_height: 24px; 	
	_line-height: 24px; 
	_vertical-align: middle;
	_width: 150px;   
}



#subMenusContainer{	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 ]--------------------------*/
#nav li li{	float:none; }
#nav li li a{ /* Just submenu links*/	
	position:relative;
	float:none;
}

#nav 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;
	border: 1px solid #211c18; 
}

/* third-and-above-level lists */
#nav li ul ul { margin: -1em 0 0 -1000em; }
#nav li:hover ul ul {	margin-left: -1000em; }

 /* lists nested under hovered list items */
#nav li:hover ul{	margin-left: 0; }
#nav li li:hover ul {	margin-left: 10em; margin-top:-2.5em;}

/* extra positioning rules for limited noscript keyboard accessibility */
#nav li a:focus + ul {  margin-left: 0; margin-top:2.2em; }
#nav li li a:focus + ul { left:0; margin-left: 1010em; margin-top:-2.2em;}
#nav li li a:focus {left:0;  margin-left:1000em; width:10em;  margin-top:0;}
#nav li li li a:focus {left:0; margin-left: 2010em; width: 10em;  margin-top:-1em;}
#nav li:hover a:focus{ margin-left: 0; }
#nav li li:hover a:focus + ul { margin-left: 10em; }
