
.cb-slideshow,
.cb-slideshow:after { 
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -999; 
	list-style-type: none;
}

.cb-slideshow:after { 
    content: '';
    background-color: black;
	opacity: 0.15;
}

.cb-slideshow li span { 
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 50s linear infinite 0s; 
}

.cb-slideshow li:nth-child(1) span { 
    background-image: url(/assets/themes/orthodoxcamps/images/occa-campfire.jpg); 
}
.cb-slideshow li:nth-child(2) span { 
    background-image: url(/assets/themes/orthodoxcamps/images/occa-campfire-daytime.jpg);
    animation-delay: 10s; 
}
.cb-slideshow li:nth-child(3) span { 
    background-image: url(/assets/themes/orthodoxcamps/images/occa-field.jpg);
    animation-delay: 20s; 
}
.cb-slideshow li:nth-child(4) span { 
    background-image: url(/assets/themes/orthodoxcamps/images/occa-lake.jpg);
    animation-delay: 30s; 
}
.cb-slideshow li:nth-child(5) span { 
    background-image: url(/assets/themes/orthodoxcamps/images/occa-field2.jpg);
    animation-delay: 40s; 
}
.cb-slideshow li:nth-child(6) span { 
    background-image: url(/assets/themes/orthodoxcamps/images/occa-lake2.jpg);
    animation-delay: 50s; 
}
.cb-slideshow li:nth-child(7) span { 
    background-image: url(/assets/themes/orthodoxcamps/images/occa-trees.jpg);
    animation-delay: 60s; 
}

@keyframes imageAnimation { 
    0% { opacity: 0; animation-timing-function: ease-in; }
    2% { opacity: 1 }
    20% { opacity: 1; animation-timing-function: ease-out; }
    25% { opacity: 0 }
    100% { opacity: 0 }
}

.no-cssanimations .cb-slideshow li span{
	opacity: 1;
}