/* Drop down styles*/
div.selectbox-wrapper {
  position:absolute;
  width:200px;
  margin:-12px 0px 0px 35px;
  text-align:left;
  max-height:200px;
  overflow:auto;
}

/*Drop down list styles*/
div.selectbox-wrapper ul {
	list-style-type:none;
	margin:auto;
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight:bold;
	color:#fff;
	border:none;
        overflow: hidden;
}
/* Selected item in dropdown list*/
div.selectbox-wrapper ul li.selected { 
	background:url(../images/bg.gif);
}

/* Hover state for dropdown list */
div.selectbox-wrapper ul li.current {
	color:#ff6600;
	background:#fff;
	font-family:Arial, Helvetica, sans-serif;
}

/* Drop down list items style*/
div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  padding:2px 0px 5px 7px;
  margin-left: -35px;
width:90px;
  cursor:pointer;
  background:url(../images/bg.gif);

}

/* Look and feel of select box */
.selectbox 
{
  margin: 0px 5px 10px 26px;
  width : 90px; /* Resize Width */
  height:35px;
  display : block;
  text-align:left; 
  background: url('../images/select.png')  no-repeat;
  cursor: pointer;
}
