@charset "UTF-8";
/* CSS Document */

  #stage {
    margin: 0;
    width: 574px;
    height: 244px;
	  opacity: 0.9;
	  border-style: none;
  }

  #stage span {
    position: absolute;
	  border-style: none;
	  margin: 0;
  }
  #stage span img {
    padding: 0px;
    border: 0px;
	  width: 575px;
	  height: 244px;
	  object-fit: cover;
    background: #000000;
	  border-style: none;
	  margin: 0;
	
  }

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

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