/* Drop down styles*/
div.selectbox-wrapper {
  position:absolute;
  width:176px;
  background-color:white;
  border:1px solid #e7e7e7;
  margin:0px;
  margin-top:-16px;
  padding:1px 0px 0px 0px;
  text-align:left;
  max-height:300px;
  overflow:auto;
	color: #525252;
	cursor: pointer;
}

/*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: #3a1042;
  color: #fff;
}

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

}

/* Look and feel of select box */
.selectbox 
{
  margin: 0px 0px 15px 0px;
  padding: 0px 0px 0px 0px;
  width : 178px; /* Resize Width */
  display : block;
  text-indent: 10px;
  text-align:left; 
  background: url('images/bg_select.jpg') right;
  cursor: pointer;
  height:38px;
  border:none;
  font-size:10px;
  color:#fff;
  text-transform:uppercase;
  line-height:38px;
}

	
