/* Drop down styles*/
div.selectbox-wrapper {
  position:absolute;
  background-color:#333;
  border:1px solid #ccc;
  margin:0px;
  margin-top:-5px;
  padding:0px;
  text-align:left;
  max-height:200px;
  overflow:auto;
  font-size:12px;
}

/*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: #CCC;
}

/* Hover state for dropdown list */
div.selectbox-wrapper ul li.current { 
  background-color: #000;
}

/* Drop down list items style*/
div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  margin:0;
  cursor:pointer;
  color:#FFF;
  line-height:24px;
  padding-left:7px;
}

/* Look and feel of select box */
.selectbox 
{
  padding-left:7px;
  font-family:Arial, Helvetica, sans-serif;
  font-size:11px;/* Resize Font*/
  width:53px; /* Resize Width */
  line-height:25px;
  height:29px;
  display : block;
  text-align:left; 
  background:url(../images/drop_down1.png) no-repeat left top;
  cursor: pointer;
  border:none;
  color:#666666;
}

#Items2_input
{
  padding-left:7px;
  font-family:Arial, Helvetica, sans-serif;
  font-size:11px;/* Resize Font*/
  width:88px; /* Resize Width */
  line-height:25px;
  height:29px;
  display : block;
  text-align:left; 
  background:url(../images/drop_down2.png) no-repeat left top;
  cursor: pointer;
  border:none;
  color:#666666;
}


