/* =========================================================
Stylesheet für die Beispielsite aus "Einstieg in CSS"
Datei: bildschirm.css
Datum: ...
Autor: ...
Aufbau: 1. Allgemeine Styles
        2. Styles für Layoutbereiche
        3. Sonstige Styles
========================================================== */

@media screen {

/* =======================================
1. Allgemeine Styles
======================================= */
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90% /* Schriftgröße */;
	height: auto;
	top: 100%;	
	background-color: #5d6660;
	
}
	
h1 { font-size: 150%; } 
h2 { font-size: 130%; }
h3 { font-size: 120%; }
	
address {
	text-align: center;
	font-size: 80%;
	font-style: normal;
	letter-spacing: 2px;
	line-height: 1.5;
   }
	

/* für normale links, datenschutz, impressum, etc */	
a { text-decoration: none; } 
a:link {
	color:white;
} 
a:visited {
	color:white;
} 
a:hover, 
a:focus {
	color: #505b55;
	
}
a:active {
	color: orange;}





	
.sie-sind-hier {
	text-decoration: none;
	color: black;
	text-align: center;
	display: block;
	text-transform: uppercase;
	padding-top: 5px;
	padding-right: 7px;
	padding-left: 7px;
	padding-bottom: 5px;
	font-size: 12px;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
	
	letter-spacing: 2px;
	
}
/* Allgemeine Klassen und IDs */

.floatlinks { 
  float:left; 
  margin-right: 10px; 
  margin-bottom: 10px; 
}
.floatrechts {
  float:right; 
  margin-left: 10px; 
  margin-bottom: 10px;
}

img{
	max-width: 100%;
	height: auto;
	
}
/* =======================================
das wurde eingesetzt:
img{
	max-width: 100%;
	height: auto;
}
======================================= */
/* =======================================
2. Styles für die Layoutbereiche
======================================= */
div#wrapper {
  background-color:gray;
  width:100%;
  margin: 3% auto;
	
}


	

div#navibereich {
	position: relative;
	background-color:gray;
	padding: 20px 0 5px 0px;
}



div#textbereich { 
    overflow-y: hidden;
    white-space: nowrap;
    margin:0;
	background-color:#8f987c;
	height:auto;
	max-width: 1500px;
	border-top-color: black; 
	
	
}
div #aniback { 
  overflow-y: hidden;
    white-space: nowrap;
   
	background-image: url(images/background_images-800-keindesign.gif);
   max-width: 1500px; 
     
	
    }	

div #unterschrift{padding: 0px 20px 20px 20px;
	margin-top: 0;
	background-color: none;
	max-width: 750px;
	
} 

  
div#footer {
	padding: 10px 20px 20px 20px;
	margin-top: 0;
	border-top-width: 1px;
	
	height: 100%;  
	
	
} 
div#mitte {
	
	margin-top: 0;
	border-top-width: 1px;
	
	
} 
	
	div#mitte-back {
	
	margin-top: 0;
	
	background-color: #91977f;
	
} 
	
		div#back-navi {
	
	margin-top: 0;
	
	background-color: #91977f;
	
} 


} 

/* ======================================
   E N D E bildschirm.css
====================================== */
