body, html {
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Open Sans', Tahoma, Geneva, sans-serif;
    background-image: url("../img/bg_06.jpg");
    background-size: 100%;
    color: #000000;
}

@media screen and (max-width: 1300px) {
    body {
        background-size: auto;

    }
}

.container {
    max-width: 1000px;
    min-height: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container > * {
    padding: 2em 20px;
}

main {
    display: flex;
    margin-bottom: auto;
}


@media screen and (max-width: 768px) {
    main {
        flex-direction: column-reverse;

    }
}

main aside {
    margin-right: 40px;
    padding: 0 1em 1em 1em;
    text-align: right;
}

aside > ul {
    list-style: none;
    margin-top: 0;
    padding-top: 1em;
}

aside > ul > li {

    text-transform:uppercase;
    margin-bottom: 1em;
}

aside > ul > li > a {
    background-color: white;
    color: black;
    text-decoration: none;
    padding: 0.2em;
    margin: 0;
}

aside > ul > li > a:hover {
    text-decoration: none;
    background-color: black;
    color: #ffffff;
    padding: 0.2em;
    margin: 0;
}

.content {
    background-color: #ffffff;
    padding: 1em;
    margin-bottom: 2em;
}

a {
    text-decoration: none;
    color: #777;
}

a:hover {
    text-decoration: underline;
}

.bglogo {
    background-image: url("../img/logo_200x209.jpg");
    background-repeat: no-repeat;
    background-position: 1em;
}

p {
    line-height: 1.5em;

}

table td {
    vertical-align: top;
    font-size: 0.8em;
}