/* ----------------------------------------------------------------------------- * 
 *                      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: #799A9F;
    color: #333333; /* dark blue */
    font-family: Verdana, sans-serif;
    font-size: 1em; /* 16px */
    line-height: 1.5em; /* 24px */
}

.page-wrapper {
   background-color: #fff; 
}

header {
    background-color: #FFF; /* middle dark blue */
    color: #efefef;
    border-top:   7px solid #fff;
    border-left: 7px solid #fff;
    border-right: 7px solid #fff;
  /*  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5) inset;  */
}

.main {
    background-color: #fff;
    color: #333333; /* dark blue */
}

.mainContent {
    color: #333333;
}

aside {
    color: #333333; /* dark blue */
    background-color: #fff; /* light blue */
}

footer {
    background-color: #41737B; /* middle dark blue */
    color: #efefef;
    text-align: left;
    border-bottom: 7px solid #fff;
    border-left: 7px solid #fff;
    border-right: 7px solid #fff;
}

/* ----------------------------------------------------------------------------- * 
 *                             Textauszeichnungen                                *
 * ----------------------------------------------------------------------------- */

h1, h2, h3  {
    font-family: Verdana, sans-serif; /* Google-Font Gentium Book wenn verfügbar, sonst Fallback */


}

h1  {
    font-size: 2.0em; /* 36px; */
    line-height: 1.5em; /* 54px */
}

h2  {
    font-size: 1.5em; /* 26px */ 
    line-height: 1.5em;
    color: #41737B; /* middle blue */
}

h3  {
    color: #41737B; /* middle blue */
    font-size: 1.0em; /* 22px */
    font-weight: bold;
}

p.teasertext    {
    color: #333333; /* middle dark blue */
    font-family: Verdana, sans-serif;
    font-size: 1.0em; /* 19px */
    line-height: 1.368em; /* 26px */
}

a:link, a:visited {
    color: #FF8500;
    text-decoration: none;
}

a:hover, a:focus, a:active {
    color: #FF8500;
    text-decoration: underline;
}

.highlight{
   color: yellowgreen;
}

/* ----------------------------------------------------------------------------- * 
 *                                    Navigation                                 *
 * ----------------------------------------------------------------------------- */

nav {
 /*   box-shadow: 0 0 20px rgba(112, 23, 124, 0.2) inset;   */
    color: #efefef;
    font-family: Verdana, sans-serif;
    font-size: 1.0em; /* 20px */
}

nav ul li {
    list-style: none;
}

nav a:link, nav a:hover {
    color: #333; /* middle dark blue */
}

nav a:hover {
    background-color: #E1E1E1; /* light blue */
}