body {
    overflow: hidden;
    color: white;
    font-family: 'PT Sans', sans-serif;
    font-size: 11px;
}

button {
    border: none;
    padding: 0px;
    margin: 0px;
    background-color: transparent;
    color: white;
    
    cursor: pointer;
    
    font-family: 'PT Sans', sans-serif;
    font-size: 11px;
}

    /* Get rid of extra spacing in Firefox */
    button::-moz-focus-inner {
        padding: 0;
        border: 0
    }

a, a:visited, a:active {
    color: white;
    font-family: 'PT Sans', sans-serif;
    font-size: 11px;
}
    
.player {
    width: 390px;
    height: 150px;
    background-color: #363536;
    box-shadow: 0px -1px 1px black;
    padding: 13px 14px 4px 162px;
    box-sizing: border-box;
    
    position: relative;
}

    .player ul:not(.now-playing) {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .player .afn {
        color: #58595B;
    }

    .player button.depressable {
        
    }
    
        .player button.depressable img {
            box-sizing: border-box;
            background-repeat: no-repeat;
            background-position: 0% 10000px;
            display: block;
        }
        
            .player button.depressable:hover img {
                /* Firefox freaks out if padding is 100% */
                padding-left: 99.999%;
                background-position: 0% 0%;
            }

    .player ul + ul, .player p + ul {
        margin-top: 5px;
    }
    
    .player .stations {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 151px;
        box-sizing: border-box;
        padding: 13px 5px 4px 8px;
        border-right: 1px solid #9B9A9A;
    }
     
    .player .stations li {
        margin-top: 6px;
    }
     
    .player .stations .current-locale {
        color: #929497;
        text-align: center;
    }
    
        .player .stations .current-locale .afn {
            display: none;
        }
    
    .player .stations .current-station {
        width: 119px;
        height: 21px;
        
        background-color: #1E1E1E;
        
        margin-left: 7px;
        padding: 0px 21px 5px 0px;
        border-radius: 5px;
        box-sizing: border-box;
        
        position: relative;
        
        color: #26A9E0;
        text-align: center;
        
        cursor: pointer;
        
        font-size: 14px;
        line-height: 21px;
    }
    
        .player .stations .current-station .afn {
            display: none;
        }
    
        .player .stations .current-station .select {
            position: absolute;
            right: 0;
            top: 0;
        }
    
    .player .stations .show-local  {
        text-decoration: none;
        text-align: center;
    }
    
        .player .stations .show-local button{
            text-decoration: none;
        }
    
    
    .player .now-playing {
        height: 64px;
        background-color: #232323;
        display: block;
        border-radius: 5px;
        box-sizing: border-box;
        
        margin-top: 0px;
        
        padding-top: 5px;
        padding-bottom: 5px;
        text-align: center;
    }
    
        .player .now-playing li {
            height: 50%;
            display: block;
            box-sizing: border-box;
        }
        
        .player .now-playing .song-title {
            color: white;
            font-weight: bold;
            overflow: hidden;
            border-bottom: 1px solid #3B3A3B;
            font-size: 18px;
            line-height: 27px;
        }
        
        .player .now-playing .song-artist {
            color: #929497;
            overflow: hidden;
            font-size: 17px;
            line-height: 27px;
        }
        
    .player .controls {
        margin-top: 10px;
        clear: both;
        /* Hidden instead of auto due to IE overflow issue. */
        overflow: hidden;
    }

        .player .controls li {
            display: inline-block;
            vertical-align: middle;
        }
    
            .player .controls li + li {
                margin-left: 10px;
            }

        .player .controls .pause {
            display: none;
            margin-left: 0px;
        }
        
        .player .controls .unmute {
            display: none;
        }
        
        .player .controls .volume {
            width: 85px;
            height: 14px;
            position: relative;
        }
            .player .controls .volume .volume-knob {
                position: absolute;
                display: block;
                z-index: 10;
                cursor: pointer;
            }

            .player .controls .volume .volume-bar {
                position: absolute;
                margin: auto;
                top: 0;
                bottom: 0;
                width: 85px;
                height: 4px;
                border-radius: 5px;
                background-color: #232323;
                cursor: pointer;
            }
            
            .player .controls .volume .volume-bar-value {
                width: 0%;
                height: 100%;
                border-radius: 5px;
                background-image: url(../Images/volumeSliderFullBG.png);
            }
    
    .player .switch-players-container li {
        text-align: center;
    }

        .player .switch-players-container .player-type {
            float: right;
            margin-top: -3px;
        }
    
    .player .switch-players {
        display: block;
        
        text-decoration: none;
    }
    
    .player .station-select {
        width: 100%;
        height: 100%;
        background-color: #363536;
        box-shadow: 0px -1px 1px black;
        padding: 7px 10px 0px 10px;
        box-sizing: border-box;
        
        position: absolute;
        top: 0;
        left: 0;
        z-index: 25;
        
        display: none;
    }
    
        .player .station-select .afn {
            display: none;
        }
    
        .player .station-select p {
            text-align: center;
            margin-top: 10px;
            margin-bottom: 10px;
        }
    
        .player .station-select .station-list {
            background-color: #231F20;
            border: 1px solid #58595B;
            border-radius: 5px;
            position: relative;
            padding: 0px 0px 10px 10px;
            overflow: auto;
            
            background-image: url('../Images/stationListBackground.png');
            background-repeat: no-repeat;
        }

            .player .station-select .station-list .origin-station {
                display: none;
            }
            
            .player .station-select .station-list button {
                cursor: pointer;
                text-align: left;
                color: #26A9E0;
                font-size: 13px;
            }
            
            .player .station-select .station-list li {
                float: left;
                width: 25%;
                margin-top: 13px;
            }
            
        .player .station-select .back-btn-container {
            position: absolute;
            bottom: 0;
            right: 0;
        }
        .player .station-select button.back-btn {
            color: white;
            margin-bottom: 8px;
        }
        
        .player .station-select button.back-btn img {
            vertical-align: sub;
        }

    .player .local-station-select {
        z-index: 25;
    }
        
        .player .local-station-select .station-list {
            overflow: auto;
            max-height: 65px;
            background-image: none;
        }
        
        .player .local-station-select .back-btn-container {
            position: static;
            float: right;
            margin-top: 10px;
        }

    .player .error-message {
        width: 100%;
        height: 100%;
        background-color: #363536;
        box-shadow: 0px -1px 1px black;
        padding: 17px 28px 28px 28px;
        box-sizing: border-box;
        
        position: absolute;
        top: 0;
        left: 0;
        z-index: 15;
        
        display: none;
    }
    
        .player .error-message p + p {
            margin-top: 5px;
        }
    
        .player .error-message button.back-btn {
            float: right;
            margin-top: 3px;
            font-size: 13px;
        }
            .player .error-message button.back-btn img {
                vertical-align: sub;
            }
    
    .player .help-dialog {
        width: 100%;
        height: 100%;
        background-color: #363536;
        box-shadow: 0px -1px 1px black;
        padding: 17px 28px 28px 28px;
        box-sizing: border-box;
        
        position: absolute;
        top: 0;
        left: 0;
        z-index: 25;
        
        display: none;
        
        overflow: auto;
        
        font-size: 13px;
    }
        
        .player .help-dialog li {
            margin-bottom: 25px;
        }
        
            .player .help-dialog li p+p {
                margin-top: 5px;
            }
        
        .player .help-dialog p {
        }
        
        .player .help-dialog .question {
            color: #26A9E0;
        }
    
        .player .help-dialog button.back-btn {
            float: right;
            margin-top: 3px;
            font-size: 13px;
        }
            .player .help-dialog button.back-btn img {
                vertical-align: sub;
            }