*{box-sizing: border-box;}
div.wrapper{
    position: relative;
    margin: 0px auto;
    border: solid black 1px;
    width: 1000px;
    height: 1100px;
    background-image: url('http://www.ubuntu-ast.org/largeimages/29/297085_plain-white-wallpaper.jpg')
}
div.header{
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    height: 100px;
    border: solid white 3px;
}
div.leftMenu{
    position:absolute;
    top:110px;
    left:5px;
    height:875px;
    width:150px;
    border:solid white 3px;
}
div.rightMenu{
    position:absolute;
    top:110px;
    left:843px;
    right:5px;
    height:875px;
    width:150px;
    border: solid white 3px;
}
div.content{
    position:absolute;
    top: 110px;
    left:160px;
    right: 5px;
    height:875px;
    width: 678px;
    border:solid white 3px;
}
div.footer{
    position:absolute;
    top: 990px;
    height:100px;
    left: 5px;
    right: 5px;
    border: solid white 3px;
}
