/* Reset body padding and margins */
body {
    margin: 0;
    padding: 0;
    overflow-y: scroll;
    font-family: sans-serif;
    color: #00233a;
    font-size: 13px;
}

.bold {
    font-weight: bold;
}

/* Make Header Sticky */
#header_container {
    position: fixed;
    background: #00233a;
    height: 130px;
    width: 1200px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

#header_container #logo {
    position: absolute;
    top: 10px;
    left: 150px;
    display: inline;
}



/* CSS for the content of page. I am giving top and bottom padding of 80px to make sure the header and footer do not overlap the content.*/
#container {
    left: 0;
    right: 0;
    position: absolute;
    top: 130px;
    bottom: 60px;
    margin: 0 auto;
    overflow-y: auto;
    overflow-x: hidden;
    width: 1200px;
}

.grey-border {
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}

#content {
    padding: 0 150px;
    position: absolute;
    top: 10px;
    bottom: 10px;
    /*overflow: auto; */
}

/* Make Footer Sticky */
#footer_container {
    position: fixed;
    background: #e6e6e6;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 60px;
    width: 1200px;
}

#footer {
    line-height: 60px;
    margin: 0 auto;
    text-align: center;
}
