/* Copy from this line onward to style your select element */
input.nice_select {
	width:130px;
	height:22px;
	cursor:default;
	color: #8767aa;
	padding:8px 0 0 5px;
	background:url(back-nice-select.jpg) no-repeat top right;
	border: solid 1px #ff2d6a;
	float:none;
}

ul.virtual_select{
	max-height:190px;
	width:145px;
	overflow:auto;
	list-style-type:none;
	margin:0;
	padding:0;
	display:block;
	position:absolute;
	/*top:-5px;
	left:0px;*/
	display:none;
	border: solid 1px #ff2d6a;
	border-top: none;
	z-index: 1000;
	float: none;
}
ul.virtual_select li{
	display:block;
	height:18px;
	padding:2px 0 0 5px;
	margin:0;
	border: none;
	cursor:pointer;
	background-color:#fff;
	font-weight: normal;
	font-size: 13px;
	padding-left: 6px;
	color: #8767aa;
}
ul.virtual_select li.last{
	border-bottom:1px solid #ddd !important;
}
ul.virtual_select li.over, ul.virtual_select li.selected{
	background-color:#f4f4f4;
	color:#000;
}
ul.virtual_select li.selected{
	border: none;
}