/*
   ICShome.CSS
   Scott Hughes
   8/27/17
*/

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
	padding-top: 20px;
	padding-left: 6%;
	max-width: 50%;
	position: relative;
	float:left;
	margin: auto;
}

.mySlides {
    display: none;
}

/* 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);
}


/* 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}
}