
/* slider root element */
.slider {
    background:#3C72E6 url(h30.png) repeat-x 0 0;
    height:3px;
    position:relative;
    cursor:pointer;
    border:1px solid #333;
    width:60px;
    float:left;
    clear:right;
    margin-top:10px;
	border-radius:3px
    -moz-border-radius:2px;
    -webkit-border-radius:2px;
	shadow:inset 0 0 4px #000;
	-webkit-shadow:inset 0 0 4px #000;
    -moz-box-shadow:inset 0 0 4px #000;
}

/* progress bar (enabled with progress: true) */
.progress {
    height:3px;
    background-color:#000088;
    display:block;
    opacity:0.6;
}

/* drag handle */
.handle {
    background:#fff url(h30.png) repeat-x 0 0;
    height:10px;
    width:10px;
    top:-4px;
    position:absolute;
    display:block;
    margin-top:0px;
    border:1px solid #000;
    cursor:move;
	box-shadow:0 0 3px #000;
    -moz-box-shadow:0 0 3px #000;
    -webkit-box-shadow:0 0 3px #000;
	border-radius:10px;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;

}

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

	border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
}

