hay te doy un poco de ayuda creo que lo que buscas hacer es esto
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<style type="text/css">
<!--
body {
margin: 0;
padding: 0;
height: 100%;
}
img {
border-style: none;
}
.capota {
width: 850px;
margin: 0 auto;
background-color: #000;
background-image: url(nuevaestructura2012/fondocapa.jpg);
height: 100%;
}
.cabecera {
width: 850px;
height: 150px;
background-color: #CCC;
}
.botonera {
width: 850px;
height: 150px;
background-color: #FC0;
}
.lateral {
float: left;
width: 200px;
background-color: #999900;
height: 396px;
}
.centro {
width: 650px;
float: right;
background-color: #F00;
height: 396px;
}
.pie {
clear: both;
background-color: #FF0;
height: 40px;
width: 100%;
}
-->
</style></head>
<body>
<div class="capota">
<div class="cabecera">CABECERA</div>
<div class="botonera">BOTONERA</div>
<div class="lateral">LATERAL</div>
<div class="centro">CENTRO</div>
<div class="pie"></div>
</div>
</body>
</html>