.custom-select
{
  float:left;
  text-decoration:none;
  text-align:left;
  cursor:pointer;
  position:relative;
  background: transparent url(images/dropdown_background.gif) left top repeat-x;
  overflow:hidden;
  color: #fff;
  width: 100px;
  height: 18px;
  margin-top: 4px;
}

.custom-select a {
  font-size: 11px;
}

.custom-select-left {
  height: 18px;
  width: 6px;
  float: left;
  background: transparent url(images/dropdown_left.gif) left top no-repeat;
}

.custom-select:hover,.custom-select:focus,.custom-select-open
{
}

.custom-select-status
{
  float:left;
  color:#fff;
  margin-top: 2px;
  font-size: 11px;
}

.custom-select-roletext
{
  position:absolute;
  left:-99999px;
}

.custom-select-button-icon
{
  float:right;
  background:transparent url(images/dropdown_arrows.gif) left top no-repeat;
  height:18px;
  width:23px;
}

.custom-select:hover .custom-select-button-icon,.custom-select:focus .custom-select-button-icon,.custom-select-open .custom-select-button-icon
{
  /* background-position:-500px center; */
}

.custom-select-menu
{
  background:#e9e9e9;
  z-index:999999;
  position:absolute;
  font-size:12px;
  -moz-border-radius:3px;
  -webkit-border-radius:3px;
  border-radius:3px;
  width:180px;
  cursor:pointer;
  overflow:auto;
  overflow-x:hidden;
  margin:0;
  padding:0;
}

.custom-select-menu li
{
  list-style:none;
  clear:both;
  margin:0;
  padding:0;
}

.custom-select-menu li a
{
  text-decoration:none;
  color:#555;
  display:block;
  cursor:pointer;
  padding:.5em 5px;
}

.custom-select-menu li.hover-focus
{
  background:#e6e6e6 url(images/button-silver.gif) right center repeat-x;
  color:#444;
}

.custom-select-menu li.selected
{
  background:#66b81e url(images/menu-gray.gif) left center repeat-x;
  color:#fff;
}

.custom-select-menu li.selected a
{
  color:#fff;
}

.custom-select-menu li:first-child
{
  -moz-border-radius-topright:3px;
  -webkit-border-top-right-radius:3px;
  border-top-right-radius:3px;
  -moz-border-radius-topleft:3px;
  -webkit-border-top-left-radius:3px;
  border-top-left-radius:3px;
}

.custom-select-menu li:last-child
{
  -moz-border-radius-bottomright:3px;
  -webkit-border-bottom-right-radius:3px;
  border-bottom-right-radius:3px;
  -moz-border-radius-bottomleft:3px;
  -webkit-border-bottom-left-radius:3px;
  border-bottom-left-radius:3px;
}

.custom-select-menu-hidden,.select-hidden
{
  display:none;
}