body {
	font-family: sans-serif;
	line-height: 1.5;
	margin: 0;
	border 0;
}
/* anchors  */
a {
	color: blue;
}
a:visited {
	color: blue;
}
/* The sidebar menu */
/* Adapted from: https://www.w3schools.com/howto/howto_css_fixed_sidebar.asp */
.sidenav {
	height: 100%; /* Full-height: remove this if you want "auto" height */
	width: 200px; /* Set the width of the sidebar */
	position: fixed; /* Fixed Sidebar (stay in place on scroll) */
	z-index: 1; /* Stay on top */
	top: 0; /* Stay at the top */
	left: 0;
	background-color: black;
	overflow-x: hidden; /* Disable horizontal scroll */
	padding-top: 20px;
	padding-right: 10px;
}

/* The navigation menu links */
.sidenav a {
	padding: 6px 8px 6px 16px;
	text-decoration: none;
	font-size: 20px;
	color: seashell; /* whitesmoke; /* #818181; */
	display: block;
}
.sidenav a.sub-a {
	font-size: 14px;
}
.sidenav a:hover {
	color: yellow;
}
.sidenav ul {
	padding-left: 5px;
	margin-top: 0;
}
div.main-content {
	/* background-image: url('./../images/overlay.png'); */
	/* background-color: whitesmoke; */
	min-width: 700px;
	max-width: 800px;
	margin: 0 auto 0 200px; /* left: same as sidebar */
	padding: 20px 40px;
	text-align: justify;
}
div.main-content li {
	padding: 5px;
}
div button {
	font-size: 11px;
	padding: 1px 3px;
}
figure {
	margin: 20px auto;
}
figcaption {
	font-size: 12px;
}
img.screenshot {
	padding: 10px;
	display: block; /* center */
	margin: 10px auto; /* center */

}
.small-caps {
	font-variant: small-caps;
}
.bold {
	font-weight: bold;
}
.important {
	text-align: center;
	background-color: salmon;
	border: 1px solid black;
	padding: 5px;
}
.license {
	text-align: center;
	background-color: palegreen;
	border: 1px solid black;
	padding: 5px;
}
.copyright {
	text-align: center;
	background-color: black;
	color: white;
	padding: 5px;
}
.noteworthy {
	text-align: center;
	background-color: #fffeb2;
	border: 1px solid black;
	padding: 5px;
}
a.contact{
	color: white;
	text-decoration: none;
}
a.contact:hover {
	color: cyan;
}
.footer {
	margin: 5px;
	text-align: right;
	font-size: 10px;
}
table {
	font-family: arial, sans-serif;
	border-collapse: collapse;
	width: 100%;
}
td, th {
	border: 1px solid #dddddd;
	text-align: left;
	padding: 8px;
}
tr:nth-child(even) {
	background-color: #dddddd;
}
caption {
	margin: 5px;
}
