.custom_slideshow {
  list-style-type: none;
}

/** SLIDESHOW **/
.custom_slideshow,
.custom_slideshow:after { 
    top: 0px;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    z-index: -1;
}

.custom_slideshow li span { 
position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 30s linear infinite 0s; 
}


@keyframes imageAnimation { 
    0% { opacity: 0; animation-timing-function: ease-in; }
    8% { opacity: 1; animation-timing-function: ease-out; }
    33% { opacity: 1 }
	53% { opacity: 0 }
    100% { opacity: 0 }
}


@keyframes titleAnimation { 
    0% { opacity: 0 }
    8% { opacity: 1 }
    17% { opacity: 1 }
    19% { opacity: 0 }
    100% { opacity: 0 }
}


.no-cssanimations .cb-slideshow li span {
	opacity: 1;
}


.custom_tab_bg {
    min-height: 0px !important;
}