.customSelect {
	float: left;
	position: relative;
	font-family: Arial, 'Microsoft JhengHei', PMingLiU, sans-serif;
	font-size: 16px;
}

.customSelect .selectedValue {
	padding: 10px 49px 10px 20px;
	border: 2px solid #68BCF2;
	cursor: pointer;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: 25px;
	font-size: 16px;
	background-color: #FFF;
	color: #374A5B;
	*zoom: 1;
}

.customSelect .selectList {
	position: absolute;
	top: -999em;
	left: -999em;
	z-index: 100;
	overflow: hidden;
	list-style: none;
	background-color: #C6DDF1;
	-webkit-box-shadow: 0 5px 5px -1px rgba(7, 7, 7, 0.18);
	-moz-box-shadow: 0 5px 5px -1px rgba(7, 7, 7, 0.18);
	box-shadow: 0 5px 5px -1px rgba(7, 7, 7, 0.18);
}

.customSelect.select-open .selectList {
	top: 100% !important;
	left: 0 !important;
	right: 0;
}

.customSelect .selectList dl {
	width: 100% !important;
	background: #C6DDF1;
}

.customSelect .selectList dl.defaultScrollbar {
	overflow-x: hidden;
	overflow-y: scroll;
}

.customSelect dl, .customSelect dd {
	margin: 0;
}

.customSelect dd {
	padding: 15px 30px;
	line-height: 28px;
	cursor: pointer;
	font-size: 16px;
	color: #374A5B;
	zoom: 1;
}

.customSelect dd:first-child {
	position: relative;
}

.customSelect dd:first-child:after {
	content: '';
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 0;
	height: 1px;
	background-color: #496278;
}

.customSelect .disabled {
	cursor: default;
	color: #999;
}

.customSelect .selected, .customSelect .selectList dd.hovered {
	text-decoration: none;
	background-color: #E8F1F9;
}

.customSelect dt {
	font-weight: bold;
	font-style: italic;
}

.hasJS select.custom {
	position: absolute;
	left: -999em;
}

.hasJS select.custom.use-default {
	position: absolute;
	height: auto;
	width: 100%;
	left: auto;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	opacity: 0;
	/* prevents iOS from zooming in on field */
	font-size: 16px;
}

.customSelect.disabled .selectedValue {
	border: 2px solid #CCC;
	cursor: default;
	color: #CCC;
}

.customSelect .caret {
	content: '';
	display: inline-block;
	vertical-align: top;
	width: 16px;
	height: 8px;
	background: url(img/arrow.png) no-repeat center;
}

.customSelect .selectValueWrap .caret {
	position: absolute;
	top: 20px;
	right: 17px;
	cursor: pointer;
}

.customSelect .jspPane {
	overflow-x: hidden;
}

.customSelect .jspVerticalBar {
	right: 8px;
	width: 8px;
	background: none;
}

.customSelect .jspHorizontalBar {
	height: 0;
	overflow: hidden;
}

.customSelect .jspCap {
	display: block;
}

.customSelect .jspCapTop {
	height: 15px;
}

.customSelect .jspCapBottom {
	height: 22px;
}

.customSelect .jspTrack {
	background-color: #FFF;
}

.customSelect .jspDrag {
	background-color: #859AAB;
}