.mySlides {display: none;margin-top: 10px;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
  border: 1px solid #999;
  height: 250px;
}

/* Caption text */
.text {
  color: #fff;
  font-size: 15px;
  padding: 8px 0;
  font-weight: bold;
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  background-color:#666;
  opacity: 0.8;
}

/* Number text (1/3 etc) */
/*.numbertext {
  color: #222;
  font-size: 12px;
  font-weight: bold;
  padding: 15px 20px;
  position: absolute;
  top: 0;
}*/


/* 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}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}