@page { margin: 0.79in }
/* 2021-01-20: Added "Open Sans", "Helvetica", and "Arial" to the font stack */
/* Because not everyone has Liberation Sans. Meanwhile, Open Sans is a Web Font hosted on Google. */
body {
	font-family: "Open Sans", "Liberation Sans", "Helvetica", "Arial", sans-serif; 
	font-size: 10pt; 
	background: whitesmoke; 
}
/* h1 now reserved just for the header */
header {
	text-align: center;
}
header h1 {
	text-align: center;
}
h1 {
	font-family: "Open Sans", "Liberation Sans", "Helvetica", "Arial", sans-serif; 
	font-size: 20pt; 
	color: #004040; 
}
/* h2 formerly h1 */
h2 {
	font-family: "Open Sans", "Liberation Sans", "Helvetica", "Arial", sans-serif; 
	font-size: 16pt; 
	color: #004040; 
}
/* h3 formerly h2 */
h3 {
	font-family: "Open Sans", "Liberation Sans", "Helvetica", "Arial", sans-serif; 
	font-size: 12pt; 
	margin-left: 10px; 
	color: #004040; 
}
p {
	margin-top: 5px; 
	margin-bottom: 0.1in; 
	margin-left: 20px; 
}
#noindent p { 
	margin-bottom: 0.1in; 
	margin-left: 0px; 
}

/* li margin added 2020-04-01 -- works also in IE8 */
/* per: https://stackoverflow.com/questions/19254411/how-do-i-set-vertical-space-between-list-items */
li { 
	margin-top: 3px; 
}
/* li:first-child { margin-top: 0; } */

/* per: https://isabelcastillo.com/error-info-messages-css */
/*
.isa_info, .isa_success, .isa_warning, .isa_error {
	margin: 10px 0px;
	padding:12px;
	border-radius:.5em;
	border: 1px solid;
}
.isa_info {
	color: #00529B;
	background-color: #BDE5F8;
}
.isa_success {
	color: #4F8A10;
	background-color: #DFF2BF;
}
.isa_warning {
	color: #9F6000;
	background-color: #FEEFB3;
}
.isa_error {
	color: #D8000C;
	background-color: #FFD2D2;
}
*/


/* nothing in img {} was working */
/* img { display: block; border: 5px black solid; }  */

/* Tooltip indicator */
/*
 .tt {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted;
}
*/ 