@charset "utf-8";

/* Normalise Browser settings */
@import url("/styles/normalize.css");

/* Settings for whole website */
@import url("/styles/general.css");

/* Printing */
@import url("/styles/print_styles.css");

body {
  background-color:rgb(124,31,70);
}

/* Header styles */
#header_background {
	width: 100%;
	min-width: 960px;
	height: 210px;
	background-color: rgb(255,255,255);
}

/* Container around 3 header blocks */
header {
	width: 960px;
	height: auto;
	overflow: hidden;
	position: relative;
	margin: 0px auto;
}

/* Header left with logo & byline */
#header_left {
	width: 800px;
	height: 200px;
	display: table-cell;
	float: middle;
}
#index_logo {
	width: 360px;
	height: 80px;
	margin-top: 60px;
	margin-left: 100px;
}
#byline {
	width: 360px;
	height: 60px;
	margin-top: 10px;
	margin-left: 60px;
	font-size: 18px;
	color: rgb(132,122,123);
	text-align: center;
}

/* Header middle with slider */
#header_middle {
	width: 300px;
	height: 320px;
	padding-top: 20px;
	margin-left: 20px;
	float: left;
}

@keyframes slide {
  0% {
    left: 0%;
  }
  30% {
    left: 0%;
  }
  33.34% {
    left: -100%;
  }
  63.34% {
    left: -100%;
  }
  66.67% {
    left: -200%;
  }
  100% {
    left: -200%;
  }
}

ul#slider {
	width: 253px;
 	height: auto;
    overflow: hidden;
    list-style: none;
    margin: 0;
    padding: 0;
	border-radius: 5px;
}
ul#slider li {
    position: relative;
    width: 300%;
    left: 0;
	
	-webkit-animation: slide 12s 0s alternate forwards infinite;
	-moz-animation: slide 12s 0s alternate forwards infinite;
	-o-animation: slide 12s 0s alternate forwards infinite;
	-ms-animation: slide 12s 0s alternate forwards infinite;
	animation: slide 12s 0s alternate forwards infinite;
}
#slider .slide-box {
    width: 33.3334%;
    height: 300px;
    float: left;
    position: relative;
}
#slider .slide-box img {
    width: 254px;
    height: auto;
}

/* Header right with language navigation */
#header_right {
	width: 50px;
	height: 340px;
	margin-left: 20px;
	float: left;
	display: table-cell;
}
#nav_lang {
	width: 50px;
	height: 100px;
	padding-top: 20px;
}	
#nav_lang ul {
	padding: 0px;
}
#nav_lang ul li {
	font-size: 12px;
	text-align: right;
	list-style-type: none;
}

/*Main navigation bar*/
#nav_background {
	width: 100%;
	min-width: 960px;
	height: 30px;
	background-color: rgb(175,175,177);
}

/* Container for navigation bar and image */
#nav_container {
	width: 800px;
	height: 30px;
    margin: 0px auto;
}

#main_nav {
	width: auto;
	height: 30px;
    margin: 0px auto;
}

/* first level list - format */
#main_nav ul  {
	margin: 0px;
}

#main_nav ul li {
	display: inline;
	line-height: 32px;
	margin-right: 70px;
}

/*navigation bar image*/
#nav_image_container {
	width: 880px;
	height: auto;
	margin: 10px auto;
	overflow: hidden;
	position: relative;
	top: -180px;	
}
#nav_image {
	display: block;	
	float: right;
}

/* White block under main navigation with shadow */
#navigation_underline {
	width: 100%;
	min-width: 960px;
	height: 15px;
	background-color: rgb(255,255,255);
	z-index: 10;
}

/* Main index image */
#index_image_container {
	width: 800px;
	padding: 0px 110px 0px 50px;
	height: auto;
	margin: 10px auto;	
}
	
#index_image  {
	display: block;	
}

/* Footer */
#footer_background {
	width: 100%;
	min-width: 960px;
	height: 65px;
	background-color: rgb(255,255,255);	
	z-index:10;
}
footer {
	width: 800px;
	margin: 0px auto;
}

#index_footer_text {
	width: 800px;
	height: 60px;
	padding-top: 10px;
	font-size: 18px;
	color: rgb(124,31,70);
	text-align: center;

/* Sponsor logos */
/* Separate divs in case shadow or border required in future */
.sponsor  {
	margin-right: 20px;
	height: 35px;
	display: inline-block;
} 
/*logo slightly higher than others*/
#sponsor1  { 
	position: relative;
	top: 7px;
}
/*move text higher*/
#impressum {
	width: 120px;
	height: 30px;
	display: inline-block;
	position: relative;
	top: -10px;
	
}