Сетки / Испытание: строим сетку.Не добираю проценты! Критика необходима.

Как на весь фон расположить блок Menu?
Да и вообще покритиркуйте что не так!
Thanks. Вот код:

<!DOCTYPE html>
<html lang="ru">
    <head>
        <title>Испытание: строим сетку</title>
        <meta charset="utf-8">
    </head>
    <body>
    <div class="wrapper">
    <div class="up">
    <div class="positioner">
    <div class="header">Header</div>
    <div class="menu">Menu</div>
    <div class="red promo1">Promo 1</div>
    <div class="red  promo2">Promo 2</div>
    </div>
    </div>
    <div class="positioner">
    <div class="column left">Left</div>
    <div class="column main">Main</div>
    <div class="column right"> Right</div>
    </div>
    <div class="bottom">
    <div class="positioner">
    <div class="footer">Footer
    </div>
    </div>
    </div>
    </div>
    </body>
</html>

CSS:
html,
body {
margin: 0;
padding: 0;
}

body {
width: 450px;
height: 335px;
font-family: “Arial”, sans-serif;
font-size: 10px;
color: white;

}

.positioner{
width:350px;
margin:0 auto;
}
.up {
background:#34495e;
min-height:160px;
padding-top:10px;
}
.red{
background:#c0392b;
padding:5px;
float:left;
}
.header{
width:340px;
padding:5px;
background:#c0392b;
min-height:25px;
}
.promo1,
.promo2{
min-height:50px;
width:160px;
margin-left:10px;
}
.promo1{
margin-left:0px;
}
.red:first-child{
margin:0px;
min-height:0px;
}
.up .menu{
background:#3498DB;
padding:5px;
clear:both;
margin:10px 0px;
min-height:25px
}

.column {
background:#3498DB;
min-height:50px;
padding:5px;
float:left;
margin-left:10px;
margin-bottom:10px;
width:60px;
min-height:100px;
}
.left {
margin-left:0px;
}
.main {
width:180px
}
.bottom{
min-height:55px;
background:#34495e;
clear:both;
padding-top:5px;
padding-left:9px;
}

/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498DB – синий
*/

Вложить блок div.menu в оболочку, которую вывести за пределы div.positioner. И интересно, что div.positioner схлопнут в ряде мест…

Чего-то не догоняю