27/32: .footer окрашивает и .content

При задании фона футеру, окрашивается сразу два класса - .footer и .content. Помогите разобраться(думаю проблемма в HTML-части, т.к. если между дивами .content и .footer ставиш любой символ ,то окрашивает как надо…):

<!DOCTYPE html>
<html lang="ru">
    <head>
        <title>Испытание: строим сетку</title>
        <meta charset="utf-8">
    </head>
    <body>
         <div class='head clearfix'><!!--start header!!>
            <div class='layout'>
                <div class='header'>
                    Header
                </div>
            </div>
            <div class='menu'>
                <div class='layout'>
                        Menu
                </menu>
            </div>
            </div>
            <div class='layout'>
                <div class='promo'>Promo1</div>
                <div class='promo'>Promo2</div>
            </div>
        </div><!!--end header!!>
        
        <div class='content'>   
            <div class='layout'>
                <div class='left'>Left</div>
                <div class='main'>Main</div>
                <div class='right'>Right</div>
            </div>
        </div> 
        
        <div class='footer clearfix'>
                <div class='layout'>footer</div>
        </div>
    </body>
</html>

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

body {
width: 450px;
height: 335px;
font-family: “Arial”, sans-serif;
font-size: 10px;
color: white;
}
.head{
background-color:#34495e;
padding-top:10px;
margin-bottom: 10px;
}
.clearfix:after{
display: table;
content:’’;
clear:both;
height: 10px;
}
.layout{
width: 350px;
margin: 0px auto;
}
.header{
background: #c0392b;
padding:5px;
min-height: 25px;
margin-bottom: 10px;
}
.menu{
background:#3498DB;
padding: 5px 55px;
min-height: 25px;
margin-bottom: 10px;
}
.promo{
background: #c0392b;
width: 160px;
float: left;
padding:5px;
min-height: 40px;
}
.promo:last-child{
margin-left: 10px;

}

.left,
.right,
.main{
background:#3498DB;
padding:5px;
min-height: 90px;
}
.left,
.right{
width:60px;
}
.main{
width: 180px;
float: left;
margin-right: 10px;
}
.left{
float: left;
margin-right: 10px;
}
.right{float: right;}
.content{
margin-bottom: 10px;
}
.footer{
background: #34495e;
min-height: 25px;
padding: 5px;
margin-top: 10px;
}
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498DB – синий
*/

HTML-код видно не полностью. Корректируйте.