html, body {
  	width: 100%;
  	height: 100%;
	margin: 0;
  	border: 0;
  	padding: 0;
	overflow:hidden;
  }
body {
  	background-color: #fff;
	overflow:hidden;
  }
  
#header {
  	position: absolute;
 	top: 0px;			/* Abstand zum oberen Fensterrand */
  	left: 0px;		/* Abstand zum linken Fensterrand */
  	height: 169px;		/* Blockhöhe */
	width: 100%;
  	padding: 0;		/* Interpretation Boxmodell! */
  	overflow: hidden;	/* Scrollbalken unterbinden */
  }
#header .inhaltDiv {
  	margin: 0px;		/* Abstand des Inhalts zum Blockrand */
  }
  
#content {
  	position: absolute;
 	top: 169px;			/* Abstand zum oberen Fensterrand */
	bottom: 235px;
  	left: 0px;		/* Abstand zum linken Fensterrand */
	right: 0px;
	width: 100%
	height: expression((document.body.clientHeight - 169 - 235) + "px");
  	padding: 0;		/* Interpretation Boxmodell! */
	overflow: auto;
	background-repeat:no-repeat;
	background-image:url(images/content_bg.jpg);
  }
#content .inhaltDiv {
  	margin: 0px;		/* Abstand des Inhalts zum Blockrand */
	padding-top: 40px;
	padding-left: 240px;
	margin-right: 28px;;
  }  
  
#footer {
  	position: absolute;
  	left: 0px;		/* Abstand zum linken Fensterrand */
	bottom: 0px;
  	height: 235px;		/* Blockhöhe */
	width: 100%;
  	padding: 0;		/* Interpretation Boxmodell! */
  	overflow: hidden;	/* Scrollbalken unterbinden */
  }
#footer .inhaltDiv {
  	margin: 0px;		/* Abstand des Inhalts zum Blockrand */
  }