@CHARSET "UTF-8";

.jquery-selectbox {
  position: relative;
  height: 36px;
  /* width: 100px; */
  z-index: 0;
  float: left;
  display: inline;
  margin: 4px 4px 4px 0;
  color: #444;
  padding: 0;
  border-right: solid 2px #e97f4b;
  background-image: url("../images/custom_select_box/bg-TextField.jpg");
  background-repeat: no-repeat;
  color: #707070;
  font-family:Arial, Helvetica, sans-serif;
  font-weight:bold;
  font-size: 18px;
}
.jquery-selectbox.selecthover {
  border-color: none;
  background-color: #FFFCDF;
  /* background-image: url("../images/custom_select_box/bg-TextFieldFocused.gif"); */
  z-index: 700;
}
.jquery-selectbox .jquery-selectbox-currentItem {
  padding: 7px 0px 0px 7px;
  white-space: nowrap;
  display: block;
  /* overflow: hidden; */
}

.jquery-selectbox .jquery-selectbox-list {
  display: none;
  position: absolute;
  top: 32px;
  padding: 2px;
  left: 0px;
  background: #fffcdf;
  /* width: 100px; */
  height: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 1000;
  border: 1px solid #ddd;
}
.jquery-selectbox .jquery-selectbox-moreButton {
  /*
  position: absolute;
  top: 0px;
  right: 0px;
  */
  float: right;
  background: transparent url("../images/custom_select_box/lay-selectMoreButton.png") no-repeat -1px 3px;
  width: 24px;
  height: 27px;
  cursor: pointer;
}
.jquery-selectbox .jquery-selectbox-moreButton.morebuttonhover {
  background: transparent url("../images/custom_select_box/lay-selectMoreButton.png") no-repeat -1px 3px;
}

.jquery-selectbox .jquery-selectbox-item.listelementhover {
  background: #f26014;
  color: #eee;
}
.jquery-selectbox .jquery-selectbox-item {
  display: block;
  cursor: default;
  font-size: 13px;
  padding: 4px;
  color: #707070;
  font-family: Arial, Helvetica, sans-serif;
}

/** ERROR classes **/
form .error .jquery-selectbox {
  color: #d00;
  border-color: #d00;
  background-image: url("../images/custom_select_box/bg-TextFieldError.gif");
}
