#slider {
	width: 175px;
}
#slider2 {
	width: 175px;
}
#slider3 {
	width: 175px;
}
#slider4 {
	width: 175px;
}

.ui-slider {
	position: relative;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 18px;
	height: 18px;
	background: url(slider.png) no-repeat;
	cursor: pointer;
	transform: scale(1);
	border: 4px solid #fff;
	border-radius:50%;
	transition: .25s;
	-webkit-filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
    filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
	-ms-touch-action: none;
	touch-action: none;
}
.ui-slider .ui-slider-handle:hover {
	position: absolute;
	z-index: 2;
	width: 18px;
	height: 18px;
	background: url(slider.png) no-repeat;
	cursor: pointer;
	transform: scale(1.15);
	border: 4px solid #fff;
	border-radius:50%;
	-webkit-filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.3));
    filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.3));
	-ms-touch-action: none;
	touch-action: none;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	overflow: hidden;
}
.ui-slider-horizontal {
	 height: 4px;
}
.ui-slider-horizontal .ui-slider-handle { 
	top: -8px;
	margin-left: -3px;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min { 
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}
.ui-widget-content { 
	border: 1px solid #6FBBEB;
	background: #fff;
}
.ui-widget-header { 
	border: 1px solid #1f90dc;
	background: #1f90dc;
}
.ui-corner-all {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}






