/* Style the button that is used to open and close the collapsible content with coloured background */
.collapsible {
    background-color: #F1F0F6;
    color: #28237C;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

    .collapsible:after {
        content: '\2795'; /* Unicode character for "plus" sign (+) */
        background-color: #F1F0F6;
        float: right;
        margin-left: 1px;
    }

.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
}

/* Collapsible with white background */
.collapsible2 {
    color: #28237C;
    background-color: #FFFFFF;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
}

    .collapsible2:after {
        content: '\02795'; /* Unicode character for "plus" sign (+) */
        background-color: #FFFFFF;
        float: right;
        margin-left: 1px;
    }

.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible2:hover {
}

/* Style the collapsible content. Note: hidden by default */
.content {
    padding: 0 10px;
    background-color: #FFFFFF;
    font-size: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    margin-left: 1px;
}

Table {
    background-color: #EEEEEE;
    font-weight: normal;
    color: 31237C;
    border-collapse: collapse;
    width: 100%;
    border: none;
}

#tdcol {
    background-color: #F1F0F6;
    color: #28237C;
    font-weight: normal;
    text-align: left;
    border: none;
}

#tdcol2 {
    border: none;
    font-weight: normal;
    color: #28237C;
    background-color: #FFFFFF;
    text-align: left;
}

#student {
    background-color: #FCD6DF;
    padding: 10px 10px;
    font-size: 15px;
}

#tdstudent {
    background-color: #FCD6DF;
    padding: 10px 10px;
    font-size: 15px;
    border-top: 5px solid #FE9BB1;
}

#affiliate {
    background-color: #DBF5EB;
    padding: 10px 10px;
    font-size: 15px;
}

#tdaffiliate {
    background-color: #DBF5EB;
    padding: 10px 10px;
    font-size: 15px;
    border-top: 5px solid #00CB97;
}

#associate {
    background-color: #C9F3F7;
    padding: 10px 10px;
    font-size: 15px;
}

#tdassociate {
    background-color: #C9F3F7;
    padding: 10px 10px;
    font-size: 15px;
    border-top: 5px solid #00C1D6;
}

#professional {
    background-color: #FFD0D9;
    padding: 10px 10px;
    font-size: 15px;
}

#tdprofessional {
    background-color: #FFD0D9;
    padding: 10px 10px;
    font-size: 15px;
    border-top: 5px solid #E5053A;
}

#full {
    background-color: #D6D5E6;
    padding: 10px 10px;
    font-size: 15px;
}

#tdfull {
    background-color: #D6D5E6;
    padding: 10px 10px;
    font-size: 15px;
    border-top: 5px solid #28237C;
}

#fellow {
    background-color: #FFE1D2;
    padding: 10px 10px;
    font-size: 15px;
}

#tdfellow {
    background-color: #FFE1D2;
    padding: 10px 10px;
    font-size: 15px;
    border-top: 5px solid #FF6405;
}

Table td, Table th {
    background-color: #ffffff;
    font-weight: normal;
    padding: 1px 1px;
    text-align: center;
    font-size: 15px;
    color: #28237C;
    border: none;
}

Table th {
    font-size: 25px;
    font-weight: normal;
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    position: relative;
    border-bottom: 2px solid #28237C;
    border-top: 5px solid #FFFFFF;
}

.center {
    margin-left: auto;
    margin-right: auto;
}
