/* Höhen- und Breitenanpassung zu 100%; Scrollbar ausblenden */
body, html{
width: 100%;
height: 100%;
margin: 0;
padding: 0;
border: 0;
overflow: hidden;}

/* BG-Image auf unterste Ebene anordnen */
#bgImg{ position: absolute;
top: 0;
left: 0;
border: 0;
z-index: 1;}

/* Body-Dummy absolut über BG-Image legen; Scrollbar bei Bedarf einblenden */
#bodyDiv{ position: absolute;
top: 0;
left: 0;
z-index: 2;
overflow: auto;
width: 100%;
height: 100%;
text-align: left;}