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

#stage {
    position: relative;
    width: 720px;
    height:280px;
    margin: 0 0 30px 0;
	padding:13px 0;
	background-image:url(../images/img_topImageUpper.png);
	background-repeat:no-repeat;
}
#photo1,#photo2,#photo3,#photo4,#photo5 {
    position: absolute;
    float: left;
    width: 720px;
    height: 280px;
    left:720px;
    -moz-animation: imgtrans 25s infinite;
    -webkit-animation: imgtrans 25s infinite;
    animation: imgtrans 25s infinite;
}
#photo1 {
    -moz-animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
#photo2 {
    -moz-animation-delay: 5s;
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
}
#photo3 {
    -moz-animation-delay: 10s;
    -webkit-animation-delay: 10s;
    animation-delay: 10s;
}
#photo4 {
    -moz-animation-delay: 15s;
    -webkit-animation-delay: 15s;
    animation-delay: 15s;
}
#photo5 {
    -moz-animation-delay: 20s;
    -webkit-animation-delay: 20s;
    animation-delay: 20s;
}
#frame {
    width: 720px;
    height: 280px;
    position: relative;
    overflow: hidden;
}
@-webkit-keyframes imgtrans {
 0% { left:100%; }
 5% { left:0%; }
 20% { left:0%; }
 25% { left:-100%; }
 100% { left:-100%; }
}
@-moz-keyframes imgtrans {
 0% { left:100%; }
 5% { left:0%; }
 20% { left:0%; }
 25% { left:-100%; }
 100% { left:-100%; }
}
@keyframes imgtrans {
 0% { left:100%; }
 5% { left:0%; }
 20% { left:0%; }
 25% { left:-100%; }
 100% { left:-100%; }
}