<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Font Import */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&amp;family=Roboto:ital,wght@0,400;0,500;0,700;1,400&amp;display=swap');

/* Main Box Reset for Test Environment */

.ascfix {
    margin: 0 auto; padding: 1em;
    max-width: 1140px;
}

.ascfix * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Font Styles */

.ascfix :is(h1, h2, h3, h4, h5, h6) {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1;
}

.ascfix h1 {
    font-size: 32px;
}

.ascfix h2 {
    font-size: 24px;
}

.ascfix h3 {
    font-size: 18.72px;
}

.ascfix h4 {
    font-size: 16px;
}

.ascfix h5 {
    font-size: 13.28px;
}

.ascfix h6 {
    font-size: 10.72px;
}

.ascfix :is(p, ul, ol, table, fieldset, form, dl, dir, menu, details, summary, blockquote) {
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    font-weight: 400;
}

.ascfix a {
    font-weight: 700;
}

/* Link Styles */

.asc_bluegradient_bg a:hover,
.asc_bluegradient_bg a:focus {
    color: #FFCD00;
    text-decoration: none;
}

/* List Styles */

.indent {
    padding-left: 1em;
}

.b_clear {
    list-style: none;
}

.l_border &gt; * + * {
    border-top: #b9b9b9 1px solid;
    padding: .4em 0;
}

.l_border &gt; li:first-child {
    padding-bottom: .4em;
}

.l_border &gt; li:last-child {
    padding-bottom: 0;
}

.l_spacing {
    margin-top: 1em;
}

.lt_spacing_none {
    margin-top: 0 !important;
}

/* Color Styles*/

.asc_blue {
    color: #003C71 !important;
}

.asc_blue_bg {
    background-color: #003C71 !important;
}

.asc_bluegradient_bg {
    background: linear-gradient(#003C71, #001930);
}

.asc_bluegradient_bg * {
    color: #FFFFFF;
}

.ascfix :is(.asc_blue_bg, .asc_bluegradient_bg) {
    border-radius: 1em;
    padding: 1.5em;
}

.asc_yellow {
    color: #FFCD00 !important;
}

.asc_yellow_bg {
    background-color: #FFCD00 !important;
}

.white {
    color: #FFFFFF !important;
}

.off_white {
    color: #ececec !important;
}

/* Shadow Styles */

.light_shadow {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12),
    0 2px 2px rgba(0, 0, 0, 0.12),
    0 4px 4px rgba(0, 0, 0, 0.12);
}

.deep_shadow {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12),
    0 2px 2px rgba(0, 0, 0, 0.12),
    0 4px 4px rgba(0, 0, 0, 0.12),
    0 8px 8px rgba(0, 0, 0, 0.12),
    0 16px 16px rgba(0, 0, 0, 0.12);
}

/* Image Styles */

.ascimg_full {
    width: 100%;
    padding: 0;
}

.ascimg_half {
    width: calc(50% - 2rem);
    padding: 0;
}

.flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Box Padding Styles */

.box_spacer {
    padding: 1em;
}

/* Block Margin Spacing */

.flow &gt; * + * {
    margin-top: 1em !important;
}

/* Gap Spacing CSS Class */

.emulated-flex-gap &gt; * {
    margin: 2rem 0 0 2rem;
}

.emulated-flex-gap {
    display: inline-flex;
    flex-wrap: wrap;
    margin: -2rem 0 0 -2rem;
    width: calc(100% + 2rem);
}

/* Border Styles */

.b_radius_half {
    border-radius: .5em;
}

.b_radius_full {
    border-radius: 1em;
}

.l_b_asc_yellow {
    border-left: #FFCD00 2em solid;
}

/* Font Awesome Icons */

.icon {
    display: inline-flex;
    align-items: center;
}

.icon::before {
    margin-right: .8ch;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.university::before {
    content: "\f19c";
}

.caret_right::before {
    content: "\f0da";
}

.grad::before {
    content: "\f501";
}

.apply::before {
    content: "\f044";
}

.costs::before {
    content: "\f155";
}

.linkarrow::before {
    content: "\f0a9";
}

.question::before {
    content: "\f059";
}

.email::before {
    content: "\f1d8";
}

.request::before {
    content: "\f0ae";
}

.check::before {
    content: "\f00c";
}

/* Media Queries */

@media only screen and (max-width: 600px) {
    .flex {
        display: block;
    }
    .ascimg_half {
        width: 100%;
    }
    .lt_spacing_none {
         margin-top: 1em !important;
    }
    .emulated-flex-gap {
        display: block;
        width: 100%;
    }
  }</pre></body></html>