/*------------------------animations-------------------------------*/
.cb-slideshow,
.cb-slideshow:after {
	position: absolute;
    width: 100%;
    height: 100%;
	left:0;
	right:0;
	margin: 0;
	padding: 0;
    z-index: 0;
	overflow: hidden;
}
.cb-slideshow:after {
    content: '';
    
}
.cb-slideshow li span {
    top:0;
	width: 100%;
    height: 100%;
	left:0;
	right:0;
    position: absolute;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
	-webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 120s linear infinite 0s;
    -moz-animation: imageAnimation 120s linear infinite 0s;
    -o-animation: imageAnimation 120s linear infinite 0s;
    -ms-animation: imageAnimation 120s linear infinite 0s;
    animation: imageAnimation 120s linear infinite 0s;
}
.cb-slideshow li:nth-child(1) span { background-image: url(../images/1.jpg) }
.cb-slideshow li:nth-child(2) span {
    background-image: url(../images/7.jpg);
    -webkit-animation-delay: 15s;
    -moz-animation-delay: 15s;
    -o-animation-delay: 15s;
    -ms-animation-delay: 15s;
    animation-delay: 15s;
}
.cb-slideshow li:nth-child(3) span {
    background-image: url(../images/2.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}
.cb-slideshow li:nth-child(4) span {
    background-image: url(../images/3.jpg);
    -webkit-animation-delay: 45s;
    -moz-animation-delay: 45s;
    -o-animation-delay: 45s;
    -ms-animation-delay: 45s;
    animation-delay: 45s;
}
.cb-slideshow li:nth-child(5) span {
    background-image: url(../images/4.jpg);
    -webkit-animation-delay: 60s;
    -moz-animation-delay: 60s;
    -o-animation-delay: 60s;
    -ms-animation-delay: 60s;
    animation-delay: 60s;
}
.cb-slideshow li:nth-child(6) span {
    background-image: url(../images/5.jpg);
    -webkit-animation-delay: 75s;
    -moz-animation-delay: 75s;
    -o-animation-delay: 75s;
    -ms-animation-delay: 75s;
    animation-delay: 75s;
}
.cb-slideshow li:nth-child(7) span {
    background-image: url(../images/6.jpg);
    -webkit-animation-delay: 90s;
    -moz-animation-delay: 90s;
    -o-animation-delay: 90s;
    -ms-animation-delay: 90s;
    animation-delay: 90s;
}
.cb-slideshow li:nth-child(8) span {
    background-image: url(../images/8.jpg);
    -webkit-animation-delay: 105s;
    -moz-animation-delay: 105s;
    -o-animation-delay: 105s;
    -ms-animation-delay: 105s;
    animation-delay: 105s;
}
.cb-slideshow li:nth-child(9) span {
    background-image: url(../images/3.jpg);
    -webkit-animation-delay: 120s;
    -moz-animation-delay: 120s;
    -o-animation-delay: 120s;
    -ms-animation-delay: 120s;
    animation-delay: 120s;
}
/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation { 
	0% { opacity: 0; animation-timing-function: ease-in;	}
	4% { opacity: 1; animation-timing-function: ease-out; }
	23% { opacity: 1; }
	26% { opacity: 1; }
	28% { opacity: 0; }
	100% { opacity: 0; }
}
@-moz-keyframes imageAnimation { 
	0% { opacity: 0; animation-timing-function: ease-in;	}
	4% { opacity: 1; animation-timing-function: ease-out; }
	23% { opacity: 1; }
	26% { opacity: 1; }
	28% { opacity: 0; }
	100% { opacity: 0; }
}
@-o-keyframes imageAnimation { 
	0% { opacity: 0; animation-timing-function: ease-in;	}
	4% { opacity: 1; animation-timing-function: ease-out; }
	23% { opacity: 1; }
	26% { opacity: 1; }
	28% { opacity: 0; }
	100% { opacity: 0; }
}
@-ms-keyframes imageAnimation { 
	0% { opacity: 0; animation-timing-function: ease-in;	}
	4% { opacity: 1; animation-timing-function: ease-out; }
	23% { opacity: 1; }
	26% { opacity: 1; }
	28% { opacity: 0; }
	100% { opacity: 0; }
}
@keyframes imageAnimation { 
	0% { opacity: 0; animation-timing-function: ease-in;	}
	4% { opacity: 1; animation-timing-function: ease-out; }
	23% { opacity: 1; }
	26% { opacity: 1; }
	28% { opacity: 0; }
	100% { opacity: 0; }
}