/*** ESSENTIAL STYLES ***/
#navigation .sf-menu, #navigation .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
#navigation .sf-menu li {
	position: relative;
}
#navigation .sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
}
#navigation .sf-menu > li {
	float: left;
}
.sf-menu > li:not(:first-child)::before {
    content: '';
   	display: block;    
  	width: 1px;
    height: 100%;   
    position: absolute;    
    left: -1px;    
    top: 0;    
    bottom: 0;    
    background: rgba(170, 170, 170, 0.9);}  
#navigation .sf-menu li:hover > ul,
#navigation .sf-menu li.sfHover > ul {
	display: block;
}

#navigation .sf-menu a {
	display: block;
	position: relative;
}
#navigation .sf-menu ul ul {
	top: 0;
	left: 100%;
}


/*** DEMO SKIN ***/
#navigation .sf-menu {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
}
#navigation .sf-menu li {
	-webkit-flex: 1 auto;
	flex: 1 auto;
	white-space: nowrap;
}
#navigation .sf-menu a {
	position: relative;
	color: #000;
    font-family: 'RalewayBold';
    font-size: 16px;
    /*text-shadow: 0 1px rgba(0,0,0,.1);*/
    text-decoration: none;
    padding: 22px 10px;
    text-align: center;
	text-transform:uppercase;
}
#navigation .sf-menu > li a:hover, #navigation .sf-menu > li.sfHover > a,
#navigation .sf-menu > li.active > a, #navigation .sf-menu > li.selected > a{
	background: #757171;
	color:#fff;
}
#navigation .sf-menu ul {
	background: #3a3a3a;
		text-align:center;
	min-width: 100%;
}
#navigation .sf-menu ul li {
	border-top: 1px solid rgba(255,255,255,0.3);
}
#navigation .sf-menu ul li:first-child {
	border-top: 0;
}
#navigation .sf-menu ul a {
	text-align: center;
	padding: 10px;
	font-size: 13px;
	color:#ffffff;
}
#navigation .sf-menu ul a::before {
	content: none;
}
#navigation .sf-menu ul li a:hover, #navigation .sf-menu ul li.sfHover > a,
#navigation .sf-menu ul li.active > a, #navigation .sf-menu ul li.selected > a {
	background:#fff;
	color:#000000;
}

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
	padding-right: 2.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: '';
	position: absolute;    
	top: 70%;
    right: 45%;
	transform: translateX(-50%);
	height: 0;
	width: 0;
	border: 5px solid transparent;
	border-top-color: #000; /* edit this to suit design (no rgba in IE8) */
}
.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
}
/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
	margin-top: -5px;
	margin-right: -3px;
	border-color: transparent;
	border-left-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
	border-left-color: rgba(255,255,255,.5);
}
.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: white;
}

@media only screen and (max-width : 1024px) {
	.sf-arrows .sf-with-ul:after {
		
	}
}
@media only screen and (max-width : 991px) {
	#navigation .sf-menu a {
		font-size: 12px !important;}
		}