body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%;
max-height: 100%;
}

a:link{
color: #08088A;
}

a:visited{
color: #01DF01;
}

a:hover{
color: red;
font-size: larger;
}

#menue{
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 340px; /*Breite des linken Frame*/
height: 100%;
overflow: hidden; /*“hidden“ schaltet den Scrollbalken ab. Ändern in "scroll" um es einzuschalten*/
background-image: url(&quot;hintergrund.jpg&quot;);
color: black; /*Schriftfarbe innerhalb des Frames*/
}

#hauptseite{
position: fixed;
top: 0;
left: 345px; /*Abstand von der linken Seite des Fensters*/
right: 0;
bottom: 0;
overflow: auto;
background-image: url(&quot;hintergrund.jpg&quot;);
}

.inhalt{
margin: 10px; /*Innerhalb des linken Frame = Abstand des Inhaltes vom linken Rand des Fensters*/
}

.text{
margin-right: 15px; /*Abstand vom rechten Rand*/
}

.tabelle{
margin-bottom: 800px; /*Abstand nach unten*/
}


* html body{ /*IE6 hack*/
padding: 0 0 0 325px; /*Set value to (0 0 0 WidthOfFrameDiv)*/
}

* html #hauptseite{ /*IE6 hack*/
height: 100%;
width: 100%;
}