/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
	line-height: 1.1;
}
.sf-menu li {
	position: relative;
}
.sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
}
.sf-menu > li {
	float: left;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
}

.sf-menu a {
	display: block;
	position: relative;
}
.sf-menu ul ul {
	top: 0;
	left: 100%;
}

/*** DEMO SKIN ***/
.sf-menu {
	/*float: left;*/
	/*margin-bottom: 1em;*/
}
.sf-menu ul {
	/*box-shadow: 2px 2px 6px rgba(0,0,0,.2);*/
	-webkit-box-shadow: 2px 2px 6px rgba(0,0,0,.3);
    -moz-box-shadow: 2px 2px 6px rgba(0,0,0,.3);	
	box-shadow: 2px 2px 6px rgba(0,0,0,.3);
	min-width: 10em; /* allow long menu items to determine submenu width */
	*width: 10em; /* no auto sub width for IE7, see white-space comment below */
}
.sf-menu a {
/*	border-left: 1px solid #fff;
	border-top: 1px solid #dFeEFF;*/ /* fallback colour must use full shorthand */
/*	border-top: 1px solid rgba(255,255,255,.5);
	padding: .75em 1em;*/
	padding: 6px 8px 5px;
	text-decoration: none;
	zoom: 1; /* IE7 */
}
.sf-menu a {
	color: #fff; /*dark Green */
    font-weight: 600;
}
.sf-menu a:hover {
	background: #ece0cb;
	color:#000;
    font-weight: 600;
}
.sf-menu li {
/*	background: #BDD2FF;*/
	white-space: nowrap; /* no need for Supersubs plugin */
	*white-space: normal; /* ...unless you support IE7 (let it wrap) */
	-webkit-transition: background .2s;
	transition: background .2s;
}
.sf-menu ul li {
	background: #3a2c22;
}
.sf-menu ul ul li {
	background: #3a2c22;
}
.sf-menu li:hover,
.sf-menu li.sfHover {
	/*background: #CFDEFF;*/
	background:		#ece0cb;
	color:			#000; /*dark green*/
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
	z-index:1000;
}
.sf-menu li.sfHover > a{
	color:			#000; /*dark green*/
}
.sfHover a:hover{
	background: #ece0cb;
	color:#000;
/*    font-weight: 600;*/
}
/*** arrows (for all except IE7) **/
ul.sf-menu > li > a > span.sf-sub-indicator { display: none; }
span.sf-arrows { display: none; }
span.sf-with-ul { display: none; }