/**
 * css file for drowdown listings
 */

/* Drop down styles*/
div.selectbox-wrapper {
  position:absolute;
  width:400px;
  margin:0px;
  margin-top:0px;
  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: #fff;
}

/* Hover state for dropdown list */
div.selectbox-wrapper ul li.current { 
  background-color: #fff;
}

/* Drop down list items style*/
div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  margin:0;
  padding:2px;
  cursor:pointer;
  background-color: #f3f3f3;
  color:#000;
}

/* Look and feel of select box */
.selectbox 
{
  padding-left:2px;
  font-size:1em;/* Resize Font*/
  width : 145px; /* Resize Width */
  display : block;
  text-align:left; 
  background: url('../img/general/selectbox.png') left top no-repeat;
  cursor: pointer;
  color:#000;
  border:0px;
  height:21px;
  line-height: 21px;
}


