@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875em;
    line-height: 1.431em;
    background-image: url(../images/bg.png);
    background-repeat: repeat-x;
}

#wrapper1 {
    position: relative;
    max-width: 100%;
    padding-bottom: 1rem;
    padding-top: 1rem;
    background-color: #CECFCF;
}

footer {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
}

#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    border: none;
    padding: 0.5rem 0rem;
    background-color: #fff;
    overflow: hidden;
}

header,
article,
footer {
    padding: 0rem 1.188rem;
}

header {
    margin-bottom: 14px
}

p {
    text-align: left;
}

h2 + p,
h2 + ul {
    margin-top: 0.308rem;
}

h1 {
    font-size: 2.321em;
    line-height: 1em;
    font-weight: normal;
    color: #0078C2;
}

h1 span {
    font-weight: normal;
}

h2 {
    font-size: 1.431em;
    line-height: 1.231em;
    margin-bottom: 0;
    font-weight: normal;
}

a:link,
a:active,
a:visited {
    color: #0078C2;
    text-decoration: none;
}

a:hover {
    color: #0078C2;
    text-decoration: underline;
}

a.link:link {
    text-decoration: underline;
    color: #000;
}

a.link:visited {
    text-decoration: underline;
    color: #000;
}

a.link:hover {
    text-decoration: none;
    color: #000;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

hr {
    border-top: 1px solid #52BA5A;
}

ul {
    padding-left: 1rem;
}

li {
    padding-bottom: 0.2rem;
}

ol {
    padding-left: 2rem;
}

ol li {
    padding-bottom: 0.2rem;
    list-style-type: none;
    list-style-image: url();
}

ol li:before {
    content: "\25A0";
    color: #FFCD00;
    float: left;
    margin-left: -20px;
    margin-top: -0.1rem;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

@keyframes slidy {
    0% {
        left: 0%;
    }

    47% {
        left: 0%;
    }

    50% {
        left: -100%;
    }

    97% {
        left: -100%;
    }

    100% {
        left: -200%;
    }
}

.slider {
    overflow: hidden;
    margin: 0;
}

.slider figure {
    position: relative;
    width: 300%;
    margin: 0;
    left: 0;
    text-align: left;
    font-size: 0;
    animation: 12s slidy infinite;
}

figure img {
    width: 33.333333333333336%;
    float: left;
}


/* Responsive */
@media only screen and (max-width:700px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    header,
    article,
    footer {
        padding: 0rem 0.5rem;
    }
}

/* Ende Responsive */
