﻿/* ============  GLOBAL DEFINITION  ==================== */

@font-face {
    font-family: 'Verdana', sans-serif;
    font-style: normal;
    font-weight: 400;
    
}

* {
    margin: 0;
    padding: 0;
}

html {
    padding: 5px 2%;
}

body {
    width: 80%;
    margin: 0 auto; 
    font: normal 0.75em Verdana, sans-serif;
    font-weight: normal; /* Normalschrift=normal - Fettschrift=bold */    
    color: #000000; 
    background: #ffffff;
}

a {
    color:#000000; 
    font-weight: bold;
}
a:hover, a:focus {
    color: #E00; /* Linkfarbe Rot -Maus */
    font-weight:bold;
}

a.more {
    float: right;
}
a.more:after {
    content: " &gt;"; 
    display: inline-block; 
    height: 1em; 
    padding: 0 .5em 0.5em 0.5em;
    border-radius: 1em;
    background: #ffa323; 
    margin-left: 10px;
}
footer a {
    color: #00f; /* Linkfarbe */
    font-weight:bold;
}

a.more:hover, footer a:hover {
    color: #E00;  /* Linkfarbe Rot -Maus over */
    font-weight:bold;
    
    text-decoration: none;
}

p {
    line-height: 1.6em;
    margin: 20px 0;
}

h1 {
    font-size: 1.875em; 
    color:#00f;		/* Farbe der Schrift */
}
h2 { 
    font-size: 1.5em;
    color: #400000; 
    }

h3 {
    font-size: 1.10em;
    color: #7C2D48; 
    margin: 0;
}
h4 {
    font-size: 1.10em;
    font-style: bold;
    color: #00f; 
    margin: 0;
}
h5 {
    font-size: 1.10em;
    font-style: normal;
    color: #000000; 
    margin: 0;
}
h6 {
    font-size: 1.10em;
    font-style: normal;
    color: #00f; # Farbe blau
    margin: 0;
}
/* ====================================================  HEADER   ==================================================== */

header {
    width: 100%;
    height: 170px;
}

#navlink {
    display:none;
    float: right;
    text-decoration: none;
    font-size: 1.875em;
    font-weight: bold;
    padding: 10px; 
    margin: 30px 30px 0 0;
}


/* ====================================================   CONTENT   ==================================================== */

main	{
    display: table-cell;
    position: relative;
    width: 80%
}

article {
    float: left;
    background: #ffffff;
    border: 1px #E5E7EB solid;
    margin-top: 70px;
    width: 100%; 
    padding: 20px 2%;
}

aside p:last-child {
    margin-bottom: 20px;
}


/* ====================================================  NAV   ==================================================== */

nav	{ 
	float: left; 
	width: 400px;  
	list-style-type: none; 
	box-shadow: 1 10px 5px 0 rgba(0,0,0,0.75); /* Schatten unter der Navigation 0=eingeschaltet  1=aus  */
	position: absolute;
	top: 5px; left:0%;
	display: block;
	text-align: center;
	margin: 0 auto 10px;
}
nav ul {
    float: left;
    width: 100%; 
    list-style-type: none;
    background: #fff; /* Farbe des Navigationshintergrundes - Beispiel #fff weiss - #00f blau */
}
nav ul li {
    float: left; /* Navigation Position */
}
nav ul li:first-child {
    margin-left: 5px;
}
nav ul li a 	{
    float: left;
    padding: 5px 0 5px 5px;
    color: #00f; /* Hier aendert man die Linkfarbe der Navigation - Beispiel Linkfarbe #c00 Rot - #00f Blau - #000 - schwarz */
    text-decoration: none;
}
nav ul li a:after {
    content:" | ";
    color: #fff; /* Farbe des Trennstriches */
    margin-left: 1px;
} 
nav li a:hover, nav li a:focus {
    background: #fff; /* Hintergrund der Navigation - Maus- Beispiel Linkfarbe  #000 - schwarz    #0f0 - Gruen */
}


/* ====================================================   FOOTER   ==================================================== */

footer {
    float: left;
    width: 100%;
    margin: 10px 0 40px 0;
    background: #fff; /* Farbe des Navigationshintergrundes - Beispiel #fff weiss - #00f blau - hellblau cff  */
}
footer ul {
    float: left;
    margin-left: 22px;
    list-style-type: none;
}
footer ul li	 {
    display: inline-block;
    border-left: 1px solid #989898; /* Farbe #989898 - grau */
}
footer ul li:first-child	 {
    border: 0 none;
}
footer ul li a {
    padding: 0 8px;
}
footer p {
    float: right;
    margin-right: 30px;
    margin-top: 0;
    padding-top: 0;
    text-align: right; 
}
.active {
  font-weight: bold;
  color: #E00;
}
}
