.sselect {
  position: relative;
  width: 250px;
  text-align: left;
}
.sselect-text {
  height: 25px;
}
.sselect-text .txt {
  display: block;
  height: 25px;
  line-height: 25px;
  border: 1px solid #bec3c3;
  background-color: #fff;
  padding: 0 4px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.sselect-text .icon {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 19px;
  height: 20px;
  background: url('sselect.png') no-repeat 0 0;
}
.sselect-list {
  position: absolute;
  left: 0;
  top: 25px;
  display: none;
  width: 248px;
  background-color: #fff;
  z-index: 100000;
  border: 1px solid #bec3c3;
  max-height: 300px;
  overflow-y: scroll;
}
.sselect-open .sselect-list {
  display: block;
}
.sselect-ul {
  list-style: none;
  border-top: none;
  margin: 0 !important;
}
.sselect-ul a {
  display: block;
  padding: 2px 4px;
  text-decoration: none;
  color: #383838;
}
.sselect-ul a:hover {
  background: #eff0f0;
}
.sselect-ul .selected a {
  background: #0d87e5;
  color: #e6f1fa;
}
