﻿/* ##### basic layout for master ##### */
body {
    background: #C9D2CD;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #333333;
    line-height: 20px;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    font-size: small;
    font-family: Arial, Helvetica, sans-serif;
}

#container {
    width: 1040px;
    background: #FFFFFF;
    margin: 0 auto;
    text-align: left;
}

#header {
    background: #DDDDDD;
}

    #header img {
        width: 1040px;
        height: 160px
    }

#sitepath {
    border-bottom: 1px solid black;
    margin-bottom: 10px;
}

#sidebar1 {
    float: left;
    width: 130px;
    height: 710px;
    background: #EBEBEB;
    padding: 0 0 0 0;
}

    #sidebar1 .logo {
        top: 840px;
        width: 130px;
        height: 65px;
        margin-bottom: 20px;
        background: #EBEBEB;
    }

#sidebar2 {
    float: right;
    width: 205px;
    background: #FFFFFF;
    padding: 20px 10px;
}

#mainContent {
    margin: 0 235px 10px 140px;
    padding: 20px;
}

#footer {
    padding: 0 10px 0 20px;
    background: #DDDDDD;
}

/* ##### end Master Layout #####*/

#header h1 {
    margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
    /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#mainContent p {
    text-align: justify;
    width: 584px;
}

#footer p {
    margin: 0;
    padding: 10px 0;
    font-family: 'Comic Sans MS';
    font-size: small;
    font-variant: normal;
    font-style: italic;
}

#sidebar2 img {
    width: 200px;
    margin-bottom: 20px;
}



ul {
    list-style-position: outside;
    margin: 0;
    padding: 0;
    margin-left: 35px;
}
