@charset "utf-8";

html
{
    width: 100%;
    height: 100%;
}
body
{
    display: flex;
    flex-flow: row wrap;
    max-width: 90em;
    font-family: Special Elite;
    font-size: 1.0em;
    text-decoration: none;
    color: #000000;
    font-weight: normal;
    margin: 0;
    background-color: #ffffff;
    width: 100%;
    height: 100%;
}
header
{
    flex: 1 1 100%;
    margin: 0.4em;
    text-align: center;
}
main
{
    flex: 1 1 100%;
    text-align: center;
}
footer
{
    flex: 1 1 100%;
    display: flex;
    flex-flow: row wrap;
    text-align: right;
    padding: 0.6em;

}
img
{
    margin: 0;
    width: 95%;
}
.logo
{
    width: 50%;
}
.img_noresize
{
    width: inherit;
}
nav
{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}
.menu_top
{
    width: 10.4em;
    height: 2.213em;
    margin-top: 1.2em;
    background-image: url(images/menuo.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.menu_middle
{
    width: 10.4em;
    display: flex;
    flex-flow: row nowrap;
}
.menu_bottom
{
    width: 10.4em;
    height: 3.333em;
    background-image: url(images/menuu.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.menu_header
{
    width: 10em;
    font-size: 1.0em;
    line-height: 0.8em;
    top: -0.5em;
    text-align: center;
    position: absolute;
    font-weight: bold;
}
.menu_left
{
    background-image: url(images/menul.png);
    background-repeat: repeat-y;
    background-size: 100%;
    width: 2.5em;
}
.menu_center
{
    width: 26.5em;
    display: flex;
    flex-direction: column;
    color:#FFFFFF;
    background-color: #000000;
    margin: 0;
    padding-top: 1em;
    text-align: center;

}
.menu_center div
{
    margin: 0.3em;
}
.menu_center_small
{
    font-size: 0.66em;
    font-weight: normal;
}
.menu_right
{
    background-image: url(images/menur.png);
    background-repeat: repeat-y;
    background-size: 100%;
    width: 2.5em;
}
nav a { color:#FFFFFF; font-size:1em; }
nav a:link { color:#FFFFFF; font-size:1em;}
nav a:visited { color:#FFFFFF; font-size:1em; }
nav a:active { color:#FFFFFF;font-size:1em;}
nav a:hover { color:#0080FF;font-size:1em;}
.active_nav_a { color:#0080FF;font-size:1em; font-weight:bold; }

.player_play
{
    border: none;
    background: inherit;
    width: 1.0em;
    height: 1.0em;
    background-image: url(images/play.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
}
.player_play:hover
{
    background-image: url(images/play_hover.png);
}
.player_pause
{
    border: none;
    background: inherit;
    width: 1.0em;
    height: 1.0em;
    background-image: url(images/pause.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
}
.player_pause:hover
{
    background-image: url(images/pause_hover.png);
}
.player_forward
{
    border: none;
    background: inherit;
    width: 1.0em;
    height: 1.0em;
    background-image: url(images/forward.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
}
.player_forward:hover
{
    background-image: url(images/forward_hover.png);
}
.player_stop
{
    border: none;
    background: inherit;
    width: 1.0em;
    height: 1.0em;
    background-image: url(images/stop.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    vertical-align: middle;
}
.player_stop:hover
{
    background-image: url(images/stop_hover.png);
}
.player_progress {
    display: inline-block;
    width: 7em;
    height: 0.4em;
    border-radius: 0.2em;
    background-color: #bbbbbd;
    overflow: hidden;
    vertical-align: middle;
}
.player_progress.loading
{
    background-image: -webkit-linear-gradient(-45deg, #bbbbbd 25%, transparent 25%, transparent 50%, #bbbbbd 50%, #0080FF 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(-45deg, #bbbbbd 25%, transparent 25%, transparent 50%, #bbbbbd 50%, #0080FF 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(-45deg, #bbbbbd 25%, transparent 25%, transparent 50%, #bbbbbd 50%, #0080FF 75%, transparent 75%, transparent);
    background-image: linear-gradient(-45deg, #bbbbbd 25%, transparent 25%, transparent 50%, #bbbbbd 50%, #0080FF 75%, transparent 75%, transparent);
    background-size: 0.5em 0.5em;
    -webkit-animation: loadingStripes 700ms linear infinite;
    -moz-animation: loadingStripes 700ms linear infinite;
    -ms-animation: loadingStripes 700ms linear infinite;
    -o-animation: loadingStripes 700ms linear infinite;
    animation: loadingStripes 700ms linear infinite;
}
.player_progress_bar {
    -webkit-transition: width 200ms linear;
    -moz-transition: width 200ms linear;
    -o-transition: width 200ms linear;
    transition: width 200ms linear;
    display: block;
    height: 100%;
    width: 0;
    max-width: 100%;
    background-color: #0080FF;
    border-radius: 0.7;
}
.player_info
{
    vertical-align: middle;
}

@media all and (min-width: 27em)
{
    img
    {
        width: inherit;
    }
    .logo
    {
        width: inherit;
    }
}
@media all and (min-width: 55em)
{
    header
    {
        flex: 0 1 14.4em;
    }
    main
    {
        flex: 1 1 0%;
    }
    .menu_top
    {
        margin-top: 1.2em;
        width: 15.6em;
        height: 3.32em;
    }
    .menu_middle
    {
        width: 15.6em;
    }
    .menu_bottom
    {
        width: 15.6em;
        height: 5em;
    }
    .menu_header
    {
        width: 12.5em;
        font-size:1.2em;
        line-height: 1.0em;
        top: -0.5em;
    }
    .menu_left
    {
        width: 2.5em;
    }
    .menu_center
    {
        width: 26.5em;
        padding-top: 1em;

    }
    .menu_right
    {
        width: 2.5em;
    }
    nav a { font-size:1.3em; }
    nav a:link { font-size:1.3em;}
    nav a:visited { font-size:1.3em; }
    nav a:active { font-size:1.3em;}
    nav a:hover { font-size:1.3em;}
    .active_nav_a { font-size:1.3em; }

    .player_play
    {
        width: 1.4em;
        height: 1.2em;
    }
    .player_pause
    {
        width: 1.4em;
        height: 1.2em;
    }
    .player_forward
    {
        width: 1.4em;
        height: 1.2em;
    }
    .player_stop
    {
        width: 1.4em;
        height: 1.2em;
    }
    .player_progress {
        width: 10em;
        height: 0.5em;
        border-radius: 0.2em;
    }
}

p
{
    font-size:1em;
    text-decoration:none;
    color:#000000;
    font-weight:normal;
}
h1
{
    font-size:1.4em;
    text-decoration:underline;
    color:#000000;
    font-weight:bold;
}
h2
{
    font-size: 1.2em;
    text-decoration: none;
    font-style: normal;
    color: #000000;
    font-weight: bold;
}

a { font-size:1em; text-decoration:none; color:#000000; font-weight:bold;}
a:link { font-size:1em; text-decoration:none; color:#0080FF; font-weight:bold; }
a:visited { font-size:1em; text-decoration:none;  color:#0080FF; font-weight:bold; }
a:hover { font-size:1em; text-decoration:none; color:#0000FF; font-weight:bold; }
a:active { font-size:1em; text-decoration:none;  color:#0080FF; font-weight:bold; }

ul
{
    display: inline-block;
}

.media
{
    text-align: center;
    vertical-align: middle;
}

.hidden
{
    visibility: hidden;
}

.legal
{
    flex: auto;
    text-align: center;
    font-size:0.9em;
}
.legal a
{
    padding: 0.2em
}

.lyrics_author
{
    font-style: italic;
}

.emphasized
{
    font-weight: bold;
    font-size: 1.1em;
}