/*TOP*/
#top{
	width: 100%;
	padding: 0 0 0 0;
	box-sizing: border-box;
}
#top .image{
	width: 100%;
	margin: 0 auto;
	position:relative;
	overflow:hidden;
}
.slideshow {
    width: 100%;
	height: 100%;
	display: block;
    top: 0px;
    left: 0px;
    z-index: 0;
}
.slideshow li span.view {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 30s linear infinite 0s;
    -moz-animation: imageAnimation 30s linear infinite 0s;
    -o-animation: imageAnimation 30s linear infinite 0s;
    -ms-animation: imageAnimation 30s linear infinite 0s;
    animation: imageAnimation 30s linear infinite 0s;
}

.slideshow li:nth-child(1) span { background-image: url("../img/index/top_main1.jpg"); }
.slideshow li:nth-child(2) span {
    background-image: url("../img/index/top_main2.jpg");
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}
.slideshow li:nth-child(3) span {
    background-image: url("../img/index/top_main3.jpg");
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}
.slideshow li:nth-child(4) span {
    background-image: url("../img/index/top_main4.jpg");
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}
.slideshow li:nth-child(5) span {
    background-image: url("../img/index/top_main5.jpg");
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}
/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -webkit-animation-timing-function: ease-in;
		left:0;
	}
	11% {
	    opacity: 1;
	    -webkit-transform: scale(1.05);
	    -webkit-animation-timing-function: ease-out;
		left: 0;
	}
	30% {
	    opacity: 1;
	    -webkit-transform: scale(1.1);
		left: 0;
	}
	38% {
	    opacity: 0;
	    -webkit-transform: scale(1.1);
    	left: -2%;
	}
	100% { 
		opacity: 0;
		left: -2%;
	}
}
@-moz-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -webkit-animation-timing-function: ease-in;
		left:0;
	}
	11% {
	    opacity: 1;
	    -webkit-transform: scale(1.05);
	    -webkit-animation-timing-function: ease-out;
		left: 0;
	}
	30% {
	    opacity: 1;
	    -webkit-transform: scale(1.1);
		left: 0;
	}
	38% {
	    opacity: 0;
	    -webkit-transform: scale(1.1);
    	left: -2%;
	}
	100% { 
		opacity: 0;
		left: -2%;
	}
}
@-o-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -webkit-animation-timing-function: ease-in;
		left:0;
	}
	11% {
	    opacity: 1;
	    -webkit-transform: scale(1.05);
	    -webkit-animation-timing-function: ease-out;
		left: 0;
	}
	30% {
	    opacity: 1;
	    -webkit-transform: scale(1.1);
		left: 0;
	}
	38% {
	    opacity: 0;
	    -webkit-transform: scale(1.1);
    	left: -2%;
	}
	100% { 
		opacity: 0;
		left: -2%;
	}
}
@-ms-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -webkit-animation-timing-function: ease-in;
		left:0;
	}
	11% {
	    opacity: 1;
	    -webkit-transform: scale(1.05);
	    -webkit-animation-timing-function: ease-out;
		left: 0;
	}
	30% {
	    opacity: 1;
	    -webkit-transform: scale(1.1);
		left: 0;
	}
	38% {
	    opacity: 0;
	    -webkit-transform: scale(1.1);
    	left: -2%;
	}
	100% { 
		opacity: 0;
		left: -2%;
	}
}
@keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -webkit-animation-timing-function: ease-in;
		left:0;
	}
	11% {
	    opacity: 1;
	    -webkit-transform: scale(1.05);
	    -webkit-animation-timing-function: ease-out;
		left: 0;
	}
	30% {
	    opacity: 1;
	    -webkit-transform: scale(1.1);
		left: 0;
	}
	38% {
	    opacity: 0;
	    -webkit-transform: scale(1.1);
    	left: -2%;
	}
	100% { 
		opacity: 0;
		left: -2%;
	}
}