
        :root {
            --sans: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --serif: Georgia, 'Times New Roman', Times, serif;
            --link-color: #1933D8;
            --rff-main-color: #ffca02;
            --rff-comfy-color: #9602ff;
            --rff-specialty-color: #02a3fd;
            --rff-word-color: #363636;
            --bg: #fff;
            --txt: #000;
            --highlite: #F0F6FC;
            --separator: #BFD9F1;
        }
        @media (prefers-color-scheme: dark) {
            :root {
                --bg: #0d121e;
                --txt: #ffffffee;
                --link-color: #918f8f;
                --highlite: #a5adb524;
                --serif: var(--sans);
                --separator: #4e6170;
            }
        }

        * {
            font-family: var(--sans);
            color: var(--txt);
        }
        body {
            background: var(--bg);
            font-size: 14px;
            padding: 0;
            margin: 0;
        }
        a {
            color: var(--link-color);
            font-family: inherit;
        }
        p, strong, li, ol, ul {
            font-family: inherit;
            line-height: inherit;
        }
        h3 {
            font-size: 1.8em;
            font-weight: 900;
        }
        h4 {
            font-size: 1em;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .1em;
        }

        .clearfix::after { 
            content: ""; 
            display: table; 
            clear: both; 
        }
        .floatLeft {
            display: block;
            float: left;
        }
        .floatRight {
            display: block;
            float: right;
        }
        .hide {
            display: none !important;
        }
        .smaller {
            font-size: .8em;
        }

        .topBar {
            background: #717788;
            color: #fff;
            text-transform: uppercase;
            text-align: center;
            margin: 0;
            padding: 8px;
            font-size: 1.2em;
            font-weight: 700;
        }
        .container {
            max-width: 1024px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .logoBox {
            float: left;
            width: 450px;
            margin-right: 24px;
            vertical-align: middle;
            display: inline-block;
        }
        .logo {
            height: 120px;
            float: left;
            margin-right: 16px;
        }
        .websiteTitle {
            color: var(--txt);
            font-size: 2.6em;
            font-weight: 900;
            text-transform: uppercase;
            margin: 12px 0 2px;
            text-decoration: none;
        }
        .tagline {
            color: #717788;
            text-transform: uppercase;
            margin: 2px 0;
            font-size: 1.5em;
            text-decoration: none;
        }
        .mainHeader {
            margin: 12px 0;
        }
        .mainHeader nav {
            display: table-cell;
            vertical-align: middle;
            height: 120px;
            font-size: 1.2em;
            text-transform: uppercase;
            line-height: 1.6em;
        }
        .mainHeader nav a {
            white-space: nowrap;
        }
        
        .topBanner {
            padding: 16px 24px;
            border-radius: 16px;
            margin-bottom: 24px;
            text-align: center;
            background: #fefdf2;
            border: solid 1px #d5d2ab;
            color: #000;
        }
        .playerBlock {
            padding: 16px 24px 24px;
            border-radius: 16px;
            margin-bottom: 24px;
            box-sizing: border-box;
        }
        .halfWidth {
            width: calc(50% - 14px);
            display: inline-block;
            vertical-align: top;
        }
        .playerBlock h4,p {
            margin: 0 0 8px;
        }
        .playerBlock h3 {
            line-height: 40px;
            margin: 0 8px;
        }
        .playerBlock .links {
            margin-top: 0;
            display: block;
            float: right;
            line-height: 40px;
        }
        .playerBlock .links a {
            margin-left: .4em;
        }
        .playerBlock audio {
            display: block;
            width: 100%;
        }
        #rff-main.playerBlock {
            box-shadow: 0px 1px 4px 0px var(--rff-main-color),
                        0px 4px 6px 0px rgba(0, 0, 0, 0.1);
            margin-right: 24px;
        }
        #rff-comfy.playerBlock {
            box-shadow: 0px 1px 4px 0px var(--rff-comfy-color),
                        0px 4px 6px 0px rgba(0, 0, 0, 0.1);
        }
        #rff-specialty.playerBlock {
            box-shadow: 0px 1px 4px 0px var(--rff-specialty-color),
                        0px 4px 6px 0px rgba(0, 0, 0, 0.1);
        }
        #rff-word.playerBlock {
            box-shadow: 0px 1px 4px 0px var(--rff-word-color),
                        0px 4px 6px 0px rgba(0, 0, 0, 0.1);
        }
        .np-section {
            min-height: 14.5em;
        }
        .rp-section {
            min-height: 17.5em;
        }
        .np-section .floatLeft {
            width: calc(100% - 176px);
        }
        .hSeparator {               
            width: 100%;
            height: 1px;
            margin: 16px 0;
            background-color: var(--separator);
        }
        .coverArt {
            width: 160px;
            height: 160px;
            margin: 0;
            border: 1px solid var(--highlite);
            background: var(--separator);
        }
        .trackName {
            font-size: 1.5em;
            line-height: 1.12em;
            font-weight: 900;
            margin-bottom: 6px;
        }
        table {
            width: 100%;
            border-spacing: 0;
        }
        table, th, td {
            border: none;
        }
        td {
            padding: 8px 6px;
            vertical-align: top;
        }
        tr:hover {
            background: var(--highlite);
        }
        .playButton {
            width: 40px;
            height: 40px;
            color: #FFF;
            background-color: #2fc0ad;
            text-align: center;
            border-radius: 50%;
            margin-right: 16px;
            float: left;
            cursor: pointer;
            padding: 8px;
            box-sizing: border-box;
        }
        #rff-main .playButton {
            background-color: var(--rff-main-color);
        }
        #rff-comfy .playButton {
            background-color: var(--rff-comfy-color);
        }
        #rff-specialty .playButton {
            background-color: var(--rff-specialty-color);
        }
        #rff-word .playButton {
            background-color: var(--rff-word-color);
        }
        #rff-specialty-np-playlist {
            font-weight: 500;
        }
        .specialtyNP {
            box-sizing: border-box;
            display: inline-block;
            width: 50%;
            padding-right: 36px;
            vertical-align: top;
        }
        .specialtyTimetable {
            box-sizing: border-box;
            display: inline-block;
            padding-left: 36px;
            vertical-align: top;
            width: 49%;
            border-left: solid 1px var(--separator);
        }
        .text {
            font-size: 1.2em;
            margin-top: 1em;
            font-family: var(--serif);
            line-height: 1.4em;
        }
        .text p {
            margin-bottom: 1em;
        }
        .text h3 {
            font-size: 1.5em;
            margin: 1.6em 0 .4em;
        }
        .artistCard {
            display: inline-block;
            box-sizing: border-box;
            width: calc(33% - 24px);
            margin: 12px 24px 12px 0;
            border: solid 1px var(--separator);
            border-radius: 12px;
            padding: 12px;
            vertical-align: top;
            font-size: .8em;
            overflow: auto;
            white-space: nowrap;
        }
        .artistCard:hover {
            background: var(--highlite);
        }
        @media screen and (max-width: 939px) {
            .halfWidth, .specialtyNP, .specialtyTimetable {
                width: 100%;
                display: block;
            }
            .np-section, .rp-section {
                min-height: auto;
            }
            .specialtyTimetable {
                border-left: none;
                border-top: 1px solid var(--separator);
                padding: 16px 0;
                margin-top: 16px;
            }
            .specialtyNP {
                padding: 0;
            }
        }
        @media screen and (max-width: 859px) {
            .artistCard {
                display: block;
                width: 100%;
            }
            .logoBox {
                float: none;
                margin: 0 auto;
                display: block;
                width: 350px;
            }
            .logoBox .logo {
                height: 90px;
            }
            .logoBox .websiteTitle {
                font-size: 2em;
                margin-top: 8px;
            }
            .logoBox .tagline {
                font-size: 1.1em;
            }
            .mainHeader nav {
                text-align: center;
                height: auto;
                display: block;
                margin-top: 12px;
            }
            #rff-specialty-np-playlist {
                display: block;
            }
        }
        @media screen and (max-width: 499px) {
            .coverArt {
                float: none !important; 
                width: 75%;
                height: auto;
                margin: 12px auto;
            }
            .np-section .floatLeft {
                float: none !important; 
                width: 100%;
            }
            .np-section {
                text-align: center;
            }
            .playerBlock .links {
                float: none;
                display: block;
                width: 100%;
                clear: both;
                padding-top: 12px;
                text-align: center;
            }
            .playerBlock .links a {
                margin: 0 12px 0 0;
            }
        }
    