/* Selectbox 
-------------------------------------------*/
.select-box-container {
	background:#e5e5e5;
	width:205px; height:30px;
	padding:12px 10px 10px 10px;
	margin-bottom:25px;
}

/* Look and feel of select box */
.selectbox 
{
	background:url(images/drop-down.gif) top left no-repeat;
	width:207px; height:32px;
	display:block;
	padding:0 0 0 10px;
	cursor: pointer;
	border:none;
	outline:none;
	overflow: hidden;
}

/* Drop down styles*/
div.selectbox-wrapper {
  position:absolute;
  width:207px;
  margin:0px;
  margin-top:-10px;
  padding:0px;
  text-align:left;
  max-height:200px;
  overflow:auto;
}

/*Drop down list styles*/
div.selectbox-wrapper ul {
  list-style-type:none;
  margin:10px 0 0 0; padding:0px;
  border-top:1px solid #fff;
  border-left:1px solid #fff;
  border-right:1px solid #fff;
}
/* Selected item in dropdown list*/
div.selectbox-wrapper ul li.selected { 
  background: red;
  display:block;
}

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

/* Drop down list items style*/
div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  margin:0;
  padding:10px 2px 10px 12px;
  cursor:pointer;
  border-bottom:1px solid #fff;
  color: #000;
  font-size: 13px;
  background:#cecece;
}




