/* Slideshow */
.slideshow_container {
	box-sizing:border-box;
	position: relative;
}

/* Hide images by default */
.pcg_slides {
	display: none;
	max-width: 1000px;
	position: relative;
	margin: auto;
}

/* Next and prev buttons */
.next, .prev {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -2.25em;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 1.5em;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
}

.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.slide_caption {
	font-style: italic;
	text-align: center;
}

/* Fading animation */
.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}

@-webkit-keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}

@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}