/* layout */
/*
    section .container: 1000px
        header
            logo
        /header
    /section    
    nav: 100%
    section .container: 1000px
        article .width-780: 780px
        article .width-210: 210px
    /section
    footer .container: 1000px
*/

.container, header, nav {
    position: relative;
} 

.container {
    width: 1000px;
    margin: 0 auto;
}

header {
    height: 135px;
    text-align: left;
}

nav {
    width: 100%;
    min-width: 1000px;
    text-align: center;
    border-top: 1px solid #c1121c;
    border-bottom: 1px solid #c1121c;
    height: 25px;    
    margin-bottom: 35px;
}

.width-780 {
    width: 780px;
    float: left;
}

.width-210 {
    width: 210px;
    float: right;
}

