@charset "utf-8";
/* CSS Document */


* {box-sizing: border-box}
.mySlides1 {
	display: none;
	position: relative;
	overflow: hidden;
}
.slideshow-container img {
	vertical-align: middle;
	width: 100%;
	min-width: 100%;
	heigth: auto;
	margin: 0;
	padding: 0;
}

/* Slideshow container */
.slideshow-container {
  max-width: 600px;
  position: relative;
  margin: 40px auto;
}

/* Next & previous buttons */
.prev, .next {
	background: radial-gradient(circle, rgba(20,20,20,1) 0%, rgba(0,0,0,1) 100%);
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
	left: 0;
}

/* On hover, add a grey background color */
.prev:hover, .next:hover {
  background-color: #555;
  color: #aaa;
}

@media all and (max-width: 660px) {
	
	.slideshow-container {
		max-width: 90%;
		width: 90%;
	}
	
	.next, .prev {
		top: 90%;
	}
}