/* Drop down styles*/
div.selectbox-wrapper {
  position:absolute;
  width:300px;
  background-color:white;
  border:1px solid #e7e7e7;
  margin:0px;
  margin-top:-45px;
  padding:1px 0px 0px 0px;
  text-align:left;
  max-height:250px;
  overflow:auto;
  -moz-border-radius:4px;
	-webkit-border-radius:4px;
	color: #525252;
	cursor: pointer;
	font-size:1em;/* Resize Font*/
}

/*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: #fbe3a3;
  color: #f87702;
}

/* Drop down list items style*/
div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  margin:0;
  padding:3px 3px 3px 0px;
  cursor:pointer;
  text-indent: 10px;
  font: normal 12px/18px "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  cursor: pointer;
}

/* Look and feel of select box */
.selectbox 
{
  margin: 10px 0px 15px 0px;
  padding: 0px 2px 0px 0px;
  font-size:1em;/* Resize Font*/
  width : 298px; /* Resize Width */
  display : block;
  text-indent: 10px;
  text-align:left; 
  background: url('images/bg_select.jpg') right;
  cursor: pointer;
  height:30px;
  border:none;
  color:#525252;
  line-height:23px;
}

	
