.menu .menuWrapper .span_1_of_2 {
height: 400px;
width: 48%;
}
.menu .menuWrapper .col {
background-color: #e5e1d2;
border-radius: 3px;
float: left;
margin-right: 20px;
margin-top: 20px;
padding: 30px 0;
text-align: center;
}
<div id="header">HEADER</header>
<div id="sidebar">SIDEBAR BLOCK</div>
<div id="content">CONTENT BLOCK</div>
#header{
/*тут все как обычно, главное не забыть clear если пользуетесь float-ом*/
}
#sidebar{
width: 30%;
float: left;
}
#content{
width: 70%;
float: left;
}