html, body {
	min-height: 100%;
	margin: 0px;
	padding: 0px;
}

body {
	font-family: 'Roboto Slab', serif;

	/*background-image: url('bg2.jpg');
	background-repeat: no-repeat;
	background-size: cover;*/
	max-width: 640px;
	margin: auto;
	background-color: blanchedalmond;
}

body.project {
	background-color: skyblue;
}

#content {
	/*max-width: 600px;*/
	padding: 4em;
	/*padding-top: 2em;*/
	/*margin-top: 2em;*/
	/*background: rgba(255, 255, 255, 0.8);*/
	background-color: #eeeeec;
}

h1 {
	margin-top: 0px;
	font-size: 5em;
	line-height: 1em;
	margin-bottom: 0.2em;
}

#content li a, p a, p a:active, p a:visited, h3 a {
    text-decoration: none;

    color: #2e3436;
    background-color: #edd400;

    padding: 0.1em;
    padding-left: 0.2em;
    padding-right: 0.2em;
	display: inline-block;
}

#content li a:hover, #content a:hover {
    background-color: #ce5c00;
    color: #eeeeec;
}

p.image a, p.image a:active, p.image a:visited, p.image a:hover {
	color: inherit;
	background-color: inherit;
	display: inherit;
	padding: 0px;
}

.group a, .group a:active, .group a:visited {
	padding: 0px none;
	display: inline;

}

p.image img {
	width: 100%;
}

li {
    line-height: 1.8em;
}

hr {
	border: 0px none;
	border-top: 1px dotted #babdb6;
}

.new {
	background-color: red;
	color: white;
	padding: 2px;
	font-size: 10px;
	line-height: 10px;
}

table {
	width: 100%;
}

table thead {
	font-weight: bold;
	/*text-align: center;*/
	padding: 0.25em;
}

table th {
	border-bottom: 2px solid #555753;
	padding: 0.25em;
	color: #2e3436;
	background-color: silver;
}

table {
	/*border-spacing: 0.3em;*/
    border-collapse: all;
    font-size: 75%;
}

table td {
	padding: 0.3em;
}

table th {
	padding: 0.5em;
}

.note {
	font-size: 80%;
	background-color: #ede6a9;
	padding: 1em;
	border: 1px solid #edd400;
}

.images a {
	background-color: inherit;
}

.vert, .horiz {
	display: flex;
	align-items: top;
}

.vert div, .horiz div {
	flex: 1;
}

.horiz {
	flex-direction: row;
	justify-content: space-around;
}

.horiz.center {
	align-items: center;
}

.horiz img, .vert img {
	width: 100%;
}

.horiz div {
	margin: 0.5em;
}

.vert {
	flex-direction: column;
}


table tr:nth-child(odd) {
	background-color: #e2e2e0
}

.center {
	text-align: center;
}

caption {
	padding: 1em;
	font-style: italic;
}

.detail {
	color: grey;
	font-size: 90%;
	display: inline-block;
}

nav {
	background-color: black;
	color: #eeeeec;
	margin: 0px;
	/*padding: 1em;*/
	line-height: 1em;
	font-size: 15px;

	text-align: right;

	/*padding-left: 1em;*/
	/*padding-right: 1em;*/
}

nav h1 {
	font-size: inherit;
	font-weight: normal;
	float: left;
	/*display: block;*/

	margin: 0px;
	/*padding: 0.5em;*/
	padding: 8px;
	line-height: 1.75em;

	color: #555753;

	font-style: italic;
	/*font-weight: 200;*/
	padding-left: 1em;
}

nav ul {
	display: inline;
	list-style: none;
	line-height: inherit;
	padding: 0px;
	margin: 0px;
}

nav ul li {
	display: inline-block;
	margin: 0px;
	padding: 8px;
	font-weight: normal;
}

nav ul li a {
	border-bottom: 3px solid #edd400;
	color: #edd400;

	text-decoration: none;
}

nav ul li a:hover {
	border-bottom: 3px solid #ce5c00;
	color: #ce5c00;
}

nav li.active {
	/*background-color: #2e3436;*/
	/*border-bottom: 6px solid #ce5c00;
	padding-bottom: -6px;*/
	font-weight: bold;
	background-color: #eeeeec;
	color: black;
	/*font-style: italic;*/
}


/*.vertical {
	display: flex;
	flex-direction: column;
}*/