html {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
}
body {
	flex-grow: 1;
	flex-shrink: 1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background-color: white;
	font-family: "Arial", sans-serif;
	font-size: 12px;
	color: #005c7f;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 8px;
	margin-right: 8px;
	padding: 0px;
}

div, span, h1, h2, h3, pre, form, label, table, tbody, tfoot, thead, tr, th, td, section, textarea, input {
	font: inherit;
	margin: 0px;
	outline: 0px;
	border: 0px;
	padding: 0px;
}

input[type=submit] {
	color: #005c7f;	
}

input[type=text], input[type=password], select {
	color: #005c7f;	
	background: #e6e6e6;
	border: 0.1em solid #e6e6e6;
	padding: 0;
	font-size: 12px;
}

textarea {
	border: 1px solid #e6e6e6;
	padding: 0.5em;
	color: #5a5a5a;
}

pre {
	border: 1px solid #e6e6e6;
	padding: 0.5em;
	color: #5a5a5a;
}

table {
	border-collapse: collapse;
}

a, a:visited {
	color: #005e80;
	text-decoration: none;	
}

h1 {
	font-size: 1.3em;
	font-weight: normal;
	padding: 0px;
	margin: 0px;
	margin-bottom: 0.5em;
}

h2 {
	font-size: 1.2em;
	font-weight: normal;
	padding: 0px;
	margin: 0px;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

div.header {
	padding-bottom: 0.5em;
	border-bottom: 0.1em solid #005c7f;
	margin-bottom: 0.5em;
	text-align: center;
}

div.header div.title {
	font-size: 3em;	
}

div.main {
	flex-grow: 1;
	flex-shrink: 1;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	flex-direction: row;
}

div.navigation {
	display: inline-block;
	text-align: left;
}

div.navigation a {
	display: block;
	text-align: left;
}

div.navigation a:hover {
	background-color: #ffee88;
}

div.content {
	flex-grow: 1;
	flex-shrink: 1;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background: white;
}

div.content.no-navigation {
	width: 100%;
	text-align: center;	
}

div.content.navigation {
	margin-left: 2em;
	text-align: left;
}

div.content table {
	display: inline-block;
	empty-cells: show;
	border-collapse: collapse;
	text-align: left;
}

div.content th, div.content td {
	padding: 0.2em;
	margin: 0px;
	border-width: 0px;
}

div.content a.start {
	display: block;
	background-color: #ffcc00;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	padding-left: 4em;
	padding-right: 4em;
	text-align: center;
	font-size: 1.2em;
	border: 0.15em solid #ffcc00;
	border-radius: 0.5em;
	width: 17em;
	margin: 1em auto;
}

div.content a.launcher {
	color: #ffcc00;
	font-weight: bold;
}

div.content a.action, 
div.content input[type=submit],
button {
	display: inline-block;
	color: #005c7f;
	background-color: #ffcc00;
	padding-left: 2em;
	padding-right: 2em;
	text-align: center;
	border-radius: 0.5em;
	border: 0.2em solid #ffcc00;
}

div.content a.action.below, div.content input.below[type=submit] {
	margin-top: 0.5em;
}

div.footer {
	left: 8px;
	right: 8px;
	bottom: 8px;
	text-align: center;
}

div.footer img.logo {
	height: 32px;
}

.hidefocus { 
	outline: 0;
}

table.alternate tbody tr:nth-child(odd) {
	background-color: #deddda;
}

table.mark tbody tr:hover {
	background-color: #ffee88;
}

table.scrollable tbody {
	display: block;
	overflow: auto;
	width: 100%;
}