/* Drop down styles*/
div.selectbox-wrapper {
  position:absolute;
  width:190px;
  background-color:white;
  border:1px solid #ccc;
  margin:0px;
  margin-top:-10px;
  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*/
#step1_form_div li.selected { 
	background-color : #C4E165;
}

/* Hover state for dropdown list */
#step1_form_div li.current { 
	background-color : #C4E165;
}

/* Drop down list items style*/
#step1_form_div li {
  list-style-type:none;
  background : transparent;
  line-height : 12px;
  display:block;
  margin:0;
  padding:2px;
  cursor:pointer;
}

/* Look and feel of select box */
.selectbox 
{
  margin: 0px;
  padding: 2px 20px 0px 5px;
  font-size : 11px;
  width : 155px; /* Resize Width */
  height : 25px;
  display : block;
  text-align:left; 
  background : transparent;
  cursor: pointer;
  border:none;
}
