/* slider root element */
.slider {
    background-color:#069;
    position:relative;
    cursor:pointer;
    border:1px solid #333;
    height:6px;
    width:140px;
    float:left;
    clear:right;
    margin-top:10px;
		border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    -moz-box-shadow:inset 0 0 8px #000;
		margin-bottom:10px;
}

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

/* drag handle */
.handle {
    background-color:#F60;
    height:12px;
    width:12px;
    top:-5px;
    position:absolute;
    display:block;
    margin-top:1px;
    border:1px solid #000;
    cursor:move;
    -moz-box-shadow:0 0 6px #000;
    -webkit-box-shadow:0 0 6px #000;
		border-radius:14px;
    -moz-border-radius:14px;
    -webkit-border-radius:14px;

}

/* the input field */
.range {
		border: 1px solid #8FB6BD;
   /* border:1px inset #ddd;*/
    float:left;
    font-size:12px;
    margin:0 0 0 5px;
    padding:3px 0;
    text-align:center;
    width:50px;
		border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
		background-color:#FFC;
}

#p_tokens { font-weight:bold; display:none; }
label { display:inline-block; text-align:right; margin-right:5px; font-weight:bold; }
label.left { text-align:left; }
#existing label { width:100px; }
#existing input[type="text"] 
{ 
  width:50px; 
	border-radius:5px;
  -moz-border-radius:5px;
  -webkit-border-radius:5px;
	text-align:center;
	background-color:#eee; 
	padding:3px 0;
	border:1px solid #aaa;
	font-size:11px;
}
#existing input.date { width:100px; }
#calculator label { width:110px; }
#calculator label.left { width:200px; }