/* CSS for simple html pages.
 * It's located here, because those page can't resolve actual css directory
 * as they are no processes as aspx files.
 */

body {
    font-family: 'Ubuntu', 'Helvetica', 'Arial', sans-serif;
    font-size: 12pt;
    color: #bbb;
    background-color: #222;
    margin: 0;
}

#logo {
    background-color: white;
    height: 120px;
    line-height: 120px;
    width: 100%;
}

#logo-image, #logo-text {
    padding-left: 20px;
    vertical-align: middle;
}

#logo-text {
    color: #07b;
    font-weight: bold;
    font-size: 1.6em;
}

#fullmenu {
    width: 100%;
    text-align: right;
    vertical-align: bottom;
    line-height: 60px;
}

.menu a {
    display: inline-block;
    color: #555;
    cursor: pointer;
    text-decoration: none;
    padding: 0 0.7em;
    white-space: nowrap;
}

.menu a:hover {
    color: #07b;
}


#compactmenu {
    width: 100%;
    font-size: 1.6em;
    margin-left: 1em;
    display: none;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#menupopup {
    position: absolute;
    top: 45px;
    left: 150px;
    background-color: white;
    border: solid 1px #131313;
    border-radius: 5px;
}

#menupopup a {
    display: block;
    padding: 0.5em 1em;
    border-top: 1px solid #aaa;
}

#menupopup a:first-child {
    border-top: none;
}

@media (max-width: 1200px) {
    #logo {
        height: 50px;
        line-height: 50px;
    }

    #compactmenu {
        display: table-cell;
    }

    #fullmenu, #logo-image {
        display: none;
    }
}

#container {
    margin: 0 auto;
    padding: 10px 20px;
    max-width: 1000px;
}

h1, h2, h3, h4 {
    margin-top: 1.5em;
}

h1 {
    font-size: 1.6em;
}

h2 {
    font-size: 1.4em;
}

h3 {
    font-size: 1.4em;
}

h4 {
    font-size: 1.2em;
}

p {
    margin-right: 0;
    margin-left: 0;
    text-align: justify;
}

a {
    color: #07b;
}

.btnButton
{
    border: none;
    border-width: 1px;
    border-bottom-style: solid;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 3px;
    outline: none;
    margin-bottom: 1px;
}

.btnButton:active {
    border-top-style: solid;
    border-bottom-style: none;
}

a.btnButton, a.btnButton:hover {
    text-decoration: none;
}

.btnButtonBlue {
    color: #fff;
    background-color: #07b;
    border-color: #048;
}

.btnButtonBlue:hover {
    background-color: #06a;
}

.btnButtonBlue:active {
    color: #cde;
    background-color: #059;
    border-color: #037;
}

