/* Dropdown control */
.selectBox-dropdown {
  min-width: 100px;
  position: relative;
  border: none;
  line-height: 1.5;
  text-decoration: none;
  text-align: left;
  color: #fff;
  outline: none;
  vertical-align: middle;
  background: rgba(0, 0, 0, .3);
  display: block;
  width: 100% !important;
  cursor: default;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 1px;
}

.selectBox-dropdown:focus,
.selectBox-dropdown:focus .selectBox-arrow {
    border-color: #000;
}

.selectBox-dropdown.selectBox-menuShowing-bottom {
}

.selectBox-dropdown.selectBox-menuShowing-top {
}

.selectBox-dropdown .selectBox-label {
  padding: 2px 8px 2px 18px;
  height: 28px;
  line-height: 28px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
}

.selectBox-dropdown .selectBox-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 23px;
  height: 28px;
  background: url(../images/img27x16arrow_down.png) 50% center no-repeat;
  background-size: 50%;
  border: none;
}

/* Dropdown menu */
.selectBox-dropdown-menu {
  position: absolute;
  z-index: 99999;
  max-height: 200px;
  min-height: 1em;
  border: solid 1px #000; /* should be the same border width as .selectBox-dropdown */
  background: rgba(0,0,0,.8);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* Inline control */
.selectBox-inline {
  min-width: 150px;
  outline: none;
  border: none;
  background: #FFF;
  display: inline-block;
  overflow: auto;
}

.selectBox-inline:focus {
  border-color: #f00;
}

/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
  list-style: none;
  display: block;
  cursor: default;
  padding: 0;
  margin: 0;
}

.selectBox-options.selectBox-options-top{
  border-bottom:none;
	margin-top:1px;
}
.selectBox-options.selectBox-options-bottom{
	border-top:none;
}

.selectBox-options LI A {
  line-height: 45px;
  padding: 0 .5em;
  white-space: nowrap;
  overflow: hidden;
  background: 6px center no-repeat;
  text-decoration: none;
}

.selectBox-options LI.selectBox-hover A, .selectBox-options LI.selectBox-hover.selectBox-selected A {
  color: #000;
  background-color: #ffcd33;
}

.selectBox-options LI.selectBox-disabled A {
  color: #888;
  background-color: transparent;
}

.selectBox-options LI.selectBox-selected A {
  color: #ffcd33;
  background-color: #1c2935;
}

.selectBox-options .selectBox-optgroup {
  color: #fff;
  background: rgba(0,0,0,.8);
  font-weight: bold;
  line-height: 1.5;
  padding: 0 .3em;
  white-space: nowrap;
}

/* Disabled state */
.selectBox.selectBox-disabled {
  color: #888 !important;
}

.selectBox-dropdown.selectBox-disabled .selectBox-arrow {
  opacity: .5;
  filter: alpha(opacity=50);
}

.selectBox-inline.selectBox-disabled {
  color: #888 !important;
}

.selectBox-inline.selectBox-disabled .selectBox-options A {
  background-color: transparent !important;
}
