html {
    scroll-behavior: smooth;
}

.header {
    position: relative;
    width: var(--content-width);
    height: 128px;
    font-size: 10pt;

    background-color: #fff;

    overflow-x: auto;
    overflow-y: hidden;
}

.header-container {
    position: fixed;
    top: 0px;
    left: 0px;

    width: max(100%, var(--content-width));
    display: flex;
    flex-direction: row;
    justify-content: center;

    background-color: white;

    border-bottom: 2px solid #8c8c8c;

    z-index: 100;
}
:root {
    --content-width: 900px;
}

a {
    text-decoration: none;
    color: black;
}

p a:hover {
    text-decoration: none;
    color: gray;
}

body{
    margin: 0;
	padding: 0;
	background: #ebe5e5 /*url(images/img01.png)*/;
	background-repeat: no-repeat;
	font: normal 16px Tahoma, Arial, Helvetica, sans-serif;
	color: #666666;
}
h1 {
	text-transform: uppercase;
	font-size: 18px;
}

h2 {
	text-transform: uppercase;
	font-size: 18px;
}

.page {
    width: min(var(--content-width), 120vw);
    min-height: fit-content;
    margin: 0 auto;
    padding-top: 100px;

    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;

    border-top: none;
}

.menu {
    width: calc(100% - 128px);
    height: 48px;

    position: absolute;
    top: 0px;
    right: 0px;
    overflow-x: auto;
    overflow-y: hidden;

    display: flex;
    flex-direction: row;
    justify-content: left;
    flex-wrap: nowrap;

    background-color: #fff;
}

.menu a {
    height: 48px;
    padding: 0px 20px;
    color: #505050;
    font-size: 12pt;
    line-height: 40px;
    float: left;
    position: relative;
    transition: 0.125s;

    border-left: 2px solid #0000;
    border-right: 2px solid #0000;
}

.menu a:hover {
    color: #000;
    padding: 0px 20px;
}

#active {
    height: 46px;
    padding: 0px 20px;
    color: #000;
    font-size: 12pt;
    line-height: 36px;
    float: left;
    position: relative;

    border: 2px solid #c8c8c8;
    border-bottom: none;
}

.menu a:hover,
#active {
    background: #c8c8c888;
}

.footer {
    width: 100%;
    border-top: 1px solid #c8c8c8;
    text-align: center;
    font-size: 10pt;

    background-color: #fff;

    overflow-x: auto;
    overflow-y: hidden;
    justify-content: center;

    background-color: white;

    border-bottom: 2px solid #8c8c8c;
}

