/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
	position: relative;
	z-index: 999;  
	padding-left: 10px;
}
.sf-menu li {
	position: relative;
	z-index: 999;
}
.sf-menu ul {
	position: absolute;
	display: none;
	z-index: 999;
}
.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 li:hover ul, .sf-menu li.sfHover ul {
}
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: 10em; /* 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: 10em; /* match ul width */
	top: 0;
}
/*** DEMO SKIN ***/
.sf-menu {
	float: right;
}
.sf-menu ul {
	min-width: 12em; /* allow long menu items to determine submenu width */
	*width: 12em; /* no auto sub width for IE7, see white-space comment below */
}

.sf-menu a {
	color: #565656;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 20px; 
	line-height: 20px;
	margin-top: 4px;
	margin-bottom: 3px;
	padding-right: 10px;
	border-right: 1px dotted rgba(0,0,0,0.1);
}
.sf-menu li:hover a {
	border-right: 1px solid rgba(0,0,0,0);
}
.sf-menu a:hover, .sf-menu a:hover li {
	color: #2C2F38;
}
.sf-menu li {
	white-space: nowrap; /* no need for Supersubs plugin */
	*white-space: normal; /* ...unless you support IE7 (let it wrap) */
	padding: 9px 0px;  
}
.sf-menu a:hover {
	opacity: .8;
} 
.sf-menu li:hover {
	opacity: .8;
} 
.sf-menu li:first-child {
	border-left-width: 0;
}
.sf-menu li:last-child {
	border-right-width: 0;
}
.sf-menu ul {
	margin-top: .725em;
	background: #F7F7F8;
	left: 0;
	margin-left: 0;
	padding-left: 0;
}
.sf-menu ul li {
	text-align: left;
	line-height: 18px;
	color: #FFFFFF;
	padding: 5px 0;
	border-right-width: 0;
	border-right-color: rgba(0,0,0,0);
	border-left-color: rgba(0,0,0,0);
}
.sf-menu ul li a{ margin-top: 2px;}
.sf-menu ul li:first-child {
	border-top-width: 0;
	border-bottom-width: 0;
}
.sf-menu ul li:hover {
	background: rgba(255,255,255,.1);
	color: #35353D;
	box-shadow: none;
}
.sf-menu li:hover a, .sf-menu ul li:hover a {
	color: #35353D;
}
.sf-menu ul {
}
.sf-menu ul ul {
	margin-top: 0px;
	margin-left: 23px;
	opacity: 0;
}
.sf-menu ul:hover ul {
	opacity: 1;
} 
.sf-menu ul li a {
	color: #35353D;
	font-size: 11px;
	font-weight: 400;
	font-weight: 500;
	line-height: 26px;
	border-right: 0px solid #EDEDED;
}

.sf-menu li:hover {
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
	color: #BFBFBF;
}
.sf-menu li.sfHover {
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
	color: #AFAFAF;
}

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
	padding-right: .5em;
	*padding-right: 1em; /* no CSS arrows for IE7 (lack pseudo-elements) */
}
/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
	content: '\21E3';
	margin-left: 8px;
	/* order of following 3 rules important for fallbacks to work */
	border-top-color: #9099A5;
}
.sf-arrows > li > .sf-with-ul:focus:after, .sf-arrows > li:hover > .sf-with-ul:after, .sf-arrows > .sfHover > .sf-with-ul:after {
	border-top-color: #E8E8EA; /* IE8 fallback colour */
}
/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
	margin-top: -5px;
	margin-right: -3px;
	border-color: transparent;
	border-left-color: #ADADAF; /* edit this to suit design (no rgba in IE8) */
	border-left-color: #BFBFBF;
	content: '\2607';
}
.sf-arrows ul li > .sf-with-ul:focus:after, .sf-arrows ul li:hover > .sf-with-ul:after, .sf-arrows ul .sfHover > .sf-with-ul:after {
	border-left-color: #DFDFDD;
}

@media only screen and (max-width: 680px) {
	.sf-menu a {
		font-size: 12px;
	}
	.sf-menu ul ul {
		margin-top: 0px;
		margin-left: 0px;
		left: 0;
		top: 0;
	}
	.sf-menu ul li {
		z-index: 99999;
		position: relative
	}
	.sf-menu ul {
		position: relative;
		z-index: 99999;
	}
}