<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.loading {
    display:none;
}

.overlay {
    display: none;
    position: fixed;
    opacity: 0.85;
    background-color: #c0c0c0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    vertical-align: middle;
    padding-top: 2em;
}

.ui-datepicker-trigger {
    margin-left: 0.5em;
}

/* accordian styles */
 .accordion, .accordion * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.accordion {
    overflow: hidden;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.25);
    border-radius: 3px;
    background: #f7f7f7;
}
/*----- Section Titles -----*/
.accordion-section-title {
    width: 100%;
    padding: 10px;
    display: inline-block;
    border-bottom: 1px solid #f6c400;
    background: #083c70;
    transition: all linear 0.15s;
    /* Type */
    font-size: 1.00em;
    text-shadow: 0px 1px 0px #1a1a1a;
    color: #ffffff;
}

.section-title-inactive {
    color: #c0c0c0;
    font-style: italic
}

.accordion-section-title.active, .accordion-section-title:hover {
    background: #f6cf00;
    /* Type */
    text-decoration: none;
}

.accordion-section:last-child .accordion-section-title {
    border-bottom: none;
}

/*----- Section Content -----*/
.accordion-section-content {
    padding: 15px;
    display: none;
}
</pre></body></html>