/* Dropdown control */
.selectBox-dropdown {
  position: relative;
  text-decoration: none;
  text-align: left;
  outline: none;
  display: inline-block;
  cursor: default;
  line-height:1;
  height:37px;
  background: #f0f0f0;
  color:#6c6e71;
}

.selectBox-dropdown .selectBox-label {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  line-height:37px;
  padding-left: 10px;
}

.selectBox-dropdown .selectBox-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 100%;
  line-height:1px;
  background: url(../images/selectbox-arrows.png) no-repeat -25px center;

}


/* Dropdown menu */
.selectBox-dropdown-menu {
  position: absolute;
  z-index: 99999;
  max-height: 200px;
  min-height: 1em;
  min-width:150px;
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, .8);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .8);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .8);
  overflow: auto;
  background: #828282;
}



/* Options */
.selectBox-options,
.selectBox-options LI,
.selectBox-options LI A {
  list-style: none;
  display: block;
  cursor: default;
  padding: 0;
  margin: 0;
  color:#fff;
}

.selectBox-options LI A {
  line-height: 1.3;
  overflow: hidden;
  background: 6px center no-repeat;
  padding:10px 0 10px 7px;
  margin:3px;
}

.selectBox-options LI.selectBox-hover A {
  background-color: #49494A;
}

.selectBox-options LI.selectBox-disabled A {
  color: #888;
  background-color: transparent;
}

.selectBox-options LI.selectBox-selected A {

}

.selectBox-options .selectBox-optgroup {
  color: #666;
  background: #EEE;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 .3em;
  white-space: nowrap;
}


/* Disabled state */
.selectBox.selectBox-disabled {
    
}

.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;
}
