/* Override the global font family, weight and colour. */
body {
    font-family: 'Calibri Light',Calibri,sans-serif;
    font-weight: lighter;
    color: #444;
}

/* Override the default colour in anchor tags in the tree navigation to match the global colour. */
.jstree .jstree-anchor {
    color: #444;
}

/* Add a border bottom and shadow to the bottom of the article so it is separated from the footer. */
article {
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    border-bottom: 1px solid #e6e6e6;
}

/* Override the heading 1 font family and weight. */
header h1 {
    font-family: Segoe UI,Calibri,sans-serif;
    font-weight: normal;
}

/* Remove the border bottom from the breadcrumb navigation. */
#main > article .navigation {
    border-bottom: none;
}

/* Override the heading 2 font family, weight, size, colour and margin. */
h2 {
    font-family: Segoe UI,Calibri,sans-serif;
    font-weight: lighter;
    font-size: 36px;
    color: #2B579A;
    margin: 30px 0 25px;
}

/* Override the anchor hover colour so it matches the normal state colour */
a:hover {
    color: #337ab7;
    text-decoration: underline;
}

/* Add some padding to the footer (this matches the padding in the main content article). */
footer {
    padding: 14px;
}

    /* In the footer, override the margin bottom applied to paragraph text. */
    footer p {
        margin-bottom: 5px;
    }

    /* Add some margin top to the image in the footer (the CS logo). */
    footer img {
        margin-top: 2rem;
    }

    /* A no-underline class is applied to the anchor tag around the image to remove any underlined blank space that can otherwise occur next to the image. */
    footer a.no-underline:hover,
    footer a.no-underline:visited,
    footer a.no-underline:active,
    footer a.no-underline:focus {
        text-decoration: none;
    }
