/* Styles for custom selects */
.done select{
	height:0px;
	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 {
  font-size: 14px;
  list-style: outside none none;
  margin: 0;
  padding: 1px 0;
}
.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
	}
.disabled *{
    cursor:             default !important
    }
/* Style for example*/
.custom-select {
  float: left;
  width: 100%;
}
.custom-select .custom-text,
.custom-select.disabled span.custom-text:hover{
	overflow:			hidden;
	height:				35px;
	padding-left:10px;
	line-height:		32px;
	color:				#b6b6b5;
	border:1px solid #ccc;
	-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; box-shadow:none; text-shadow:none; border-bottom:2px solid #ddd;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
	width:100%; 
	float:left;
		background:#fff;
		min-width:160px;
	}
.custom-select:focus, .custom-text:hover, .custom-text:focus{
	border-color:#999 !important;
}
.custom-select .custom-text:after{
	position:			relative;
	top:				2px;
	right:				4px;
	display:			block;
	content:			'';
	float: 				right;
	width:				6px;
	z-index: 			2;
	background:			url(../images/arrow.png);
	height:				30px;
	width:				28px;
	}
.select-list{
	top:				35px;
	line-height:		25px;
	padding:			0 0 0 10px;
	background-color:	#FFF;
	color:				#999;
	width:				100%;
	-webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px;
	border:1px solid #ccc;
	}
.select-list.custom-scroll {
  padding: 0px;
  
  z-index: 99999;
}
.select-list .selected,
.select-list li:hover{
	color:#000;
	}
	.select-list li{padding:0px 10px;	margin:0px;}
	.select-list li a{padding:2px 10px;}
.select-scroll{
	background-color:	#ccc;
	width:				12px;
	}
.scroll-drag{
	top:				0;
	width:				10px;
	background-color:	#777;
	}
.maxlength .scroll-drag:after{
	display:			block;
	content:			'≡';
	font-size:			14px;
	position:			relative;
	left:				50%;
	top:				50%;
	margin:				-14px 0 0 -4px
	}
.custom-select .hover{
	color:				#FFF
	}
.custom-select.disabled{
    opacity:            0.5 !important;
    }
