@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font: 1em Helvetica, Arial, sans-serif;
    line-height: 1.3;
}

#wrapper {
    position: relative;
    max-width: 535px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 0.5rem 0.8rem;
    text-align: left;
}

a {
    color: #367CAC;
    text-decoration: none;
}

p {
    padding-bottom: 0.5rem;
}

h1 {
    margin: 0rem 0rem 0.5rem;
    font-size: 1.45em;
    line-height: 1.1em;
    color: #367CAC;
}

h1 span {
    font-size: 0.7em;
}

h2 {
    font-size: 1em;
    line-height: 1.2em;
    margin-bottom: 0rem;
    color: #367CAC;
}

ul {
    padding: 0rem 0rem 0.5rem;
    list-style: none;
}

li {
    padding-left: 1.1rem;
}

li:before {
    content: "\2022";
    display: block;
    font-size: 1.3em;
    line-height: 1;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -1.1rem;
    color: #367CAC;
}

i {
    font-style: normal;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

/* Header */
header {
    padding: 0rem;
}

header img {
    float: right;
}

/* Ende Header */
/* Article */
article {
    padding: 0rem;
}

/* Ende Article */
/* Footer */
footer {
    padding: 0rem;
}

/* Ende Footer */
@media only screen and (max-width: 534px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
        font-size: 0.938em;
    }

    p {
        text-align: left;
    }

    article br {
        display: none;
    }

    header img {
        float: none;
    }
}