/*! =========================================================
 * bootstrap-slider.js
 *
 * Maintainers:
 *		Kyle Kemp
 *			- Twitter:@seiyria
 *			- Github: seiyria
 *		Rohit Kalkur
 *			- Twitter:@Rovolutionary
 *			- Github: rovolution
 *
 * =========================================================
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ========================================================= */
.slider{
	display:inline-block;
	vertical-align:middle;
	position:relative;
}
.slider.slider-horizontal{
	width:210px;
	height:20px;
}
.slider.slider-horizontal .slider-track{
	height:10px;
	width:100%;
	margin-top:-5px;
	top:50%;
	left:0;
}
.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high{
	height:100%;
	top:0;
	bottom:0;
}
.slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle{
	margin-left:-10px;
	margin-top:-5px;
}



.slider.slider-disabled .slider-handle{
	background-image:-webkit-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
	background-image:-o-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
	background-image:linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
	background-repeat:repeat-x;
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
}
.slider.slider-disabled .slider-track{
	background-image:-webkit-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
	background-image:-o-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
	background-image:linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
	background-repeat:repeat-x;
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
	cursor:not-allowed;
}
.slider input{
	display:none;
}


.slider .hide{
	display:none;
}
.slider-track{
	position:absolute;
	background-color:#fff;
	cursor:pointer;
	border-radius:4px;
}

.slider-selection{
	position:absolute;
	background-color:#fff;
	border:#666 solid 3px;

	box-sizing:border-box;
	border-radius:4px;
}


.slider-track-low,
.slider-track-high{
	position:absolute;
	background:transparent;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	border-radius:4px;
}

.slider-handle{
	position:absolute;
	width:20px;
	height:20px;
	background-color:#666;
}

.slider-handle.round{
	border-radius:50%;
}




