/**
 *  CSS for custom dropdowns
**/

.custom-select {
  overflow: hidden;
}

.custom-select-cover {
  cursor: default;
  position: absolute; top: 0; left: 0; z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
}

.custom-select-arrow {
  position: absolute; top: 1px; right: 3px; z-index: 1;
  border: 0;
}

.custom-select-marked {
  position: absolute; top: 4px; left: 4px; z-index: 0;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: bold;
}

.custom-select-content-wrap {
  overflow: hidden;
  margin-top: 36px;
  width: 100%;
  height: 71px;
  background-color: #000000;
}

.custom-select ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-select ul li {
  margin: 0;
  padding: 0;
  font-size: 11px;
  font-weight: bold;
  line-height: 11px;
}

.custom-select ul li a {
  display: block;
  padding: 3px;
  color: #FFFFFF;
  text-decoration: none;
}

.custom-select ul li a:hover {
  color: #000000;
  background-color: #DBB329;
}


.custom-select .select-scroll-bar-wrap {
  position: absolute; top: 24px; right: 0; z-index: 9;
  width: 22px;
  height: 71px;
}

.custom-select .select-scroll-bar {
  position: absolute; top: 22px; left: 1px;
  width: 100%;
  height: 26px;
}

.custom-select .select-scroll-indicator {
  position: relative;
  width: 100%;
  height: 10px;
}

.custom-select .select-scroll-arrow-up,
.custom-select .select-scroll-arrow-down {
  position: absolute; top: 21px; left: 0;
  width: 100%;
  height: 16px;
  /*width: 17px;
  height: 18px;
  */
  border: 0;
  background-color: #000000;
  background-image: url(/images/dropdown_arrow_up.gif);
  background-repeat: no-repeat;
}

.custom-select .select-scroll-arrow-down {
  top: 105px;
  background-image: url(/images/dropdown_arrow_down.gif);
}
