/*** ESSENTIAL STYLES ***/
.sf-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	top: 10px;
}
.sf-menu li {
	position: relative;
}

.sf-menu ul {
	position: absolute;
	display: none;
	top: 35px;
	left: 0;
	z-index: 99;
}
.sf-menu > li {
	/*float: left;*/
	display:inline-block;
}


.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
	cursor: pointer;
}

.sf-menu a {
	padding: 15px;
	font-size: 1.0em;
	display: block;
	position: relative;
}
.sf-menu ul ul {
	top: 0;
}
/*** MAIN SKIN ***/
.sf-menu {
	z-index: 2;
	position: absolute;
	right: 0;
	height: 100%;
}
.sf-menu ul {
	
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.sf-menu a {
	margin: auto;
	text-decoration: none;
	zoom: 1; /* IE7 */
}
.sf-menu a {
	color: #4a4a49;
	text-transform: none;
	font-family: 'blinkerregular', sans-serif;
	font-size: 1em;
	width: 100%;
	text-align: left;
	-webkit-transition: color .2s;
	transition: color .2s;
}
.sf-menu li {
	white-space: nowrap; /* no need for Supersubs plugin */
	*white-space: normal; /* ...unless you support IE7 (let it wrap) */
	height: 40px;
/* 	border-right: 1px solid #b8b8b8; */
}

.sf-menu li:last-child
{
	border: none;
}

.sf-menu > li > a {
	top: -2px;
}

.sf-menu ul li {
	background: rgba(255,255,255,1);
	width: 100%;
	font-size: 1em;
	border: none;
}

.sf-menu ul li ul {
	left:100%;
}

.sf-menu ul ul li {
	background: rgba(255,255,255,1);
	border: none;
}

.sf-menu li a:hover,
.sf-menu li.sfHover a{
	cursor: pointer;
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
	text-align: left;
}

.current a,
.sf-menu li a:hover {
	color: #e53131!important;
	cursor: pointer;
}

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
	padding-right: 1.5em;
	*padding-right: 0.5em; /* no CSS arrows for IE7 (lack pseudo-elements) */
}
/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0.5em;
	margin-top: -3px;
	height: 0;
	width: 0;
	/* order of following 3 rules important for fallbacks to work */
	border: 5px solid transparent;
	border-top-color: #4a4a49; /* edit this to suit design (no rgba in IE8) */
	border-top-color: #4a4a49;
}
.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: #e53131; /* 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: #4a4a49; /* edit this to suit design (no rgba in IE8) */
	border-left-color: #4a4a49;
}
.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: #e53131;
}
