html,
body {
	margin: 0 auto;
	padding: 0;
	font-size: 14pt;
}

body {
	max-width: 100vw;
	width: 800px;
	height: 90vh;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	font-family: Verdana, Arial, sans-serif;
	background-color: cornsilk;
	padding-bottom: 20px
}

main {
	margin: 0 1em 2em 1em;
}

p {
	margin-top: 0;
	line-height: 180%;
	color: #333;
	font-size: 0.8rem;
	/* text-align: justify; */
}

em {
	font-style: normal;
	color: sienna;
}

td {
	font-size: 0.8rem;
}

h1 {
	font: normal normal 1.4rem "Trebuchet MS", Arial, sans-serif;
	color: sienna;
}

nav {
	font-size: 1.1rem;
}

nav a {
	padding: 0px 6px;
	text-decoration: none;
	color: #1a1a1a
}

nav a:hover, .selected {
	background: navajowhite;
	color: #000
}

nav a:active {
	background: wheat;
}

nav ul {
	padding: 0 3%;
	list-style: none;
	text-align: center;
	margin: 0;
}

nav a {
	height: 55px;
	display: table-cell;
	vertical-align: middle;
}


nav>ul>li {
	display: block;
	float: left;
	margin-right: 0.2rem;
	font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

nav>ul>li:last-child {
	float: right;
}


footer {
	margin-top: auto;
	width: 100%;
	min-height: 100px;
}

footer ul {
	flex-wrap: wrap;
	display: flex;
	justify-content: space-around;
	padding: 0;
	list-style: none;
	text-align: center;
	margin: 0;
}

footer li {
	display: inline-block;
	float: left;
}


ul.flex {
	list-style: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	padding: 0;
	background-color: white;
}

ul.flex > li {
	margin: 0.5em;
}


table.martex {
    margin: 1em;
    border-collapse: collapse;
    border-style: solid;
    border-width: 0px;
}

table.martex tr td {
    min-width: 20px;
    min-height: 12px;
    text-align: center;
    padding: 4px;
}

table.martex tr td.b-t {
    border-top: 1px solid black;
}

table.martex tr td.b-b {
    border-bottom: 1px solid black;
}

table.martex tr td.b-l {
    border-left: 1px solid black;
}

table.martex tr td.b-r {
    border-right: 1px solid black;
}

table.martex tr td.b-tt {
    border-top: 3px double black;
}

table.martex tr td.b-bb {
    border-bottom: 3px double black;
}

table.martex tr td.b-ll {
    border-left: 3px double black;
}

table.martex tr td.b-rr {
    border-right: 3px double black;
}



.speakers {
	border: 1px solid #ccc;
	background: #f2f2f2;
	padding: 20px;
}

.even {
	background: #CCC;
}

.odd {
	background: #FFF
}

.sep {
	height: 0;
	border: 1px dotted #999;
	border-style: none none dotted;
	padding: 5px 0 0 0;
	width: 75%;
	margin: 0 auto 10px auto;
}

.spkimg {
	width: 100px;
	vertical-align: text-top;
}

/* Polyfill due to Mozilla because blinking is awesome --kvkempen */
blink {
	animation: .5s linear infinite condemned_blink_effect;
}

@keyframes condemned_blink_effect {
	0% {
		visibility: hidden;
	}

	50% {
		visibility: hidden;
	}

	100% {
		visibility: visible;
	}
}


ul.flex img {
	transition: transform .2s;
	height: 100px;
}

ul.flex img:hover {
	transform: scale(1.1);
	
}

@media only screen and (max-width: 1000px) and (min-height: 900px) {
	html {
		font-size: 36pt;
	}

	footer {
		padding-bottom: 5em;
	}

	ul.flex img {
		height: 3rem;
	}
}

