
/* slider root */
.slider { 
	background:url("../img/volume-slider.png") no-repeat  0 -5px; 
	width:64px; 
	height:5px; 
	cursor:pointer; 
	position: relative; 
	display: inline-block;
}

.progress {
	background-color:#555;
	height:2px;
	bottom:2px;
	position:absolute;
	width:0;
}

/* drag handle */
.handle { 
	background:transparent url("../img/volume-slider.png") no-repeat scroll -67px 0; 
	height:13px; 
	position:absolute; 
	top:-5px; 
	width:12px;
}

/* input field */
.range { 
	font-size:10px; 
	border:0; 
	background:none; 
	width: 30px; 
	margin:-5px 0 10px 0; 
	float:left;
	color:#fff;
	text-align:center;
	-moz-border-radius:2px; 
	-webkit-border-radius:2px; 	
}

/* input field while focused */
.range:focus { 
	background-color:#000; 
}

/* cute little CSS3 selector */
.range[readonly]:focus {
	background-color:transparent;		
}


/* vertical version */
.vertical .slider {
	background:url(../img/small-vertical.png) no-repeat  -4px -17px; 
	height:94px;
	width: 5px;
	margin:5px 13px 0 0;
}

.vertical .handle { 
	background:transparent url(../img/small-vertical.png) no-repeat scroll -1px -2px; 	
	top:0;
	margin-left:-2px;
}

.vertical .range {
	margin:-13px 13px 0 -30px;		
}

