html {
    height: 110%;
}

body {
    background-image: url(img/bg.png);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

body,td {
    font-size: 14pt;
    color: #555;
}

a,a:visited {
    color: #000;
    font-weight: bold;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

header {
    width: 100%;
    background: linear-gradient(to bottom , rgba(255,255,255,1), rgba(255,255,255,1) , rgba(255,255,255,0));
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

#menuDiv {
    width: 400px;
    background-color: rgba(255,255,255,.8);
    position: fixed;
    top: 10px;
    right: 10px;
    transition: all .3s;
}

#menuDiv.menuDiv {
    right: -410px;
}

.menuLink {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

#menuTrigger {
    position: fixed;
    top: 20px;
    right: 430px;
    background: #fed9cf;
    transition: all .5s;
}

#menuTrigger.menuTrigger {
    right: 10px;
}

#logo {
    height: 80px;
    margin: 10px;
    transition: all .3s;
}

article {
    margin: 90px 15px 100px 15px;
    padding: 5px;
    border-radius: 10px;
}

footer {
    width: 100%;
    background: #FFF;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 10pt;
}

#cover {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 50;
}

#cover.cover {
    display: none;
}