/* fonts */
@import url(css2_6f5ad9c9ee0f63ca.css);


/* Externe CSS für alle Common Designs */
*{
    margin:0;
    padding: 0;
    font-weight: normal;
}
body {
    line-height: 1;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 0.01rem;
    color: #555555;
    background: white;
    width: 100%;
}
article{
    position: relative;
    width: 100%;
    max-width: 999px;
    margin: 0 auto 2rem;    
    box-sizing: border-box;
}
body > article{
    border: 1px solid #ccc;
}
.clearer{
    width: 100%;
    height: 0.1px;
    clear: both;
    float: none;
}

header,main,footer{
    position: relative;
    width: 100%;
    box-sizing: border-box;
    padding: 0rem 3rem 0;
}
header{
    padding: 0;
    margin-bottom: 3rem;
    display: none;
}
header.logo{
    margin-bottom: 1rem;
}
header a{
    display: block;
    float: left;
    width: 40%;
    padding: 1rem 3rem;
    box-sizing: border-box;
}
section.bild{
    margin-bottom: 2rem;
}
/******************************* Bildwechsler 2 + 3 ******************/
.slider3,.slider2{
	position: relative;
	margin: 0 0 3rem;
	background: none;
	border: none;
}
.slider3 figure{
	position: absolute;
	display: inline-block;
	top: 0;
	left: 0;
	z-index: 1;
    opacity: 0;
    animation: wechseln3 15s infinite;    
}
.slider2 figure:first-of-type{
	position: absolute;
	display: inline-block;
	top: 0;
	left: 0;
	z-index: 1;
    opacity: 0;
    animation: wechseln2 10s infinite;    
}

.slider3 figure:last-of-type, .slider2 figure:last-of-type {
	position: relative;
}
@keyframes wechseln3 {
    0% {opacity: 0;}
   20% {opacity: 1;}
   40% {opacity: 1;}
   60% {opacity: 0;}
  100% {opacity: 0;}
}
@keyframes wechseln2 {
    0% {opacity: 0;}
   10% {opacity: 1;}
   50% {opacity: 1;}
   60% {opacity: 0;}
  100% {opacity: 0;}
}
.slider3 figure:nth-of-type(2) {
  animation-delay: 5s;
}
.slider3 figure:nth-of-type(3) {
  animation-delay: 10s;
}
/******************************************* Bildwechsler Ende *************/

footer{
    margin-bottom: 0;
    padding: 1.5rem 3rem;
    color: #fff;
}
footer article{
    margin-bottom: 0;
}
footer h3, footer a, footer a:hover{
    color: #fff;
    text-decoration: none;
}
footer a:hover{
    text-decoration: underline;
}
img{
    width: 100%;
    height: auto;
}
h1{
    font-weight: 600;
    width: 100%;
    max-width: 999px;
    margin-bottom: 3rem;
    margin-top: 3rem;
    font-size: 250%;  
    hyphens: auto; 
}
h3{
    font-weight: 600;
    font-size: 125%;
    margin-bottom: 0.5rem;
}
b,strong{
    font-weight: 700;
}
ul{
    padding-left: 1.2rem;
    text-indent: 0rem;
}
p,li{
    margin-bottom: 0.5rem;
}
@media(min-width:600px){
    header{
        display: block;
    }
    h1{
        margin-top: 0rem;
        hyphens: none;
    }
    
}
