﻿/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.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%;
}


/* Main menu styles
========================================================*/
.sf-menu > li {
  float: left;
  position: relative;
  text-align: center;
}
.sf-menu > li + li {
  margin-left: 51px;
}
.sf-menu > li > .sf-with-ul:after {
  font-family: FontAwesome;
  font-size: 10px;
  position: absolute;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  cursor: default;
  color: #ffffff;
  bottom: -7px;
  left: 50%;
  margin-left: -3px;
}
.sf-menu > li > a {
  text-transform: uppercase;
  font: 700 14px/18px "Open Sans", sans-serif;
  display: inline-block;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: #e7e6d4;
}
.sf-menu > li > a:hover {
  color: #E8B03F;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.sf-menu > li > a:active {
  background: transparent;
  color: #E8B03F;
}
.sf-menu .sfHover > a:after {
  color: #E8B03F;
}
.sf-menu > li.current > a {
  color: #E8B03F;
}
.sf-menu > li.current > .sf-with-ul:after {
  color: #E8B03F;
}
.sf-menu > li.sfHover > a {
  color: #E8B03F;
}
.sf-menu a {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.sf-menu a:hover {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
/* First level sub-menu styles
========================================================*/
.sf-menu ul {
  display: none;
  border: 3px solid #BBA593;
  min-width: 131px;
  font: 400 12px/12px "Open Sans", sans-serif;
  position: absolute;
  top: 34px;
  left: 50%;
  margin-left: -75px;
  padding: 10px 5px 10px 5px;
  background: #030e18;
  text-align: center;
  z-index: 2;
  color: #dadada;
}
.sf-menu ul > li + li {
  margin-top: 6px;
}
.sf-menu ul li {
  line-height: 22px;
  position: relative;
  display: block;
}
.sf-menu ul li > .sf-with-ul:after {
  font-family: FontAwesome;
  font-size: 10px;
  position: absolute;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  cursor: default;
  color: #ffffff;
  bottom: -1px;
  right: 15px;
}
.sf-menu ul li a {
  display: block;
  color: #ffffff;
  text-transform: none;
}
.sf-menu ul li a:hover {
  background: #E8B03F;
  color: #030e18;
}
.sf-menu ul > .sfHover > a:after {
  color: #030e18;
}
.sf-menu ul li.sfHover > a {
  background: #E8B03F;
  color: #030e18;
}
/* Second level sub-menu styles
========================================================*/
.sf-menu ul ul {
  position: absolute;
  top: 0px;
  left: 141px;
  margin-left: -5px;
  background: #030e18;
  padding: 10px 5px 10px 5px;
  z-index: 4;
  text-align: center;
}
.sf-menu ul ul li {
  line-height: 22px;
}
.sf-menu ul ul li a {
  color: #ffffff;
  text-transform: none;
  display: block;
}
.sf-menu ul ul li:hover a {
  background: #E8B03F;
  color: #030e18;
}
.sf-menu ul ul li + li {
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .sf-menu {
    display: none;
  }
  nav {
    width: 100%;
    float: none;
  }
  .select-menu {
    border-radius: none;
    text-transform: capitalize;
    float: none;
    color: #E8B03F;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
    background: #ffffff;
    font: 22px/28px "Open Sans", sans-serif;
    text-align: left;
    border: 1px solid #c1c1c1;
    padding: 2px 0;
    position: relative;
  }
  .select-menu option {
    text-align: left;
    position: relative;
  }
}
/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
}
/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 1em;
	margin-top: 10px;
	height: 0;
	width: 0;
	/* order of following 3 rules important for fallbacks to work */
	border: 5px solid transparent;
	border-top-color: #dFeEFF; /* edit this to suit design (no rgba in IE8) */
	border-top-color: rgba(255,255,255,.5);
}
.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: white; /* 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: #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;
}