* {
  margin: 0;
  padding: 0;
}
.slide-show {
  position: absolute;
  /*width: 1900px;*/
  height: 100vh;
  left: 50%;
  /*margin-left: -950px;*/
  overflow: hidden;
  background-color: #000;
}
slide {
  position: absolute;
  width: 100%;
  height: 200%;
  z-index: 1;
  overflow: visible;
  opacity: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  animation: slide-show 90s linear infinite 0s;
  -o-animation: slide-show 90s linear infinite 0s;
  -moz-animation: slide-show 90s linear infinite 0s;
  -webkit-animation: slide-show 90s linear infinite 0s;
}
.slide-1 {
  animation-delay: 0s;
  -o-animation-delay: 0s;
  -moz--animation-delay: 0s;
  -webkit-animation-delay: 0s;
}
.slide-2 {
  animation-delay: 10s;
  -o-animation-delay: 10s;
  -moz--animation-delay: 10s;
  -webkit-animation-delay: 10s;
}
.slide-3 {
  animation-delay: 20s;
  -o-animation-delay: 20s;
  -moz--animation-delay: 20s;
  -webkit-animation-delay: 20s;
}
.slide-4 {
  animation-delay: 30s;
  -o-animation-delay: 30s;
  -moz--animation-delay: 30s;
  -webkit-animation-delay: 30s;
}
.slide-5 {
  animation-delay: 40s;
  -o-animation-delay: 40s;
  -moz--animation-delay: 40s;
  -webkit-animation-delay: 40s;
}
.slide-6 {
  animation-delay: 50s;
  -o-animation-delay: 50s;
  -moz--animation-delay: 50s;
  -webkit-animation-delay: 50s;
}
.slide-7 {
  animation-delay: 60s;
  -o-animation-delay: 60s;
  -moz--animation-delay: 60s;
  -webkit-animation-delay: 60s;
}
.slide-8 {
  animation-delay: 70s;
  -o-animation-delay: 70s;
  -moz--animation-delay: 70s;
  -webkit-animation-delay: 70s;
}
.slide-9 {
  animation-delay: 80s;
  -o-animation-delay: 80s;
  -moz--animation-delay: 80s;
  -webkit-animation-delay: 80s;
}
@keyframes
slide-show {
  0% {
    opacity: 0;
    transform: scale(1.0);
    -ms-transform: scale(1.0);
  }
  3% {
    opacity: 1.0;
  }
  15% {
    opacity: 1.0;
  }
  18% {
    opacity: 0.0;
  }
  100% {
    opacity: 0;
    transform: scale(1.0) translate(0, -340%);
    -ms-transform: scale(1.0) translate(0, -340%);
  }
}
@-o-keyframes
slide-show {
  0% {
    opacity: 0;
    -o-transform: scale(1);
  }
  3% {
    opacity: 0;
    }
  15% {
    opacity: 0;
  }
  18% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -o-transform: scale(1.0) translate(0, -340%);
  }
}
@-moz-keyframes
slide-show {
  0% {
    opacity: 0;
    -moz-transform: scale(1);
  }
  3% {
    opacity: 1;
  }
  15% {
    opacity: 1;
  }
  18% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -moz-transform: scale(1.0) translate(0, -340%);
  }
}
@-webkit-keyframes
slide-show {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
  }
  3% {
    opacity: 1;
  }
  15% {
    opacity: 1;
  }
  18% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.0) translate(0, -340%);
  }
}
#slide-overlay1 {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: url("gfx/slideshow_overlay1.png");
  -webkit-background-size: 100% 440px;
  -moz-background-size: 100% 440px;
  -o-background-size: 100% 440px;
  background-size: 100% 440px;
}
#slide-overlay2 {
  position: absolute;
  /*width: 1900px;*/
  height: 440px;
  left: 50%;
  /*margin-left: -950px;*/
  z-index: 1;
  pointer-events: none;
  background: url("gfx/slideshow_overlay2.png");
  -webkit-background-size: 100% 440px;
  -moz-background-size: 100% 440px;
  -o-background-size: 100% 440px;
  background-size: 100% 440px;
}
