/* slider root element */
.slider { 
	background:#e0e0e0; 
	height:8px; 
	position:relative; 
	cursor:pointer;
	border:1px solid #bbb;
	width:300px;
	float:left; 
	clear:right;
	margin-top:8px;
	-moz-border-radius:5px; 
	-webkit-border-radius:5px; 
	box-shadow: 0 1px 0px #fff;
}

/* progress bar (enabled with progress: true) */
.progress {
	height:9px; 
	background:#000; 
	display:none;
	opacity:0.6;
}

/* drag handle */
.handle { 
	background:#fff url(../../../img/gradient/h30.png) repeat-x 0 0; 
	height:16px;
	width:16px;
	top:-6px;
	position:absolute; 
	display:block; 
	margin-top:1px;
	border:1px solid #999;
	cursor:move;
	-moz-border-radius:14px;
	-webkit-border-radius:14px; 

}

/* the input field */
.range {
	border:1px inset #ddd;
	float:left;
	font-size:12px;
	margin:0 0 0 15px;
	padding:3px 0;
	text-align:center;
	width:20px;
	-moz-border-radius:5px; 
	-webkit-border-radius:5px; 		
}
