.customSelect { 
	position: relative;			
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif; 
}		
.customSelect .selectedValue {
  padding:0 10px;
  margin-bottom: 0;
  line-height:33px;
  height:33px;
  box-sizing:border-box;
  color: #A2A1A1;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #d2d2d2;
  *zoom: 1;
}


.customSelect:hover .selectedValue {border: 1px solid #81c8d4; color: #3A3A3A;}
.customSelect .selectList {
	z-index: 100;
	position: absolute;
	left: -999em;
	top: -999em;
	
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  background-color: #ffffff;
  
}

.customSelect.select-open .selectList {
	left: 0 !important;
	top: auto !important;
	padding:0;
	margin-top:0;
}
.customSelect .selectList dl {
	background: #fff;	

}
.customSelect .selectList dl.defaultScrollbar {
	overflow-x: hidden;
	overflow-y: scroll;	
}
.customSelect dl, .customSelect dd {
	margin: 0;
}
.customSelect dd {
	zoom: 1;
	cursor: pointer;
}
.customSelect .disabled {
	color: #999;
	cursor: default;
}
.customSelect .selected {

}
.customSelect .selectList dd.hovered {
	border:1px solid #81C8D4;
}
.customSelect .selectList dd.disabled.hovered {
	
}
.customSelect dt {
	font-weight: bold;
	font-style: italic;
	padding: 2px 10px 2px 6px;
}	
.customSelect dd {
	padding: 0px 10px 0px 10px;
	border:1px solid #d2d2d2;
	margin-right:22px;
	height:33px;
	line-height:33px;
	box-sizing:border-box;
	font-family:Arial, Helvetica, sans-serif;
	color:#3a3a3a;
	font-size:14px;
	margin-bottom:-1px;
	
} 

.customSelect dd:first-child {
	border-top:none;
 
}
.customSelect dd:last-child {
	margin-bottom:0;
 
}
.customSelect dd.hovered:first-child {
	border-top:none;
}


.customSelect dd.hovered + dd { 
    border-top:1px solid #81C8D4;
}


.hasJS select.custom {
	position: absolute;
	left: -999em;
}
.hasJS select.custom.use-default {
	position: absolute;
	left: auto;
	height: auto;
	width: 100%;
	appearance:none;
	-moz-appearance:none;
	-webkit-appearance:none;
	opacity: 0;
	/* prevents iOS from zooming in on field */
	font-size: 16px;
}
.customSelect.focused .selectedValue {
	box-shadow: 0 0 2px #00aedb;
}
.customSelect.disabled .selectedValue {
	border: 1px solid #ccc;
	color: #ccc;
	cursor: default;
}

.customSelect .caret {
	display: inline-block;
	width:28px;
	height:31px;
	background:url(../images/carat.png) no-repeat;

}
.customSelect .selectValueWrap .caret {
	position: absolute;
	top: 1px;
	right: 1px;
	cursor: pointer;
}
.selectValueWrap:hover .caret { background-position:0 -33px;}
.select-open .selectValueWrap .caret { background-position:0 -33px;}
.customSelect .jspPane {
	overflow-x: hidden;
}
.customSelect .jspVerticalBar {
	background:#fff;
	width: 33px;
	
}
.customSelect .jspHorizontalBar {
	height: 0;
	overflow: hidden;
}
.customSelect .jspTrack {
	background: #e1e2e3;
	position: relative;
	left:13px;	
	width:7px;
	-webkit-border-radius:7px;
	-moz-border-radius: 7px;
	border-radius:7px;

}
.customSelect .jspDrag {
	position: relative;
	top: 0;
	left:-13px;
	cursor: pointer;
	width:33px;
}
.customSelect .jspDrag .jspDragTop {
    top: 0;
    height:100%;
    width: 7px;
    position: absolute;
    left:13px;
    -webkit-border-radius:10px;
	-moz-border-radius: 10px;
	border-radius:10px;
	background-color:#0093b4;
	
}
.customSelect .jspDrag .jspDragBottom {
    top:50%;
	margin-top:-7px;
    height: 7px;
    width: 7px;
    position: absolute;
    left:10px;
    -webkit-border-radius:10px;
	-moz-border-radius: 10px;
	border-radius:10px;
	border:3px solid #e1e2e3;
	background-color:#0093b4;
	
}

