﻿#DirectoryMainContainer {
    display: block;
    width: 100%;
    height: auto;
    margin: 20px 0px 0px 0px;
    padding: 15px 5px;
    display: inline-block;
}

    #DirectoryMainContainer h2 {
        width: 100%;
        display: block;
        color: white;
        font-weight: 900;
        text-align: center;
        font-size: 24px;
        margin-bottom: 20px;
        /*background-color: red;*/
    }

#DirectoryLeftPanel {
    display: block;
    float: left;
    width: 250px;
    height: auto;
    margin: 5px;
    padding: 20px 0px;
    /*display: inline-block;*/
    /*background-color: rgba(128, 128, 128, 0.5);*/
    background-color: #323946;
    /*border: solid 1px #323946;*/
    /*border-radius: 1%;*/
}


#DirectoryRightPanel {
    display: block;
    max-width: 900px;
    min-width: 300px;
    height: auto;
    margin: auto;
    padding: 0px;
    display: inline-block;
    /*background-color: pink;*/
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: left;
    justify-content: left;
    /* You can set flex-wrap and flex-direction individually */
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    /* Or do it all in one line with flex flow */
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    /* tweak the where items line up on the row */
    /* valid values are: flex-start, flex-end, space-between, space-around, stretch */
    -webkit-align-content: flex-start;
    align-content: flex-start;
}

    #DirectoryRightPanel a {
        color: #323946;
        font-weight: bold;
        text-decoration: none;
    }

#DirectoryStationListing {
    margin: 20px 0px 0px 0px;
    padding: 15px 5px;
    background: rgba(0,0,0,0.25);
    display: inline-block;
    border-radius: 7px;
}

.genreListItem {
    position: relative;
    width: 250px;
    height: 30px;
    padding: 0px 15px;
    font-size: 0.9em;
    line-height: 30px;
    vertical-align: middle;
    color: white;
}

    .genreListItem:hover {
        background-color: #24a3d8;
    }

.genreListItemLink {
    color: white;
    width: 235px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 15px;
}

.genreListItemLink a {
    display: block;
}

.genreListItemCount {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 220px;
    font-size: 0.9em;
    line-height: 30px;
    vertical-align: middle;
    color: white;
    z-index: 10;
}





.genreListItemLink a, .genreListItemLink a:link, .genreListItemLink a:visited {
    color: white;
    text-decoration: none;
}


.stationListing {
    width: 235px;
    min-height: 160px;
    /*background: rgba(0,0,0,0.25);*/
    margin: 20px;
    display: table;
    border: solid 1px #aeaeae;
    color: black;
}


.stationListingLogoCircle {
    float: left;
    border-radius: 50%;
    behavior: url(PIE.htc); /* remove if you don't care about IE8 */
    width: 64px;
    height: 64px;
    margin: -24px 20px 0px -24px;
    background-color: white;
    border: solid 1px #aeaeae;
}

.stationListingLogoRectangle {
    display: block;
    width: 235px;
    height: 127px;
    /*background-color: pink;*/
    background-color: #E4E4E4;
    background-image: linear-gradient(top, #6d6d6d 0%, #3d3d3d 51%);
    background-image: -webkit-linear-gradient(top, #6d6d6d 0%, #3d3d3d 51%);
    background-image: -ms-linear-gradient(top, #6d6d6d 0%, #3d3d3d 51%);
    background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0, #6d6d6d), color-stop(0.51, #3d3d3d) );
    overflow: hidden;
}


.stationListingTitle {
    float: left;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.8em;
    color: #323946;
    margin-left: 10px;
    text-decoration: underline;
    /*CONDENSE TEXT*/
    display: inline-block;
    max-width: 170px;
    overflow:hidden;
}

.stationListingSlogan {
    /*float: left;*/
    display: block;
    width: 100%;
    clear: both;
    margin: 50px 0px 0px 20px;
    font-family: 'Quicksand', sans-serif;
    font-size: 10px;
    color: white;
    /*margin: 10px 0px 0px 0px;*/
}

.stationListingStreamingType {
    /*display: table-row;*/
    font-size: 0.8em;
    vertical-align: bottom;
    height: 3px;
    text-align: right;
    margin-right: 10px;
    float: right;
}
