
.slider-pro {
	position: relative;
	margin: 0 auto;
	margin-top: 3.5vh;
	background-color: #000;
}

.sp-slides-container {
	position: relative;
}

.sp-mask {
	position: relative;
	overflow: hidden;
}

.sp-slides {
	position: relative;
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
}

.sp-slide {
	position: absolute;
}

.sp-image-container {
	overflow: hidden;
}

.sp-image {
	position: relative;
	display: block;
	border: none;
}

.sp-no-js {
	overflow: hidden;
	max-width: 100%;
}



/* Touch Swipe
--------------------------------------------------*/
.sp-grab {
	cursor: pointer;
}



.sp-selectable {
	cursor: default;
}



/* Buttons
--------------------------------------------------*/
.sp-buttons {
	position: relative;
	width: 100%;
	text-align: center;
	padding-top: 10px;
}

.sp-button {
	width: 10px;
	height: 10px;
	border: 2px solid #FFF;
	border-radius: 50%;
	margin: 4px;
	display: inline-block;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}

.sp-selected-button {
	background-color: #FFF;
}



/* Arrows
--------------------------------------------------*/
.sp-arrows {
	position: absolute;
}

.sp-fade-arrows {
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.sp-slides-container:hover .sp-fade-arrows {
	opacity: 1;
}

.sp-horizontal .sp-arrows {
	width: 100%;
	left: 0;
	top: 50%;
	margin-top: -20px;
}


.sp-arrow {
	position: absolute;
	content: url(../img/arrow_l.png);
}


.sp-horizontal .sp-previous-arrow {
	left: 20px;
	content: url(../img/arrow_l.png);
}

.sp-horizontal .sp-next-arrow {
	right: 20px;
	content: url(../img/arrow_r.png);
}


