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

  #stage {
 
    width: 1024px;
    height: 576px;
  }

  #stage2 {
 
    width: 415px;
    height: 300px;
	float: right;
  }

  #stage a {
    position: absolute;
	  pointer-events: none;
   cursor: default;
  }

  #stage a img {
    padding: 0px;
    border: 0px;
    background: #000000;
  }

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

  #stage2 a {
    position: absolute;
	  pointer-events: none;
   cursor: default;
  }

  #stage2 a img {
    padding: 10px;
    border: 10px ;
    background: #000000;
  }

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

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