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

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

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

}

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

