/* Drop down styles*/
div.selectbox-wrapper {
  position:absolute;
  z-index:10;
  width:auto!important;
  background-color:white;
  text-align:left;
  max-height:200px;
  overflow:auto;
}

/*Drop down list styles*/
div.selectbox-wrapper ul {
  list-style-type:none;
  margin:0px!important;
  padding:0px;
}
/* Selected item in dropdown list*/
div.selectbox-wrapper ul li.selected { 
  background-color: #9ed22f!important;
  color: #fff!important;
}

/* Hover state for dropdown list */
div.selectbox-wrapper ul li.current { 
  background-color: #9ed22f!important;
  color: #000;
}

/* Drop down list items style*/
div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  margin:0;
  cursor:pointer;
  padding:5px!important;
}

/* Look and feel of select box */
.selectbox 
{
  font-family:Helvetica, sans-serif;
  font-size:12px;/* Resize Font*/
  width:87px; /* Resize Width */
  display : block;
  text-align:left;
  height:21px;
  cursor: pointer;
  color:#636363;
  border:none;
  text-indent:5px;
}


