/* Minification failed. Returning unminified contents.
(864,42): run-time error CSS1046: Expect comma, found '0'
(864,46): run-time error CSS1046: Expect comma, found '/'
 */
/* Add Poppins and Bodoni Moda fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@400;500;600;700&display=swap');

/* Headers */
h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins";
    color: #1E4D2B;
}

body {
    margin: 0;
    padding: 0;
    border: 0;
    background-color: #efefef;
    font-size: 16px;
    font-weight: 300;
    font-family: inter,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif;
    color: #444444;
}

    body * {
        box-sizing: border-box;
    }

.restrict-width {
    margin: 0 auto;
    max-width: 1400px;
}

.skip-link {
    display: none;
}

.clearfix::after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}



/* HEADER */
.header {
    border-top: 5px solid #C9D845;
}

    .header .top-bar {
        background-color: #0B3A1D;
    }

    .header .menu-bar {
        background-color: #1E4D2B;
    }

        .header .menu-bar ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
        }
/* Menu */
#main-nav > li {
    display: inline-block;
    border-right: 1px solid #0B3A1D;
}

    #main-nav > li > a {
        display: inline-block;
        font-size: 18px;
        font-weight: 400;
    }

#main-nav li.has-sub-menu > a:first-of-type {
    padding-right: 5px;
}

#main-nav li.has-sub-menu > a:last-of-type {
    padding-left: 5px;
}

    #main-nav li.has-sub-menu > a:last-of-type span {
        border: 1px solid rgba(0,0,0,0);
    }

    #main-nav li.has-sub-menu > a:last-of-type:hover span,
    #main-nav li.has-sub-menu > a:last-of-type:focus span {
        border: 1px solid rgba(255, 255, 255, 0.75);
        border-radius: 5px;
        background-color: rgba(0,0,0,.5);
    }

#main-nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 35px;
    font-weight: 500;
}

    #main-nav a:hover {
        color: #C9D845
    }

#main-nav .sub-menu {
    display: none;
    position: absolute;
    background-color: #1E4D2B;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

#main-nav > li:hover > .sub-menu {
    display: block;
}

#main-nav .sub-menu a {
    display: block;
    padding: 15px;
}

    #main-nav .sub-menu a:hover {
        background-color: #0B3A1D;
    }
/* Mobile Menu Icon */
.hamburger-icon {
    cursor: pointer;
    padding: 25px 20px;
    display: none; /* Hide by default */
}

.hamburger-line {
    background-color: #fff;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
}

    .hamburger-line::before,
    .hamburger-line::after {
        background-color: #fff;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all 0.2s ease-out;
        width: 100%;
    }

    .hamburger-line::before {
        top: 5px;
    }

    .hamburger-line::after {
        top: -5px;
    }

.mobile-menu-opened .hamburger-icon .hamburger-line {
    background: transparent;
}

    .mobile-menu-opened .hamburger-icon .hamburger-line::before {
        transform: rotate(-45deg);
        top: 0;
    }

    .mobile-menu-opened .hamburger-icon .hamburger-line::after {
        transform: rotate(45deg);
        top: 0;
    }

/* BODY */
.wrapper {
    padding: 15px;
}

.main-content {
    background-color: #fff;
    padding: 40px;
}

.page-title {
    margin-top: 0;
    padding-top: 0;
}

h1 {
    font-size: 48px;
    font-weight: 300;
}

h2 {
    font-size: 40px;
    font-weight: 400;
}

h3 {
    font-size: 32px;
    font-weight: 300;
}

h4 {
    font-size: 28px;
    font-weight: 300;
}

h5 {
    font-size: 20px;
    font-weight: 300;
}

h6 {
    font-size: 16px;
    font-weight: 300;
}

/* Common Elements */
.main-content p {
    font-size: 16px;
    line-height: 2em;
    margin: 0;
    padding: 0;
    border: 0;
    margin-bottom: 1.5em;
}

.main-content a {
    color: #1E4D2B;
}

blockquote {
    border: 0;
    border-left: 5px solid rgba(0,0,0,.05);
    padding: 20px;
    font-size: 1.2em;
    font-style: italic;
    margin: 0 0 1.5em;
    position: relative;
}

figure {
    padding: 0;
    border: 0;
    margin: 0;
}

    figure img {
        height: auto;
        max-width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

code {
    hyphens: manual;
    overflow-wrap: break-word;
    border: 1px solid lightgray;
    font: 15px Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace;
}

pre {
    word-wrap: break-word;
    margin: 0;
    border: 0;
    background: rgba(0,0,0,.05);
    margin-bottom: 1.5em;
    padding: 20px;
    overflow: auto;
    max-width: 100%;
}

/* Tables */
table {
    border-collapse: separate;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    margin: 0 0 1.5em;
    width: 100%
}

table, td, th {
    border: 1px solid rgba(0,0,0,.1)
}

td, th {
    padding: 8px;
    border-width: 0 1px 1px 0
}

th {
    font-weight: 700;
    vertical-align: bottom;
    background-color: #1e4d2b;
    color: #fff;
}

/* Forms */
fieldset {
    border: 1px solid #ccc;
}

input, textarea, select {
    hyphens: manual;
    overflow-wrap: break-word;
    margin: 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    transition: color .1s ease-in-out,background-color .1s ease-in-out;
    font-family: "Open Sans", sans-serif;
    border: 1px solid;
    border-radius: 5px;
    padding: 10px 15px;
    max-width: 100%;
    color: #666666;
    background-color: #fafafa;
    border-color: #cccccc;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: 16px 18px;
    background-position: 98% 50%;
    cursor: auto;
}

input[type="image"] {
    max-width:inherit;
}

textarea {
    width: 100%;
}

*:disabled {
    cursor: default;
}

button, .button, [type="button"], [type="submit"] {
    margin: 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    -webkit-appearance: button;
    transition: color .1s ease-in-out,background-color .1s ease-in-out;
    font-family: "Open Sans", sans-serif;
    color: #ffffff;
    background-color: #d9782d;
    padding: 10px 20px;
    display: inline-block;
}

    button:hover, .button:hover, [type="button"]:hover, [type="submit"]:hover {
        background-color: #c26621;
    }



/* Row and Cols (Using Flex) */
.row {
    display: flex;
    gap: 15px;
}

    .row.gap-10 {
        gap: 10px;
    }

    .row.gap-15 {
        gap: 15px;
    }

    .row.gap-20 {
        gap: 20px;
    }

    .row.gap-25 {
        gap: 25px;
    }

.col-25 {
    flex: 1;
}

.col-75 {
    flex: 3;
}


/* FOOTER */
.top-footer {
    background-color: #004C23;
}

.top-footer_content {
    color: #fff;
    padding-top: 35px;
    padding-bottom: 25px;
}

.footer {
    background: #0B3A1D;
}

.csu-footer-links {
    text-align: right;
}

    .csu-footer-links ul li {
        display: inline-block;
        margin-left: 10px;
    }

        .csu-footer-links ul li::before {
            content: "> ";
            color: #EAB830;
        }

    .csu-footer-links a {
        color: #FFFFFFE0;
        text-decoration: none;
    }

        .csu-footer-links a:hover {
            color: #EAB830;
        }


/* RESPONSIVE */
/* Tablet */
@media only screen and (max-width: 1000px) {
    /* Switch to Mobile Menu */
    .hamburger-icon {
        display: block;
    }

    #main-nav {
        display: none;
    }
        /* Change to Display Block */
        #main-nav a {
            display: block;
        }
    /* Mobile Menu */
    .mobile-menu-closed #main-nav {
        display: none;
    }

    .mobile-menu-opened #main-nav {
        display: block;
    }

    #main-nav li,
    #main-nav li a {
        display: block;
    }

        #main-nav li:hover {
            background-color: rgba(0,0,0,.2);
        }

    #main-nav > li > a {
        padding: 20px 20px;
    }

    #main-nav li.has-sub-menu a {
        display: inline-block;
    }

    #main-nav li.has-sub-menu:hover > ul {
        display: none; /* JS will toggle display on arrow click */
    }

    #main-nav .sub-menu {
        display: none; /* Just default: will be overridden when user interacts */
        position: relative;
    }

        #main-nav .sub-menu a {
            text-align: center;
            width: 100%;
        }
    /* Add Padding to Header and Footer */
    .header .top-bar,
    .top-footer,
    .footer {
        padding-left: 10px;
        padding-right: 10px;
    }
    /* Adjust Columns */
    .col-25, .col-75 {
        flex: 1;
    }

    .col-25, .col-75 {
        flex: 1;
    }
}
/* Phone */
@media only screen and (max-width: 600px) {
    /* Adjust Columns */
    .row {
        flex-direction: column;
    }
}
h1, h2, h3, h4, h5, h6 {
    margin: 5px 0 5px;
}

span.error {
    color: Red;
}

span.success {
    color: Green;
}

ul, ol {
    margin-left: 30px;
    list-style-type: square;
}

.login {
    text-align: right;
    margin: 5px;
}

.noborders textarea {
    border: none;
}

.MyTabStyle .ajax__tab_header {
    /*font-family: "Helvetica Neue", Arial, Sans-Serif;*/
    font-size: 18px;
    font-weight: bold;
    display: block;
}

    .MyTabStyle .ajax__tab_header .ajax__tab_outer {
        border-color: #222;
        padding-left: 10px;
        /*border: solid 1px #d7d7d7;
        font-size: 14px;
        font-family: Arial, 'Arial Unicode MS',Helvetica,Sans-Serif;*/
        font-weight: 700;
        background-color: #00674E;
    }

    .MyTabStyle .ajax__tab_header .ajax__tab_inner {
        border-color: #666;
        color: #666;
        padding: 3px 10px 2px 0px;
    }

.MyTabStyle a.ajax__tab_tab {
    padding: 10px;
    color: #CCD7CD;
}

.MyTabStyle .ajax__tab_hover a {
    color: #333;
}

.MyTabStyle .ajax__tab_hover .ajax__tab_inner {
    color: #fff;
}

.MyTabStyle .ajax__tab_active .ajax__tab_outer, .MyTabStyle .ajax__tab_hover .ajax__tab_outer {
    border-bottom-color: #ffffff;
    background: #8CC63F;
    background: -webkit-linear-gradient(top,#9CCE5A 0,#89C53A 57%,#78AD34 100%) no-repeat;
    background: -moz-linear-gradient(top,#9CCE5A 0,#89C53A 57%,#78AD34 100%) no-repeat;
    background: -o-linear-gradient(top,#9CCE5A 0,#89C53A 57%,#78AD34 100%) no-repeat;
    background: -ms-linear-gradient(top,#9CCE5A 0,#89C53A 57%,#78AD34 100%) no-repeat;
    background: linear-gradient(top,#9CCE5A 0,#89C53A 57%,#78AD34 100%) no-repeat;
    -svg-background: linear-gradient(top,#9CCE5A 0,#89C53A 57%,#78AD34 100%) no-repeat;
    margin: 0 auto;
}

.MyTabStyle .ajax__tab_active .ajax__tab_inner, .MyTabStyle .ajax__tab_active a span {
    color: #242E25;
    border-color: #333;
}

.MyTabStyle .ajax__tab_body {
    background-color: #fff;
    border: solid 1px #7AB035;
    padding: 1rem;
    top: 30px;
    position: relative;
    clear: both;
}

    .MyTabStyle .ajax__tab_body label {
        font-weight: bold;
    }

    .MyTabStyle .ajax__tab_body table label {
        font-weight: normal;
    }

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
}


table.fwp td {
    padding: 4px;
}

table.border td {
    border: 1px solid #bababa;
}

.grid {
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    text-align: left;
    border-collapse: collapse;
    width: 100%;
}

    .grid th {
        font-size: 13px;
        font-weight: normal;
        padding: 8px;
        background: #00674E; /*#8DB351;*/
        border-bottom: 3px solid #D8A514;
        border-top: 1px solid #fff;
        color: #FFF;
    }

        .grid th a {
            color: #FFF !important;
        }

    .grid td {
        font-size: 10px;
        vertical-align: top;
        padding: 8px;
        border-bottom: 1px solid #fff;
        color: #669;
        border-top: 1px solid transparent;
    }

/*    .grid tr:nth-child(odd) td {
        background: #ECF4DF;
    }

.grid tr:hover td {
        background: #DCEDC1;
        color: #339;
    }*/

.double-scroll {
    width: 100%;
}

.noscroll, .noscrollread {
    overflow: scroll;
}

    .noscroll table td span {
        max-width: 100px;
        word-wrap: break-word;
        display: block;
    }

    .noscrollread table td span {
        max-width: 700px;
        word-wrap: break-word;
        display: block;
    }

.ui-state-active {
    background: url("//code.jquery.com/ui/1.11.1/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png") repeat-x scroll 50% 50% #e6e6e6 !important;
}


.grid-plain {
    /*font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;*/
    text-align: left;
    border-collapse: collapse;
    width: 100%;
}

    .grid-plain th {
        padding: 8px;
        background: #00674E; /*#8DB351;*/
        border-bottom: 3px solid #D8A514;
        border-top: 1px solid #fff;
        color: #FFF;
    }

        .grid-plain th a {
            color: #FFF !important;
        }

    .grid-plain td {
        vertical-align: top;
        padding: 8px;
        background: #fff;
        color: #669;
        border-bottom: 1px solid #EEE;
        border-top: 1px solid transparent;
    }

table.email-preview td {
    padding: initial;
}

.accordionContent table {
    margin: 0px;
}

.noborder *, .login_form * {
    border-style: none;
}

.grid-plain tr:nth-child(even) td {
    background-color: #fff;
}

.grid-plain td * {
    border-style: none;
}

.grid-attachments tbody tr {
    background-color: Wheat !important;
}

.progress-msg {
    margin: 10px;
    float: left;
    display: inline;
    overflow-y: scroll;
    width: 450px;
    height: 200px;
    background-color: #EBEBE4;
    border: 1px solid #bababa;
}

h2.ui-accordion-header-active {
    color: #AA800E !important;
}

.ui-state-default {
    border: 1px solid #aaaaaa;
    font-size: 20px;
}

.center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* Yep! */
    width: 48%;
    height: 59%;
}

.toggle {
    display: none;
}

.radiobuttonlist, .radiobuttonlist *, table, td, th {
    border: 0px;
}

    table td label, label {
        padding-left: 5px;
    }

.csu-footer-logo img {
    padding-top: 8px
}

textarea.aspNetDisabled {
    font-size: 10px;
}

/*input, textarea, select {
    padding: 6px 8px;
}*/

input [type=image] {
    max-width: inherit;
    cursor: pointer;
}

.accordionContent {
    padding: 1em 2.2em;
    border-top: 0;
    overflow: auto;
    border-bottom-right-radius: 4px;
    border: 1px solid #aaaaaa;
    background: #ffffff url('images/ui-bg_flat_75_ffffff_40x100.png') 50% 50% repeat-x;
    color: #222222;
    font-family: Verdana,Arial,sans-serif;
    font-size: 1.1em;
}

.accordionHeaderSelected {
    color: #AA800E !important;
    background: url('//code.jquery.com/ui/1.11.1/themes/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png') repeat-x scroll 50% 50% #e6e6e6 !important;
    padding: 0.5em 0.5em 0.5em 0.7em;
    font-family: Verdana,Arial,sans-serif;
    font-size: 20px;
    padding-left: 2.2em;
    border: 1px solid #aaaaaa;
}

.accordionHeader {
    font-family: Verdana,Arial,sans-serif;
    display: block;
    cursor: pointer;
    position: relative;
    margin-top: 2px;
    padding: 0.5em 0.5em 0.5em 0.7em;
    min-height: 0;
    border: 1px solid #aaaaaa;
    font-size: 20px;
    padding-left: 2.2em;
    background: #e6e6e6 url('images/ui-bg_glass_75_e6e6e6_1x400.png') 50% 50% repeat-x;
    font-weight: normal;
    color: #555555;
}

/* Datatables */
tr.filters th:first-child input {
    display: none;
}

#emails_wrapper .col-md-6 {
    width: 49%;
}

.dataTables_length {
    margin: 8px 0 0 40px;
}

#emails_wrapper input[type=search] {
    margin-left: 5px;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

table.dataTable.table-striped > tbody > tr.odd > * {
    box-shadow: inset 0 0 0 9999px rgb(0 0 0 / 2%);
}

table.dataTable.table-striped > tbody > tr:nth-of-type(2n+1) {
    background-color: transparent;
}

#emails_wrapper table.dataTable thead > tr > th.sorting:before {
    margin-bottom: 2px;
}

thead input {
    width: 100%;
}

.dataTables_scrollBody thead * {
    visibility: hidden;
    height: 0px !important;
}

.progress-label {
    float: left;
    margin-left: 40%;
    margin-top: 5px;
    font-weight: bold;
    text-shadow: 1px 1px 0 #fff;
}

