/* Drop down styles*/
div.selectbox-wrapper {
	position:absolute;
	width:170px;
	background-color: #FFF;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin:0px;
	margin-top:-10px;
	padding: 0px;
	text-align:left;
	max-height:200px;
	overflow:auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333;
	line-height:22px;
}
/*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: #dddddd;
}
/* Hover state for dropdown list */
div.selectbox-wrapper ul li.current { 
  background-color: #dddddd;
}
/* Drop down list items style*/
div.selectbox-wrapper ul li {
  list-style-type:none;
  display:block;
  margin:0;
  padding: 2px 0px 2px 3px;
  cursor:pointer;
}
/* Look and feel of select box */
.selectbox 
{
	margin: 0px 5px 10px 0px;
	padding: 0px 0px 0px 3px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333;
	width : 167px; /* Resize Width */
	display : block;
	text-align: left;
	height: 22px;
	cursor: pointer;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}