.d3-slider {
    position: relative;
    z-index: 2;
}

.d3-slider-horizontal {
    height: 2px;
	background: #6E6E6E;
	border-radius: 3px;
}  

.d3-slider-range {
  background:#2980b9;
  left:0px;
  right:0px;
  height: 0.8em;
  position: absolute;
}

.d3-slider-range-vertical {
  background:#2980b9;
  left:0px;
  right:0px;
  position: absolute;
  top:0;
}

.d3-slider-vertical {
    width: .8em;
    height: 100px;
}      

.d3-slider-handle {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 6px;
    background: #eee;
    background: linear-gradient(to bottom, #68c2c2 0%, #3498db 100%);
    z-index: 3;
	/*cursor:pointer;*/
	cursor:col-resize;
}

.d3-slider-handle:hover {
}

.d3-slider-horizontal .d3-slider-handle {
    top: -.8em;
    margin-left: -.7em;
}

.d3-slider-axis {
    position: relative;
    z-index: 1;    
}

.d3-slider-axis-bottom {
    top: .8em;
}

.d3-slider-axis-right {
    left: .8em;
}

.d3-slider-axis path {
    stroke-width: 0;
    fill: none;
}

.d3-slider-axis line {
    fill: none;
    stroke: #aaa;
    shape-rendering: crispEdges;
}

.d3-slider-axis text {
    font-size: 8px;
}

.d3-slider-vertical .d3-slider-handle {
    left: -.25em;
    margin-left: 0;
    margin-bottom: -.6em;      
}