.sf-menu * {
	list-style: none;

}
.sf-menu {
	float: left;
	margin-bottom: 2em;
	width:auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	font-weight:bold;
	line-height: 18px;
}
.sf-menu ul {
	position: absolute;
	top: -999em;
	font-size: 14px ;
	font-weight:bold;
	line-height: 18px;
	/*width: 200px;  left offset of submenus and width of menus need to match (see below) */
}
.sf-menu ul li {
	list-style: none;
	
}
.sf-menu li:hover {
	visibility: inherit; 
	
}
.sf-menu li {
	float: left;
	position: relative;	

}

/*.sf-menu li ul {
	border: 2px solid #6c92ae;
	width:auto;
	height:auto;

}*/
.sf-menu li li {
	background:	#f2d111;
	height:auto;
	width:auto;
	border-left: 1px solid #006600;
	border-right: 1px solid #006600;
	border-bottom: 1px solid #006600;
	/*sub menu*/
	
}
.sf-menu li li li {
	/*background:	#000000;*/
	background:	#eb9e22;
	left:-129px;
/*	border-left: 1px solid #000066;
	border-bottom: 1px solid #000066;*/
}
/*.sf-menu li ul {
	background:	#663366;
	width:300px;
}*/
.sf-menu li li li:hover {
	background:	#f2d111 !important;
	/*background:	#eb9e22;*/
	left:-129px;
	border-left: 1px solid #006600;
	border-right: 1px solid #006600;
	border-bottom: 1px solid #006600;
	
	

}
.sf-menu a {
	display: inline-block;
	position: relative;
	padding: 7px 21px; /* if you adjust the top/bottom values, you will need to adjust the ul list item height noted below line 44 */
	text-decoration: none;
}
.sf-menu a:link, .sf-menu a:visited { 
	color: #006600;
	/*button text color*/
}

.sf-menu li:hover ul, .sf-menu li.sfHover ul {
	left: 0px;
	top: 50px; /* match top ul list item height */
	z-index: 99;
	
}
ul.sf-menu li:hover li ul, ul.sf-menu li.sfHover li ul {
	top: -999em;
}
ul.sf-menu li li:hover ul, ul.sf-menu li li.sfHover ul {
	left: 200px; /* match ul width */
	top: 0;
}
ul.sf-menu li li:hover li ul, ul.sf-menu li li.sfHover li ul {
	top: -999em;
}
ul.sf-menu li li li:hover ul, ul.sf-menu li li li.sfHover ul {
	left: 150em; /* match ul width */
	top: 0;
}
.sf-menu li:hover, .sf-menu li.sfHover, .sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
	background: #eb9e22;
	height: auto;
	width:auto;
	outline: 0;

	}
.sf-menu li ul li ul li:hover, .sf-menu li ul li ul a:hover, .sf-menu li ul li ul li.sfHover {
	background: #f2d111 ;
	height: auto;
	outline: 0;
}

/* ---- Arrows - To turn on/off use jQuery options.  If you have a custom arrow style, adjust the css below -- */
.sf-menu a.sf-with-ul {
	/*padding-right: 2.25em;*/
	min-width: 1px; 
}
.sf-sub-indicator {
	position: absolute;
	display: block;
	right: .75em;
	top: 1.05em; 
	width: 10px;
	height: 10px;
	text-indent: -999em;
	overflow: hidden;
	background: url(../images/arrows-ffffff.png) no-repeat /*-10px -100px*/; 
}
a > .sf-sub-indicator { 
	top: .8em;
	background-position: 0 -100px; 
}
a:focus > .sf-sub-indicator, 
a:hover > .sf-sub-indicator, 
a:active > .sf-sub-indicator, 
li:hover > a > .sf-sub-indicator, 
li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px; 
}
.sf-menu ul .sf-sub-indicator { 
background-position:  -10px 0; 
}
.sf-menu ul a > .sf-sub-indicator { 
background-position:  0 0; 
}
.sf-menu ul a:focus > .sf-sub-indicator, 
.sf-menu ul a:hover > .sf-sub-indicator, 
.sf-menu ul a:active > .sf-sub-indicator, 
.sf-menu ul li:hover > a > .sf-sub-indicator, 
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; 
}

/* ---- Shadows - To turn on/off use jQuery options.  If you have a custom shadow style, adjust the css below -- */
.sf-shadow ul {
	background: url(../images/shadow.png) no-repeat bottom right;
	padding: 0 8px 9px 0;
/*	-moz-border-radius-bottomleft: 17px;
	-moz-border-radius-topright: 17px;
	-webkit-border-top-right-radius: 17px;
	-webkit-border-bottom-left-radius: 17px;*/
}
.sf-shadow ul.sf-shadow-off {
	background: transparent;
}

/* ---------------------------------------------------------------------------------------------------------------- Vertical Menus */


/* To add a vertical menu style, add .sf-vertical to your parent ul (see Demo markup) */
.sf-vertical, .sf-vertical li, .sf-vertical li li {
	width: 20em;
}
.sf-vertical li:hover ul, .sf-vertical li.sfHover ul {
	left: 20em; /* match ul width */
	top: 0;
}
ul.sf-menu li li:hover ul, ul.sf-menu li li.sfHover ul {
	left: 20em; /* match ul width */
	top: 0;
}
ul.sf-vertical li li li:hover ul, ul.sf-vertical li li li.sfHover ul {
	left: 20em; /* match ul width */
	top: 0;
}
/*.sf-vertical li {
	background: #CCFF99;
}
.sf-vertical li li {
	background: #33CCFF;
}
.sf-vertical li li li {
	background: #FF6699;
}
.sf-vertical li:hover, .sf-vertical li.sfHover, .sf-vertical a:focus, .sf-vertical a:hover, .sf-vertical a:active {
	background: #FFFFCC;
}	
.sf-vertical a {
	padding: 0.5em 1em;
}	
.sf-vertical a:link, .sf-vertical a:visited { 
	color: #000000;
}*/
/* ---- Vertical Arrows - To turn on/off use jQuery options.  If you have a custom arrow style, adjust the css below -- */
/*.sf-vertical .sf-sub-indicator { 
	background-position: -10px 0; 
} 
.sf-vertical a > .sf-sub-indicator { 
	background-position: 0 0; 
} 
.sf-vertical a:focus > .sf-sub-indicator,
.sf-vertical a:hover > .sf-sub-indicator,
.sf-vertical a:active > .sf-sub-indicator,
.sf-vertical li:hover > a > .sf-sub-indicator,
.sf-vertical li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0;
}*/
