/* Drop down styles*/
div.selectbox-wrapper {
  position:absolute;
  width:400px;
  background-color:black;
  border:1px solid #000;
  margin:-10px 0 0 4px;
  padding:0px;
  text-align:left;
  max-height:200px;
  overflow:auto;
  color:#efefef;
  font-size:11px;
}

/*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: #333; color:#eee
}

/* Hover state for dropdown list */
div.selectbox-wrapper ul li.current { 
  background-color: #333; color:#eee
}

/* Drop down list items style*/
div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  margin:0;
  padding:2px;
  cursor:pointer;
}

/* Look and feel of select box */
.selectbox 
{
  margin: 0px 5px 10px 0px;
  padding-left:2px;
  font-size:10px;
  width : 50px; /* Resize Width */
  display : block;
  text-align:left; 
  background-color:black;
  cursor: pointer;
  border:1px solid #000;
  color:#efefef; padding:5px;

	background:#000 url(/s/i/icons/dd-arrow-tux.png) no-repeat right;
	border-radius: 5px; 
	-moz-border-radius: 5px; 
	-webkit-border-radius: 5px; 
}

