#heroRotatorLf div {
  position: absolute;
}

#heroRotatorLf div:nth-of-type(1) {
  animation-name: fader;
  animation-delay: 5s;
  animation-duration: 0.5s;
  z-index: 20;
}
#heroRotatorLf div:nth-of-type(2) {
  z-index: 10;
}
#heroRotatorLf div:nth-of-type(n+3) {
  display: none;
}

@keyframes fader {
  from { opacity: 1.0; }
  to   { opacity: 0.0; }
}




#heroRotatorRt div {
  position: absolute;
  margin-right:0px;
}

#heroRotatorRt div:nth-of-type(1) {
  animation-name: faderRt;
  animation-delay: 5s;
  animation-duration: 0.5s;
  z-index: 20;
}
#heroRotatorRt div:nth-of-type(2) {
  z-index: 10;
}
#heroRotatorRt div:nth-of-type(n+3) {
  display: none;
}

@keyframes faderRt {
  from { opacity: 1.0; }
  to   { opacity: 0.0; }
}
