@CHARSET "UTF-8";

.jquery-selectbox {
	position: relative;
	height: 25px;
	border: 1px solid #2e1809;
	width: 250px;
	z-index: 0;
	display: block;
	padding: 0;
	margin-top: 4px;
	margin-right: auto;
	margin-bottom: 4px;
	margin-left: auto;
}
.jquery-selectbox.selecthover {
	border-color: #2e1809;
	background-color: #e0d3bc;
	z-index: 700;
	color: #5f2f22;
}	
.jquery-selectbox .jquery-selectbox-currentItem {
	white-space: nowrap;
	display: block;
	overflow: hidden;
	padding-top: 3px;
	padding-right: 4px;
	padding-bottom: 0px;
	padding-left: 3px;
}

.jquery-selectbox .jquery-selectbox-list {
	display: none;
	position: absolute;
	top: 25px;
	padding: 2px;
	left: 0px;
	background: #e0d3bc;
	width: 250px;
	height: 250px;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 1000;
	border: 1px solid #2e1809;
}
.jquery-selectbox .jquery-selectbox-moreButton {
	/*
	position: absolute;
	top: 0px;
	right: 0px;
	*/
	float: right;
	width: 26px;
	height: 16px;
	margin-top:4px;
	cursor: pointer;
	background-image: url(down_arrow.png);
	background-repeat: no-repeat;
}
.jquery-selectbox .jquery-selectbox-moreButton.morebuttonhover {
	
}

.jquery-selectbox .jquery-selectbox-item.listelementhover {
	background: #87683d;
	color: #eee;
}
.jquery-selectbox .jquery-selectbox-item {
	display: block;
	cursor: default;
}

/** ERROR classes **/
form .error .jquery-selectbox {
	color: #d00;
	border-color: #2e1809;
	background-image: url("bg-TextFieldError.gif");
}

