/* Dropdown */

.dropdown-menu  {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 100px;
  padding: 5px 0;
  margin: 8px 0 0;
  font-size: 12px;
  text-align: left;
  list-style: none;
  color: #f2f2f2;
  background-image:url(img/backgrounds/green_dark_90.png);background-repeat:repeat;
/*  -webkit-background-clip: padding-box;
          background-clip: padding-box;*/
  border: 1px solid #679951 !important;
  border-radius: 3px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.dropdown-menu::before {
  position: absolute;
  top: -8px;
  right: 9px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #679951;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.dropdown-menu::after {
  position: absolute;
  top: -7px;
  right: 10px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #679951;
  border-left: 6px solid transparent;
  content: '';
}

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #adc086;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #e8c860 !important;
  text-decoration: none;
  background-image:url(img/backgrounds/green_standard_90.png);background-repeat:repeat;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #f2f2f2;
  text-decoration: none;
  background-image:url(img/backgrounds/green_standard_90.png);background-repeat:repeat;
  outline: 0;
}
