.container {
	position: relative;
	text-align: center;
}
.container > h1 {
	font-family: 'SpecialElite-Regular';
	font-size: 35px;
	line-height: 35px;
	position: relative;
	font-weight: 400;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    padding: 30px 20px;
	margin-top: 30px;
	animation: fadeIn linear 4s;
}
.cb-slideshow,
.cb-slideshow:after {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
}
.cb-slideshow:after {
    content: '';
}
.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: 1;
    z-index: 0;
	-webkit-backface-visibility: ;
    -webkit-animation: imageAnimation 6s linear infinite 0s;
    -moz-animation: imageAnimation 6s linear infinite 0s;
    -o-animation: imageAnimation 6s linear infinite 0s;
    -ms-animation: imageAnimation 6s linear infinite 0s;
    animation: imageAnimation 6s linear infinite 0s;
	animation-iteration-count: 1;
}
.cb-slideshow li div {
    z-index: 1000;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    text-align: center;
    opacity: 1;
    -webkit-animation: titleAnimation 6s linear infinite 0s;
    -moz-animation: titleAnimation 6s linear infinite 0s;
    -o-animation: titleAnimation 6s linear infinite 0s;
    -ms-animation: titleAnimation 6s linear infinite 0s;
    animation: titleAnimation 6s linear infinite 0s;
	animation-iteration-count: 1;
}
.cb-slideshow li div h3 {
    font-family: 'SpecialElite-Regular', 'Arial Narrow', Arial, sans-serif;
	font-size: 80px;
    padding: 40px 0;
	margin: 0;
	color: rgba(204,0,0, 0.9);
	background-color: rgba(240,240,240,0.5);
	text-shadow: 2px 2px 3px #727272;										 
}
.cb-slideshow li:first-child div h3 {
    font-family: 'SpecialElite-Regular', 'Arial Narrow', Arial, sans-serif;
    font-size: 80px;
    padding: 40px 0 10px 0;
	margin: 0;
	color: rgba(204,0,0, 0.9);
	background-color: rgba(240,240,240,0.5);
	text-shadow: 2px 2px 3px #727272;										 
}
.cb-slideshow li div h2 {
    font-family: 'SpecialElite-Regular', 'Arial Narrow', Arial, sans-serif;
    font-size: 30px;
    padding: 0 0 30px 0;
	margin: 0;
	color: rgba(204,0,0, 0.9);
	background-color: rgba(240,240,240,0.5);
	text-shadow: 2px 2px 2px #727272;										 
}
.cb-slideshow li:nth-child(1) span { 
	background-image: url(../images/1.jpg);
}

/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -webkit-animation-timing-function: ease-in;
	}
	60% {
	    opacity: 1;
	    -webkit-transform: scale(1.15);
	}
	99% {
	    opacity: 1;
	    -webkit-transform: scale(1.0);
	}
}
@-moz-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -moz-animation-timing-function: ease-in;
	}
	60% {
	    opacity: 1;
	    -moz-transform: scale(1.15);
	}
	99% {
	    opacity: 1;
	    -moz-transform: scale(1.0);
	}
}
@-o-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -o-animation-timing-function: ease-in;
	}
	60% {
	    opacity: 1;
	    -o-transform: scale(1.15);
	}
	99% {
	    opacity: 1;
	    -o-transform: scale(1.0);
	}
}
@-ms-keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    -ms-animation-timing-function: ease-in;
	}
	60% {
	    opacity: 1;
	    -ms-transform: scale(1.15);
	}
	99% {
	    opacity: 1;
	    -ms-transform: scale(1.0);
	}
}
@keyframes imageAnimation { 
	0% {
	    opacity: 0;
	    animation-timing-function: ease-in;
	}
	60% {
	    opacity: 1;
	    transform: scale(1.15);
	}
	99% {
	    opacity: 1;
	    transform: scale(1.0);
	}
}
/* Animation for the title */
@-webkit-keyframes titleAnimation { 
	0% {
		opacity: 0;
	}
	70% {
	    opacity: 0;
	    -webkit-transform: scale(10) translateY(100px);
	}
}
@-moz-keyframes titleAnimation { 
	0% {
	    opacity: 0;
	}
	70% {
	    opacity: 0;
	    -moz-transform: scale(10) translateY(100px);
	}
	100% { opacity: 1 }
}
@-o-keyframes titleAnimation { 
	0% {
	    opacity: 0;
	}
	70% {
	    opacity: 0;
	    -o-transform: scale(10) translateY(100px);
	}
	100% { opacity: 1 }
}
@-ms-keyframes titleAnimation { 
	0% {
	    opacity: 0;
	}
	70% {
	    opacity: 0;
	    -ms-transform: scale(10) translateY(100px);
	}
	100% { opacity: 1 }
}
@keyframes titleAnimation { 
	0% {
		opacity: 0;
	}
	70% {
	    opacity: 0;
	    transform: scale(10) translateY(100px);
	}
	100% { opacity: 1 }
}

/* Animation for the Headline */
@keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
@-moz-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
@-webkit-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
@-o-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
@-ms-keyframes fadeIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
/* Show at least something when animations not supported */
.no-cssanimations .cb-slideshow li span{
	opacity: 1;
}
@media screen and (max-width: 1140px) { 
	.cb-slideshow li div h3 { font-size: 60px; padding: 30px 0; }
	.cb-slideshow li:first-child div h3 { font-size: 60px; padding: 30px 0 12px 0; }
	.cb-slideshow li div h2 { font-size: 20px; padding: 0 0 20px 0; }
	.container > h1 {font-size: 26px; line-height: 34px; }	
}
@media screen and (max-width: 640px) { 
	.cb-slideshow li div h3 { font-size: 40px; padding: 20px 0; }
	.cb-slideshow li:first-child div h3 { font-size: 40px; padding: 20px 0 8px 0; }
	.cb-slideshow li div h2 { font-size: 16px; padding: 0 0 16px 0; }
}
@media screen and (max-width: 400px) { 
	.cb-slideshow li div h3 { font-size: 30px; padding: 15px 0; }
	.cb-slideshow li:first-child div h3 { font-size: 30px; padding: 15px 0 6px 0; }
	.cb-slideshow li div h2 { font-size: 14px; padding: 0 0 12px 0; }
}