body {
    background: rgb(70,70,70);
}

a {
    text-decoration: none;
    color: white;
}

.header {
    position: absolute;
    left: 10%;
    top: 10%;
    font-family: 'Inconsolata', sans-serif;
    font-size: 50pt;
    color: rgb(200,200,200);
}

.header a {
    color: rgb(217, 154, 32);
}

.content {
    position: absolute;
    left: 440px;
    right: 100px;
    min-width: 300px;
    min-height: 300px;
    overflow: auto;
    top:10%;
    margin-top: 100px;
    bottom: 10%;
    font-family: 'Inconsolata', sans-serif;
    font-size: 12pt;
    color: white;
    background: rgb(40,40,40);
    padding: 35px;
    z-index: 999;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.navigation {
    position: absolute;
    display: block;
    left: 100px;
    top:10%;
    margin-top: 100px;
    font-size: 20pt;
    bottom: 10%;
    width: 300px;
    min-height: 330px;
    padding: 20px;
    background: rgb(50,50,50);
    font-family: 'Inconsolata', sans-serif;
    float: left;
    z-index: 999;
    overflow: auto;
    overflow-x: hidden;
}

.navigation a:hover {
    color: rgb(217, 154, 32);
}

.subnavigation {
    position: relative;
    display: block;
    left: 50px;
    top:10px;
    font-family: 'Inconsolata', sans-serif;
    font-size: 13pt;
    float: left;
    padding-right: 10px;
    z-index: 999;
}

.subnavigation a {
    color: rgb(175,175,175);
}

.subnavigation a:hover {
    color: rgb(125,125,125);
}

.title {
    font-size: 20pt;
    font-weight: 700;
    margin-bottom: 20px;
}

.text {
    font-size: 12pt;
    font-weight: 400;
}

.text a {
    color: green;
}

.form {
    background: rgb(38,38,38);
    padding: 10px;
}

#ifcontent {
    width: 100%;
    height: 100%;
    border:0;
}

#maximizer, #normalizer {
    position: absolute;
    right: 1em;
    top: 1em;
    z-index: 1000;
    background: rgba(125,125,125,0.75);
    border-radius: 3em;
    height: 3em;
    width: 3em;
    cursor: hand;
    user-select: none;
    text-align: center;
    vertical-align: middle;
}

#normalizer {
    right: 5em;
}

.maximized {
    z-index: 999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
}