
.jquery-selectbox {
	position: relative;
	float: right;
	width: 80px;
	height: 20px;
	z-index: 0;
	font-size: 11px;
	background: url(images/bg_select_on.jpg) 0 0 no-repeat;
}
.jquery-selectbox.selecthover {
	background: url(images/bg_select_off.jpg) 0 0 no-repeat;
	z-index: 700;
}	
.jquery-selectbox .jquery-selectbox-currentItem {
	text-align: left;
	padding: 2px 0 0 5px;
	white-space: nowrap;
	display: block;
	overflow: hidden;
}
.jquery-selectbox .jquery-selectbox-list { /* Drop-Down Box */
	display: none;
	position: absolute;
	top: 20px;
	background: #fff;
	width: 78px;
	height: 110px;
	overflow-x: hidden;
	overflow-y: hidden;
	z-index: 1000;
	border: 1px solid #cdcdcd;
	border-top: none;
}
.jquery-selectbox .jquery-selectbox-moreButton {
	/*
	position: absolute;
	top: 0px;
	right: 0px;
	*/
	float: right;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.jquery-selectbox .jquery-selectbox-item.listelementhover {
	background: #7f756b;
	color: #fff;
}
.jquery-selectbox .jquery-selectbox-item {
	padding: 0 0 0 10px;
	display: block;
	cursor: default;
	text-align: left;
}

