/* ----------------------------------------------------------------------------- * 
 *                      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:   #FFFFee;
		
    /*background-color: mintcream; */
    color: #1A1F2B; /* dark blue */
	font-family: 		Verdana, Arial, sans-serif;

    /*font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;*/
    font-size: 1em; /* 16px */
    line-height: 1.5em; /* 24px */
}

.page-wrapper {
   
   	background-color: 	rgb(242,242,230);
}

header {
    	background-color: 	rgb(232,232,220);
   /* color: #efefef;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5) inset;
	*/
}



.main {
    background-color: 	rgb(242,242,230);
    color: #1A1F2B; /* dark blue */
}

.mainContent {
    color: #333;
}

aside {
    color: #1A1F2B; /* dark blue */
    background-color: 	rgb(242,242,230);
}

footer {
    border-bottom: 1px solid yellowgreen;
}

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

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

h1  {
	font-family: 'Gentium Book Basic', serif;
	font-size: 				1.0em; 
    line-height: 1.5em; /* 54px */
}

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

h3  {
    color: ##000;
    font-size: 1.1em; /* 22px */
    font-weight: normal;
}


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

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


/* ----------------------------------------------------------------------------- * 
 *                                    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.1em; /*25em;*/ /* 20px */
    background-color: rgb(242,242,230);	
}

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