* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
	height: 100%;
	border: 0; margin-bottom: -5px; padding: 0; 
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Caption text/photo description */
.desc {
  color: #fcce54;
  font-size: 15px;
  padding: 8px 0;
  width: 100%;
  text-align: center;
	}

/* Number text (1/3 etc) */
.numbertext {
  color: #fcce54; background-color: black;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 135px;
	z-index: 1;
}


.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
	/* validator output an error for these vendor specific rules 
  -webkit-animation-name: fade;
  -webkit-animation-duration: 4s;  
	*/
  animation-name: fade;
  animation-duration: 4s;
}

/* validator output an error for these vendor specific rules 
@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
*/

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

img { margin: 0; border: 0; padding: 0; }