﻿@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.938em;
    line-height: 1.5;
}

#wrapper {
    background-color: #fff;
    border: thin solid #000;
    margin: 1rem auto;
    max-width: 43.75rem;
    overflow: hidden;

    position: relative;
}

p + p {
    margin: 1.5rem 0 0 0;
}

h1 {
    margin: 2rem 0;
    font-size: 1.5rem;
    line-height: 1.2;
    color: #003a6c;
}

h1 span {
    font-weight: normal;
}

h2 {
    color: #003a6c;
    font-size: 1.063rem;
    font-weight: bold;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}

a:link,
a:active,
a:visited {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #003a6c;

}

img {
    display: block;
    height: auto;
    max-width: 100%;
    border: none;
}

hr {
    border: none;
    border-top: 0.063rem solid #000;
}

/*hr {
	background-color: #FFFFFF;
	border-bottom-style: none;
	border-left-style: none;
	border-right-style: none;	
	border-top-color: #E00060;
	border-top-style: dotted;
	border-top-width: 0.125rem;	
	color: #FFF;
	height: 0.063rem;
}*/

ul {
    padding-left: 1.25rem;
}

li {

    list-style-type: none;
    list-style-image: url();

    padding-bottom: 0.2rem;
}

li:before {
    float: left;
    content: "+";
    color: #003a6c;
    margin-left: -1.238rem;
}

/* Liste mit Sonderzeichen (Sonderzeichencodes können über diese Seiten gefunden werden http://unicode-table.com/de/)

25A0 - Quadrat
25B6 - Dreieck
23E9 - 2 Dreiecke
2713 - Häkchen
1F5F8 - Dünnes Häkchen
2714 - Häkchen dick
2010 - Bindestrich
2212 - langer Bindestrich
2022 - Kreis (Bullet)
25CF - großer Kreis (Bullet)
22C5 - winziger Kreis
25CB - leerer Kreis
25EF - leerer Kreis groß
2666 - Karo
203A - kleiner Pfeil unten
002217 - Stern
2192 - Pfeil
27A2 - Pfeil mit Schatten
002c - Komma
0020 - Leerzeichen nach einem Satzzeichen
202F - Leerzeichen, kann mehrmals eingesetzt werden (entspricht &nbsp;)
20AC - Eurozeichen
00AE - eingetragene Marke
2B9A - Dreick 3D
2B9E - Dreieck gefüllt
2665 - Herz
00AB - Doppelpfeil links
00BB - Doppelpfeil rechts
003E - Größer-Als-Zeichen
02C3 - Rechte Pfeilspitze

li:before
{
	color: #960236;
	content: "\2010";
	float: left;		
	margin-left: -0.938rem;
}
*/

header {
    margin: 2.5rem;
}

header img {
    margin-left: auto;
    width: 16rem;
}

article {
    margin: 2.5rem;
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

/* Responsive */
@media only screen and (max-width:43.687rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0rem;
    }

    header {
        margin: 2rem 1rem;
    }

    header img {
        margin-left: auto;
        width: 16rem;
    }

    article {
        margin: 1rem;
    }

    a:link,
    a:active,
    a:visited {
        font-size: 1rem;
    }

    a:hover {
        text-decoration: none;
    }

}

/* Ende Responsive */
