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

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
}

/* HTML5 display-role reset for older browsers */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1.5;
    font-family: 'Ubuntu', sans-serif;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.layouts-title {
    font-size: 26px;
    margin: 15px 0px;
}

.layouts ul li {
    margin-bottom: 5px;
}

.layouts ul li a {
    font-size: 17px;
    display: inline-block;
    padding: 3px 10px;
}

.layouts ul li a:hover {
    background: #000;
    color: #fff;
}

/* -- END RESET -- */

.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: left;
}

.row {
    max-width: 1200px;
    padding: 0 10px;
    position: relative;
}

.row.content-row {
    padding: 0;
    margin: 0 auto;
}

.row.first {
    margin-top: 110px;
}

/* -- main styles -- */

.nopad {
    padding: 0px;
}

.nopadleft {
    padding-left: 0px;
}

.nopadright {
    padding-right: 0px;
}

strong {
    font-weight: bold;
}

i {
    font-style: italic;
}

em {
    font-style: italic;
}

.clear {
    clear: both;
}

.left {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.right {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px;
}

.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px;
}

.invi {
    visibility: hidden;
    opacity: 0;
}

/*   hamburger   */

.hamburger {
    font: inherit;
    overflow: visible;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity, filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
    display: inline-block;
    /* Custom */
    z-index: 11;
    vertical-align: middle;
}

.hamburger:hover {
    opacity: 1;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 28px;
    height: 20px;
    float: right;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    border-radius: 2px;
    position: absolute;
    width: 28px;
    height: 2px;
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform;
    background-color: #000;
}

.hamburger-inner.black, .hamburger-inner.black:after, .hamburger-inner.black:before {
    background-color: #fff;
}

.hamburger-inner:after, .hamburger-inner:before {
    display: block;
    content: "";
}

.hamburger-inner:before {
    top: -7px;
}

.hamburger-inner:after {
    bottom: -7px;
}

.hamburger--collapse .hamburger-inner {
    transition-timing-function: cubic-bezier(.55, .055, .675, .19);
    transition-duration: 75ms;
}

.hamburger--collapse .hamburger-inner:before {
    transition: top 75ms ease .12s, opacity 75ms ease;
}

.hamburger--collapse .hamburger-inner:after {
    transition: bottom 75ms ease .12s, transform 75ms cubic-bezier(.55, .055, .675, .19);
}

.hamburger--collapse.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transform: rotate(45deg);
}

.hamburger--collapse.is-active .hamburger-inner:before {
    top: 0;
    transition: top 75ms ease, opacity 75ms ease .12s;
    opacity: 0;
}

.hamburger--collapse.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom 75ms ease, transform 75ms cubic-bezier(.215, .61, .355, 1) .12s;
    transform: rotate(-90deg);
}

/* Main css */

.btn-dark-teal, .btn-dark-teal:focus, .btn-dark-teal:active {
    font-size: 14px;
    font-weight: 800;
    color: #b62f00;
    border: 2px solid #b62f00;
    border-radius: 6px;
    display: inline-block;
    padding: 10px;
    transition: 0.3s;
    line-height: 1;
}

.btn-dark-teal:hover {
    background: #b62f00;
    color: #fff;
}

.main-title {
    font-size: 42px;
    font-weight: 900;
    color: #353f53;
    text-transform: uppercase;
}

/* Header */

.header {
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    color: #000;
    z-index: 5;
    box-shadow: 0px 0px 8px #888;
}

.header .logo a {
    display: block;
    padding: 10px;
}

.header .logo img {
    height: 60px;
    margin: 0;
}

.nav a.btn-dark-teal {
    font-size: 13px;
    padding: 10px 15px;
    padding-bottom: 6px;
}

.nav ul {
    margin: 20px 0;
    height: 40px;
}

.nav ul, .nav-mobile ul {
    display: block;
    height: 40px;
    width: 100%;
    text-align: right;
    overflow: hidden;
}

.nav ul li, .nav-mobile ul li {
    display: inline-block;
    height: 40px;
    line-height: 40px;
}

.nav ul li.current a, .nav-mobile ul li.current {
    color: #b62f00;
}

.nav ul li a, .nav-mobile ul li a {
    color: #000000;
    display: block;
    height: 40px;
    padding: 0 15px;
}

.nav ul li a:hover, .nav-mobile ul li a:hover {
    background: #b62f00;
    color: #fff;
}

.nav-burger {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 10;
    display: none;
}

.nav-burger-header {
    padding: 20px;
}

.nav-burger ul {
    padding: 20px;
}

.nav-burger ul li {
    text-align: right;
    font-size: 14px;
}

.nav-burger ul li a {
    color: #666;
}

/* Home main container */

.news-list {
    padding-bottom: 30px;
}

.news-list div.a {
    display: block;
    position: relative;
    width: 50%;
    height: 250px;
    overflow: hidden;
    background-position: center center;
    background-size: cover !important;
    background-repeat: no-repeat;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 2px solid #fff;
}

.news-list div.a:nth-child(3n) {
    width: 100%;
    clear: both;
}

.news-list div.a:nth-child(1), .news-list div.a:nth-child(3n+1) {
    float: left;
}

.news-list div.a:nth-child(2), .news-list div.a:nth-child(3n+2) {
    float: right;
}

.news-list a:hover {
    opacity: 0.8;
}

.news-date-inside {
    color: #000;
    font-size: 12px;
}

.news-date {
    font-size: 11px;
    color: #fff;
}

.news-date span {
    background: rgba(0, 0, 0, 0.7);
    display: inline-block;
    padding: 5px 10px;
}

.news-list-box {
    padding: 20px;
    position: absolute;
    bottom: 0;
}

.news-title {
    font-size: 28px;
    font-weight: 900;
    color: #353f53;
    line-height: 1;
}

.news-text {
    color: #353f53;
}

.news-text-title {
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

.news-tags {
    margin-bottom: 10px;
}

.news-tags span, .news-tags a {
    background: #fff;
    display: inline-block;
    padding: 7px 10px 5px 10px;
    color: #000;
    font-size: 11px;
    border-radius: 6px;
    line-height: 1;
    border: 0;
    font-weight: bold;
}

/* Footer */

.footer {
    padding: 31px 0 15px 0;
}

.footer-menu {
    margin-bottom: 20px;
    text-align: center;
}

.footer .current a {
    color: #353f53;
}

.footer-menu ul li {
    margin-bottom: 6px;
    display: inline-block;
}

.footer-menu ul li a {
    color: #666;
    display: block;
    padding: 10px 20px;
}

.footer-menu ul li a:hover {
    background: #b62f00;
    color: #fff;
}

.copyright div {
    font-size: 14px;
    color: #666;
    display: inline-block;
    vertical-align: middle;
    line-height: 30px;
    padding: 10px 0;
}

/* Entry */

.entry {
    margin-bottom: 40px;
}

.entry h1, .entry h2, .entry h3, .entry h4, .entry h5 {
    font-weight: 900;
    color: #353f53;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.entry h1 {
    font-size: 42px;
}

.entry h2 {
    font-size: 36px;
}

.entry h1 .game-title-sub {
    font-size: 14px;
    color: #888;
}

.entry h3 {
    font-size: 28px;
}

.entry h4 {
    font-size: 20px;
}

.entry h5 {
    font-size: 18px;
}

.entry h1 a, .entry h2 a, .entry h3 a, .entry h4 a, .entry h5 a, .entry p a, .entry ul li a, .entry ol li a {
    color: #b62f00;
    text-decoration: underline;
}

.entry p {
    font-size: 16px;
    color: #353f53;
    margin-bottom: 20px;
}

.entry p a:hover {
    opacity: 0.7;
}

.entry .news-copy {
    margin-bottom: 20px;
    font-size: 11px;
}

.entry&gt;ul, .entry&gt;ol {
    margin-bottom: 20px;
}

.entry&gt;ul&gt;li, .entry&gt;ol&gt;li {
    font-size: 16px;
    padding-left: 25px;
    margin-bottom: 5px;
    position: relative;
}

.entry&gt;ul&gt;li:before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 6px;
    background: #b62f00;
    border-radius: 50%;
}

.entry&gt;ol {
    counter-reset: item;
}

.entry&gt;ol&gt;li:before {
    content: counters(item, ".") ".";
    counter-increment: item;
    position: absolute;
    top: 0px;
    left: 0;
    font-weight: 900;
    color: #b62f00;
}

.entry .table-scroll {
    margin-bottom: 20px;
}

.entry table {
    width: 100%;
    border: 2px solid #b62f00;
    margin-bottom: 10px;
}

.entry table thead th {
    font-size: 16px;
    font-weight: 900;
    text-align: left;
    padding: 16px 22px;
    border: none;
    background: #b62f00;
    color: #fff;
    text-transform: uppercase;
}

.entry table tbody td {
    font-size: 16px;
    color: #353f53;
    padding: 10px 22px;
    border-bottom: 2px solid #b62f00;
}

.entry table tbody tr:nth-child(even) {
    background-color: transparent;
}

.card {
    box-shadow: 0px 0px 2px #9c9c9c;
    padding: 20px;
}

.g-recaptcha {
    margin-bottom: 20px;
}

form input.required {
    border: 1px solid #ff0000;
}

.nopad {
    padding: 0;
}

.stories-all {
    padding: 10px 0 30px 0;
}

.stories-item {
    line-height: 1;
    margin-bottom: 10px;
}

.stories-item a, .stories-all a {
    font-size: 12px;
    font-weight: normal;
    color: #888;
}

.stories-item span {
    margin-right: 10px;
    font-weight: bold;
    color: #000;
}

#vote-box {
    background: #fff;
    padding: 20px;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 300px;
    transform: translate(-50%, -50%);
    width: 100%;
    border: 3px solid #888;
}

#vote-box button {
    font-size: 16px;
    padding: 8px 18px;
    background: #b62f00;
    color: #fff;
}

.vote-box-submit {
    padding-top: 10px;
}

.button {
    background: #b62f00;
    color: #fff;
}

.button:hover, .button:active {
    background: #b62f00;
    opacity: 0.8;
}

#vote-box button:hover {
    opacity: 0.8;
}

.terms {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 5px;
}

.terms input {
    margin-right: 5px;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
}

h1.page-title {
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 1;
}

.age-18 {
    max-height: 80px;
    margin-bottom: 20px;
}

.age-18-text {
    margin-bottom: 20px;
}

.copy-logos img {
    vertical-align: middle;
    max-height: 50px;
    max-width: 150px;
    margin: 0 5px;
}

.companies {
    margin-bottom: 30px;
}

.companies-logo img {
    max-height: 80px;
}

.companies-text {
    font-size: 14px;
    color: #353f53;
}

.companies-link {
    text-align: center;
}

.random-banner {
    margin-bottom: 20px;
}

.landing {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: auto;
}

.row.landing-game {
    margin-top: 30px;
    margin-bottom: 50px;
    background: #fff;
    max-width: 900px;
    text-align: center;
    padding: 20px;
}

@media only screen and (max-width: 1150px) {
    .nav ul li {
        margin-right: 18px;
    }
}

@media only screen and (max-width: 1050px) {}

@media only screen and (min-width: 1024px) {
    .nav {
        display: block!important;
    }
}

@media only screen and (max-width: 1023px) {
    .nav {
        display: none;
        text-align: center;
        padding: 0 0 20px 0;
    }
    .nav a.btn-dark-teal {
        display: inline-block;
        padding: 10px 40px;
    }
    .nav ul {
        display: block;
    }
    .nav ul li {
        display: block;
        padding-top: 0;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .nav ul li:last-child {
        margin-bottom: 20px;
    }
    .nav ul li a {
        display: block;
        padding: 6px 0;
    }
    .hamburger {
        display: inline-block;
    }
    .news-title {
        font-size: 24px;
    }
}

@media screen and (max-width:760px) {
    .news-title {
        font-size: 22px;
    }
    .news-tags {
        display: none;
    }
    .news-date {
        font-size: 10px;
    }
}

@media screen and (max-width:639px) {
    .main-title {
        font-size: 30px;
    }
    .news-title {
        font-size: 20px;
    }
    .entry table thead th {
        padding: 12px 10px;
        font-size: 14px;
    }
    .entry table tbody td {
        padding: 8px 10px;
        font-size: 14px;
    }
    .news-list {
        padding: 0;
        margin: 0;
    }
    .news-list-box {
        padding: 15px;
    }
    .news-image {
        position: relative;
        width: 100%;
        padding-bottom: 50%;
    }
    .row.entry.first {
        padding: 0;
    }
    .header .logo img {
        height: 80px;
    }
}

@media screen and (max-width:380px) {}</pre></body></html>