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

/*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: #5ea8cf;
}

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

/* Drop down list items style*/
div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  margin:0;
  cursor:pointer;
  color:#FFF;
  line-height:30px;
  padding-left:13px;
}

/* Look and feel of select box */
.selectbox 
{
  margin: 0px 0 3px;
  padding-left:13px;
  font-family:Arial, Helvetica, sans-serif;
  font-size:12px;/* Resize Font*/
  width:197px; /* Resize Width */
  line-height:38px;
  height:38px;
  display : block;
  text-align:left; 
  background:url(../images/drop_down_box_bg.png) no-repeat left top;
  cursor: pointer;
  border:none;
  color:#FFF;
}


