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

@font-face {
    font-family: 'FontAwesome';
    src: url('../webfonts/fontawesome-webfont.eot');
    src: url('../webfonts/fontawesome-webfont.eot') format('embedded-opentype'),
    url('../webfonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),
    url('../webfonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
    url('../webfonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),
    url('../webfonts/fontawesome-webfont.svg#fontawesomeregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "LineAwesome";
    src: url("../webfonts/line-awesome.eot?v=1.1.");
    src: url("../webfonts/line-awesome.eot??v=1.1.#iefix") format("embedded-opentype"),
         url("../webfonts/line-awesome.woff2?v=1.1.") format("woff2"),
         url("../webfonts/line-awesome.woff?v=1.1.") format("woff"),
         url("../webfonts/line-awesome.ttf?v=1.1.") format("truetype"),
         url("../webfonts/line-awesome.svg?v=1.1.#fa") format("svg");
    font-weight: normal;
    font-style: normal;
  }

  @media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
      font-family: "LineAwesome";
      src: url("../webfonts/line-awesome.svg?v=1.1.#fa") format("svg");
    }
  }

@font-face {
    font-family: 'LuckiestGuy';
    src: url('../webfonts/luckiestguy-webfont.woff2') format('woff2'),
    url('../webfonts/luckiestguy-webfont.ttf') format('truetype'),
    url('../webfonts/luckiestguy-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'IBMPlex';
    src: url('../webfonts/IBMPlexSans-Regular.woff2') format('woff2'),
    url('../webfonts/IBMPlexSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'IBMPlex';
    src: url('../webfonts/IBMPlexSans-Italic.woff2') format('woff2'),
    url('../webfonts/IBMPlexSans-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'IBMPlex';
    src: url('../webfonts/IBMPlexSans-ExtraLight.woff2') format('woff2'),
    url('../webfonts/IBMPlexSans-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'IBMPlex';
    src: url('../webfonts/IBMPlexSans-Light.woff2') format('woff2'),
    url('../webfonts/IBMPlexSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'IBMPlex';
    src: url('../webfonts/IBMPlexSans-SemiBold.woff2') format('woff2'),
    url('../webfonts/IBMPlexSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

/* These are the default styles for the Simple theme */
body {
    color: #23201F;
    font-size: 19px; /* This overrides the browsers default font size */
    line-height: 1.579em; /* If you change the font-size make sure you change the line-height value as well - the usual ratio is around 1.5 (font-size x 1.5 = line-height) */
}
body, input, textarea, select, button {
    font-family: 'IBMPlex', Arial, Helvetica, sans-serif;
}
body a {
    text-decoration: none;
} /* this removes the underline from all links */


/* HEADERS */
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6 {
    font-weight: normal;
    margin: 0;
}

.typography h1, .typography .h1 {
  font-size: 70px;
  line-height: 1.143em;
  font-weight: 200;
  color: #ff0824;
}

.typography h2, .typography .h2 {
    font-size: 54px;
    line-height: 1.111em;
    font-weight: 300;
}

.typography h3, .typography .h3 {
    font-size: 36px;
    line-height: 1.389em;
    font-weight: 600;
}

.typography h4, .typography .h4 {
    font-size: 22px;
    line-height: 1.636em;
    font-weight: 600;
}

.typography h5, .typography .h5 {
    font-size: 15px;
    line-height: 1.333em;
    font-weight: 600;
}

.typography h6, .typography .h6 {
    color: #23201f;
    font-size: 15px;
    font-weight: normal;
}


/* PARAGRAGHS */
.typography p, .typography .p {
    font-size: 19px;
    line-height: 1.579em;
    margin: 0;
}

.typography p {
    margin-bottom: 16px;
}


/* LINKS */
.typography p a, .typography .p a, .typography h5 a, .typography a {
    font-style: italic;
    border-bottom: 1px solid #ff0824;
    color: #23201f;
}

/* WYSIWYG EDITOR ALIGNMENT CLASSES
-------------------------------------------- */
.typography .left {
    text-align: left
}
.typography .center {
    text-align: center
}
.typography .right {
    text-align: right
}


/* IMAGES
-------------------------------------------- */
.typography img {
    height: auto; /* resets the image height so that it maintains its aspect ratio when width is set */
}
.typography img.left {
    float: left;
    max-width: 50%;
    margin: 5px 20px 10px 0;
}
.typography img.right {
    float: right;
    max-width: 50%; /* Responsive width */
    margin: 5px 0 10px 20px;
}
.typography img.leftAlone {
    float: left;
    margin-right: 100%;
    margin-bottom: 10px;
    clear: both;
}
.typography img.center {
    float: none;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 10px;
    clear: both;
}

/* MENU
-------------------------------------------- */

.header .primary li a, h6, .h6 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.579em
}

/* LIST ITEMS
-------------------------------------------- */

ul {
    padding: 0;
}

li {
    color: #23201f;
    font-size: 19px;
    font-style: normal;
    line-height: 1.579em;
}


</pre></body></html>