<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import "https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700";
/* Font Import */

html {
    height: 100%;
}
body {
    margin: 0px;
    height: 100%;
	font-family:'Open Sans';
	font-size: 12px;
	color: #403f38;
	background-image: url(../images/body.jpg);
}

.logo {
    padding-bottom: 20px;
    text-align: center;
}

.title {
    text-align: center;
}

@media (min-width: 768px) {
    body {
        margin-top: 20px;
    }
    .logo {
        padding: 0px;
        text-align: right;
    }

    .title {
        text-align: left;
    }
}

.container.white {
    padding: 15px;
    min-height: 100%;
    background-color: #ffffff;
    box-shadow: 0px 0px 8px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .container.white {
        padding: 30px;
    }
}

.wrapper {
    margin: 20px;
}

h1 {
    margin: 0;
    font-size: 26px;
    color: #1b2f7f;
}

@media (min-width: 768px) {
    h1 {
        margin: 14px 0 0;
    }
}

hr {
    border-top: 3px solid #1b2f7f;
}

.form-el {
	padding-bottom:15px;
}

.form-control {
    font-size: 12px;
}

textarea.form-control {
    height: 80px;
    resize: none;
}

.bold {
	font-weight:700;
}

h2 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 22px;
    color: #1b2f7f;
}

.fieldset {
    border: 1px solid #e1e1e1;
    padding: 20px;
}

.table.choice {
    margin-bottom: 0;
}

.table.choice th,
.table.choice td {
    text-align: center;
}

.table.choice td.option {
    text-align: left;
    vertical-align: middle;
}

table.number td {
    padding: 0 7px;
    text-align: center;
}

label.error {
    margin-top: 5px;
    font-size: 11px;
    color: #d75452;
    font-weight: normal;
    font-style: italic;
}

.ideal {
    float:left;
    width: 80px;
}

.issuer {
    float:left;
    width: calc(100% - 80px);
}

/* BEGIN BUTTONS */
.btn {
    padding: 6px 12px 6px;
    font-size: 14px;
    border: 0px;
}

.btn-primary, .content a.btn-primary {
    color: #ffffff;
    background-color: #1b2f7f;
}
.btn-primary:hover, .content a.btn-primary:hover,
.btn-primary:focus, .content a.btn-primary:focus,
.btn-primary:active, .content a.btn-primary:active,
.btn-primary.active, .content a.btn-primary:active {
    color: #403f38;
    text-decoration: none;
    background-color: #dadbdd;
}
/* END BUTTONS */
</pre></body></html>