<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pace-inactive {
    display: none;
}

.pace .pace-progress {
    background: #dc3545;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 2px;
}

a.btn {
    text-decoration: none!important;
}
/* site search */

#site-search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);

    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;

    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);

    opacity: 0.7;
}

#site-search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#site-search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: rgb(255, 255, 255);
    background: rgba(0, 0, 0, 0);
    font-size: 60px;
    font-weight: 300;
    text-align: center;
    border: 0px;
    margin: -51px auto 0;
    padding: 0;
    outline: none;
}
#site-search .btn-search {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 66px;
    margin-left: -66px;
}
#site-search .btn-close {
    position: fixed;
    top: 10px;
    right: 10px;
    opacity: 1;
    width: 40px;
    height: 40px;
}

.list-fixed-height li {
    padding: 2px 5px;
    height: 32px;
}

.list-fixed-height li a {
    display: block;
    height: 28px;
    overflow: hidden;
}

.comments {
    max-height: 380px;
    overflow-y: auto;
}

.question,
.comments .comment {
    padding: 5px;
    margin-bottom: 5px;
    font-size: 14px;
}

.question em,
.comments .comment em {
    font-size: 12px;
}
.comments .comment pre {
    margin-bottom: 0;
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

.comments .comment:nth-child(even) {
    background: #f8f9fa;
}

/* form controls */


.form-group {
    position: relative;
    margin-bottom: 1.25rem;
}

.form-group.has-error.has-danger {
    margin-bottom: 0.625rem;
}

.form-group.has-error.has-danger .help-block.with-errors ul {
    margin-top: 0.375rem;
}

.input-group {
    position: relative;
}

.label-control {
    position: absolute;
    top: 0.875rem;
    left: 1.375rem;
    color: #7d838a;
    opacity: 1;
    font-size: 0.875rem;
    line-height: 1.375rem;
    cursor: text;
    transition: all 0.2s ease;
}

.form-control:focus + .label-control,
.form-control.notEmpty + .label-control,
.form-control-input:focus + .label-control,
.form-control-input.notEmpty + .label-control,
.form-control-textarea:focus + .label-control,
.form-control-textarea.notEmpty + .label-control {
    top: 0.125rem;
    color: #6b747b;
    opacity: 1;
    font-size: 0.75rem;
    font-weight: 700;
}

.form-control.is-invalid + .label-control {
    color: #dc3545;
}

.form-control,
.form-control-input,
.form-control-select {
    display: block; /* needed for proper display of the label in Firefox, IE, Edge */
    width: 100%;
    height: auto;
    padding-top: 1.125rem;
    padding-bottom: 0.125rem;
    padding-left: 1.3125rem;
    border: 1px solid #cbcbd1;
    border-radius: 4px;
    background-color: #ffffff;
    color: #6b747b;
    font-size: 0.875rem;
    line-height: 1.875rem;
    transition: all 0.2s;
    -webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
}

.form-control-select {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    height: 3.25rem;
    color: #7d838a;
}

select {
    /* you should keep these first rules in place to maintain cross-browser behavior */
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url('/gemdev/images/down-arrow.png');
    background-position: 96% 50%;
    background-repeat: no-repeat;
    outline: none;
}

.form-control-textarea {
    display: block; /* used to eliminate a bottom gap difference between Chrome and IE/FF */
    width: 100%;
    height: 14rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
    padding-top: 1.5rem;
    padding-left: 1.3125rem;
    border: 1px solid #cbcbd1;
    border-radius: 4px;
    background-color: #ffffff;
    color: #6b747b;
    font-size: 0.875rem;
    line-height: 1.5rem;
    transition: all 0.2s;
}

.form-control:focus,
.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
    border: 1px solid #a1a1a1;
    outline: none; /* Removes blue border on focus */
}

.form-control:hover,
.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
    border: 1px solid #a1a1a1;
}

.checkbox {
    font-size: 0.75rem;
    line-height: 1.25rem;
}

input[type='checkbox'] {
    vertical-align: -10%;
    margin-right: 0.5rem;
}

a.back-to-top {
    position: fixed;
    z-index: 999;
    right: 12px;
    bottom: 12px;
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 30px;
    background: #0085A1 url("/images/up-arrow.png") no-repeat center 47%;
    background-size: 18px 18px;
    text-indent: -9999px;
}

a:hover.back-to-top {
    background-color: #0095B1;
}

/*******************/
/*     Contact     */
/*******************/
.contact-form {
    overflow-x: hidden;
    padding-top: 2rem;
    padding-bottom: 7.5rem;
}

.contact-form .form-container {
    position: relative;
}

.contact-form .decoration {
    position: absolute;
    width: 400px;
    bottom: -60px;
    right: -200px;
}

/* Min-width 1200px */
@media (min-width: 1200px) {
    .contact-form form {
        width: 860px;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-form .decoration {
        width: 560px;
        bottom: -80px;
        right: -200px;
    }
}
</pre></body></html>