Prueba a ver si te va bien así:
Cita: <html>
<head>
<style>
#content {
text-align: left;
height: 100%;
background-color: #fff;
width: 100%;
}
#left_sidebar {
float: left;
width: 120px;
height: 200%;
background: #43758c;
}
#right_sidebar_container_bottom{
float:right;
width: 310px;
height:100%;
background:#143d55;
}
#main {
padding-top: 0px;
height: 100%;
margin-left: 30px;
overflow: hidden;
}
</style>
</head>
<body>
<div id="content">
<div id="left_sidebar">
</div>
<div id="main">
<table border="1" width="100%">
<td>
contenido
</td>
</table>
</div>
</div>
</body>
</html>
Mikel.