/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
    background: white url(Graphics/rabbit_bg.gif) no-repeat center;
}
#navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    background-color: white;
    margin: 20 0px
}

#banners {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    background-color: white;
    margin: 20 0px
}

#content {
    margin: 0 200px; /* setting top and bottom margin to 0 and right and left margin to 200px */
}