@font-face {
  font-family: 'arrowicons';
  src: url("../font/arrowicons.eot");
  src: url("../font/arrowicons.eot?#iefix") format('embedded-opentype'), url("../font/arrowicons.woff") format('woff'), url("../font/arrowicons.ttf") format('truetype'), url("../font/arrowicons.svg#arrowicons") format('svg');
  font-weight: normal;
  font-style: normal;
}

.sp-slider-wrapper {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	padding: 8px 65px;
	position: relative;
	margin: 0 auto;
	width: 0px;
	-webkit-transition: width 150ms ease-out;
	transition: width 150ms ease-out;
}

.sp-slider-wrapper nav a {
	position: absolute;
	width: 80px;
	height: 20px;
	line-height: 30px;
	top: 0;
	cursor: pointer;
	text-indent: -9000px;
}

.sp-slider-wrapper nav a.sp-prev {
	left: 0px;
}

.sp-slider-wrapper nav a.sp-next {
	right: 0px;
}

.sp-slider-wrapper nav a:after {
	font-family: 'arrowicons';
	font-style: normal;
	font-weight: normal;
	speak: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: inherit;
	text-indent: 0px;
	font-size: 15px;
	color: #333333;
	text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.sp-slider-wrapper nav a.sp-prev:after {
	content: '\e75d';
}

.sp-slider-wrapper nav a.sp-next:after {
	content: '\e75e';
}

.sp-slider {
	background: rgba(40,40,40,0.1);
	border: 1px solid rgba(108,108,108, 0.2);
	border-bottom: 1px solid rgba(108,108,108, 0.05);
	box-shadow: 0 1px 0 rgba(40,40,40,0.7);
	height: 10px;
	border-radius: 10px;
	position: relative;
}

.sp-slider .ui-slider-handle {
	outline: none;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: none;
	top: -1px;
	margin-left: -7px;
	left: 0;
	cursor: pointer;
	position: absolute;
	background-color: #333333;
	background-image: -webkit-linear-gradient(-90deg, transparent, rgba(0,0,0,0.07) 80%);
	background-image: -moz-linear-gradient(-90deg, transparent, rgba(0,0,0,0.07) 80%);
	background-image: -o-linear-gradient(-90deg, transparent, rgba(0,0,0,0.07) 80%);
	background-image: linear-gradient(-90deg, transparent, rgba(0,0,0,0.07) 80%);
	box-shadow: 
		0 -1px 0 rgba(0,0,0,0.1), 
		0 1px 0 rgba(40,40,40,.7), 
		inset 1px -1px 1px rgba(0,0,0,0.1);
}

.sp-slider .ui-slider-handle.ui-state-active {
	box-shadow: 
		0 -1px 0 rgba(0,0,0,0.1), 
		0 1px 0 rgba(40,40,40,0.7), 
		inset 1px -1px 2px rgba(0,0,0,0.15);
}

.sp-slider-open .ui-slider-handle {
	box-shadow: 
		0 1px 2px rgba(0,0,0,0.1),
		0 6px 3px -3px rgba(0,0,0,0.1);
}

.sp-slider-open .ui-slider-handle.ui-state-active {
	box-shadow: 
		0 1px 2px rgba(0,0,0,0.1),
		0 4px 3px -3px rgba(0,0,0,0.1);
}

.sp-slider .ui-slider-handle:after,
.sp-slider .ui-slider-handle:before {
	content: '';
	position: absolute;
	left: 10%;
	top: 10%;
	width: 80%;
	height: 80%;
	border-radius: 50%;
	opacity: 0.8;
	background-color: #333333;
	background-image: -webkit-linear-gradient(-90deg, rgba(220,220,220,0.06), transparent 80%);
	background-image: -moz-linear-gradient(-90deg, rgba(220,220,220,0.06), transparent 80%);
	background-image: -o-linear-gradient(-90deg, rgba(220,220,220,0.06), transparent 80%);
	background-image: linear-gradient(-90deg, rgba(220,220,220,0.06), transparent 80%);
}

.sp-slider .ui-slider-handle span {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 10;
	text-align: center;
	background: transparent;
	color: #CCCCCC;
	font-family: 'Lato', Arial, sans-serif;
	font-weight: 900;
	line-height: 15px;
	font-size: 9px;
	text-shadow: 0 1px 1px rgba(255,255,255,0.9);
}

.sp-slider-open .ui-slider-handle span {
	color: #aaa;
}


