body {
    background-color: white;
    color: #555;
    
    font-family: "Roboto Condensed";
    font-weight: 400;

    overflow: hidden;
}

a {
    color: white;
    text-decoration: none;

    transition: background-color 0.2s ease;
}

a:link {
    color: white;

    text-decoration: none;
}

a:visited {
    color: white;

    text-decoration: none;
}

a:hover {
    background-color: white;
    color: #3399cc;
}

div.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;

    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;

    border: 0px;
    margin: 0px;
    padding: 0px;
}

div.container > div.linklist {
    flex-shrink: 1;
    flex-grow: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-contents: space-evenly;

    width: 100%;
    padding: 0px;
    margin: 0px;
    border: 0px;
    border-top: 3px solid white;

    background-color: #3399cc;
    color: white;
}

div.linklist > a {
    margin: auto;
    padding: 0.2em 0px;
    border: 0px;
    text-align: left;
}

div.linklist > a:after {
    content: "\25b8";
    left-margin: 0.1em;
}

div.container > h2 {
    font-weight: normal;
    text-align: center;

    width: 100%;
    margin: auto;
    padding: 1em 0px;

    flex-grow: 0;
    flex-shrink: 1;
}

div.container > div.event {
    width: 100%;
    border: 0px;
    margin: 0px;
    padding: 0px;
    flex-grow: 1;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;

    background-color: #3399cc;
    color: white;
    font-size: large;
}

div.event > div.piece {
    border-bottom: 1px solid #000;
    border-top: 1px solid #555;
    
    display: flex;
    flex-direction: column;

    flex-grow: 0;
    flex-shrink: 1;
}

div.event > div.growing {
    flex-grow: 1;
}

div.event > div.area {
    text-align: center;

    padding: 1em 0px;
}

div.area > span {
    display: initial;
}

div.event > div.details {
    flex-direction: row;
    justify-content: space-around;

    padding: 1em 0px;
}

div.details > * {
    display: initial;
}

div.event > .right {
    text-align: right;
}

div.event > .left {
    text-align: left;
}

div.event > .large {
    font-size: larger;
}

div.event > div.piece:first-child {
    border-top: 0px;
}

div.event > div.piece:last-child {
    border-bottom: 0px;
}

div.piece > * {
    height: auto;
    margin: auto 0px;
    padding: 0px 1em;

    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
}

div.piece span.label {
    /*    color: #555; */
    color: black;
    /* font-weight: bold; */
    text-align: left;
}

div.piece span.value {
    text-align: right;
}

div.container > div.disclaimer {
    flex-shrink: 1;

    margin: 0px;
    border: 0px;
    padding-right: 1em;
    width: 100%;
    box-sizing: border-box;

    background-color: #555;
    color: white;

    text-align: right;
    font-size: xx-small;
}

@media only screen and (min-width: 800px) {
    div.container > div.linklist {
	flex-direction: row;
    }

    div.linklist > a {
	min-width: 25%;
	flex-grow: 1;

	border-right: 1px solid #000;
	border-left: 1px solid #555;
	text-align: center;
    }

    div.linklist > a:first-child {
	border-left: 0px;
    }

    div.linklist > a:last-child {
	border-right: 0px;
    }

    div.container > div.event {
	flex-direction: row;
    }

    div.event > div.piece {
	border-right: 1px solid #000;
	border-left: 1px solid #555;
	border-top: 0px;
	border-bottom: 0px;
    }

    div.event > div.piece:first-child {
	border-left: 0px;
    }

    div.event > div.piece:last-child {
	border-right: 0px;
    }

    div.event > div.area {
	text-align: right;
	padding: 0px;
    }

    div.event > div.details {
	flex-direction: column;
	padding: 0px;
    }

    div.details > * {
	display: flex;
    }

    div.piece span.label {
	text-align: left;
	width: auto;
    }

    div.piece span.value {
	text-align: left;
	width: auto;
    }
}
