/* Basics */

body {
	padding: 0;
	margin: 0;
	background-color: #5db3ff; /* $21 */
	font-family: arial, sans-serif;
}

a {
	color: #5a1a00; /* $07 */
	text-decoration: none;
}
a:hover {
	color: #9f4a00; /* $17 */
	text-decoration: underline;
}

/* Menu */

ul.menu {
	margin: 0;
	padding: 0;
	width: 100%;
	background-color: #000000;
	color: #ffffff;
	text-align: center;
	border-collapse: collapse;
}
ul.menu li {
	display: inline-block;
	width: 18%;
	font-size: 4vw;
	margin: 0;
}
ul.menu li:hover {
	background-color: #002d69; /* $01 */
}
ul.menu li a {
	text-decoration: none;
	display: block;
	color: #ffffff;
	padding: 0.5em 0 0.5em 0;
}

@media (min-width: 992px) {
ul.menu li {
	font-size: 1.5em;
}
}

/* Tables */

table {
	width: 80%;
	margin: auto;
	border: 1px solid black;
	border-collapse: collapse;
}
tr {
	margin: 0px;
}
tr:hover {
	background-color: #bcdfff; /* $31 */
}
tr.link {
	cursor: pointer;
}
td {
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	margin: 0px;
	padding: 0.5em;
}
td span {
	white-space: nowrap;
}
th.big {
	width: 100%;
}

/* Generic utils */

.fullpage {
	position: absolute;
	top: 0%;
	left: 0%;
	height: 100%;
	width: 100%;
}

.inner-center {
	text-align: center;
}

.inactive {
	display: none;
}

/* Page layout */

.logo {
	margin-top: 1em;
	text-align: center;
}
.logo img {
	width: 75%;
}

@media (min-width: 992px) {
.logo img {
	width: 560px;
}
}

#content {
	margin-top: 1em;
	font-size: 3vw;
}

@media (min-width: 992px) {
#content {
	font-size: 1em;
	padding-left: 16px;
	padding-right: 16px;
}
}

#footer {
	position: fixed;
	top: 95%;
	height: 5%;
	width: 100%;
	background-color: #000000;
	text-align: center;
}

#footer-space {
	position: static;
	height: 6vh;
	width: 100%;
}

#footer.inflow {
	position: static;
	height: 5vh;
}

#footer img {
	height: 80%;
	vertical-align: center;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	margin-left: 1em;
}

.videoblock {
	text-align: center;
}
.video {
	display: inline-block;
	position: relative;
	width: 80%;
	height: 0;
	padding-bottom: 56.25%;
}
.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-color: #656565;
	border-style: solid;
}

@media (min-width: 992px) {
.video {
	display: inline-block;
	position: static;
	width: auto;
	height: auto;
	padding-bottom: 0;
}
.video iframe {
	position: static;
	top: 0;
	left: 0;
	width: 800px;
	height: 450px;
}
}

.textblock {
	text-align: center;
	margin-top: 2em;
	padding-left: 1em;
	padding-right: 1em;
}
.textblock p {
	margin: 0;
}
.textblock .textnote {
	font-size: x-small;
}

.big-screen {
	display: none;
}

@media (min-width: 992px) {
.big-screen {
	display: block;
}
}

@media (min-width: 992px) {
.tiny-screen {
	display: none;
}
}

.center {
	position: fixed;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}

.text-section {
	padding-left: 1em;
	padding-right: 1em;
	color: #000000;
}

@media (min-width: 992px) {
.text-section {
	font-size: 1.5em;
}
}
