<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* adapted from a css found on http://icant.co.uk/csstablegallery/
Spearmint 
*/

/* table */
table {
	margin: 0 0 1em;
	background: #FFF;
	border-collapse: collapse;
	border-top: 1px solid #363;
	border-bottom: 2px solid #363;
	border-left: 0px solid #363;
	border-right: 0px solid #363;
}

/* caption = table title/heading */
caption {
	text-align: left;
	font: bold small-caps 120%/1.3 "trebuchet ms",Helvetica,Arial,Sans-Serif;
	color: #363;
	margin: .3em 0;
}

/* reduced font size to save space */
tr { font-size: 100%; }

/* tinted rows */
tr.odd {
	background: #DFD;
}

tr.even {
	background: #FFF;
}

td.odd {
	background: #DFD;
}

/* round robin game against himself */
td.hole {
	background:url(hole.gif) no-repeat; 
}

/* table cells */
th, td {
	font-weight: normal;
	padding: .5em .9em;
	text-align: left;
	vertical-align: middle;
}

/* borders to separate body sections */
tbody tr:first-child th,
tbody tr:first-child td,
tfoot tr:first-child th,
tfoot tr:first-child td {
	border-top: 2px solid #363;
}

/* color for column headings */
thead {
	background: #9C9;
	white-space: nowrap;
}

/* color for footer */
tfoot {
	background: #ADA;
}

/* bold text for footer */
tfoot th,
tfoot td {
	font-weight: bold;
}</pre></body></html>