/* =========================================================
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%;	
}
	
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:lightgray;
} 
a:visited {
	color:#cccccc;
} 
a:hover, 
a:focus {
	color: #999999;
	
}
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:white;
  width:100%;
  margin: 3% auto;
}



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



div#textbereich { 
    overflow-y: hidden;
    white-space: nowrap;
    margin:0;
	background-color:white;
	height:auto;
}
	
div#textbereich1{ 
    overflow-y: hidden;
    white-space: nowrap;
    margin:0;
	background-color:white;
	height:auto;	
}
	
div#textbereich2{ 
    overflow-y: hidden;
    white-space: nowrap;
    margin:0;
	background-color:white;
	height:auto;	
}
	
div#textbereich3{ 
    overflow-y: hidden;
    white-space: nowrap;
    margin:0;
	background-color:white;
	height:auto;	
}
	
div#textbereich4{ 
    overflow-y: hidden;
    white-space: nowrap;
    margin:0;
	background-color:white;
	height:auto;	
}

div #unterschrift{padding: 10px 20px 20px 20px;
	margin-top: 0;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: white; 
	background-color: none;
	max-width: 750px;
} 

  
div#footer {
	padding: 10px 20px 20px 20px;
	margin-top: 0;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: white; 
	background-color: white;
} 


} 

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