@charset "utf-8";
/* CSS Document */
.mySlides {display: none;}
.mySlidesH {display: none;}
img {vertical-align: middle;}


/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  border: 5px solid lightGreen;
}

/* Slideshow container 2 */
.slideshow-container-2 {
  max-width: 100%;
  position: relative;
  border-color:gray;
  border:5px;
}

.slideshow-container .content {
  position: absolute;
  bottom: 0;
  background-color:black;
  opacity: 0.6;
  color: white;
  font-size:large;
  font-family: Tahoma, Geneva, sans-serif;
  font-weight:bold;
  width: 100%;
  padding: 10px;
  left:0;
}
/* Caption text */
.sliderCaption {
  color: white;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: center;
  z-index:2;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size:x-large;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.activeSlide {
  background-color: #717171;
}
.active {
  background-color: #717171;
}


/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 5.0s;
  animation-name: fade;
  animation-duration: 5.0s;
}

@-webkit-keyframes fade {
  from {opacity: 0} 
  to {opacity: 1}
  
@keyframes fade {
  from {opacity: 0} 
  to {opacity: 1}


@media screen and (max-width: 800px) {
.slideshow-container .content {
  font-size:large;
  Padding: 5px;
  bottom: 0;
  width: 100%;
  left:0;
}
  .sliderCaption {font-size: 11px}

}

/* Position the "next button" to the right */
.next {
  right: 10;
  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);
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .sliderCaption {font-size: 11px}
}