/* 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 */
#subMenusContainer a{
	text-decoration:none;
	display: block ;
	padding:10px 20px;
	width: 100px;
/*
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
*/
}

#subMenusContainer img{

	margin: 0px 0px;
	padding:0px 0px;


}

/* Just sub menu links */
#subMenusContainer a, #menu li li a{
	text-align:center;
	padding-left: 0px;
	padding-bottom: 10px;
	color: black;
	width: 102px;
	height: 4px;
	font: bold 14px "Trebuchet MS";
	line-height: 8px;
	background-color: white;
}

/* All menu links on hover or focus */
#subMenusContainer a:hover, #subMenusContainer a:focus, #subMenusContainer a.subMenuParentBtnFocused{
	background-color: black ;
	color: white;
}

/* sub menu links on hover or focus */
#menu a.mainMenuParentBtnFocused, 
#subMenusContainer a.subMenuParentBtnFocused,
#menu li a:hover,
#menu li a:focus{
    font-weight:	bold;
	color: white;
    background-color: black;
/* 	-moz-border-radius: 10px; */
}



/* ----[ 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 ULs and OLs */
#subMenusContainer ul, #subMenusContainer ol { 
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1em;

}

/* All submenu OLs and ULs */
#subMenusContainer ul, #subMenusContainer ol {	
	/*border around submenu goes here*/	 
	left:0;	
/*
	border:1px solid #a7a7a7;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
*/
	
}
