* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #efece6;
    color: #222222;
    line-height: 1.75;
}

/* HEADER */

#header {
    background-color: #ffffff;
    padding: 45px 50px;
    border-bottom: solid 1px #d2cabf;
}

#header h1 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #111111;
    margin-bottom: 8px;
}

#header h2 {
    font-size: 18px;
    font-weight: 400;
    color: #8a6f45;
}

/* THREE COLUMN LAYOUT */

#all-content {
    width: 100%;
}

#left-column {
    width: 20%;
    float: left;
    min-height: 760px;
    padding: 36px 26px;
    background-color: #ded6ca;
    border-right: solid 1px #c8bdae;
}

#main-content {
    width: 60%;
    float: left;
    min-height: 760px;
    padding: 44px 56px;
    background-color: #ffffff;
}

#right-column {
    width: 20%;
    float: left;
    min-height: 760px;
    padding: 36px 26px;
    background-color: #e8e2d8;
    border-left: solid 1px #c8bdae;
}

/* HEADINGS */

h3 {
    font-size: 24px;
    font-weight: 700;
    color: #171717;
    margin-bottom: 24px;
}

#left-column h3,
#right-column h3 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6d5737;
    border-bottom: solid 2px #9a7b4f;
    padding-bottom: 8px;
    margin-bottom: 18px;
}

h4 {
    font-size: 18px;
    font-weight: 700;
    color: #6d5737;
    margin: 28px 0 8px 0;
}

/* TEXT */

p {
    font-size: 16px;
    margin-bottom: 20px;
}

.intro {
    font-size: 19px;
    color: #4a3c29;
    font-weight: 500;
}

.highlight {
    font-size: 18px;
    font-weight: 700;
    color: #6d5737;
    border-left: solid 5px #b08a4a;
    padding: 14px 0 14px 18px;
    background-color: #f7f3ed;
}

/* LISTS */

ul {
    list-style-type: none;
}

/* NAVIGATION */

#navigation li {
    margin-bottom: 14px;
}

#navigation a {
    display: block;
    color: #4f463b;
    background-color: #f5f1eb;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 13px 14px;
    border-left: solid 4px transparent;
    border-bottom: solid 1px #cfc5b8;
    transition: all 0.2s ease;
}

#navigation a:hover {
    color: #ffffff;
    background-color: #8a6f45;
    font-size: 18px;
    font-weight: 700;
    border-left: solid 4px #ffffff;
    padding-left: 20px;
    text-decoration: none;
}

#navigation a.current {
    color: #ffffff;
    background-color: #2b2b2b;
    font-size: 18px;
    font-weight: 700;
    border-left: solid 4px #b08a4a;
}

/* LINKS */

a {
    color: #8a6f45;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    color: #000000;
    text-decoration: underline;
}

/* BLOCKQUOTE */

blockquote {
    margin: 26px 0;
    padding: 24px 28px;
    background-color: #f5f1eb;
    border-left: solid 6px #8a6f45;
    color: #3d3328;
    font-size: 19px;
    font-style: italic;
}

/* RATE BOX */

.rate-box {
    border-left: solid 5px #b08a4a;
    background-color: #f7f3ed;
    padding: 20px 24px;
    margin-bottom: 22px;
}

.rate-box h4 {
    margin-top: 0;
    color: #2b2b2b;
}

/* FOOTER */

#footer {
    clear: both;
    background-color: #ffffff;
    color: #777777;
    font-size: 14px;
    text-align: center;
    padding: 28px;
    border-top: solid 1px #d2cabf;
}