/* Custom Selectbox */

.jquery-selectbox {
	position: relative;
	height: 35px;
	width: 290px !important;
	z-index: 0;
	float: left;
	display: inline;
	font-size: 11px;
	font-family: Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
	color: #979797;
	font-weight:normal;
	padding: 0;
	background-image: url("../img/forms/input-bg.png");
}
.jquery-selectbox.selecthover {
	border-color: #eaeaea;
	background-color: #FFF;
	z-index: 700;
}	
.jquery-selectbox .jquery-selectbox-currentItem {
	padding:8px 0 0 10px;
	white-space: nowrap;
	display: block;
	overflow: hidden;
	font-weight:normal;
    color:#5B636E;
    font-size:12px;
}

.jquery-selectbox .jquery-selectbox-list {
	display: none;
	position: absolute;
	top: 35px;
	padding: 0px;
	left: 0px;
	background: #fff;
	width: 288px;
	height: auto;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 1000;
	border: 1px solid #eaeaea;
}
.jquery-selectbox .jquery-selectbox-moreButton {
	position: absolute;
	top: 0px;
	right: 0px;
	background: url("../img/forms/dropdown-arr.png");
	cursor:pointer;
	height:35px;
	width:42px;
}
.jquery-selectbox .jquery-selectbox-moreButton.morebuttonhover {
	background: url("../img/forms/dropdown-arr.png");
}

.jquery-selectbox .jquery-selectbox-item.listelementhover {
	background: #f9f9f9;
	color: #666;
}
.jquery-selectbox .jquery-selectbox-item {
	display: block;
	cursor: default;
	padding:3px 7px;
	line-height:14px;
}

/** ERROR classes **/
form .error .jquery-selectbox {
	color: #d00;
	border-color: #d00;
}

.limited {height:125px !important;}
