/* ----------------------------------------------------------------------------- * 
 *                      Atmosphäre: Farben und Schriften                         *
 *          Alle weiteren Styles stecken in der jeweiligen layout.css            *
 * ----------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------------- * 
 * Verwendete Farben
 * Blue Colors:
 * #1A1F2B - dark blue
 * #30395C - middle dark blue
 * #4A6491 - middle blue
 * #85A5CC - middle light blue
 * #C2D2E5 - light blue
 * ----------------------------------------------------------------------------- */

html    {
    font-size: 100%;
}

body {
    background-color: #fff;
    color: #1A1F2B; /* dark blue */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1em; /* 16px */
    line-height: 1.5em; /* 24px */
}

.page-wrapper {
   background-color: #ffffff; /* middle light blue */
}

header {
    background-color: #ffffff; /* middle dark blue */
    color: #999999;
    
}

.main {
    background-color: #fff;
    color: #999999; /* dark blue */
}

.mainContent {
    color: #888;
}

aside {
    color: #666; /* dark blue */
    background-color: #fff; /* light blue */
}

footer {
    background-color: #fff; /* middle dark blue */
    color: #999;
    text-align: right;
    border-bottom: 7px solid black;
}

/* ----------------------------------------------------------------------------- * 
 *                             Textauszeichnungen                                *
 * ----------------------------------------------------------------------------- */

h1, h2, h3  {
    font-family: 'Arial Black, Gadget, sans-serif' /* Google-Font Gentium Book wenn verfügbar, sonst Fallback */
    font-style: italic;
    font-weight: bold;
}

h1  {
    font-size: 2.250em; /* 36px; */
    line-height: 1.5em; /* 54px */
}

h2  {
    font-size: 1.625em; /* 26px */ 
    line-height: 1.5em;
    color: #888; /* middle blue */
}

h3  {
    color: #000; /* middle blue */
    font-size: 1.625em; /* 26px */ 
    font-weight: bold;
}

p.teasertext    {
    color: #000; /* middle dark blue */
    font-family: "Trebuchet MS",Helvetica,Arial;
    font-size: 1.188em; /* 19px */
    line-height: 1.368em; /* 26px */
}

a:link, a:visited {
    color: #005580;
    text-decoration: none;
}

a:hover, a:focus, a:active {
    color: #005580;
    text-decoration: underline;
}

.highlight{
   color: yellowgreen;
}

/* ----------------------------------------------------------------------------- * 
 *                                    Navigation                                 *
 * ----------------------------------------------------------------------------- */

nav {
    box-shadow: 0 0 20px rgba(112, 23, 124, 0.2) inset;
    color: #efefef;
    font-family: "Trebuchet MS",Helvetica,Arial;
    font-size: 1.25em; /* 20px */
}

nav ul li {
    list-style: none;
}

nav a:link, nav a:hover {
    color: #30395C; /* middle dark blue */
}

nav a:hover {
    background-color: #C2D2E5; /* light blue */
}