
/*	General CSS resets;
 *		The target itself is not affected, allowing
 *		the remainder of the document to use an 
 *		alternate box-sizing model;
 *		Support for box-sizing is wide spread:
 *		http://caniuse.com/#search=box-sizing
 */
	.noUi-target * {
-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
		box-sizing: border-box;
-webkit-touch-callout: none;
    -ms-touch-action: none;
-webkit-user-select: none;
   -moz-user-select: none;
    -ms-user-select: none;
		cursor: default;
	}

/*	Main slider bar;
 */
	.noUi-base {
		/*height: 40px;
		width: 300px;*/
		position: relative;
		max-width: 100%;
		border: 1px solid #bfbfbf;
		z-index: 1;
		
		width:180px;
		-webkit-appearance: none;
		border-radius:5px;
		height:9px; 		
	}

/*	Handles + active state;
 */
	.noUi-handle {
		/*background: #EEE;
		height: 44px;
		width: 44px;
		*/
		height: 20px;
		width:20px;
		border-radius:50px;
		display:block;
		
		background: #d9d9d9; /* Old browsers */
		background: -moz-linear-gradient(top,  #d9d9d9 0%, #fcfcfc 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d9d9d9), color-stop(100%,#fcfcfc)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  #d9d9d9 0%,#fcfcfc 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  #d9d9d9 0%,#fcfcfc 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  #d9d9d9 0%,#fcfcfc 100%); /* IE10+ */
		background: linear-gradient(to bottom,  #d9d9d9 0%,#fcfcfc 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d9d9d9', endColorstr='#fcfcfc',GradientType=0 ); /* IE6-9 */
	
		-webkit-box-shadow:0px 0px 2px 0px #000000;        
		box-shadow:0px 0px 2px 0px #000000;
		
		border: 1px solid #BFBFBF;
		margin: -6px 0 0 -16px;
	}
	.noUi-active {
		background: #E9E9E9;
	}
	.noUi-active:after {
		content: "";
		display: block;
		height: 100%;
		border: 1px solid #DDD;
	}

/*	Styling-only classes;
 *		Structured to prevent double declarations
 *		for various states of the slider.
 */
	.noUi-connect {
		background: Teal;
	}
	.noUi-background {
		/*background: #DDD;*/
		background: #f4cc56; /* Old browsers */
		background: -moz-linear-gradient(top,  #f4cc56 0%, #efcd63 49%, #f0bd1f 50%, #f1b70a 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f4cc56), color-stop(49%,#efcd63), color-stop(50%,#f0bd1f), color-stop(100%,#f1b70a)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top,  #f4cc56 0%,#efcd63 49%,#f0bd1f 50%,#f1b70a 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top,  #f4cc56 0%,#efcd63 49%,#f0bd1f 50%,#f1b70a 100%); /* Opera 11.10+ */
		background: -ms-linear-gradient(top,  #f4cc56 0%,#efcd63 49%,#f0bd1f 50%,#f1b70a 100%); /* IE10+ */
		background: linear-gradient(to bottom,  #f4cc56 0%,#efcd63 49%,#f0bd1f 50%,#f1b70a 100%); /* W3C */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4cc56', endColorstr='#f1b70a',GradientType=0 ); /* IE6-9 */
	}

/*	Functional styles for handle positioning;
 *		Note that the origins have z-index 0, the base has
 *		z-index 1; This fixes a bug where borders become invisible.
 */
	.noUi-origin {
		position: absolute;
		right: 0;
		top: 0;
		bottom: 0;
		z-index: 0;
	}
	.noUi-origin-upper {
		background: inherit !important;
	}
	.noUi-z-index {
		z-index: 10;
	}
	
/*	Adaptations for the vertical slider;
 */
	.noUi-vertical {
		height: 300px;
		width: 40px;
		max-height: 100%;
	}
	.noUi-vertical .noUi-origin {
		bottom: 0;
		left: 0;
	}
	.noUi-vertical .noUi-handle  {
		margin: -23px 0 0 -3px;
	}

/*	Various alternate slider states;
 *	Support for transition is widely available,
 *	Only IE7, IE8 and IE9 will ignore these rules.
 *	Since this is merely a progressive enhancement,
 *	this is no problem at all.
 *	http://caniuse.com/#search=transition
 */
	.noUi-target[disabled] .noUi-base {
		background: #999;
	}
	.noUi-target[disabled] .noUi-connect {
		background: #BBB;
	}
	.noUi-state-tap .noUi-origin {
		-webkit-transition: left 0.3s, top 0.3s;
		transition: left 0.3s, top 0.3s;
	}
