/* Styles for custom selects */
.done select{
	height:1px;
	width:1px;
	border:none;
	background:none;
	padding:0;
	margin:0;
    position: relative;
    left:-2px;
    z-index: -10;
	outline:none;
	-webkit-appearance: none;
}
.select-list{
	position: absolute;
	left: 0
}
.custom-select{
	z-index: 1
}
.custom-select *{
	-webkit-user-select:none;
	-khtml-user-select: none;
	-moz-user-select: 	none;
	-ms-user-select: 	none;
	-o-user-select: 	none;
	user-select: 		none;
}
.open_list{
	z-index: 10
}
.custom-select ul,
.custom-select li{
	margin: 0;
	padding: 0;
	list-style: none
}
.custom-select,
.custom-select ul{
	position: relative;
	top: 0;
	left: 0
}
.custom-select .custom-text{
	cursor: pointer;
	display: inline-block;
}
.custom-select li{
	cursor: pointer;
	min-height: 25px;
}
.select-scroll{
	position: absolute;
	right: 2px;
	top: 2px;
	z-index: 2
}
.default-scroll ul{
	overflow-y: scroll
}
.custom-scroll{
	overflow: hidden
}
.scroll-drag{
	display: block;
	position: absolute;
	left: 1px;
	cursor: pointer
}
.disable *{
    cursor: default !important
}


/* Style for example*/
.custom-select {
	color: #676E71;
	font: 12px/15px 'PT Sans';
	height: 23px;
	margin-bottom: 14px;
}
.custom-select .custom-text,
.custom-select.disable span.custom-text:hover {
	background: url("../img/select_bg.png") no-repeat scroll right center #FFFFFF;
	border: 1px solid #BBC3C9;
	height: 21px;
	line-height: 21px;
	overflow: hidden;
	padding: 0 0 0 10px;
}
.custom-select .custom-text:after{
	font-size: 15px;
	position: relative;
	top: -6px;
	right: 12px;
	display: block;
	float: right;
	width: 6px;
	z-index: 2;
}

.select-list{
	top: 22px;
/*	line-height: 21px;*/
	padding: 0 0 0 10px;
	background-color: #FFF;
	color: #676E71;
	border: 1px solid #bbc3c9;
}
.select-list.open_list{
	top: 22px;
}

.select-list.custom-scroll{
	padding: 2px 0 4px 10px;
}
.select-list li.disabled{
	color: #CCCCCC;
	cursor: default;
}
.select-scroll{
	background-color: #FFF;
	width: 12px;
}
.scroll-drag{
	top: 0;
	width: 10px;
	background-color: #676E71;
}
.maxlength .scroll-drag:after{
	display: block;
	font-size: 14px;
	position: relative;
	left: 50%;
	top: 50%;
	margin: -14px 0 0 -4px;
}

.disable{
	opacity: 0.5 !important;
}
