/**
 * JavaScript Slider v0.9
 * http://blog.ovidiu.ch/javascript-slider
 *
 * Copyright (c) 2010, Ovidiu Cherecheș
 * MIT License
 * http://legal.ovidiu.ch/licenses/MIT
 */

.slider {
	position: relative;
	height: 3px;
	border:1px solid black;
	background: #FFFFFF;
}
.slider .handle {
	position: absolute;
	width: 3px;
	height: 13px;
	background: #000000;
	border:1px solid white;
	margin-top:-6px;
	text-align: center;
	cursor: pointer;
}
.slider .disabled {
	background: #898989;
}
