/* Drop down styles*/
div.selectbox-wrapper {
  position:absolute;
  width:213px;
  background-color:white;
  border:1px solid #b7c5d1;
  margin:0px;
  padding:0px;
  text-align:left;
  overflow:auto;
  margin-top:-3px;
  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 { 
  color: #8d1227;
}

/* Hover state for dropdown list */
div.selectbox-wrapper ul li.current { 
  background-color: #e8e8e8;
}

/* Drop down list items style*/
div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  margin:0;
  height:20px;
  line-height:20px;
  padding:0 5px;
  font-family:Arial; font-size:12px; color:#333333;
  cursor:pointer;
}

/* Look and feel of select box */
.selectbox 
{
  padding-left:5px;
  font-family:Arial;
  font-size:12px;/* Resize Font*/
  width : 213px; /* Resize Width */
  height:27px;
  line-height:27px;
  display : block;
  text-align:left; 
  background: url(../n-images/txt-select.jpg) top left no-repeat;
  cursor: pointer;
  border:0px;
  color:#484848;
}



