.cb-slideshow,
.cb-slideshow:after { 
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0; 
}



.cb-slideshow li span { 
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 0%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 99999999999999999999999999s linear infinite 0s;
    -moz-animation: imageAnimation 99999999999999999999999999s linear infinite 0s;
    -o-animation: imageAnimation 99999999999999999999999999s linear infinite 0s;
    -ms-animation: imageAnimation 99999999999999999999999999s linear infinite 0s;
    animation: imageAnimation 99999999999999999999999999s linear infinite 0s; 
}
.cb-slideshow li:nth-child(1) span { 
    background-image: url(../Images/Background/Back.jpg) 
}



/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation { 
    0% { opacity: 1;}
}
@-moz-keyframes imageAnimation {
    0% { opacity: 1;}
}
@-o-keyframes imageAnimation {
    0% { opacity: 1;}
}
@-ms-keyframes imageAnimation {
    0% { opacity: 1;}
}
@keyframes imageAnimation { 
    0% { opacity: 1;}
}



/* Show at least something when animations not supported */
.no-cssanimations .cb-slideshow li span{
	opacity: 1;
}



