body {font-family: Garamond, Georgia, serif;
      font-size: 12pt;
      padding: 0px 4px;}
h1 {font-size: 1.6em;
    text-align: center;}
h2 {font-size: 1.3em;
    text-align: center;}
h3 {font-size: 1em;
    text-align: center;}

a {text-decoration: none;}
a:link {color: #820B2B}
a:visited {color: #333399}
a:hover {color: #CACC04}
a:active {color: #CACC04}

figure {float:left}
figcaption {text-align: center}

em {font-weight: bold}

img {border:0;}

ol {padding-left: 1.5em;}

.par {margin-bottom: 5pt;}

.publist {
/*    list-style: none;*/
/*    counter-reset: the_counter;*/
}
.publist li {
/*    counter-increment: the_counter;*/
/*    text-indent: -1.5em;*/
}
.publist li::before {
/*    content: "["counter(the_counter)"] ";*/
}

.poo li {counter-increment: none;}
.poo li::before {content: "";}

quote {margin-left: 20px; font-weight: bold}

@media (max-width:41.999em) {
    .navinner {
	display:none;
    }
    .some-space {
	height: 40pt;
    }
    .header {
	background-color: white;
	width: 100%;
	position: fixed;
	z-index: 100;
    }
    .header ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13pt;
	overflow: hidden;
	background-color: #fff;
    }
    .header li a {
	display: block;
	text-align:center;
	padding: 5px 0px;
	font-size: 13pt;
/*	border-right: 1px solid #f4f4f4;
	text-decoration: none;*/
    }
    .header h1 {
	display: inline-block;
	float: left;
/*	width: 70%;
	text-align: center;
	padding: none;
	padding-left: 20px;
	padding: 20px 20px;
	text-decoration: none;*/
    }

    .header .menu {
	clear: both;
	max-height: 0;
	transition: max-height .2s ease-out;
    }
    .header .menu-icon {
	cursor: pointer;
	display: inline-block;
	float: right;
	padding: 20px 20px;
	position: relative;
	user-select: none;
    }
    .header .menu-icon .navicon {
	background: #333;
	display: block;
	height: 2px;
	position: relative;
	transition: background .2s ease-out;
	width: 18px;
    }
    .header .menu-icon .navicon:before,
    .header .menu-icon .navicon:after {
	background: #333;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	transition: all .2s ease-out;
	width: 100%;
    }
    .header .menu-icon .navicon:before {
	top: 5px;
    }

    .header .menu-icon .navicon:after {
	top: -5px;
    }
    .header .menu-btn {
	display: none;
    }
    .header .menu-btn:checked ~ .menu {
	max-height: 240px;
    }
    .header .menu-btn:checked ~ .menu-icon .navicon {
	background: transparent;
    }
    .header .menu-btn:checked ~ .menu-icon .navicon:before {
	transform: rotate(-45deg);
    }
    .header .menu-btn:checked ~ .menu-icon .navicon:after {
	transform: rotate(45deg);
    }
    .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
    .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
	top: 0;
    }
    .some-space {
	height: 30pt;
    }
}
@media (min-width: 42em) {
    .header .menu-icon {
	display: none;
    }
    .header .menu-btn {
	display: none;
    }
    .some-space {
	height: 6em;
    }

    .header {
	border-radius: 15px;
	background-color: rgba(255,250,240,0.9);
	width: 42em;
	text-align: center;
	position: fixed;
	z-index: 100;
	margin: auto;
	/*border: 2px solid #820B2B;*/
    }

    .header h1 {
	line-height: 0.8em;
    }

    .header ul {
	text-align: center;
	/*margin-left: 0px;*/
	padding-top: 0px;
	padding-left: 0px;
	margin-bottom: 0.7em;
    }
    .header a:hover {
	background-color: rgba(255,230,180,0.9);
	color: rgb(200,100,0);
    }
    .header a {
	border-radius: 5px;
	display: block;
	background-color: rgba(255,245,200,0.9);
    }
    .header a.current {
	background-color: rgba(250,210,150,0.9);
	border: 2px solid #820B2B;
    }

    .header li {
	width: 6em;
	border-bottom: none;
	font-size: 1.2em;
	text-align: center;
	height: 2em;
	line-height: 2em;
	display: inline-block;
	margin-right:
    }
}

@media (max-width:41.999em) {
/*    body {font-size: 10pt;}*/
    figure {
	display: block;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
    }
    img {
	display: block;
	max-width: 80%; 
	margin-left: auto;
	margin-right: auto;
    }
}

.maincol {
	max-width: 42em;
	margin: 0px auto;
}

/* some hide/show magic */

.hideshow { position: relative; z-index: 5; }
input.hideshow[type=checkbox] {
   position: absolute;
   top: 0;
   left: 0;
   width: 60%;
   height: 0%;
   opacity: 0;
}
.hideshow-top {
  /*margin: 60px 0 10px 0;*/
}
label {
   cursor: pointer;
}
label.hideshow-label {
  position: relative;
  display: block;
  padding-left: 30px;
}
label.hideshow-label:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 10px;
  border-left: 6px solid black;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-top: -6px;
}
input.hideshow[type=checkbox]:checked ~ label.hideshow-label:before {
  border-left: 6px solid transparent;
  border-top: 6px solid black;
  border-right: 6px solid transparent;
  margin-left: -2px;
  margin-top: -2px
}

.hideshow-block {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.indented-block {
  padding-left: 30px;
}

input.hideshow[type=checkbox]:checked ~ div.hideshow-block {
  max-height: 500px;
}

h3 {
  text-align: left;
  font-size: 125%;
}

h4 {
  margin-top: 4px;
  margin-bottom: 0px;
}

.abstract {
    margin-top: 0px;
    margin-bottom: 4px; 
}

table {
    border: 1px solid black;
}

td {
    padding: 5px;
    text-align: center;
}

td.block {
    text-align: left;
}

.schedule td:nth-child(1) {
  width: 100px;
}

.schedule td:nth-child(3) {
  width: 100px;
}

ul.columns {
    columns: 2;
}

dt {
    /*display: inline-block;*/
    float: left;
    padding-right: 1em;
    font-weight: bold;
}
dd {
    /*display: inline-block;*/
    
    margin: 0;
    padding: 0 0 0.5em 0;
}
