/*
ensure that all HTML elements have the box-sizing property 
set to border-box. This makes sure that the padding and 
border are included in the total width and height of 
the elements
*/
* {
	box-sizing: border-box;
}

body {
	background-color: black;
	font-family: Verdana, sans-serif;
	line-height: 1.5;
	margin: 0px;
}

.nav-bar {
	position: fixed;
	top: 6px;
	width: 80%;
	margin-left: 10%;
	margin-right: 10%;
	z-index: 2;
	filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.5));
}

.nav-bar-4e > a {
	width: 25%;
}

.nav-bar-5e > a {
	width: 20%;
}

.nav-bar-6e > a {
	width: 16.667%;
}

.nav-bar>a {
	text-decoration: none;
	display: block;
	float: left;
	text-align: center;
	font-family: Helvetica Neue, arial, sans-serif;
	font-size: 16px;
	font-weight: normal;
	color: white;
	/* border-radius: 4px;*/
	padding-top: 4px;
	padding-bottom: 4px;
	color: white;
	text-shadow: 0px 0px 4px #000000;
	background-color: grey;
	background-image: linear-gradient(-180deg, #707171 0%, #444546 90%);
	border: 1px solid rgba(16, 16, 16, 0.5);
	border-right: none;
}

.nav-bar>a:first-child {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

.nav-bar>a:last-child {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	border-right: 1px solid rgba(16, 16, 16, 0.5);
}

.nav-bar>a:hover {
	background-image: linear-gradient(-180deg, #8d9090 0%, #888b8e 90%);
	color: white;
}

.nav-bar>a[current] {
	text-shadow: 0px 0px 4px yellow;
}

.nav-bar>a>img {
	filter: drop-shadow(0px 0px 4px #000000);
}

.nav-bar>a[current]>img {
	filter: drop-shadow(0px 0px 4px yellow);
}

.inline-picture {
	object-fit: contain;
	height: 20px;
	width: auto;
	vertical-align: bottom;
}

.flow {
	margin: 0px 0px 0px 0px;
	width: 100%;
	background-color: black;
}

.flow>div {
	padding-left: 10%;
	padding-right: 10%;
	width: 100%;
	clear: both;
}

.separated {
	border-top: 1px solid rgba(128, 128, 128, 0.5);
}

.tabs {
	background-color: #000000;
	background: repeating-linear-gradient(135deg, #fff100 0px, #fff100 8px, #000000 8px,
		#000000 16px);
	/* padding */
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 16px;
	padding-right: 16px;
}


.tabs>a {
	/* structure */
	display: inline;
	vertical-align: top;
	/* margin */
	margin-right: 8px;
	/* padding */
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 16px;
	padding-right: 16px;
	/* font */
	font-family: Helvetica Neue, arial, sans-serif;
	font-weight: bold;
	font-size: 24px;
	text-shadow: 0px 0px 2px rgba(128, 128, 128, 0.1);
	cursor: pointer;
	text-decoration: none;
	user-select: none;
	background-repeat: repeat-x;
	background-position: -1px -1px;
	background-size: 110% 110%;
	color: #000000;
	font-weight: normal;
	font-size: 16px;
	padding-bottom: 2px;
	padding-left: 16px;
	padding-right: 16px;
}

.tabs>a:hover {
	background-color: #35ce48;
	color: #efffe7;
	border-radius: 4px;
}

.header, .band {
	background-size: cover;
	/*background-position: 50% 0;*/
	background-position-x: center;
	background-position-y: center;
}

.band {
	height: 600px;
}


.banner {
	height: 600px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.header {
	height: 256px;
}

.row {
	/*
	padding-left: 10%;
	padding-right: 10%;
	clear: both;
	*/
	padding-top: 8px;
	padding-bottom: 8px;
}


.landing-zone {
	padding-top: 32px;
}

.page-break {
	padding-bottom: 64px;
}

/* max-width for low-resolution screens */
@media screen and (max-width: 800px) , screen and (orientation:
	portrait) {
	.item {
		padding-left: 0px;
		padding-right: 0px;
	}
}

.column-1 {
	width: 8.33%;
}

.column-2 {
	width: 16.66%;
}

.column-3 {
	width: 25.00%;
}

.column-4 {
	width: 33.33%;
}

.column-5 {
	width: 41.66%;
}

.column-6 {
	width: 50.00%;
}

.column-7 {
	width: 58.33%;
}

.column-8 {
	width: 66.66%;
}

.column-9 {
	width: 75.00%;
}

.column-10 {
	width: 83.33%;
}

.column-11 {
	width: 91.66%;
}

.column-12 {
	width: 100%;
}

[class*="column-"] {
	display: table-cell;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 16px;
	padding-right: 16px;
	/*border: 1px dashed rgba(128, 128, 128, 0.5);*/
	vertical-align: top;
	/*height: 100px;  /!\ to be removed */
}

/* max-width for low-resolution screens */
@media screen and (max-width: 800px) , screen and (orientation:
	portrait) {
	[class*="column-"] {
		width: 100%;
		display: block;
	}
}

img {
	object-fit: contain;
	width: 100%;
}


h1 {
	margin-top: 0px;
	margin-bottom: 0px;
	vertical-align: top;
	font-family: Helvetica Neue, arial, sans-serif;
	font-weight: lighter;
	font-size: 32px;
}

h2 {
	margin-top: 0px;
	margin-bottom: 0px;
	vertical-align: top;
	font-family: Helvetica Neue, arial, sans-serif;
	font-weight: normal;
	font-size: 20px;
}

p, li {
	vertical-align: top;
	font-family: Helvetica Neue, arial, sans-serif;
	font-size: 16px;
	font-weight: normal;
}

p {
	margin-top: 8px;
	margin-bottom: 0px;
}

ul {
	list-style-type: disc;
	margin-block-start: 0px;
	margin-block-end: 0px;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	padding-inline-start: 16px;
}

.flybox {
	position: relative;
	background-color: rgba(0, 0, 0, 0.5);
	width: 50%;
	padding: 8px 8px 8px 8px;
	overflow: hidden;
	max-height: 80%;
	font-family: Helvetica Neue, arial, sans-serif;
}

.flybox>div:first-child {
	font-size: 32px;
	font-weight: lighter;
	text-shadow: 0px 0px 4px #000000;
	color: white;
}

.flybox>div:nth-child(2) {
	font-size: 16px;
	font-weight: normal;
	color: white;
}

/* max-width for low-resolution screens */
@media screen and (max-width: 800px) , screen and (orientation:
	portrait) {
	.flybox {
		top: 10%;
		left: 10%;
		width: 80%;
	}
}

[class*="column-"] a {
	width: auto;
	margin-top: 16px;
	position: relative;
	border: 1px solid yellow;
	border-radius: 8px;
	color: yellow;
	padding-left: 4px;
	padding-top: 2px;
	padding-right: 4px;
	padding-bottom: 2px;
	text-decoration: none;
	background-color: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	text-decoration: none;
}

[class*="column-"] a:hover {
	border: 1px solid yellow;
	background-color: rgba(255, 255, 0, 0.1);
}