/* slider root element */
.slider {
	background:#3C72E6 url(../images/h30.png) repeat-x 0 0;
	height:6px;
	position:relative;
	cursor:pointer;
	border:1px solid #333;
	width:300px;
	float:left;
	clear:right;
	margin-top:8px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	-moz-box-shadow:inset 0 0 3px #000;
}

/* progress bar (enabled with progress: true) */
.progress {
	height:9px;
	background-color:#C5FF00;
	display:none;
	opacity:0.6;
}

/* drag handle */
.handle {
	background:#fff url(../images/h30.png) repeat-x 0 0;
	height:14px;
	width:14px;
	top:-6px;
	position:absolute;
	display:block;
	margin-top:1px;
	border:1px solid #000;
	cursor:move;
	-moz-box-shadow:0 0 3px #000;
	-webkit-box-shadow:0 0 3px #000;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;

}

/* the input field */
.range {
	float:left;
	font-size:12px;
	margin:0 0 0 10px;
	padding:3px 0;
	text-align:right;
	width:30px;
}


