<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* Variables are declared ----------------------------------------------------- */
:root {
  --title-color: #263761;
}


/* Doesnt let firefox make the buttons bigger */
button::-moz-focus-inner, 
input[type="button"]::-moz-focus-inner, 
input[type="submit"]::-moz-focus-inner, 
input[type="reset"]::-moz-focus-inner {
  padding: 0 !important;
  border: 0 none !important;
}

/* General page settings ------------------------------------------------------ */
html {
	height: 100%;
	margin: 0;
	background: #BBBBBB;
}

body {
    background-color: white;
	font-family: Times, sans-serif;
	margin-left: auto;
	margin-right: auto;
	max-width: 1000px;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
    padding: 20px 30px;
	overflow: auto;
	min-height: calc(100% - 40px);
}



button:focus {outline: 0;}
input:focus {outline: 0;}
a:focus{outline: 0;}
textarea:focus{outline: 0;}
p:focus{outline: 0;}


.nodisplay{
	display: none;
}


#header{
	overflow: hidden;
	display: block;
	text-align: center;
}

#header table{
	width: 100%;
}

#header h1{
	font-family: Arial, sans-serif;
	display: inline-block;
	color: var(--title-color);
	line-height: 130%;
}

.left{
	float: left;
}

.right{
	float: right;
}

.imageContainer{
	display: inline-block;
	padding: 10px;
}

.image{
	height: 100px;
}


#location{
	margin-top: 10px;
	margin-bottom: 10px;
	width: calc(100% + 20px);
	background: var(--title-color);
	position: relative;
	left: -30px;
	padding: 10px 20px;
	border-radius: 6px;
	color: white;
}

#location .textpart{
	width: 350px;
	padding-right: 15px;
	padding-left: 10px;
}

#location .quote{
	font-size: 23px;
	line-height: 130%;
	font-family: serif;
	font-style: italic;
	padding: 0px 25px 0px 5px;
}

#location .quote .author{
	font-size: 19px;
	margin-top: 5px;
	margin-right: 10px;
	font-style: normal;
	float: right;
	display: inline-block
}


.fullpage-table{
	position: relative;
	width: 100%;
}

.infotable tr td{
	padding: 5px 0px 5px 10px;
	font-size: 16px;
}

.infotable tr td:first-child{
	font-weight: bold;
	padding: 5px 10px 5px 0px;
	font-size: 18px;
}


.contenttable{
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px;
}

.contenttable tr td, .contenttable tr th{
	border-bottom: 1px solid var(--title-color);
	padding: 10px 10px;
	text-align: left;
}

.contenttable tr td:last-child, .contenttable tr th:last-child{
	text-align: center;
}

.contenttable tr:last-child td{
	border-bottom: none;
}

.contenttable tr th{
	font-size: 17px;
}

.contenttable tr:hover td{
	background: #F5F5F5;
}

.contenttable tr.future td:not(:first-child){
	color: grey;
}

.contenttable a{
	color: var(--title-color);
}

.contenttable a:visited{
	color: #61264C;
}

.contenttable td:first-child {
	width: 90px;
}

.contenttable td:last-child{
	width: 120px;
}



.attention{
	border: 2px solid #CC2121;
	border-radius: 5px;
	padding: 10px 20px;
}


/* Mobile version */

.mobile_version{
	display: none;
}

.nexttime{
	display: none;
}

.future .nexttime{
	display: inline-block;
}

@media only screen and (max-device-width: 480px) {
	.mobile_version{
		display: inherit;
	}
	
	body {
		padding: 5px;
	}
	
	#header{
		display: none;
	}
	
	.halabel{
		display: none;
	}
	
	h1{
		font-family: Arial, sans-serif;
		display: inline-block;
		color: var(--title-color);
		font-size: 17px;
		text-align: center;
	}
	
	#location{
		margin-top: 0px;
		margin-bottom: 10px;
		width: calc(100% + 10px);
		background: var(--title-color);
		position: relative;
		left: -5px;
		padding: 0;
	}
	
	#location .quote {
		display: none;
	}
	
	.contenttable td:first-child {
		width: 50px;
		text-align: center;
	}
	
	.contenttable th:last-child span{
		float: right;
		margin-right: 20px;
	}
	
	.contenttable td:last-child{
		width: 60px;	
		padding: 0;
	}
	
	.contenttable tr td, .contenttable tr th{
		padding: 7px;
	}
	
	
	.contenttable .year{
		display: none;
	}
		
}
</pre></body></html>