:root {
    --gutter-width: 1rem;
    --outer-margin: 2rem;
    --gutter-compensation: calc((var(--gutter-width) * 0.5) * -1);
    --half-gutter-width: calc((var(--gutter-width) * 0.5));
    --xs-min: 30;
    --sm-min: 48;
    --md-min: 64;
    --lg-min: 75;
    --screen-xs-min: var(--xs-min)em;
    --screen-sm-min: var(--sm-min)em;
    --screen-md-min: var(--md-min)em;
    --screen-lg-min: var(--lg-min)em;
    --container-sm: calc(var(--sm-min) + var(--gutter-width));
    --container-md: calc(var(--md-min) + var(--gutter-width));
    --container-lg: calc(var(--lg-min) + var(--gutter-width));
}

.container-fluid, .container {
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    padding-right: 2rem;
    padding-right: var(--outer-margin, 2rem);
    padding-left: 2rem;
    padding-left: var(--outer-margin, 2rem);
}

.row {
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    margin-right: calc((1rem * 0.5) * -1);
    margin-right: var(--gutter-compensation, -0.5rem);
    margin-left: calc((1rem * 0.5) * -1);
    margin-left: var(--gutter-compensation, -0.5rem);
}

.row.reverse {
    flex-direction: row-reverse;
}

.col.reverse {
    flex-direction: column-reverse;
}

/* use .row.col-count-* to preserve vertical sorting */
.row[class*='col-count-'] {
    display: inherit;
    flex-direction: column;
}

.row[class*='col-count-'] > [class*='col-'] {
    max-width: 100%;
}

.col-count-xs-2 {
    -moz-column-count: 2;
         column-count: 2;
}

.col-count-xs-3 {
    -moz-column-count: 3;
         column-count: 3;
}

.col-count-xs-4 {
    -moz-column-count: 4;
         column-count: 4;
}

.col-count-xs-5 {
    -moz-column-count: 5;
         column-count: 5;
}

.col-count-xs-6 {
    -moz-column-count: 6;
         column-count: 6;
}

.col-count-xs-7 {
    -moz-column-count: 7;
         column-count: 7;
}

.col-count-xs-8 {
    -moz-column-count: 8;
         column-count: 8;
}

.col-count-xs-9 {
    -moz-column-count: 9;
         column-count: 9;
}

.col-count-xs-10 {
    -moz-column-count: 10;
         column-count: 10;
}

.col-count-xs-11 {
    -moz-column-count: 11;
         column-count: 11;
}

.col-count-xs-12 {
    -moz-column-count: 12;
         column-count: 12;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: calc((1rem * 0.5));
    padding-right: var(--half-gutter-width, 0.5rem);
    padding-left: calc((1rem * 0.5));
    padding-left: var(--half-gutter-width, 0.5rem);
}

.col-xs {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
}

.col-xs-1 {
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
}

.col-xs-2 {
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
}

.col-xs-3 {
    flex-basis: 25%;
    max-width: 25%;
}

.col-xs-4 {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
}

.col-xs-5 {
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
}

.col-xs-6 {
    flex-basis: 50%;
    max-width: 50%;
}

.col-xs-7 {
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
}

.col-xs-8 {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
}

.col-xs-9 {
    flex-basis: 75%;
    max-width: 75%;
}

.col-xs-10 {
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
}

.col-xs-11 {
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
}

.col-xs-12 {
    flex-basis: 100%;
    max-width: 100%;
}

.col-xs-offset-0 {
    margin-left: 0;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.start-xs {
    justify-content: flex-start;
    text-align: left;
}

.center-xs {
    justify-content: center;
    text-align: center;
}

.end-xs {
    justify-content: flex-end;
    text-align: right;
}

.top-xs {
    align-items: flex-start;
}

.middle-xs {
    align-items: center;
}

.bottom-xs {
    align-items: flex-end;
}

.around-xs {
    justify-content: space-around;
}

.between-xs {
    justify-content: space-between;
}

.first-xs {
    order: -1;
}

.last-xs {
    order: 1;
}

@media only screen and (min-width: 48em) {
    .container {
        width: calc(48 + 1rem);
        width: var(--container-sm, 46rem);
    }

    .col-sm,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-offset-0,
    .col-sm-offset-1,
    .col-sm-offset-2,
    .col-sm-offset-3,
    .col-sm-offset-4,
    .col-sm-offset-5,
    .col-sm-offset-6,
    .col-sm-offset-7,
    .col-sm-offset-8,
    .col-sm-offset-9,
    .col-sm-offset-10,
    .col-sm-offset-11,
    .col-sm-offset-12 {
        box-sizing: border-box;
        flex: 0 0 auto;
        padding-right: calc((1rem * 0.5));
        padding-right: var(--half-gutter-width, 0.5rem);
        padding-left: calc((1rem * 0.5));
        padding-left: var(--half-gutter-width, 0.5rem);
    }

    .col-sm {
        flex-grow: 1;
        flex-basis: 0;
        max-width: 100%;
    }

    .col-sm-1 {
        flex-basis: 8.33333333%;
        max-width: 8.33333333%;
    }

    .col-sm-2 {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-sm-3 {
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-sm-5 {
        flex-basis: 41.66666667%;
        max-width: 41.66666667%;
    }

    .col-sm-6 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        flex-basis: 58.33333333%;
        max-width: 58.33333333%;
    }

    .col-sm-8 {
        flex-basis: 66.66666667%;
        max-width: 66.66666667%;
    }

    .col-sm-9 {
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        flex-basis: 83.33333333%;
        max-width: 83.33333333%;
    }

    .col-sm-11 {
        flex-basis: 91.66666667%;
        max-width: 91.66666667%;
    }

    .col-sm-12 {
        flex-basis: 100%;
        max-width: 100%;
    }

    .col-sm-offset-0 {
        margin-left: 0;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .start-sm {
        justify-content: flex-start;
        text-align: left;
    }

    .center-sm {
        justify-content: center;
        text-align: center;
    }

    .end-sm {
        justify-content: flex-end;
        text-align: right;
    }

    .top-sm {
        align-items: flex-start;
    }

    .middle-sm {
        align-items: center;
    }

    .bottom-sm {
        align-items: flex-end;
    }

    .around-sm {
        justify-content: space-around;
    }

    .between-sm {
        justify-content: space-between;
    }

    .first-sm {
        order: -1;
    }

    .last-sm {
        order: 1;
    }

    .col-count-sm-2 {
        -moz-column-count: 2;
             column-count: 2;
    }

    .col-count-sm-3 {
        -moz-column-count: 3;
             column-count: 3;
    }

    .col-count-sm-4 {
        -moz-column-count: 4;
             column-count: 4;
    }

    .col-count-sm-5 {
        -moz-column-count: 5;
             column-count: 5;
    }

    .col-count-sm-6 {
        -moz-column-count: 6;
             column-count: 6;
    }

    .col-count-sm-7 {
        -moz-column-count: 7;
             column-count: 7;
    }

    .col-count-sm-8 {
        -moz-column-count: 8;
             column-count: 8;
    }

    .col-count-sm-9 {
        -moz-column-count: 9;
             column-count: 9;
    }

    .col-count-sm-10 {
        -moz-column-count: 10;
             column-count: 10;
    }

    .col-count-sm-11 {
        -moz-column-count: 11;
             column-count: 11;
    }

    .col-count-sm-12 {
        -moz-column-count: 12;
             column-count: 12;
    }
}

@media only screen and (min-width: 64em) {
    .container {
        width: calc(64 + 1rem);
        width: var(--container-md, 61rem);
    }

    .col-md,
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-offset-0,
    .col-md-offset-1,
    .col-md-offset-2,
    .col-md-offset-3,
    .col-md-offset-4,
    .col-md-offset-5,
    .col-md-offset-6,
    .col-md-offset-7,
    .col-md-offset-8,
    .col-md-offset-9,
    .col-md-offset-10,
    .col-md-offset-11,
    .col-md-offset-12 {
        box-sizing: border-box;
        flex: 0 0 auto;
        padding-right: calc((1rem * 0.5));
        padding-right: var(--half-gutter-width, 0.5rem);
        padding-left: calc((1rem * 0.5));
        padding-left: var(--half-gutter-width, 0.5rem);
    }

    .col-md {
        flex-grow: 1;
        flex-basis: 0;
        max-width: 100%;
    }

    .col-md-1 {
        flex-basis: 8.33333333%;
        max-width: 8.33333333%;
    }

    .col-md-2 {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-md-3 {
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-md-5 {
        flex-basis: 41.66666667%;
        max-width: 41.66666667%;
    }

    .col-md-6 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex-basis: 58.33333333%;
        max-width: 58.33333333%;
    }

    .col-md-8 {
        flex-basis: 66.66666667%;
        max-width: 66.66666667%;
    }

    .col-md-9 {
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex-basis: 83.33333333%;
        max-width: 83.33333333%;
    }

    .col-md-11 {
        flex-basis: 91.66666667%;
        max-width: 91.66666667%;
    }

    .col-md-12 {
        flex-basis: 100%;
        max-width: 100%;
    }

    .col-md-offset-0 {
        margin-left: 0;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .start-md {
        justify-content: flex-start;
        text-align: left;
    }

    .center-md {
        justify-content: center;
        text-align: center;
    }

    .end-md {
        justify-content: flex-end;
        text-align: right;
    }

    .top-md {
        align-items: flex-start;
    }

    .middle-md {
        align-items: center;
    }

    .bottom-md {
        align-items: flex-end;
    }

    .around-md {
        justify-content: space-around;
    }

    .between-md {
        justify-content: space-between;
    }

    .first-md {
        order: -1;
    }

    .last-md {
        order: 1;
    }

    .col-count-md-2 {
        -moz-column-count: 2;
             column-count: 2;
    }

    .col-count-md-3 {
        -moz-column-count: 3;
             column-count: 3;
    }

    .col-count-md-4 {
        -moz-column-count: 4;
             column-count: 4;
    }

    .col-count-md-5 {
        -moz-column-count: 5;
             column-count: 5;
    }

    .col-count-md-6 {
        -moz-column-count: 6;
             column-count: 6;
    }

    .col-count-md-7 {
        -moz-column-count: 7;
             column-count: 7;
    }

    .col-count-md-8 {
        -moz-column-count: 8;
             column-count: 8;
    }

    .col-count-md-9 {
        -moz-column-count: 9;
             column-count: 9;
    }

    .col-count-md-10 {
        -moz-column-count: 10;
             column-count: 10;
    }

    .col-count-md-11 {
        -moz-column-count: 11;
             column-count: 11;
    }

    .col-count-md-12 {
        -moz-column-count: 12;
             column-count: 12;
    }
}

@media only screen and (min-width: 75em) {
    .container {
        width: calc(75 + 1rem);
        width: var(--container-lg, 71rem);
    }

    .col-lg,
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-offset-0,
    .col-lg-offset-1,
    .col-lg-offset-2,
    .col-lg-offset-3,
    .col-lg-offset-4,
    .col-lg-offset-5,
    .col-lg-offset-6,
    .col-lg-offset-7,
    .col-lg-offset-8,
    .col-lg-offset-9,
    .col-lg-offset-10,
    .col-lg-offset-11,
    .col-lg-offset-12 {
        box-sizing: border-box;
        flex: 0 0 auto;
        padding-right: calc((1rem * 0.5));
        padding-right: var(--half-gutter-width, 0.5rem);
        padding-left: calc((1rem * 0.5));
        padding-left: var(--half-gutter-width, 0.5rem);
    }

    .col-lg {
        flex-grow: 1;
        flex-basis: 0;
        max-width: 100%;
    }

    .col-lg-1 {
        flex-basis: 8.33333333%;
        max-width: 8.33333333%;
    }

    .col-lg-2 {
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-lg-3 {
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-lg-5 {
        flex-basis: 41.66666667%;
        max-width: 41.66666667%;
    }

    .col-lg-6 {
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex-basis: 58.33333333%;
        max-width: 58.33333333%;
    }

    .col-lg-8 {
        flex-basis: 66.66666667%;
        max-width: 66.66666667%;
    }

    .col-lg-9 {
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        flex-basis: 83.33333333%;
        max-width: 83.33333333%;
    }

    .col-lg-11 {
        flex-basis: 91.66666667%;
        max-width: 91.66666667%;
    }

    .col-lg-12 {
        flex-basis: 100%;
        max-width: 100%;
    }

    .col-lg-offset-0 {
        margin-left: 0;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .start-lg {
        justify-content: flex-start;
        text-align: left;
    }

    .center-lg {
        justify-content: center;
        text-align: center;
    }

    .end-lg {
        justify-content: flex-end;
        text-align: right;
    }

    .top-lg {
        align-items: flex-start;
    }

    .middle-lg {
        align-items: center;
    }

    .bottom-lg {
        align-items: flex-end;
    }

    .around-lg {
        justify-content: space-around;
    }

    .between-lg {
        justify-content: space-between;
    }

    .first-lg {
        order: -1;
    }

    .last-lg {
        order: 1;
    }

    .col-count-lg-2 {
        -moz-column-count: 2;
             column-count: 2;
    }

    .col-count-lg-3 {
        -moz-column-count: 3;
             column-count: 3;
    }

    .col-count-lg-4 {
        -moz-column-count: 4;
             column-count: 4;
    }

    .col-count-lg-5 {
        -moz-column-count: 5;
             column-count: 5;
    }

    .col-count-lg-6 {
        -moz-column-count: 6;
             column-count: 6;
    }

    .col-count-lg-7 {
        -moz-column-count: 7;
             column-count: 7;
    }

    .col-count-lg-8 {
        -moz-column-count: 8;
             column-count: 8;
    }

    .col-count-lg-9 {
        -moz-column-count: 9;
             column-count: 9;
    }

    .col-count-lg-10 {
        -moz-column-count: 10;
             column-count: 10;
    }

    .col-count-lg-11 {
        -moz-column-count: 11;
             column-count: 11;
    }

    .col-count-lg-12 {
        -moz-column-count: 12;
             column-count: 12;
    }
}
/* reusable css vars using postcss-preset-env */
:root {
    /* MENU COLORS (in menu usage order) */
    --blue: #329EAB;  /* home & admin */
    --green: #6EBA81; /* topics */
    --teal: #61a893; /* search & objects */
    --light-blue: #66becc; /* directory */
    --purple: #727cb3; /* projects */
    --orange: #e68746; /* resources */
    --light-green: #87d499; /* about */
    --light-teal: #7ab99d; /* news */
    --light-purple: #8f98d3; /* contact */
    --yellow: #FFD076; /* help */

    /* -- old colors --
    --blue: #479EAC;
    --faded-blue: #A2CCCA;
    --green: #7BCB92;
    --faded-green: #8AB286;
    --orange: #F29D33;
    --light-blue: #80CAC7;
    --light-green: #64C776;
    --yellow: #F5D98D;
    --teal: #317e7e;
       ---- */

    /*-- OTHER COLORS -- */
    --color-offwhite: #fafafa;
    --color-gainsboro: #dcdcdc;
    --color-lightgray: #cbcbcb;
    --color-midgray: #7a7a7a;
    --color-darkgray: #545454;

    --color-text: #060606;
    --color-links: #045F71;

    --color-dark-bg: black;
    --color-dark-border: black;
    --color-dark-text: white;

    --color-light-hover: #dce6f6;
    --color-light-bg: #eff2f9;
    --color-light-border: var(--color-darkgray);
    --color-light-text: black;

    --color-btn-hover: #adc8e9;
    --color-btn-active: white;
    --color-btn-dark-hover: var(--color-light-bg);

    --color-filter-bg: #F0F5FB;
    --color-filter-text: #0E7E9E;
    --color-filter-hover-bg: #DBDBDB;

    --color-success: #DFF0D8;
    --color-success-dark: #3C763D;
    --color-error: #F2DEDE;
    --color-error-dark: #A94442;

    /* -- OTHER -- */
    --animation-btn-hover: all 0.3s ease-out;
    --tab-border: 3px solid black;
    --tab-border-thin: 2px solid black;
}

/* Document
 * ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */

html {
    line-height: 1.15; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
 * ========================================================================== */

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */

dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
    margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */

ol ol,
ol ul,
ul ol,
ul ul {
    margin: 0;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */

hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */

main {
    display: block;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
    background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */

abbr[title] {
    text-decoration: underline;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
            text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
    font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
    display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Remove the border on images within links in IE 10-.
 */

img {
    border-style: none;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
    overflow: hidden;
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

button,
input,
select {
    margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */

button {
    overflow: visible; /* 1 */
    text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
 * Show the overflow in Edge 18- and IE.
 */

input {
    overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */

legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

progress {
    display: inline-block; /* 1 */
    vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */

select {
    text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 */

textarea {
    margin: 0; /* 1 */
    overflow: auto; /* 2 */
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */

::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */

:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */

:-moz-ui-invalid {
    box-shadow: none;
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct display in Edge 18- and IE.
 */

details {
    display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */

dialog {
    background-color: white;
    border: solid;
    color: black;
    display: block;
    height: -moz-fit-content;
    height: fit-content;
    left: 0;
    margin: auto;
    padding: 1em;
    position: absolute;
    right: 0;
    width: -moz-fit-content;
    width: fit-content;
}

dialog:not([open]) {
    display: none;
}

/*
 * Add the correct display in all browsers.
 */

summary {
    display: list-item;
}

/* Scripting
 * ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
    display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
    display: none;
}

/* User interaction
 * ========================================================================== */

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
    display: none;
}
/**
 * This file captures styles coming from WordPress,
 * so that rendering content will appear similar
 * to what is shown in the WordPress visual editor.
 */
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin: 0 1em 0.5em 0;
}

.alignright {
  float: right;
  margin: 0 0 0.5em 1em;
}

.wp-caption-text {
  font-size: 0.8em;
  font-weight: 600;
}

@media only screen and (max-width: 540px) {
  .aligncenter, .alignleft, .alignright {
    height: auto;
    margin-bottom: 1em;
    width: 100%;
  }
}


.show-hide-footer {
    font-size: 0.9em;
    margin-top: 0.5em;
    display: inline-block;
    width: 100%;
}

.show-hide-content, .text-truncate  {
    transition: all 1s ease-out;
    max-height: 2000px;
    overflow: hidden;
}
.show-hide-content.hidden {
    max-height: 0;
    display: block;
}

.text-truncate.truncated {
    max-height: 5.1em;
    position: relative;
}
.text-truncate.truncated:after {
    content: "...";
    position: absolute;
    right: 1em;
    top: 4.1em;
}
.header .logo {
  margin-right: 5px;
}

.header h1, .header h2 {
  font-size: 2.2rem;
  margin: 0;
  padding: 0;
}

.header-content-container {
  margin: 0.5em 0;
}

/* Home */

.header.home .header-content-container {
  align-items: center;
  display: flex;
  justify-content: center;
}

.header.home .logo-text {
  display: flex;
  flex-direction: column;
}

.header.home h2 {
  font-size: 1.2rem;
  font-weight: normal;
}

.header.home img {
  margin-right: 10px;
  width: 4.75em;
  max-height: 5em;
}

/* Subpage */

.header.sub-page .header-content-container {
  display: flex;
  justify-content: space-between;
}

.header.sub-page h1 {
  align-items: center;
  display: flex;
}

.header.sub-page .brand {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.header.sub-page .brand h2 {
  white-space: nowrap;
}

.header.sub-page .logo {
  font-size: 1.2rem;
  max-width: 65px;
}

.header .brand h2 {
  font-size: 1.6rem;
}

@media screen and (max-width: 1200px) {
  .header.home h1 {
    font-size: 1.6rem;
  }

  .header.home h2 {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  .header.home img {
    width: 55px;
  }

  .header.sub-page h1 {
    font-size: 2.2rem;
  }

  .header.sub-page .brand h2 {
    font-size: 1.2rem;
  }

  .header .brand img {
    height: 50px;
  }
}

@media screen and (max-width: 780px) {
  .header.home img {
    width: 50px;
  }

  .header.home h1 {
    font-size: 1rem;
    height: 20px;
  }

  .header.home h2 {
    font-size: 1rem;
  }

  .header.sub-page h1 {
    font-size: 1.8rem;
  }

  .header.sub-page .brand h2 {
    font-size: .9rem;
  }
}

@media screen and (max-width: 600px) {
  .header.home img {
    width: 50px;
  }

  .header.home h1 {
    font-size: .9rem;
    height: 20px;
  }

  .header.home h2 {
    font-size: .8rem;
  }

  .header.sub-page h1 {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 500px) {
  .header.home img {
    width: 30px;
  }

  .header.home h1 {
    font-size: .9rem;
  }

  .header.home h2 {
    font-size: .8rem;
    display: none;
  }

  .header.sub-page h1 {
    font-size: 1.2rem;
  }
}

.admin-bar {
  box-sizing: border-box;
  background-color: #F5D98D;
  font-size: 0.8em;
  padding: 0.5em 0;
}

.admin-bar .nav-container {
  padding: 3px 20px;
  justify-content: flex-end;
}

.admin-bar .nav-container .wp-opts {
  margin-right: 20px;
}

.wp-opts .pipe {
  margin: 0 0.5em;
}

.admin-bar a {
  color: black;
}
.admin-bar a:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.logout-btn{
  margin-left: 20px;
  margin-right: 0;
}

.popper,
.tooltip {
  position: absolute;
  background: #ffc107;
  color: black;
  min-width: 150px;
  border-radius: 3px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  padding: 10px;
  text-align: center;
}

.popper .popper__arrow,
.tooltip .tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 10px;
}

.tooltip .tooltip-arrow,
.popper .popper__arrow {
  background: transparent;
  border-color: black;
}

.popper[x-placement^="top"],
.tooltip[x-placement^="top"] {
  margin-bottom: 10px;
}

.popper[x-placement^="top"] .popper__arrow,
.tooltip[x-placement^="top"] .tooltip-arrow {
  border-width: 10px 10px 0 10px;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  bottom: -10px;
  left: calc(50% - 10px);
  margin-top: 0;
  margin-bottom: 0;
}

.popper[x-placement^="bottom"],
.tooltip[x-placement^="bottom"] {
  margin-top: 10px;
}

.tooltip[x-placement^="bottom"] .tooltip-arrow,
.popper[x-placement^="bottom"] .popper__arrow {
  border-width: 0 10px 10px 10px;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
  top: -10px;
  left: calc(50% - 10px);
  margin-top: 0;
  margin-bottom: 0;
}

.tooltip[x-placement^="right"],
.popper[x-placement^="right"] {
  margin-left: 10px;
}

.popper[x-placement^="right"] .popper__arrow,
.tooltip[x-placement^="right"] .tooltip-arrow {
  border-width: 10px 10px 10px 0;
  border-left-color: transparent;
  border-top-color: transparent;
  border-bottom-color: transparent;
  left: -10px;
  top: calc(50% - 10px);
  margin-left: 0;
  margin-right: 0;
}

.popper[x-placement^="left"],
.tooltip[x-placement^="left"] {
  margin-right: 10px;
}

.popper[x-placement^="left"] .popper__arrow,
.tooltip[x-placement^="left"] .tooltip-arrow {
  border-width: 10px 0 10px 10px;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  right: -10px;
  top: calc(50% - 10px);
  margin-left: 0;
  margin-right: 0;
}

/* Custom */
.popper,
.tooltip {
  background-color: white;
  border: 2px solid black;
  border-radius: 0.3em;
  padding: 0.75em;
  min-width: 100px;
  max-width: 200px;
}

.tooltip-trigger {
  cursor: pointer;
}

.tooltip-arrow {
  background-color: black;
}

.box.border-black {
  border: 3px solid #000;
}

.box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 70px;
}

.box h3{
  margin:0 0 15px 0;
  padding:0;
}

.box h4{
  margin:0 0 15px 0;
  padding:0;
}

.box h5{
  margin:0 0 10px 0;
  padding:0;
}

.box p {
  margin-top:6px;
  margin-bottom:0;
  font-size: 0.9em;
}

.box span {
  font-size: 0.8em;
}

.box p span.circle {
  font-size: 1.3em;
  line-height: 2.3em;
  height: 2.3em;
  min-width: 2.3em;
  background-color: var(--color-text);
  color: white;
  border-radius: 50%;
  margin-right: 0.5em;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  transition: var(--animation-btn-hover);
}

.box.box-linked:hover p span.circle {
  background-color: var(--color-links);
}

.stretched-link::after {
  bottom: 0;
  content: "";
  cursor: pointer;
  left: 0;
  pointer-events: auto;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.box-linked {
  position: relative; /* Required so that .stretched link can fill the area */
  transition: var(--animation-btn-hover);
  background-color: var(--color-offwhite);
}

.box-linked:hover {
  background-color: white;
  border-color: var(--color-links);
}

.box-linked a:not(.stretched-link),
.box-linked button,
.box-linked .hoverable {
  position: relative;
  z-index: 100; /* Ensure hoverable content goes up top */
}

.box-body {
  padding: 1.25rem;
}

.box-footer {
  padding: 0.75rem 1.25rem;
}

html {
  line-height: 1.25;
}

/* Remove horizontal blank space */
.full-width .expand {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 980px) {
  .clf7 .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Reset CLF links */
.clf7 a, .clf7 a:hover, .clf7 a:link, .clf7 a:visited {
  font-weight: normal;
  font-weight: initial;
  border-bottom: none;
}

/* RAP namespace and containers */
.rap {
    box-sizing: border-box;
    width: 100%;
    background: #fff;
    padding: 0;
}

.rap *, .rap *:before, .rap:after {
    box-sizing: inherit;
}

.rap-content {
    font-family: Arial, Helvetica, sans-serif;
    padding: 1em 0 3em 0;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    margin:0;
    padding:0;
    background:#fff!important;
}

a {
    -webkit-text-decoration: none;
    text-decoration: none;
    color: var(--color-links);
    font-weight: bold;
    cursor: pointer;
    word-wrap: break-word;
    word-break: break-word;
    word-wrap: break-word;
}

a:hover {
    -webkit-text-decoration: underline;
    text-decoration: underline;
}

.rap-content a:visited:not(.btn):not([type=button]) {
    color: #925cad;
}

p {
    color: var(--color-text);
}

button {
    cursor: pointer;
}

input[placeholder] {
    text-overflow: ellipsis;
}

/*--Generic Styles--*/
.margin-bottom-none {
    margin-bottom: 0;
}
.margin-bottom-20 {
    margin-bottom: 20px;
}
.margin-bottom-30 {
    margin-bottom: 30px;
}
.margin-top-none{
    margin-top: 0;
}
.margin-top-10 {
    margin-top: 10px;
}
.margin-top-30{
    margin-top: 30px;
}
.margin-top-05 {
    margin-top: 5px;
}
.margin-top-10 {
    margin-top: 10px;
}
.margin-top-20{
    margin-top: 20px;
}
.margin-bottom-20 {
    margin-bottom: 20px;
}
.margin-right-05 {
    margin-right: 5px;
}
.margin-right-10 {
    margin-right: 10px;
}
.padding-20 {
    padding: 20px;
}

.space-bottom-05 {
    margin-bottom: 0.5em;
}

.space-bottom-1 {
    margin-bottom: 1em;
}

.space-bottom-2 {
    margin-bottom: 2em;
}

.space-top-05 {
    margin-top: 0.5em;
}

.space-top-1 {
    margin-top: 1em;
}

.space-top-2 {
    margin-top: 2em;
}

.space-right-05 {
    margin-right: 0.5em;
}

.text-center {
    text-align: center;
}

.margin-centered {
    margin: 0 auto;
}

.justify-center {
    justify-content: center;
}

.hidden {
  display: none;
}

.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

a.disabled {
  color: gray;
  -webkit-text-decoration: none;
  text-decoration: none;
}

hr {
    height:2px;
    background-color:#000;
}

ol li {
    margin-top:30px;
}

.float-left{
    float:left;
}

.clear-both{
    clear:both;
}

.alert {
    padding: 15px;
}

.center-container {
  padding: 1em 0;
}

.main-container, .center-container, .nav-container {
  margin: auto;
  width: 940px;
  position: relative;
}

/*--Align contents middle to page--*/
@media only screen and (min-width: 1200px) {
  /*--Center align to page--*/
  .main-container, .center-container, .nav-container {
    width:1170px;
  }
}

@media screen and (max-width: 980px) {
  .main-container, .center-container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  .nav-container {
    width: 100%;
  }
}

/*--Top Nav styles--*/

@media only screen and (min-width: 1300px) {
  .topnav {
    overflow: hidden;
    background-color: #000;
    padding: 0;
  }
  }

.topnav a {
  float: left;
  display: block;
  color: #fff;
  text-align: center;
  line-height:2.4rem;
  padding: 0 1.2rem 0 1.2rem;
  border:0;
  margin:0;
  -webkit-text-decoration: none;
  text-decoration: none;
  font-size: .8rem;
}
.topnav a:hover {
 -webkit-text-decoration: none;
 text-decoration: none;
}

.topnav .icon {
  display: none;
}

/*--Break-point--*/


@media screen and (min-width: 900px) {
  .topnav {
    height:2.4rem;
  }
}

.topnav {
  overflow: hidden;
  background-color: #000;
}

@media screen and (max-width: 900px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }

  .topnav a.icon {
    float: right;
    display: block;
  }
}
.admin-nav-item a{
  color:#F5D98D;
  float:right;
}
@media screen and (max-width: 900px) {
    .admin-nav-item a {
        display:none;
    }
}

/*----*/

  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }


/* BACKGROUND COLORS */

.blue {
    background: var(--blue);
}

.green {
    background: var(--green);
}

.light-teal {
  background: var(--light-teal);
}

.light-blue {
  background: var(--light-blue);
}

.purple {
  background: var(--purple);
}

.orange {
    background: var(--orange);
}

.light-green {
    background: var(--light-green);
}

.light-purple {
  background: var(--light-purple);
}

.yellow {
    background: var(--yellow);
}

.teal {
    background: var(--teal);
}


.alert-success {
    background: var(--color-success);
    border: 1px solid var(--color-success-dark);
    color: var(--color-success-dark);
}

.alert-success strong {
    color: var(--color-success-dark);
}

.alert-error {
    background: var(--color-error);
    border: 1px solid var(--color-error-dark);
    color: var(--color-error-dark);
}

.alert-error strong {
  color: var(--color-success-dark);
}

.loading {
  color: #7a7a7a;
  width: 100%;
  text-align: center;
  opacity: 0;
  animation-name: pulse;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Buttons */
.btn {
    background-color: white;
    color: black;
    display: inline-block;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    -webkit-text-decoration: none;
    text-decoration: none;
    vertical-align: middle;
    transition: var(--animation-btn-hover);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: bold;
    font-size: 1em;
    border-radius: 0.3em;
}

.btn.btn-sm {
  font-size: 0.75rem;
}

.btn-dark, .btn.search-btn{
  background-color: var(--color-dark-bg);
  border: 2px solid var(--color-dark-border);
  color: var(--color-dark-text)
}

/* secondary button styles */

.btn.btn-light
{
  background-color: var(--color-light-bg);
  border: 2px solid var(--color-light-border);
  color: var(--color-light-text);
}

a.btn:hover, .btn:hover {
  background-color: var(--color-light-hover);
  border: 2px solid var(--color-dark-border);
}

a.btn.btn-dark:hover, .btn.btn-dark:hover, .btn.search-btn:hover {
  color: black;
  /*background-color: var(--color-btn-dark-hover);*/
}

a.btn:active, .btn:active, .btn.btn-dark:active, .btn.search-btn:active {
  background-color: var(--color-btn-active);
}

a.btn, a.btn:hover, .btn a, .btn a:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
}

button.btn:disabled, button.btn:disabled:hover
a.btn:disabled, a.btn:disabled:hover {
  background-color: var(--color-lightgray);
  color: var(--color-midgray);
  border-color: var(--color-lightgray);
  cursor: not-allowed;
}

/* for inputs */
.main-container label {
    margin-bottom:0px;
    display:block;
    margin:10px 0 4px 0;
}

.main-container input,
.main-container select,
.main-container textarea {
    border: 2px solid #000;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0.3rem 0.5rem 0.1rem 0.5rem;
    width: 100%;
}

/* Handle heights */
.main-container input[type="text"],
.main-container input[type="email"],
.main-container select:not([multiple]) {
    height: calc(1rem * 1.5 + 0.4rem + 6px); /* Match font-size * line-height + padding-top + padding-bottom + 2 * border */
}

.main-container textarea {
    min-height: 100px;
}

.main-container select {
    background-color: white;
    font-family: sans-serif;
    border-radius: 0rem;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23222222%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;
    overflow: hidden;
    padding-right: 1.6em;
}

.main-container select::-ms-expand {
    display: none;
}

.main-container input[type="text"]:-moz-read-only, .main-container textarea:-moz-read-only {
    background-color: #dedede;
}

.main-container input[type="text"]:disabled,
.main-container input[type="text"]:read-only,
.main-container textarea:disabled,
.main-container textarea:read-only,
.main-container select:disabled {
    background-color: #dedede;
}

.main-container .input-error {
  border-color: red;
}

.main-container .input-error-msg {
  color: red;
  font-size: .8em;
}

.breadcrumbs{
    font-size:0.85em;
    margin:10px 0 30px 0;
    padding:0;
}

.breadcrumbs span.trail-begin {
    display: inline-block;
    max-width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    white-space: nowrap;
}

@media only screen and (max-width: 768px) {
  .breadcrumbs span.trail-begin {
      max-width: 80%;
  }
}

.breadcrumbs .divider {
    display: inline-block;
    vertical-align: middle;
}

/*--News sections-*/
.latest-container{
    padding-top:10px;
}

.news-container a, .latest-container a{
    margin-top:5px;
    margin-bottom:0;
}

.news-container b, .latest-container b{
    color:#000;
}

.news-date {
    margin-bottom: 0.75em;
}

.latest-container .fa{
    color:#000;
}

.article-image{
  margin: 0 20px 5px 0;
  width: 38%;
}

@media only screen and (max-width: 540px) {
  .article-image {
    width:100%;
  }
}

.related-materials-box-body {
    min-height: 150px;
}

.related-materials-footer {
    align-items: center;
    display: flex;
    height: 80px;
    justify-content: space-between;
    max-height: 80px;
    overflow-y: hidden;
}

.related-materials-footer .pull-right {
    max-width: 40%;
}

@media only screen and (max-width: 1200px) {
    .related-materials-box-body {
        min-height: 100px;
    }
}

@media only screen and (max-width: 992px) {
    .related-materials-box-body {
        min-height: 75px;
    }
}

.topics-box-body {
    min-height: 150px;
}

.projects-box-body {
    min-height: 260px;
}

.zoom-img img{
    max-width: 100%;
    min-width: 100%;
    min-height: 100%;
}

.zoom-img.learn{
    max-height: 250px;
    overflow:hidden;
}

a.click-more {
    display:inline-block;
    margin-top:10px;
    color:#000;
    -webkit-text-decoration:none;
    text-decoration:none;
    border-bottom:3px solid #000;
}

@media only screen and (min-width: 600px) {
    .twitter-box{
        font-size:1em;
    }
}

.inline-form, input.inline-form, label.inline-form {
    width: auto;
    display: inline-block;
}

/*--object page--*/

.object-box {
    padding: 35px;
}

.border-black{
  border:3px solid #000;
}

.border-med {
    border:2px solid #6f6f6f;
}

.border-sm {
    border:1px solid #6f6f6f;
}

.border-grey{
  border:3px solid #E9E9E9;
}

.fix-height{
  margin:10px 0 10px 0;
  height:400px;
  position:relative;
}

.twitter-box{
    border:1px solid #000;
    border-radius: 3px;
    font-size:.8em;
    padding-top:10px;
    height:280px;
    overflow-x: auto;
}

a.active {
    color:#000;
}
/* screen read only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
/*--Search bar--*/
.search-container {
    text-align: center;
}

input.search {
    border: 2px solid #000;
    height: 2.2rem !important;
    display: inline-block;
    vertical-align: middle;
    width: 75%;
}


button.search, button.search-btn {
    border-radius: 0;
    height: 2.2rem !important;
    font-size: 1rem;
    font-weight: bold;
    display: inline-block;
    padding: 0 4%;
    vertical-align: middle;
}


@media only screen and (max-width: 900px) {
    input.search {
        width: 70%;
    }
    button.search {
        width: 25%;
    }
}

.tab {
    display: flex;
}

.tab-button {
    align-items: center;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    min-height: 2.5em;
    margin-top: 1em;
    padding: 1em;
    transition: var(--animation-btn-hover);
}

.tab-button a {
    -webkit-text-decoration: none!important;
    text-decoration: none!important;
    border-bottom: none;
    color: #000;
}

/* Change background color of buttons on hover */
.tab-button:hover {
    background-color: var(--color-btn-hover);
    cursor: pointer;
}

/* Create an active/current tablink class */
.tab-button.active {
    background-color: var(--color-light-bg);
    border-bottom: none;
    border-left: var(--tab-border);
    border-right: var(--tab-border);
    border-top: var(--tab-border);
}

.tab-button:not(.active) {
    border-bottom: var(--tab-border);
    border-left: none;
    border-right: none;
    border-top: none;
}

@media only screen and (max-width: 768px) {
    .tab {
        justify-content: space-between;
    }

    .tab-button {
        font-size: 0.8em;
        padding: 0.5em;
        min-height: 7em;
    }

    .tab-button.col-xs-6 {
        flex-basis: 48%;
	-ms-flex-preferred-size:44%;
    }

    .tab-button.col-xs-4 {
        flex-basis: 32%;
	-ms-flex-preferred-size:27%;
    }

    .tab-button.active {
      border-bottom: var(--tab-border);
      border-left: var(--tab-border);
      border-right: var(--tab-border);
      border-top: var(--tab-border);
    }

    .tab-button:not(.active) {
        border-bottom: var(--tab-border-thin);
        border-left: var(--tab-border-thin);
        border-right: var(--tab-border-thin);
        border-top: var(--tab-border-thin);
    }
}

.tabcontent {
    display: none;
    padding: 30px 0 0 0;
    border-top: none;
}

.text-overflow-ellipsis {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

a h4 .card .news-date {
    display: block;
    font-size: 0.83em;
    margin-top: 1.67em;
    margin-bottom: 1.67em;
    margin-left: 0px;
    margin-right: 0px;
    font-weight: bold;
}
.news-date.no-link {
    display: block;
    font-size: 0.83em;
    margin-top: 1.67em;
    margin-bottom: 1.67em;
    margin-left: 0px;
    margin-right: 0px;
    font-weight: bold;
    color: black;
}





/*# sourceMappingURL=resources.css.map*/