/* --- STANDARD --- (Grundangaben, die sich auf die Webseite allgemein auswirken) */
body {
	background-color: #7A7A7A; /* Grund-Hintergrundfarbe */
   color: #202020; /* Standardschriftfarbe */
   margin: 0; /* Außenabstände für Box-Elemente */
   padding: 0; /* Innenabstände für Box-Elemente */
   text-align: center;
 	font-family: Verdana, Arial, sans-serif;
   font-size: 14px;
   line-height: 1.2em;
}


/* --- SCHRIFTELEMENTE --- */
/* Normaler Text */
p	{
   color: #202020; /* Schriftfarbe */
	font-family: Verdana, Arial, sans-serif;
   font-size: 14px;
/*   line-height: 1.2em;*/
	}

/* Überschrift 1 Groß */
h1	{
   color: #a22611;
 	font-family: Verdana, Arial, sans-serif;
   font-size: 18px;
   vertical-align: bottom;
   font-weight: bold;
/*   line-height: 1.2em;*/
	}

/* Überschrift 2 Mittel */
h2	{
   color: #a22611;
 	font-family: Verdana, Arial, sans-serif;
   font-size: 16px;
   vertical-align: bottom;
   font-weight: bold;
/*   line-height: 1.2em;*/
	}

/* Überschrift 3 Klein */
h3	{
   color: #a22611;
 	font-family: Verdana, Arial, sans-serif;
   font-size: 14px;
   vertical-align: bottom;
   font-weight: bold;
/*   line-height: 1.2em;*/
   }

/* Überschrift 4 Winzig */
h4	{
   color: #333;
 	font-family: Verdana, Arial, sans-serif;
   font-size: 9px;
   vertical-align: bottom;
   font-weight: normal;
/*   line-height: 1.2em;*/
   }

/* Hyperlink normaler Text */
  a:link    { color:#333; text-decoration:underline; }
  a:visited { color:#666; text-decoration:underline; }
  a:hover   { color:#da251c; text-decoration:none; }
  a:active  { color:#da251c; text-decoration:none; }


/* --- BLOCKELEMENTE (Design der Internetseite) --- */
/* Container */
#container {
	width: 960px;
	margin: 0 auto;
   background-color: #ffffff;
   text-align: left;

   box-shadow: 2px 2px 2px #dfdfdf;
   -moz-box-shadow: 2px 2px 2px #dfdfdf;
   -webkit-box-shadow: 2px 2px 2px #dfdfdf;
}

/* Kopfzeile */
#header {
	background-color: #d9d6cc;
   color: #e3dfd6;
   height: 150px;
}

/* Menü */
#menu {
	width: 200px;
   height: 400px;
   float: left;
   background-color: #adaa94;
}

/* Inhalt */
#content {
	background-color: #ffffff;
   padding: 0px 10px 0px 10px;
}

/* Fußzeile */
#footer {
	height: 20px;
	background-color: #ffffff;
   padding: 0px 10px 0px 10px;
}