/* Drop down styles*/
div.selectbox-wrapper {
  position:absolute;
  width:400px;
  background-color:white;
  border:1px solid #ccc;
  margin:0px;
  margin-top:-5px;
  margin-left: 2px;
  padding:0px;
  text-align:left;
  max-height:200px;
  overflow:auto;
}

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

/* Hover state for dropdown list */
div.selectbox-wrapper ul li.current { 
  background-color: #CDD8E4;  
}

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

/* Look and feel of select box */
.selectbox_short
{
  padding-left:11px;  
  font-size:1em;/* Resize Font*/
  width : 90px; /* Resize Width */
  height: 37px;
  line-height: 37px;
  display : inline-block;
  text-align:left; 
  background: url('short_dropdown.png');
  background-repeat: no-repeat;
  cursor: pointer;
  border:none;
  color:#333;
}

.selectbox_long
{
  padding-left:11px;  
  font-size:1em;/* Resize Font*/
  width : 437px; /* Resize Width */
  height: 41px;
  line-height: 37px;
  display : inline-block;
  text-align:left; 
  background: url('long_dropdown.png');
  background-repeat: no-repeat;
  cursor: pointer;
  border:none;
  color:#333;
}