/* ----------------------------------------------------------------------------- * 
 *                      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: mintcream;
    color: #1A1F2B; /* dark blue */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.9em; /* 16px */
    line-height: 1.4em; /* 24px */
}

.page-wrapper { 
   background-color:middle dark blue; /* middle light blue */
   background-image: -ms-linear-gradient(#85A5CC, white);
	background-image: -moz-linear-gradient(#85A5CC, white);
	background-image: -o-linear-gradient(#85A5CC, white);
	background-image: -webkit-linear-gradient(#85A5CC, white);
}

header {
	background-color: #FFCC00; /* middle dark blue */
	background-image: -ms-linear-gradient(white, #FFCC00);
	background-image: -moz-linear-gradient(white, #FFCC00);
	background-image: -o-linear-gradient(white, #FFCC00);
	background-image: -webkit-linear-gradient(white, #FFCC00);
	
}

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

.mainContent {
    color: #333;
}
section {
	background-color: #FFF;
	color: #1A1F2B; /* dark blue */
}

aside {
    color: #1A1F2B; /* dark blue */
    background-color: #C2D2E5; /* light blue */
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 0.9 em; /* 16px */
    line-height: 1.4em; /* 24px */
}

footer {
	background-color: #99FFFF; /* middle dark blue */
	color: #000099;
	text-align: center;
	border-bottom: 7px solid yellowgreen;
}

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

h1, h2, h3  {
	font-family: Tahoma, Geneva, sans-serif; /* Google-Font Gentium Book wenn verfügbar, sonst Fallback */
	font-style: normal;
	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: #4A6491; /* middle blue */
}

h3  {
	color: #4A6491; /* middle blue */
	font-size: 1.375em; /* 22px */
	font-weight: bolder;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-style: normal;
}

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

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

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

a:hover, a:focus, a:active {
	text-shadow: 1px 1px 20px #F0F;
	color: #005580;
	text-decoration: underline;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	cursor: pointer;
	filter: Glow(Color=1px, Strength=1px);
}

.highlight{
	color: #0000FF;
}

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

nav {
	background-color: middle dark blue;
	
	box-shadow: 0 0 20px rgba(112, 23, 124, 0.2) inset;
	color: #FFFFFF;
	font-family: "Helvetica Neue" ,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 */
}
