/*** ESSENTIAL STYLES ***/
.sf-menu {
}
.sf-menu .sf-mega {
 
}
.sf-menu > li {
}
.sf-menu li:hover > .sf-mega,
.sf-menu li.sfHover > .sf-mega {
  display: block;
}

.sf-menu > li > a {
  display: block;
  position: relative;
}


/*** DEMO SKIN ***/
.sf-menu {
}
.sf-menu .sf-mega {
}
.sf-menu > li > a {

}
.sf-menu > li {
  -webkit-transition: background .2s;
  transition: background .2s;
}
.sf-menu > li:hover,
.sf-menu > li.sfHover {
  /* only transition out, not in */
  -webkit-transition: none;
  transition: none;
}

/*** mega menu dropdown ***/
.sf-mega {
  box-sizing: border-box;
}
.sf-mega-section {
 }


/*** arrows (for all except IE7) **/
.sf-arrows .sf-with-ul .text {
  padding-right: 1em;
  *padding-right: 0em; /* 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: 1.75em;
  margin-top: -3px;
  height: 0;
  width: 0;
  /* order of following 3 rules important for fallbacks to work */
  border: 5px solid transparent;
  border-top-color: #FFFFFF; /* edit this to suit design (no rgba in IE8) */
  border-top-color: rgba(255,255,255,.35);
}
.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 */
}