/*
body {
	/* Location of the image */
	background-image: url(../img/bg-1.jpg);
	
	/* Background image is centered vertically and horizontally at all times */
	background-position: center center;
	
	/* Background image doesn't tile */
	background-repeat: no-repeat;
	
	/* Background image is fixed in the viewport so that it doesn't move when 
		 the content's height is greater than the image's height */
	background-attachment: fixed;
	
	/* This is what makes the background image rescale based
		 on the container's size */
	background-size: cover;
	
	/* Set a background color that will be displayed
		 while the background image is loading */
	background-color: #464646;
}
*/

html {
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
	color: #f8e200;
	background-color: #ffffff;
}

@font-face {
	font-family: 'DINOT Bold';
	src: url(../fonts/dinot-bold.otf);
}

.title {
	z-index: 1001;
	position: absolute;
	top: 40px;
	width: 100%;
	text-align: left;
	color: #f8e200;
}

.title h1,
.title h2,
.credit {
	font-family: 'DINOT Bold', 'Arial Narrow', Arial, sans-serif;
	text-transform: uppercase;
	padding: 0;
}

.title h1 {
	font-size: 30px;
	line-height: 15px;
	letter-spacing: 3.5px;
}

.title h2 {
	margin: 0;
	font-size: 24px;
	line-height: 19px;
	display: inline-block;
	letter-spacing: 2.6px;
}

.title_inner {
	padding-left: 7%;
	display: inline-block;
}

.title_inner div {
	margin-top: 0.8em;	
}

.title div a {
	float: right;
}

.title div img {
	height: 21px;
	width: auto;
	margin-right: 5px;
}

.slideshow {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 0;
	margin: 0;
	padding: 0;
}

.slideshow li {
	list-style-type: none;
	color: #f8e200;
}

.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; /* set this to 0 and uncomment slideshow */
	z-index: 0;
/*	animation: imageAnimation 18s linear infinite 0s; */
}

.credit {
	z-index: 1000;
	width: 100%;
	position: absolute;
	bottom: 2%;
	right: 2%;
	text-align: right;
	font-size: 13px;
	opacity: 1;
	animation: creditAnimation 18s linear infinite 0s; 
}

.slideshow li:nth-child(1) span { 
	background-image: url(../img/bg-1.jpg) 
}
/*
.slideshow li:nth-child(2) span { 
	background-image: url(../img/bg-2.jpg);
	animation-delay: 6s; 
}
.slideshow li:nth-child(3) span { 
	background-image: url(../img/bg-3.jpg);
	animation-delay: 12s; 
}

.slideshow li:nth-child(2) .title,
.slideshow li:nth-child(2) .credit
 { 
	animation-delay: 6s; 
}

.slideshow li:nth-child(3) .title,
.slideshow li:nth-child(3) .credit { 
	animation-delay: 12s;
}

@keyframes imageAnimation { 
	0% { opacity: 0; animation-timing-function: ease-in; }
	6% { opacity: 1; animation-timing-function: ease-out; }
	34% { opacity: 1 }
	50% { opacity: 0 }
	100% { opacity: 0 }
}

@keyframes creditAnimation { 
	8% { opacity: 0 }
	14% { opacity: 1 }
	30% { opacity: 1 }
	36% { opacity: 0 }
	100% { opacity: 0 }
}
*/
.no-cssanimations .slideshow li span{
	opacity: 1;
}