body {
	font-size: small;
	background-image: url("/i/logo.png");
	background-position: right bottom;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

h1 {
	margin-left: auto;
	margin-right: auto;
	font-family: cursive;
	font-size: xx-large;
	text-align: center;
}

table {
	border: 3px solid black;
	border-radius: 15px;
	border-collapse: separate; /* This row and the next get rid of the space between cells without breaking round corners. */
	border-spacing: 0;
	font-family: "Arial Black", sans-serif;
}

/* These next four lines put the round corners on the table cells, or they bleed through the table. */
table tr:first-child th:first-child { border-top-left-radius: 12px; }
table tr:first-child th:last-child { border-top-right-radius: 12px; }
table tr:last-child td:first-child { border-bottom-left-radius: 12px; }
table tr:last-child td:last-child { border-bottom-right-radius: 12px; }

tr.subh {
	background-color: #999;
	text-decoration: underline;
	text-align: center;
	font-style: italic;
}

tr:nth-child(even) {
	background-color: #bbb;
}

tr:nth-child(odd) {
	background-color: #ccc;
}

tr:nth-child(1) {
	background-color: #fff;
}

th {
	border-top: none;
	border-bottom: 2px solid black;
	border-left: 1px #999;
	border-right: 1px #999;
	padding: 5px;
	text-align: left;
	text-decoration: underline;
}

td {
	border: none;
	padding: 3px;
}
