* {box-sizing:border-box}

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

.slideshow-container:hover .GreyspacePrev,
.slideshow-container:hover .GreyspaceNext
{
    opacity: 1.0;
	background-color: rgba(0,0,0,0.2);
	color: rgba(255, 255, 255, 0.8);
	top: 0%;
	margin-top: 0px;
	width: 60px;
	height:100%;
}

.slideshow-container:hover .prev,
.slideshow-container:hover .next
{
    opacity: 1.0;
	color: rgba(255, 255, 255, 0.8);
	top: 40%;
	margin-top: -30px;
	height:100%;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

.GreyspacePrev, .GreyspaceNext {
cursor: pointer;
  position: absolute;
  width: auto;
  vertical-align: middle;
  padding: 50px 16px 50px 16px;
  /*
  top: 10%;
  margin-top: -10px;
  padding: 150px 16px 150px 16px;*/
  font-weight: bold;
  font-size: 30px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  opacity: 0;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  width: auto;
  vertical-align: middle;
  padding: 50px 16px 50px 16px;
  /*
  top: 10%;
  margin-top: -10px;
  padding: 150px 16px 150px 16px;*/
  font-weight: bold;
  font-size: 30px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  opacity: 0;
}

/* Position the "next button" to the right */
.next {
	  /*top: 50%;
  margin-top: -100px;*/
  right: 0;
  border-radius: 3px 0 0 3px;
  /*color: rgba(255, 255, 255, 0.8);*/
}

.GreyspaceNext {
	  /*top: 50%;
  margin-top: -100px;*/
  right: 0;
  border-radius: 3px 0 0 3px;
  /*color: rgba(255, 255, 255, 0.8);*/
}

/* On hover, add a black background color with a little bit see-through */
/*.prev:hover, .next:hover {
  
}*/

/* Caption text */
/*.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}*/

/* Number text (1/3 etc) */
/*.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}*/

/* The dots/bullets/indicators */
/*.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}*/

/*.active, .dot:hover {
  background-color: #717171;
}*/

/* 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}
}