﻿body {
    padding: 0;
    margin: 0;
    
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #212121;
}

/* ===== HEADER ===== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;

    width: 100%;
    height: 50px;

    background-image: url('images/wood-bg.png');
    background-repeat: repeat-x;
}

#header img {
    display: block;
    margin: auto;

    height: 75%;
    padding-top: 5px;
}

/* ===== TOP TABS ===== */

#tabs-top {
    position: fixed;
    top: 50px;
    left: 0;
    z-index: 500;

    width: 100%;
    height: 50px;

    background-color: #388E3C;
}

#tabs-top a {
    float: left;
    display: block;

    width: 33.33%;
    height: 36px;

    font-weight: 600;
    color: #E8F5E9;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;

    padding-top: 14px;    
}

#tabs-top a:hover {
    background-color: #2E7D32;
    border-radius: 10px;
}

/* ===== MAIN HOME ===== */

#main-home {
    margin-top: 100px;
}

/* ===== BOTTOM TABS ===== */

#tabs-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 500;

    width: 100%;
    height: 50px;

    background-color: #388E3C;
}

#tabs-bottom a {
    float: left;
    display: block;

    width: 50%;
    height: 36px;

    font-weight: 600;
    color: #E8F5E9;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;

    padding-top: 14px;    
}

#tabs-bottom a:hover {
    background-color: #2E7D32;
    border-radius: 10px;
}

/* ===== MAIN ===== */

#main {
    margin-top: 100px;
    min-height: 100vh;

    background-image: url('images/map-blur.png');
    background-repeat: repeat-y;
}

#content {
    padding-top: 1px;
    padding-bottom: 60px;
}

/* ===== INFO BOX ===== */

a.info-box {
    display: block;
    margin: auto;
    margin-top: 10px;
    padding: 5px;

    text-decoration: none;
    background-color: #E8F5E9C9;
    border-radius: 5px;

    width: 90%;
    height: 90px;
}

.info-box img {
    float: left;
    margin: 7px 10px;
    height: 75px;
}

.info-box h3 {
    padding: 0;
    margin-bottom: 0;
    width: 90%;
    color: #572800;
}

.info-box p {
    padding: 0;
    margin: 0;
    width: 90%;
    color: #212121;
}

.info-box img.right {
    float: right;
    margin-top: 30px;
    height: 30px;
}

/* ===== INFO BOX FULL ===== */

#info-box-full {
    display: block;

    background-color: #E8F5E9C9;
    width: 90%;
    margin: auto;
    margin-top: 12px;
    padding: 10px;

    border-radius: 5px;
}

#info-box-full img {
    width: 100%;
    border-radius: 5px;
}

#info-box-full h2 {
    text-align: center;
    text-transform: uppercase;
}