/*** ESSENTIAL STYLES ***/
.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;
}
.sf-menu > li {
  float: left;
}
.sf-menu li:hover > .dropdown-item,
.sf-menu li.sfHover > .dropdown-item {
  display: block;
}

.sf-menu a {
  display: block;
  position:relative;
}
.sf-menu ul ul {
  top: 0;
  left: 100%;
}


/*** DEMO SKIN ***/
.sf-menu {
  float: left;
  margin-bottom: 1em;
}
.sf-menu ul {
  background:#fff;
  box-shadow: 2px 2px 6px rgba(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: 4px 11px;
  text-decoration: none;
  zoom: 1; /* IE7 */
}
.sf-menu a {
  color: #769823;
}
.sf-menu li {
  white-space: nowrap; /* no need for Supersubs plugin */
  *white-space: normal; /* ...unless you support IE7 (let it wrap) */
}
.sf-menu ul li {
}
.sf-menu ul .dropdown-item li {
  background: #9AAEDB;
}

