@charset "utf-8";
/* CSS Document */
.slide-show li span { 
    width: 100%;
    height: 300px;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 16s linear infinite 0s;
    -moz-animation: imageAnimation 16s linear infinite 0s;
    -o-animation: imageAnimation 16s linear infinite 0s;
    -ms-animation: imageAnimation 16s linear infinite 0s;
    animation: imageAnimation 16s linear infinite 0s; 
}
.slide-show li:nth-child(1) span { 
    background-image: url(../img/sdr1.jpg);
}
.slide-show li:nth-child(2) span { 
    background-image: url(../img/sdr2.jpg);
    -webkit-animation-delay: 8s;
    -moz-animation-delay: 8s;
    -o-animation-delay: 8s;
    -ms-animation-delay: 8s;
    animation-delay: 8s; 
}
@-webkit-keyframes imageAnimation { 
    0% { opacity: 0; -webkit-animation-timing-function: linear; }
    4% { opacity: 1; -webkit-animation-timing-function: linear; }
    50% { opacity: 1;}
    54% { opacity: 0;}
    100% { opacity: 0;}
}
@-moz-keyframes imageAnimation { 
    0% { opacity: 0; -moz-animation-timing-function: linear; }
    4% { opacity: 1; -moz-animation-timing-function: linear; }
    50% { opacity: 1;}
    54% { opacity: 0;}
    100% { opacity: 0;}
}
@-o-keyframes imageAnimation { 
    0% { opacity: 0; -o-animation-timing-function: linear; }
    4% { opacity: 1; -o-animation-timing-function: linear; }
    50% { opacity: 1;}
    54% { opacity: 0;}
    100% { opacity: 0;}
}
@-ms-keyframes imageAnimation { 
    0% { opacity: 0; -ms-animation-timing-function: linear; }
    4% { opacity: 1; -ms-animation-timing-function: linear; }
    50% { opacity: 1;}
    54% { opacity: 0;}
    100% { opacity: 0;}
}
@keyframes imageAnimation { 
    0% { opacity: 0; animation-timing-function: linear; }
    4% { opacity: 1; animation-timing-function: linear; }
    50% { opacity: 1;}
    54% { opacity: 0;}
    100% { opacity: 0;}
}
/* Show at least something when animations not supported */
.no-cssanimations .slide-show li span{
	opacity: 1;
}
