/* always visible styles */
.selectbox{float:left;display:inline-block;*display:inline;font-size:1.4em;position:relative;zoom:1;}
.selectbox .display{
  background: #e4e3e4;
  border: 2px solid #cdcdd2;
  height: 20px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin: 12px 0 0;
  font-size: 1em;
  font-weight: 200;
  font-family: "etica-1","etica-2","Helvetica Neue", "HelveticaNeue", Helvetica, Arial, sans-serif;
  color: #1b1818;
  padding: 2px 20px 2px 6px;
  cursor:default;
  line-height:20px;
  display:block;
  font-weight:200;
  text-decoration:none;
  position: relative;
  font-size: 0.8em;
}
.selectbox.disabled .display{color:#999;}
.selectbox.focused .display .text{background-color:#3399ff;color:#fcfcfc;}
.selectbox .display:active{}
.selectbox .display:active .arrow_btn{}
.selectbox .display.hover .arrow_btn {background: url('/images/forms/select/arrow_r.png');}
.selectbox .display .arrow_btn {background:url('/images/forms/select/arrow.png');display:block;height:17px;position:absolute;right:4px;top:3px;width:19px;}
.selectbox .display .arrow_btn .interior{}
.selectbox .display .arrow_btn .arrow{}
.selectbox .value{display:none;}

/* dropdown styles */
.items{
  font-size: 1em;
  font-weight: 200;
  background:#fff;
  border:1px solid #828790;
  display:block;
  list-style-type:none;
  margin:0;
  overflow-x:hidden;
  overflow-y:auto;
  padding:0 0 1px 0;
  z-index:99999;
  -moz-box-shadow:0 3px 5px rgba(0,0,0,.5);
  -webkit-box-shadow:0 3px 5px rgba(0,0,0,.5);
}
.items.above{}
.items li{display:block;margin:0;padding:0;/*white-space:nowrap; maybe necessary if using fixedWidth: false */}
.items li:first-child{margin-top:0;}
.items li>a{color:#000;cursor:default;display:block;padding:1px 3px;text-decoration:none;}
.items li.selected a{border-bottom:1px dotted #999;border-top:1px dotted #999;}
.items li.disabled a{color:#999;}
.items li.hover>a{background-color:#3399ff;color:#fcfcfc;}
.items .value{display:none;}

/* optgroup styles */
.items .optgroup .items{
  border:none;
  margin:0;
  padding:0;
  -moz-box-shadow:none;
  -webkit-box-shadow:none;
}
.items .optgroup>.label{font-weight:bold;line-height:1em;}
.items .optgroup .items li>a{padding-left:1em;}

/* easy rounding styles */
.round_sb.display{
  padding:2px 26px 2px 5px;
  border-radius:5px;
  -moz-border-radius:5px;
  -webkit-border-radius:5px;
}
.round_sb.display .arrow_btn{
  right:2px;
  top:2px;
  border-radius:3px;
  -moz-border-radius:3px;
  -webkit-border-radius:3px;
}
.round_sb.items{
  border-radius:5px;
  -moz-border-radius:5px;
  -webkit-border-radius:5px;
}
.round_sb.items>li>a{padding:4px 6px;}
.round_sb.items>li.first>a{
  -moz-border-radius-topleft:5px;
  -moz-border-radius-topright:5px;
  -webkit-border-top-left-radius:5px;
  -webkit-border-top-right-radius:5px;
}
.round_sb.items>li.last>a{
  -moz-border-radius-bottomleft:5px;
  -moz-border-radius-bottomright:5px;
  -webkit-border-bottom-left-radius:5px;
  -webkit-border-bottom-right-radius:5px;
}
/* for optgroups */
.round_sb.items>li>.label{line-height:27px;padding:4px 6px;}
.round_sb.items>li>.items li>a{padding:4px 6px 4px 12px;}