/* Slideshow */
.slideshow {
	margin-bottom: 50px;
	position: relative;
	width: 100%;
}

/* Hide the images, caption by default */
.slide {
	display: none;
}

/* Fit images width */
.slide img{
	width: 100%;
	height: auto;
}

/* Caption of images */
.slide .caption {
	display: block;
	position: absolute;
	z-index: 2;
	font-size: 20px;
	text-shadow: none;
	color: #fff;
	background: #000;
	background: rgba(0,0,0, .8);
	left: 0;
	right: 0;
	bottom: 0;
	padding: 10px 20px;
	margin: 0;
	max-width: none;
}
	
/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 0;
	width: 38px;
	height: 61px;
	margin-top: -45px;
	padding: 16px;
	opacity: 0.7;
	background: transparent url(" ../images/logo/themes.gif") no-repeat left top;
	transition: 0.6s ease;
}
	
/* Position the "next button" to the right */
.next {
	left: auto;
	right: 0;
	background-position: right top;
}
	
/* On hover, add a black background color */
.prev:hover, .next:hover {
	opacity: 1;
}
		
/* Fading animation */
.fade img {
	animation-name: fade;
	animation-duration: 2s;
	animation-timing-function: ease-in-out;

	-webkit-animation-name: fade;
	-webkit-animation-duration: 2s;
	-webkit-animation-timing-function: ease-in-out;
}
			
@keyframes fade {
	from {opacity: .5}
	to {opacity: 1}
}

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