
#ja-cssmenu { /* all lists */
	margin: 0;
	padding: 0;
	height: 20px;
	line-height: 20px;
}

#ja-cssmenu ul { /* all lists */
	margin: 0;
	padding: 0;
}
	
#ja-cssmenu li { /* all list items */
	margin: 0;
	padding: 0;
	background: none;
	display: block;
	float: left;
	cursor: pointer;
	
}

#ja-cssmenu li ul { /* second-level lists */
	position: absolute;
	z-index: 99;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	width: 15.4em;
	w\idth: 14.9em; 
	
	height: auto;
}

#ja-cssmenu li ul ul { /* third-and-above-level lists */
	margin: -1.5em 0 0 12em;
}

#ja-cssmenu li li {
	padding: 0 1em 0 0;
	margin: 0;
	width: 13.9em;
}

#ja-cssmenu ul a {
	width: 13.8em;
	w\idth: 9.8em;
}

#ja-cssmenu li:hover ul ul, #ja-cssmenu li:hover ul ul ul,
#ja-cssmenu li.sfhover ul ul, #ja-cssmenu li.sfhover ul ul ul {
	left: -999em;
}

/* This "unhides" the sub-menus (left: -999em is what hides them) */
#ja-cssmenu li:hover ul, #ja-cssmenu li li:hover ul, #ja-cssmenu li li li:hover ul,
#ja-cssmenu li.sfhover ul, #ja-cssmenu li li.sfhover ul, #ja-cssmenu li li li.sfhover ul {
	left: auto;
}

/* STYLING THE MENU
-----------------------------------*/
#ja-cssmenu li ul {
	/*background: url(../../images/opaque-default.png);  does this not work?  this is the child nav */
	color: #60b071;  
/* 	background-color: #FFFFFF;*/
	
	
	/*  this is too wide
	border: 1px solid;
	border-color: #E6F0FB;
	border-top: none;
	*/
}

#ja-cssmenu li ul a {
	text-transform: none;
	font-size: 11px;  /* child font size */
	border-right: none;
	width:auto;  /* fixes child width */
}

#ja-cssmenu li ul a:hover {
	color: #FFFFFF;
	background-color:#60b071; /* hover over child menu button color green not full width   */
	width:auto;  /*  this fixes hover width */
}

#ja-cssmenu li a {
	padding: 0 4px;   /*  nav padding on sides  */
	display: block;
	text-decoration: none;
	border-right: 2px solid;
	border-right-color: #E6F0FB; 
}

#ja-cssmenu li a:hover {
/* 	background-color: #60b071;   green  */

	color: #FFFFFF;
}

#ja-cssmenu li a.active {
	background-color: #60b071;  /*  green  */
	color: #FFFFFF;
}

#ja-cssmenu li a.active:hover,
#ja-cssmenu li a.active:active {
	color: #FFFFFF;
/*	background-color:#FF0000;  red  not it  */
}

#ja-cssmenu li li a.active {
	background: none;
	font-weight: bold;
/* background-color:#FF0000; 	red  not it  */
	
}

#ja-cssmenu li.havechild {
/* background-color:#FF0000; 	red  not it  this is main nav not active button color */

}

#ja-cssmenu li.havesubchild {
/* background-color:#FF0000; 	red  not it  */
	
}

#ja-cssmenu li:hover,
#ja-cssmenu li.sfhover {
 /* background-color: #B5D3F2; light blu  #B5D3F2*/
/* this is the parent nav color when hovering over child nav */
	
}

#ja-cssmenu ul li:hover, #ja-cssmenu ul ul li:hover,
#ja-cssmenu ul li.sfhover, #ja-cssmenu ul ul li.sfhover {
 /*background-color: #60b071;  	 too wide this is the child nav button color green when hovered over  */
}

#ja-cssmenu ul li a,
#ja-cssmenu ul ul li a {
	font-weight: normal;
	padding: 0 3px;
	background-color:#B5D3F2; 	/* dk blue #316BA6 this is the background of child nav  */
	color: #316ba6;
	border: 1px solid;
	border-color: #E6F0FB;
	border-top: none;

	
	
	
}
