
.mySlides {
	display: none;
	overflow: hidden;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	-o-transition: all ease 0.5s;
	-ms-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

	.mySlides img {
		position: absolute;
		top: 50%; min-width:100%; 
		left: 50%; width:auto; min-height:100%; 
		vertical-align: middle;
		transform: translateX(-50%) translateY(-50%);
		z-index: 1;
		-webkit-transform: translateX(-50%) translateY(-50%);
	}


.slideshow-container {
	width:100%; height:100%; top:0; left:0;
	position: absolute; 

}
/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -18px;
	color: white !important;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
	background-color: rgba(0,0,0,0.4);
}
/* Position the "next button" to the right */
.next {
	left: 0;
	border-radius: 0 3px 3px 0;
}

.prev {
	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 */
.text {
	color: #ffffff;
	font-size: 15px;
	padding: 8px 12px;
	position: absolute;
	bottom: 8px;
	width: 100%;
	text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
	color: #ffffff;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}
/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px; border:2px #fff solid;
	background-color:transparent;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

	.slideshow-container .active, .dot:hover {
		background-color: #fff !important;
	}
/* Fading animation */
.fades {
	-webkit-animation: fades 10s linear infinite 0s;
	-moz-animation: fades 10s linear infinite 0s;
	-o-animation: fades 10s linear infinite 0s;
	-ms-animation: fades 10s linear infinite 0s;
	animation: fades 10s linear infinite 0s;
}

@-webkit-keyframes fades {
	0% {
		opacity: 0;
		-webkit-animation-timing-function: ease-in;
	}

	/*8% {
		opacity: 1;
		-webkit-animation-timing-function: ease-out;
	}*/

	17% {
		opacity: 1
	}

	95% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

@keyframes fades {
	0% {
		opacity: 0;
		-webkit-animation-timing-function: ease-in;
	}

	/*8% {
		opacity: 1;
		-webkit-animation-timing-function: ease-out;
	}*/

	17% {
		opacity: 1
	}

	95% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}
/* On smaller screens, decrease text size */

@media (max-width: 767px) {

	.slideshow-container { height:auto; position:relative
	}
	.mySlides { width:100%; height:auto; position:relative	}

		.mySlides img {
			width: 100%; position:relative;
			top: unset;
			left: unset;
			transform: translateX(0) translateY(0);
			-webkit-transform: translateX(0) translateY(0)
		}
	.dot {
		
		height: 8px;
		width: 8px;
		margin: 0 2px;
		border: 1px #fff solid;
	
	}

}



	@media only screen and (max-width: 300px) {
		.prev, .next, .text {
			font-size: 11px
		}
	}
