﻿* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    max-width: 1020px;
    margin: auto;
}

.header {
    padding: 10px;
    text-align: center;
    background: white;
    background-image: url("/images/siteheader.jpg");
    color: black;
    width: 1020px;
    height: 109px;
}

.navbar {
    display: flex;
    background-color: #006699;
}

    /* Navigation bar links */
    .navbar a {
        color: white;
        padding: 4px 20px;
        text-decoration: none;
        text-align: center;
    }

        /* Change color on hover */
        .navbar a:hover {
            background-color: #ddd;
            color: black;
        }

.content-container {
    display: flex;
    min-height: 510px;
    background-color: white;
}

.sidebar {
    float: left;
    width: 25%;
    /*flex: 25%;*/
    background-color: #93BACE; /*#E8E8E8; ;*/
    /*background-image: url("sidebarbackground.jpg");*/
    padding: 6px;
    border: 1px solid black;
    border-radius: 5px;
}

.sidebar-fieldset {
    background-color: white;
    color: black;
    font-size: 12px;
    border: 1px solid #1D4C82;
    border-radius: 5px;
    margin-bottom: 5px;
    text-align: center;
}

.sidebar-fieldsetlegend {
    background-color: white;
    color: black;
    padding: 2px 10px;
    border: 1px solid #1D4C82;
    border-radius: 5px;
    font-size: 12px;
    width: 99%;
}

.sidebar-div {
    /*background-color: white;*/
    color: black;
    font-size: 12px;
    border: 1px solid #1D4C82;
    border-radius: 5px;
    margin-bottom: 5px;
    padding: 3px;
    text-align: center;
}

.page-container {
    float: left;
    width: 75%;
    /*background-image: url("images/mainbackground4.jpg"); */
    background-repeat: no-repeat;
    background-color: white;
    border: 1px solid #1D4C82;
}
.page-titlebar {
    color: white;
    background-color: #006699;
    margin-top: 6px;
    font-size: 15px;
    padding: 6px;
    text-align: center;
}
.footer {
    display: flex;
    height: 80px;
    /*padding: 10px;*/
    /*text-align: center;*/
    color: black;
    background: #93BACE;
}
.chapter-fieldset {
    margin: auto;
    background-color: #F3F9FA;
    color: black;
    font-size: 12px;
    border: 1px solid #1D4C82;
    border-radius: 5px;
    margin-bottom: 15px;
    margin-top: 15px;
    text-align: center;
    width: 80%;
}

.chapter-fieldset-legend {
    background-color: #006699;
    color: white;
    padding: 2px 10px;
    /*border: 1px solid #1D4C82;*/
    /*border-radius: 5px;*/
    font-size: 14px;
    width: 99%;
}
.modal {
    display: none;
    position: fixed;
    z-index: 1; /* Sit on top */
    /*padding-top: 250px; Location of the box */
    padding-bottom: 100%;
    top: 0;
    width: 100%;
    overflow: auto; /* Enable scroll if needed */
}

.modal-content {
    color: black;
    background-color: #E3EFF6;
    margin: auto;
    padding: 10px;
    border: 1px solid black;
    border-radius: 5px;
}
.fa {
    font-size: 20px;
    width: 30px;
    height: 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
}

    .fa:hover {
        opacity: 0.7;
    }

.fa-facebook {
    background: #93BACE;
    color: white;
}
.fa-youtube {
    background: #93BACE;
    color: white;
}

.fa-instagram {
    background: #93BACE;
    color: white;
}

.chaptercollapsible {
    /*background-color: #006699;*/
    background-image: url("images/cllpsbutton.png");
    color: white;
    cursor: pointer;
    padding: 18px;
    margin-bottom: 4px;
    width: 100%;
    border-radius: 5px;
    text-align: left;
    outline: none;
    font-size: 15px;
}

    .active, .chaptercollapsible:hover {
        background-color: #006699;
        color: white;
        font-size: 17px;
        text-shadow: 2px 2px 4px #000000;
    }

    .chaptercollapsible:after {
        content: '\002B';
        color: white;
        float: right;
        margin-left: 5px;
        font-size: 17px;
        text-shadow: 2px 2px 4px #000000;
    }

.active:after {
    content: "\2212";
}

.chaptercontent {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: white;
}

.registrationlink{
    font-size: 16px;
}
