:root {
	--theme-color: #006080;
	--theme-contrast-color: #ffffff;
	--theme-focus-color: rgba(255,255,255,0.2);
}

* {
	box-sizing: border-box;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14pt;
	background-color: var(--theme-contrast-color);
}

/* body tag in index.html */
#body {
	top:0px;
	bottom:0px;
	margin:0;
	padding:0;
	width: 100%;
	height: 100%;
}

/* Style the header */
header div{
	display: flex;
	align-items: center;
	width: 100%;
	padding: 5px;
	padding-left: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	color: white;
}

/* header tag in index.html */
#header {
	background-color: var(--theme-color);
	position: static;
}

/* section tag in index.html */
#panel {
	position: fixed;
	width: 100%;
}


iframe {
  position:static;
	width:100%;
	border: none;
}

nav {
	border-top: 1px solid var(--theme-contrast-color);
	width: 100%;
	height: 100%;
	padding: 8px 8px 8px 8px;

	display: none;
	grid-gap: 10px 10px;
	grid-template-columns: auto auto auto auto auto auto auto auto auto auto auto auto;
}

/* Style the footer */
footer {
	position: static;
	border-top: 2px dotted black;
	bottom: 0;
	width: 100%;
	background-color: var(--theme-color);
	padding: 8px 8px 8px 8px;
	text-align: center;
	color: white;
}

/* Logo in Header */
header svg {
	position: auto;
	max-width: 50px;
	max-height: 50px;
	min-width: 50px;
	min-height: 50px;
	background-color: white;
}

/* Language Switch in Header */
header div a {
	position: auto;
}

/* Headline in Header */
.headertext {
	position: auto;
	color: var(--theme-contrast-color);
	font-size: 18pt;
	font-weight: bold;
	padding: 0px 16px 0px 16px;
}

.headersubtext {
  margin: auto;
	display: inline;
  width: 40%;
}

nav a {
//	float: none;
  background-image: linear-gradient(var(--theme-focus-color), var(--theme-color), var(--theme-focus-color));
}

/* Style the links */
nav a:link, nav a:visited ,header a:link, header a:visited {
	color: white;
	text-decoration: none;
	padding: 6px 6px 6px 6px;
}

nav a:hover, nav a:active, header a:hover, header a:active {
	background-color: var(--theme-focus-color);
}

/* Article Styles */
article {
	padding: 16px 10% 16px 10%;
	height:100%;
	position:relative;
	border-left-style: solid;
	border-left-width: 1px;
	width: 100%;
	background-color: var(--theme-contrast-color);
	font-size: 14pt;
	line-height: 1.2;
	font-size: 14pt;
}

h1 {
	color: var(--theme-color);
	font-size: 16pt;
}

h2 {
	color: var(--theme-color);
	font-size: 14pt;
}

h3 {
	color: var(--theme-color);
	font-size: 12pt;
}

/* Style the address via class (the firefox default rendering for address is ugly) */
p.myaddress {
	line-height: 1.2;
	font-style: italic;
}

			/* Size dependent menu variation */
			@media (max-width: 1400px) {
				nav {
						grid-template-columns: auto auto auto auto auto auto auto auto auto;
					}			
				}

			@media (max-width: 1200px) {
				nav {
						grid-template-columns: auto auto auto auto auto auto;
					}			
				}

			@media (max-width: 800px) {
				nav {
						grid-template-columns: auto auto auto auto;
					}			
				}
			
			/* Reaction for small devices */
			@media (max-width: 600px) {
				.headersubtext {
					display: none;
					}
				nav {
						grid-template-columns: auto auto auto;
					}			
				}

			@media (max-width: 500px) {
				nav {
						grid-template-columns: auto auto;
					}			
				}
			

