﻿* {margin: 0px;} /*alle ränder auf 0 setzen*/
/*html {height:100%}*/ /*erzwungene Scrolleiste*/
#gesamt { 
width: 1920px; /* Breite des Gesamt-Container*/
margin:auto; /* zentriert den Gesamt-Container */
border:#000000 dashed 0px; /* nur aus Anzeigegründen*/
background-color:black;
}
#logo { 
width: 1920px; /*feste Breite wegen Firefox*/
height: 242px; /* Höhe des logo-Container*/ 
position: absolute; /* ohne rücken die Container hoch*/
background-image:url('Kopfzeile.png');
}
#vorwort { 
width: 1920px; /* feste Breite wegen Firefox*/
height: 54px; /* Höhe des vorwort-Container*/
margin-top: 242px;/* Abstand zum oberen Seitenrand (width:logo)*/
position: absolute; /* ohne rücken die Container hoch*/
background-image:url('Menue.png');
}
#haupt { 
width: 100%; /*Auto-Anpassung an #gesamt-width:*/
}
#anzeigelinks { 
width: 300px; /* Breite des linken Containers */
height: 700px;
margin-top: 296px; /* Abstand zum oberen Seitenrand (width:logo+vorwort)*/
float:left; /* Ausrichten des Containers am linken Rand */
background-image:url('haupt-rechts.png');
}
#anzeigemitte { 
width: 1320px; /* Breite des mittleren Container */
height: 700px;
margin: auto; /* Abstand zum linken Container */
margin-top: 296px; /* Abstand zum oberen Seitenrand (width:logo+vorwort)*/
float:left; /* Ausrichten des Containers am linken Container */
background-image:url('haupt-mitte.png');
}
#anzeigerechts { 
width: 300px; /* Breite des rechten Container */
height: 700px;
margin-top: 296px; /* Abstand zum oberen Seitenrand (width:logo+vorwort)*/
float:right; /* ausrichten des Container am rechten Rand */
background-image:url('haupt-links.png');
}
/*#unten { 
width: 100%; /* Auto-Anpassung an #gesamt-width: */
/*height: 100px; /* Höhe des unten-Container */
/*clear:both; /* lösen von den vorangangenen float-Ausrichtungen */
/*}