
/*!
 * jQuery UI Slider 1.10.4
 * http://jqueryui.com
 *
 * Copyright 2014 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/slider/#theming
 */
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	cursor: default;
}
.ui-slider, .ui-slider-handle{
    -ms-touch-action: none;
    touch-action: none;
}

/* For IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
    width: 290px;
    height: 18px;
    background: url(../img/slider.png) no-repeat -1px -15px;
}
aside .ui-slider-horizontal {
    width: 280px;
     background: url(../img/slider280.png) no-repeat -1px -15px;
}
.ui-slider-horizontal .ui-slider-handle {
    height: 32px;
    width: 32px;
    background: url(../img/slider.png) no-repeat -2px -38px;
    text-indent: 1px;
    font-weight: 700;
    margin-left: -15px;
    margin-top: -5px;
}
.ui-slider-horizontal a.ui-state-active{
    background-position: -42px -38px;
}
.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;
}






.tooltip {
    position: absolute;
    z-index: 1020;
    display: block;
    font-size: 13px;
    visibility: visible;
    margin-top: 0px; /* distância para o pino */
    top:100%;
    white-space: nowrap;
    background-color: transparent;
    height: 10px;
}

.tooltip-inner {
    max-width: 200px;
    padding-top: 0px;
    color: #ff6600;
    text-align: center;
    text-decoration: none;
    

    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
            
    height: 10px;
}
.TooltipExtraPadding .tooltip-inner {
    padding-top: 12px;
}
