/* selectbox
--------------------------------------------- */

.sbHolder{
  background: #fff;
  font-family: Helvetica, Arial, sans-serif;;
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  height: 0px;
  position: relative;
  width: 168px;
  margin: 0 0 0 -10px;
}
.sbSelector{
  display: block;
  height: 0px;
  left: 0;
  outline: none;
  overflow: hidden;
  position: absolute;
  text-indent: 10px;
  top: 0;
  width: 148px;
}
.sbSelector:link, .sbSelector:visited, .sbSelector:hover{
  color: #363636;
  outline: none;
  text-decoration: none;
}
.sbToggle{
  background: none;
  display: block;
  height: 0px;
  outline: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.sbToggle:hover, .sbHolder:hover .sbToggle {
  background-position: right -25px;
}
.sbToggleOpen{
  z-index: 111;
}
.sbToggleOpen:hover{

}
.sbHolderDisabled{
  background-color: #3C3C3C;
  border: solid 1px #515151;
}
.sbHolderDisabled .sbHolder{

}
.sbHolderDisabled .sbToggle{

}
.sbOptions{
  background: #fff;
  border: 1px solid #dddddd;
  list-style: none;
  left: 0px;
  margin: 0;
  padding: 1px 0 0 0;
  position: absolute;
  top: -24px !important;
  width: 168px;
  z-index: 1;
  overflow-y: auto;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow:  0px 2px 8px 0px rgba(0, 0, 0, 0.51);
    box-shadow:  0px 2px 8px 0px rgba(0, 0, 0, 0.51);
}
.sbOptions li {
  width: 100%;
  text-indent: 9px;
  padding-bottom: 1px;
  background: none;
}
.sbOptions a{
  display: block;
  outline: none;
  padding: 2px 0px;
  margin: 0 1px;
  border: 1px solid #f2f2f2;
  background: #f2f2f2;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}
.sbOptions .current-li a {
    border-color: #ecc56c;
    background: #ffd46e;
}
.sbOptions a:link, .sbOptions a:visited{
  color: #363636;
  text-decoration: none;
}
.sbOptions a:hover{
  background: #ffd46e;
  border-color: #f2f2f2;
}
.sbOptions li.last a{
  border-bottom: none;
}
.sbOptions .sbDisabled{
  color: #999;
  display: block;
  padding: 2px 0;
}
.sbOptions .sbGroup{
  color: #EBB52D;
  display: block;
  font-weight: bold;
  padding: 7px 0 7px 3px;
}
.sbOptions .sbSub{
  padding-left: 17px;
}