
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	selectbox
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

.jquery-selectbox {
	position: relative;
	height: 20px;
	line-height:20px;
	width: 54px!important;
	z-index: 0;
	display: inline-block;
	color: #006600;
	padding: 0;
	background-image: url(background.gif);
	text-transform:uppercase;
}
.jquery-selectbox.selecthover {
	background-color: #d4f103;
	z-index: 700;
	background:url(background-over.gif);
}	
.jquery-selectbox .jquery-selectbox-currentItem {
	padding: 0px 0 0 4px;
	white-space: nowrap;
	display: block;
	overflow: hidden;
	margin-right:5px;
}

.jquery-selectbox .jquery-selectbox-list {
	display: none;
	position: absolute;
	top: 21px;
	left: 0px;
	background: #d4f103;
	height: 120px;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 1000;
	border: 1px solid #fff;
	border-top:none;
	min-width:52px;
	min-height:10px;
	
}
.jquery-selectbox .jquery-selectbox-moreButton {
	
	position: absolute;
	top: 2px;
	right:2px;
	float: right;
	background: url(button.gif);
	width: 17px;
	height: 16px;
	cursor: pointer;
}
.jquery-selectbox .jquery-selectbox-moreButton.morebuttonhover {
	background: url(button-over.gif);
}

.jquery-selectbox .jquery-selectbox-item.listelementhover {
	background: #fff;
	color: #006600;
	padding:1px 3px;
	cursor:pointer;
	border-bottom:1px solid #fff;
	
}
.jquery-selectbox .jquery-selectbox-item {
	display: block;
	cursor: default;
	padding:1px 3px;
	border-bottom:1px solid #cbde40;
}

// ERROR classes 
form .error .jquery-selectbox {
	color: #d00;
	border-color: #d00;
	background-image: url("../images/bg-TextFieldError.gif");
}
