/**
 * Theme for jQRangeSlider
 * Inspired by http://cssdeck.com/item/381/itunes-10-storage-bar
 *        and http://cssdeck.com/item/276/pure-css-arrow-with-border-tooltip
 */
.ui-rangeSlider {
  margin-top: 10px;
}

.ui-rangeSlider-withArrows .ui-rangeSlider-container{
  margin: 0 15px;
  -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 1), 0 1px 1px rgba(0, 0, 0, 0.050);
  -moz-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 1), 0 1px 1px rgba(0, 0, 0, 0.050);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 1), 0 1px 1px rgba(0, 0, 0, 0.050);
}

.ui-rangeSlider-noArrow .ui-rangeSlider-container{
  -moz-border-radius: 1px;
  border-radius: 1x;
  border-left: solid 1px #c9c9c9;
  border-right: solid 1px #c9c9c9;

  -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 1), 0 1px 1px rgba(0, 0, 0, 0.050);
  -moz-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 1), 0 1px 1px rgba(0, 0, 0, 0.050);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 1), 0 1px 1px rgba(0, 0, 0, 0.050);
}

.ui-rangeSlider-container{
 	height: 12px;
  border: 1px solid #c9c9c9;
  background: url(../../../../images/patterns/furley_bg1.png) repeat;
  -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 1), 0 1px 1px rgba(0, 0, 0, 0.050);
  -moz-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 1), 0 1px 1px rgba(0, 0, 0, 0.050);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 1), 0 1px 1px rgba(0, 0, 0, 0.050);
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  color: #666;
}


.ui-rangeSlider-arrow{
  width:14px;
  height:12px;
  cursor:pointer;
}

.ui-rangeSlider-leftArrow{
  border-radius:1px 0 0 1px;
}

.ui-rangeSlider-rightArrow{
  border-radius:0 1px 1px 0;
}

.ui-rangeSlider-arrow-inner{
  position: absolute;
  top: 50%;
  border: 5px solid transparent;
  width:0;
  height:0;

  margin-top: -10px;
}

.ui-rangeSlider-leftArrow .ui-rangeSlider-arrow-inner{
  border-right:5px solid #999999;
  left: 0;
  margin-left: -2px;
  margin-top: -4px;
}

.ui-rangeSlider-leftArrow:hover .ui-rangeSlider-arrow-inner{
  border-right:5px solid #666666;
}

.ui-rangeSlider-rightArrow .ui-rangeSlider-arrow-inner{
  border-left:5px solid #999999;
  right: 0;
  margin-left: -2px;
  margin-top: -5px;
}

.ui-rangeSlider-rightArrow:hover .ui-rangeSlider-arrow-inner{
  border-left:5px solid #666666;
}

.ui-rangeSlider-innerBar{
  width: 110%;
  height: 100%;
  left: -10px;
}

.ui-rangeSlider-bar{
	background: #4e525d;
  height: 12px;
  margin-top: -1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  cursor:move;
	cursor:grab;
	cursor: -moz-grab;
  border:1px solid #c9c9c9;
 }

.ui-rangeSlider-handle{
	width:10px;
	height:14px;
	background: transparent;
	cursor:col-resize;
}

.ui-rangeSlider-label{
  background: #6f7a8a;
  border: 1px solid #5b6779;
  border-bottom: none;
  padding: 2px 6px;
  bottom:10px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.6);
 box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.6);
  color:#f2f2f2;
  cursor:col-resize;
  font-size: 12px;
  font-weight: bold;
}

.ui-editRangeSlider .ui-rangeSlider-label{
}

.ui-rangeSlider-label-inner{
 
  position: absolute;
  top: 100%;
  left: 50%;
  display: block;
  z-index:99;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;

  margin-left: -6px;
  border-top: 6px solid #6f7a8a;
}

.ui-editRangeSlider-inputValue{
  text-align:center;
}

.ui-rangeSlider .ui-ruler-scale{
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  right:0;
}

.ui-rangeSlider .ui-ruler-scale0 .ui-ruler-tick-inner{
  color:white;
  margin-top:1px;
  border-left: 1px solid #c9c9c9;
  height:12px;
  padding-left:2px;
  position:relative;
}

.ui-rangeSlider .ui-ruler-scale0 .ui-ruler-tick-label{
  position:absolute;
  bottom: 6px;
}

.ui-rangeSlider .ui-ruler-scale1 .ui-ruler-tick-inner{
  border-left:1px solid #c9c9c9;
  margin-top: 5px;
  height: 5px;
}