.ranger {
	width: 500px;
	display: table;
}

.rangeBox {width: 100%;}

.btnRange,
.rangeBox {
	padding: 7px;
	float: left;
	-webkit-box-sizing:border-box;
   -moz-box-sizing:border-box;
    -ms-box-sizing:border-box;
    box-sizing:border-box;
}

.rangeLeft,
.rangeRight {
	height: 10px;
	background: #efefef;
    display: inline-block;
	background: -moz-linear-gradient(top, #efefef 0%, #ffffff 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#efefef), color-stop(100%,#ffffff));
	background: -webkit-linear-gradient(top, #efefef 0%,#ffffff 100%);
	background: -o-linear-gradient(top, #efefef 0%,#ffffff 100%);
	background: -ms-linear-gradient(top, #efefef 0%,#ffffff 100%);
	border: 1px solid #ccc;
    position: absolute;
	box-shadow: inset 0 1px 0 #fff;
	border-radius: 7px;
}

.rangeLeft {
    left: 0;
}

.rangeRight {
    right: 0;
}

.rangeContainer {
    background: #6EBAFF ;
    background: -moz-linear-gradient(top, #6EBAFF  0%, #80A7C8 100%);
    background: -o-linear-gradient(top, #6EBAFF  0%, #80A7C8 100%);
    background: -ms-linear-gradient(top, #6EBAFF  0%, #80A7C8 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6EBAFF), color-stop(100%, #80A7C8));
    background: -webkit-linear-gradient(top , #6EBAFF  0, #80A7C8 100%);
    background: linear-gradient(to bottom, #6EBAFF  0, #80A7C8 100%);
    display: table;
    height: 12px;
    border-radius: 7px;
    position: relative;
	width: 100%;
}

.spinLeft {
    float: right;
    margin: -4px -8px 0 0;
}

.spinRight {
    float: left;
    margin: -4px 0 0 -6px;
}

.spinLeft,
.spinRight {
    background: #529de1;
	display: inline-block;
	background: -moz-linear-gradient(top, #529de1 0%, #245e8f 100%);
	background: -o-linear-gradient(top, #529de1 0%, #245e8f 100%);
	background: -ms-linear-gradient(top, #529de1 0%, #245e8f 100%);
  	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #529de1), color-stop(100%, #245e8f));
	background: -webkit-linear-gradient(top , #529de1 0, #245e8f 100%);
	background: linear-gradient(to bottom, #529de1 0, #245e8f 100%);
	border-radius: 15px;
    position: relative;
	border: 5px solid #fff;
	width: 7px;
	height: 7px;
	box-shadow: 0 0 1px #555;
	cursor: pointer;
}

.spinLeft.active,
.spinRight.active {
 	background: #fff;
 	border: 5px solid #ff0000;
}

.btnRange.from {
    float: left;
}

.btnRange.to {
    float: right;
}

.ranger input[type="text"] {
    border: 1px solid #ccc;
    color: #fb730d;
    float: left;
    font-size: 14px;
    height: 19px;
    padding: 3px;
    text-align: center;
    width: 50px;
}

.ranger button[type="button"] {
    background-color: #ededed;
    border: 1px solid #ccc;
    color: #aaa;
    cursor: pointer;
    float: left;
    font-family: arial;
    font-size: 21px;
    height: 27px;
    margin: 0;
    padding: 1px;
    width: 20px;
}

.ranger input:focus,
.ranger button:focus {
	outline: none;
}

.ranger button[type="button"]:hover {
	background-color: #c3eaff;
	color: #fb730d;
}

.ranger button.minus {
 	border-right: none;
 	border-radius: 5px 0 0 5px;
}

.ranger button.plus {
 	border-left: none;
 	border-radius: 0 5px 5px 0;
}

div.max,
div.min {
	font-size: 12px;
	font-family: arial;
	padding: 8px 3px;
}

div.max b,
div.min b {color: #fb730d;}

div.max em,
div.min em {color: #8B8B8B;}

div.max {float: right;}
div.min {float: left;}