.slideshow-container {
	position: relative;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	-webkit-perspective: 1000;
}

.slideshow-image {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-image: none;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-color: transparent;
}

.slideshow-button {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50px;
	height: 50px;
	line-height: 45px;
	text-align: center;
	font-size: 24px;
	color: white;
	margin: auto;
	cursor: pointer;
	background-color: rgba(0,0,0,0.5);
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	-moz-user-select: none;
	-webkit-user-select: none;
}

.slideshow-button.prev {
	left: 0;
	border-radius: 0 15px 15px 0;
}

.slideshow-button.next {
	right: 0;
	border-radius: 15px 0 0 15px;
}

.slideshow-container.touch .slideshow-button,
.slideshow-container:hover .slideshow-button {
	opacity: 1;
}

.slideshow-dot-container {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 10%;
	text-align: center;
}

.slideshow-dot {
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 15px;
	background-color: rgba(0,0,0,0.5);
	margin: 2px;
	padding: 2px;
	cursor: pointer;
}

.slideshow-dot.current,
.slideshow-dot:hover {
	background-color: rgba(255,255,255,0.7);
}
