/* Drop down styles*/
div.selectbox-wrapper {
  position:absolute;
  width:400px;
  background-color:white;
  border:none;
  margin:-10px 0 0;
  padding:0px;
  text-align:left;
  max-height:200px;
  overflow:auto;
}

/*Drop down list styles*/
/*div.selectbox-wrapper ul {*/
div.selectbox-wrapper ul {
  list-style-type:none;
  margin:0px;
  padding:0px;
  font-family:Georgia, "Times New Roman", Times, serif;
  font-style:italic;
  font-size:12px;/* Resize Font*/
  border:#9A9794 1px solid;
}
/* Selected item in dropdown list*/
div.selectbox-wrapper ul li.selected { 
  background-color: #a80532;
  color:#fff;
}

/* Hover state for dropdown list */
div.selectbox-wrapper ul li.current { 
  background-color: #9A9794;
  color:#fff;
}

/* Drop down list items style*/
div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  float:none;
  margin:0;
  padding:2px;
  cursor:pointer;
}

/* Look and feel of select box */
.selectbox {
  margin: 5px 0;
  padding-left:2px;
  font-family:Georgia, "Times New Roman", Times, serif;
  font-style:italic;
  font-size:12px;/* Resize Font*/
  width : 145px; /* Resize Width */
  height:19px;
  display : block;
  text-align:left; 
  background:#FFF url(images/arrow-dn.png) right no-repeat;
  cursor: pointer;
  border:inset 1px;
  color:#5A5B5B;
}


