/*** 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:last-child ul {
  right: 0;
  left: auto; }

.sf-menu > li {
  display: inline-block; }

.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%; }

.sf-menu li:last-child ul ul {
  right: 100%;
  top: 0; }

/*** DEMO SKIN ***/
.sticky .sf-menu {
  top: 10px;
  right: 80px; }
  @media (min-width: 1200px) {
    .sticky .sf-menu {
      right: 30px; } }
.sf-menu ul {
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  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 {
  padding: 15px 15px 13px;
  text-decoration: none;
  zoom: 1;
  /* IE7 */
  color: white;
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  font-size: 15px; }
  @media (min-width: 1025px) {
    .sf-menu a {
      font-size: 17px;
      padding: 13px 18px 13px; } }
  @media (min-width: 1150px) {
    .sf-menu a {
      padding: 13px 18px 13px;
      font-size: 20px; } }
.sf-menu li {
  white-space: nowrap;
  /* no need for Supersubs plugin */
  *white-space: normal;
  /* ...unless you support IE7 (let it wrap) */
  transition: background .2s;
  text-align: left;
  border-top: 1px solid transparent; }

.sf-menu ul li {
  background: #f6f7f7; }
  .sf-menu ul li a {
    font-size: 17px;
    font-weight: 400;
    padding: 12px 16px;
    color: #23313A; }

.sf-menu li:hover,
.sf-menu li.sfHover {
  transition: none; }

.sf-menu li li:hover,
.sf-menu li li.sfHover {
  background: #e6e6e6; }

/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul {
  padding-right: 30px; }
  @media (min-width: 1025px) {
    .sf-arrows .sf-with-ul {
      padding-right: 35px; } }
.sf-arrows .last ul .sf-with-ul {
  padding-right: 0;
  padding-left: 2.5em; }

/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
  content: '';
  position: absolute;
  top: 23px;
  right: 15px;
  margin-top: -3px;
  height: 0;
  width: 0;
  /* order of following 3 rules important for fallbacks to work */
  border-top-color: #dFeEFF;
  /* edit this to suit design (no rgba in IE8) */
  border-top-color: #d1aa68;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  border: solid #d1aa68;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px; }

.sf-arrows .sf-with-ul:before {
  content: '';
  position: absolute;
  top: 24px;
  right: 1em;
  margin-top: -3px;
  height: 0;
  width: 0;
  /* order of following 3 rules important for fallbacks to work */
  border: 5px solid transparent;
  border-top-color: #ebecef;
  z-index: 99;
  display: none; }

.sf-arrows .last ul .sf-with-ul:after {
  right: auto;
  left: 1em; }

.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: #d1aa68;
  /* IE8 fallback colour */ }

.sf-arrows > li > .sf-with-ul:focus:before,
.sf-arrows > li:hover > .sf-with-ul:before,
.sf-arrows > .sfHover > .sf-with-ul:before {
  border-top-color: #ebecec;
  /* IE8 fallback colour */ }

/* styling for right-facing and left-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: #d1aa68; }

.sf-arrows .last ul .sf-with-ul:after {
  border-left-color: transparent;
  border-right-color: #dFeEFF;
  /* edit this to suit design (no rgba in IE8) */
  border-right-color: #d1aa68; }

.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: #d1aa68; }

.sf-arrows .last ul li > .sf-with-ul:focus:after,
.sf-arrows .last ul li:hover > .sf-with-ul:after,
.sf-arrows .last ul .sfHover > .sf-with-ul:after {
  border-left-color: transparent;
  border-right-color: #d1aa68; }
