.cb-slideshow {
  list-style-type: none;
}
@media only screen and (max-width:907px) {
  .cb-slideshow {
    display:none;
  }
}
@media only screen and (min-width:907px) {
.cb-slideshow,
.cb-slideshow:after { 
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
	list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
}

.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 27s linear infinite 0s; 
}


.cb-slideshow li span {
	height: 275px;
    background-repeat: no-repeat;
    background-size: 907px 275px;
    z-index: -2;
}

@keyframes imageAnimation { 
    0% { opacity: 0; animation-timing-function: ease-in; }
    50% { opacity: 1; animation-timing-function: ease-out; }
  /*    8% { opacity: 1; animation-timing-function: ease-out; }
    17% { opacity: 1 }
    25% { opacity: 0 }
    100% { opacity: 0 }*/
}

.no-cssanimations .cb-slideshow li span{
	opacity: 1;
}
}