/* ----------------------------------------------------------------------------- *
 *                      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
 * ----------------------------------------------------------------------------- */

body {
    background-color: mintcream;
    color: #1A1F2B; /* dark blue */
    font-family: verdana, arial, helvetica, sans-serif;;
}

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

header {
    background-color: #30395C; /* middle dark blue */
    color: #efefef;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5) inset;
}
header h1 {
	color: #efefef;
}

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

.mainContent {
    color: #333;
}

footer {
    background-color: #30395C; /* middle dark blue */
    color: #efefef;
    text-align: right;
    /*border-bottom: 7px solid yellowgreen;*/
}
/* ----------------------------------------------------------------------------- * 
 *                             Textauszeichnungen                                *
 * ----------------------------------------------------------------------------- */
p.teasertext    {
    /* font-family: "Trebuchet MS",Helvetica,Arial; */
    color: #30395C; /* middle dark blue */
    font-size: 1.188em; /* 19px */
    line-height: 1.368em; /* 26px */
}

a:link, a:visited {
    color: #005580;
    /*text-decoration: none;*/
    /*border-bottom: 1px dotted silver;*/
}

a:hover, a:focus, a:active {
	color: orange;
	/*color: #005580;*/
  /*border-bottom: 2px dotted;*/
	/*background-color: #dcdcdc;*/
}

/* Reinhold */
footer a:link, footer a:visited {
	color: lightgrey;
	/*background-color: #fff7e8;*/
}
/* ----------------------------------------------------------------------------- * 
 *                                    Navigation                                 *
 * ----------------------------------------------------------------------------- */
nav {
    box-shadow: 0 0 20px rgba(112, 23, 124, 0.2) inset;
    color: #efefef;
    font-family: "Trebuchet MS",Helvetica,Arial;
}

nav ul li {
    list-style: none;
}

nav a:link, nav a:visited, nav a:hover {
    color: #30395C; /* middle dark blue */
}
nav a:hover {
    background-color: #C2D2E5; /* light blue */
}