Prueba este y me avisas como te funciono..se adapta a el tamaño de la ventana..
Código HTML:
<html>
<head>
<title></title>
<style type="text/css">
#ttcontainer
{
width: 100%;
float: left;
}
#image
{
background: #041B7E;
float: left;
top: 0px;
left: 0px;
width: 40%;
height: 147px;
}
#header
{
background: #0f0;
float: left;
top: 0px;
left: 320px;
width: 48%;
height: 40px;
}
#leftcol
{
background: #f00;
float: left;
top: 0px;
left: 880px;
width: 10%;
height: 40px;
}
#content
{
background: #169136;
float: left;
top: 40px;
left: 320px;
width: 58%;
height: 107px;
}
</style>
</head>
<body>
<div id="ttcontainer">
<div id="image">
</div>
<div id="header">
Header Section</div>
<div id="leftcol">
Left Section</div>
<div id="content">
Content Section</div>
</div>
</body>
</html>