html {
	font-size: 14pt;
}

body {
	margin: 2em 0.2em;
	background-color: #D3E7D7;
}

@media only screen and (min-width: 700px) {
	body {
		margin: 3em 1em;
	}
}

@media only screen and (min-width: 1100px) {
	body {
		max-width: 836px;
		margin-left:  auto;
		margin-right: auto;
	}
}

h1 {
	text-align: center;
}

h3 {
	font-size: 1.2em;
}

ul {
	padding-left: 2em;
	/* this makes a sort of inset effect */
	border-top:  1px solid;
	border-left: 1px solid;
}

li {
	padding: 0.5em 0;
}

.odd,
li:nth-child(odd) {
	background-color: #CCE0D0;
}

a,/* give more highlight to the few links */
.even,
li:nth-child(even) {
	background-color: #C3D7C7;
}

table {
	display: block;
	overflow-x: auto;
}

td {
	padding: 0.5em;
}

kbd,
samp {
	background-color: #222;
	color: Yellow;
	border: 1px solid #222;
	border-radius: 8px;
	font-weight: Bold;
	white-space: nowrap;
}

/* all the linkable elements */

:not(td)[id] {
	padding: 4px;
}

div [id] {
	display: inline-block;
	margin: 4px;
}

[id] {
	border: 1px solid;
}

a.here {
	color: MidnightBlue;
	text-decoration: none;
	font-weight: bold;
}

a.here:hover {
	color: White;
	text-shadow: 2px 0 4px DarkBlue;
}

.note,
.note a {
	background-color: #C7D3CA;
}

#credits {
	padding: 0.5em;
}

#credits * {
	padding-top: 0;
	padding-bottom: 0;
}

#credits,
#credits * {
	/* the nth-child selector would've overridden this I think */
	background-color: MidnightBlue !important;
	color: White;
	border: none;
	font-family: monospace;
}
