html, body {
    width: 950px;
    margin: auto;
    /*background-color: #D7E1EF;*/
    background-color: white;
    font-family: calibri;
    font-size: 15px;
}

#header {
    background-color: white;
    height: 140px;
    padding: 10px;
}

#header a {
    text-decoration: none;
}

#menu {
    background-color: #00a3e2;
    height: 40px;
    line-height: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
}

#menu a {
    color: white;
    text-decoration: none;
    margin-right: 40px;
    padding: 10px;
}

#menu a:hover {
    background-color: #40BBE9;
}

#menu a.active {
    background-color: #40BBE9;
}

#content {
    background-color: white;
    padding: 10px;
}

#footer {
    text-align: center;
    color: #003768;
}

#debug {
    background-color: red;
    padding: 10px;
}

.bold {
    font-weight: bold;
}

h1 {
    color: #003768;
    font-size: 26px;
    font-weight: normal;
    padding-top: 0px;
    margin-top: 0px;
    margin-bottom: 10px;
}

.tab {
    display: flex;
    flex-direction: row;
}

.tab_left {
    flex: 30%;
    border-right-color: rgb(192, 192, 192);
    border-right-style: dashed;
    border-right-width: 1px;
}

.tab_right {
    flex: 70%;
    padding-left: 20px;
}

.tab_left .container {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
}

.tab_left .arrow img {
    margin-top: 6px;
}

.tab_left .container a {
    color: black;
    text-decoration: none;
}

.tab_left .container .active {
    font-weight: bold;
}

.image {
    max-width: 100%;
    border: solid 1px #aaaaaa;
}

.arrow {
    margin-right: 20px;
}

.link {
    color: #00AEEF;
    font-size: 16px;
}