<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.my-spa-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/loading-gold-dot.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80px;
    background-color: rgba(255,255,255,.8);
    z-index: 95;
}

#my-login{
    font-size:14px;
}

.img-avatar {
    width: 26px !important;
    border-radius: 50px !important;
}
.headerSmall .img-avatar {
    margin-top: -18px !important
}
.login-actions .img-avatar {
    width: 45px !important;
}
.btn {
    color: white;
    background-color: rgba(245, 158, 11);
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.625rem;
    padding-left: 10px;
    padding-right: 10px;
    border: none;
    min-width: 150px;
    cursor: pointer;
    -ms-transition: background-color .3s;
    -moz-transition: background-color .3s;
    -webkit-transition: background-color .3s;
    -o-transition: background-color .3s;
    transition: background-color .3s;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 0.25rem;
    font-family: "Noto Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
    .btn:hover {
        background-color: rgb(251, 191, 36);
    }

    .btn:disabled {
        background-color: gray;
        border-color:gray;
        cursor: not-allowed;
    }

    .btn.apply {
        background-color: rgb(70, 162, 43);
        border: 1px solid rgb(70, 162, 43);
    }
    .btn.apply:hover {
        background-color: rgb(90, 200, 63);
    }
    .btn.cancel {
        background-color: #3777b7;
        border: 1px solid #3777b7;
    }
    .btn.delete {
        background-color: #a20c0c;
        border: 1px solid #a20c0c;
    }


.login-partial .edit-form-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    -webkit-justify-content: center;
    justify-content: center;
    background-color: rgba(255,255,255,.8);
    z-index: -10;
    opacity: 0;
}

    .login-partial .edit-form-container.show {
        display: flex;
        z-index: 100;
        opacity: 1;
        -webkit-transition: opacity 0.5s ease-in-out;
        -moz-transition: opacity 0.5s ease-in-out;
        -ms-transition: opacity 0.5s ease-in-out;
        -o-transition: opacity 0.5s ease-in-out;
        transition: opacity 0.5s ease-in-out;
    }

    .login-partial .edit-form-container .edit-form {
        width: 80%;
        max-width: 600px;
        z-index: 0;
        opacity: 0;
        position: absolute;
        background-color: white;
        padding: 20px;
        margin-top: 50px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border: 1px solid gray;
        border-radius: 3px;
        box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
        -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
        -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    }

    .login-partial .edit-form-container.show .edit-form {
        z-index: 2;
        opacity: 1;
        -webkit-transition: opacity 0.5s ease-in-out;
        -moz-transition: opacity 0.5s ease-in-out;
        -ms-transition: opacity 0.5s ease-in-out;
        -o-transition: opacity 0.5s ease-in-out;
        transition: opacity 0.5s ease-in-out;
    }

.edit-form input[type="checkbox"] {
    margin-right: 10px;
    height: 25px;
    width: 25px;
}

.edit-form label.inline {
    position: relative;
    top: -8px;
}

.login-partial {
    position: absolute;
    top: 0;
    right: 125px;
}
.login-top-container{
    margin-top:25px;
    margin-left:10px;
}
#menu {
    /*Added right spacing for User Avatar*/
    position: relative;
    right: 40px;
}
@media only screen and (min-width: 900px){
    /*large screen*/
    .login-partial {
        position: fixed;
        top: 20px;
        right: 18px;
        z-index: 101;
    }
}

@media only screen and (max-width: 800px) {
    /*small screen*/
    .img-avatar,
    .headerSmall .img-avatar {
        margin-top: 5px !important;
    }
}


.login-panel {
    /*display: none;*/
    position: fixed;
    color: black;
    background-color: white;
    top: 0;
    right: -400px;
    bottom: 0;
    width: 350px;
    padding: 15px;
    box-shadow: -0.2em 0 0 rgba(0,0,0,.25);
}

    .login-panel.open {
        /*display: block;*/
        right: 0;
        transition: all .5s;
    }
    .login-panel .scrolling {
        border-top: 1px solid gray;
        height: calc(100vh - 115px);
        overflow: hidden;
        overflow-y: scroll;
        margin-top: 10px;
        padding-top: 5px;
    }
    .login-panel .login-toggle {
        cursor: pointer;
    }

    .login-panel .fas {
        color: rgba(245, 158, 11);
        cursor: pointer;
    }

    .login-panel .fa-window-close {
        position:absolute;
        top: 5px;
        right: 5px;
        font-size: 1.75rem;
    }
        .login-panel .fa-window-close:hover {
            transition: all 2s;
            color: rgb(251, 191, 36);
        }


    .login-panel .name {
        font-size:18px;
        display:inline-block;
    }
    .login-panel .title {
        font-size: 14px;
        color:gray;
    }
#menu .login-partial ul li.neutralMenu a {
    color: White !important;
}

.login-actions {
    display: flex;
    justify-content: space-between;
    padding-top:10px;
}
    .login-actions .img-avatar {
        margin-top: 0 !important
    }
.login-partial .btn.apply {
    float: none;
    width:100%;
}

.login-panel .edit-form fieldset {
    padding: 0;
}

    .login-panel .edit-form fieldset legend {
        color: #5a5858;
    }

    .login-panel .edit-form fieldset p {
        margin-top: 15px;
        padding: 0;
    }

        .login-panel .edit-form fieldset p.modern-input label,
        .login-panel .edit-form fieldset p.modern-input input {
            padding: 0 10px;
        }

        .login-panel .edit-form fieldset p.modern-control {
            position: relative;
            margin-right: 10px;
            margin-left: 0;
            overflow: hidden;
            width: calc(100% - 20px);
            float: left;
        }

            .login-panel .edit-form fieldset p.modern-control label {
                font-weight: normal;
            }

.login-panel .areaLink {
    width: 100%;
    padding: 10px;
    display: block;
    text-align: left;
    color: black;
    text-decoration: none;
}

    .login-panel .areaLink:hover {
        background-color: rgba(8, 57, 129, 0.5);
    }</pre></body></html>