@CHARSET "UTF-8";

.jquery-selectbox {
	height: 22px;
	width: 200px;
	background-color: #362f2c;
	color: #999999;
	line-height: 1;
	font-size: 93%;
	position: relative;
}
.jquery-selectbox.selecthover {
	border-color: #9F7627;
	background-color: #362f2c;
	background-image: url("../img/bg-TextFieldFocused.gif");
	z-index: 700;
}	
.jquery-selectbox .jquery-selectbox-currentItem {
	padding: 3px 0px 0px 3px;
	white-space: nowrap;
	display: block;
	overflow: hidden;
	padding-top: 5px;
	color: #999999;
	line-height: 1;
	font-size: 93%;
}

.jquery-selectbox .jquery-selectbox-list {
	display: none;
	position: absolute;
	top: 22px;
	padding: 2px;
	left: 0px;
	background: #362f2c;
	width: 194px;
	height: 120px;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 1000;
	border: 1px solid black;
	font-size: 93%;
}
.jquery-selectbox .jquery-selectbox-moreButton {
	float: right;
	background: url(../img/custom-select-bg.png);
	cursor: pointer;
	width: 21px;
	height: 20px;
	margin-top: 1px;
	margin-right: 1px;
}
.jquery-selectbox .jquery-selectbox-moreButton.morebuttonhover {
	background: url(../img/custom-select-bg.png);
}

.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: #d00;
	background-image: url("../img/bg-TextFieldError.gif");
}

