@CHARSET "UTF-8";

.jquery-selectbox {
	position: relative;
	height: 18px;
	border: 1px solid #d2bb82;
	width: 100px;
	/*
	float: left;
		display: inline;
	*/
	margin:2px 0 2px 6px;
	font-size: 12px;
	color: #d2bb82;
	padding: 0;
	background-color: #2d2d2d;
	cursor: pointer;
}
#left_nav .jquery-selectbox { 
	border-right:none; margin:2px 0;
}
.jquery-selectbox.selecthover {
	border-color: #9F7627;
	color:#d2bb82;
	background-color: #2d2d2d;
}	
.jquery-selectbox .jquery-selectbox-currentItem {
	padding: 0 0 0 3px;
	height: 16px;
	white-space: nowrap;
	display: block;
	float: left;
	color:#d2bb82;
	overflow: hidden;
	width: 80%;
}
.jquery-selectbox .jquery-selectbox-currentItem:hover,
.jquery-selectbox .jquery-selectbox-currentItem:active,
.jquery-selectbox .jquery-selectbox-currentItem:visited{
	text-decoration:none;
	color:#d2bb82;
}

.jquery-selectbox .jquery-selectbox-list {
	display: none;
	position: absolute;
	top: 18px;
	padding: 2px 2px 2px 3px;
	left: -1px;
	background: #2d2d2d;
	width: 212px;
	height: 120px;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 1;
	border: 1px solid #d2ad63;
}
.jquery-selectbox .jquery-selectbox-moreButton {
	position: absolute;
	right: 0;
	top: 0;
	background: url("/images/select-box-arrow.gif");
	width: 24px;
	height: 18px;
	cursor: pointer;
	
}
.jquery-selectbox .jquery-selectbox-moreButton.morebuttonhover {
}

.jquery-selectbox .jquery-selectbox-item.listelementhover {
	background: #751d23;
	color: #eee;
}
.jquery-selectbox .jquery-selectbox-item {
	display: block;
	cursor: default;
}

/** ERROR classes **/
form .error .jquery-selectbox {
	color: #d00;
	border-color: #d00;
}