
#header
{
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	height: 40px;

	background: #222;
    opacity: .9;

    min-width: 600px;
    overflow: hidden;
    white-space: nowrap;
}

#sidebar
{
    position: fixed;
    top: 40px;
    left: 0;
    width: 20%;
    bottom: 40px;
    resize: none;
    background: #333;
    color: #fff;
    border: 0;
    overflow: auto;
}

#content-scroll
{
    width: 100%;
    /*max-width: 1200px;*/
    min-width: 600px;
    padding: 20px 0 80px 0;
    margin: auto;
}

#content-noscroll
{
    position: fixed;
    left: 20%;
    right: 0;
    top: 40px;
    bottom: 40px;
    margin: 0 .1em;
    overflow: hidden;
}

#footer
{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;

    opacity: .95;
    color: #fff;

    background: linear-gradient(to bottom,
        rgba(0,0,0,0)     0%,
        rgba(0,0,0,0.5)   5%,
        rgba(0,0,0,0.75) 10%,
        rgba(0,0,0,0.90) 20%,
        rgba(0,0,0,0.99) 30%,
        rgba(0,0,0,1)    40%,
        rgba(0,0,0,1)    50%,
        rgba(0,0,0,1)    60%,
        rgba(0,0,0,1)    70%,
        rgba(0,0,0,1)    80%,
        rgba(0,0,0,1)    90%,
        rgba(0,0,0,1)   100%);

    padding: 0;
    font-size: 1.5em;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    overflow: hidden;
    white-space: nowrap;
}

#status
{
    position: fixed;
    left: 0;
    bottom: 0;
    height: 40px;
    opacity: 0;
    display: none;
    color: #fff;
    padding: 0 1em;
    font-size: 1em;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
/*
    border-radius: 1em;
*/
    z-index: 1;
}

.indicator
{
    display: block;
    float: right;

    font-size: .5em;
    margin: .25em;
    padding: .5em;
    color: #eee;
/*
    border: 2px solid #aaa;
    border-radius: 1em;
*/
    z-index: 2;
}

.button
{
    font-size: 1.4em;
    float: left;
    margin: .1em;
    padding: .1em .4em;
    border-radius: .5em;
    background: #444;
    color: #ccc;
    cursor: pointer;
}

.button:hover
{
    color: #fff;
}



