/* structure.css - default structure/page layout styles */

/* set all the browser margins/padding to 0 */
body {
    margin: 0;
    padding: 0;
}

/* container div for all of the rest of the code */
#container {
    width: 790px;
    margin: 0 auto 0 auto;
}

/* header div */
#header {
    height: 120px;
    padding-bottom: 33px;
    background: #FFF url('../../images/layout/header_gradient.gif') repeat-x bottom;
}

/* header logo */
#logo {
    position: relative;
    top: 0px;
    left: 640px;
}

#navigation {
    height: 25px;
    margin: 0 0 10px 0;
    padding: 1px 1px 1px 1px;
    background: #FFF url('../../images/layout/nav_gradient.gif') repeat-x;
}

/* left content box */
#left {
    height: 287px;
    width: 160px;
    float: left;
    /*padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;*/
    margin: 0 10px 0 10px;
    background: #FFF url('../../images/layout/leftbox_gradient.gif') repeat-x ;
}

/* main content box */
#main {
    width: 610px;
    float: left;
}

.clear {
clear: both;
}

#footer {
    margin-top: 10px;
    height: 24px;
    padding: 5px 5px 0 5px;
    background: #FFF url('../../images/layout/footer_gradient.gif') repeat-x;
}