/* Drop down styles*/
div.selectbox-wrapper {
  position:absolute;
  width:388px;
  background-color:white;
  border:1px solid #ccc;
  margin:0px;
 
  padding:0px;
  text-align:left;
  max-height:150px;
  overflow:auto;
  z-index:1000;
  line-height:5px;
  color:#666;
  
}

/*Drop down list styles*/
div.selectbox-wrapper ul {
  list-style-type:none;
  margin:0px;
  padding:0px;
  font-size:11px;
  
}
/* Selected item in dropdown list*/
div.selectbox-wrapper ul li.selected { 

}

/* Hover state for dropdown list */
div.selectbox-wrapper ul li.current { 
cursor:pointer;

}

/* Drop down list items style*/
div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  margin:0;
  padding:9px;
  font-family:'SegoeUI'
  cursor:pointer;
}

/* Look and feel of select box */
.selectbox 
{
 

  font-size:11px;/* Resize Font*/
  width : 80px; /* Resize Width */
  display : block;
  text-align:left; 
  background:url(../images/droparow.png) no-repeat right center;
  cursor: pointer;
  border:none;
  height:14px;
  font-weight:bold;
  padding:3px;

}

