/* Spearmint tints > http://inspire.server101.com/bttdb/html/tables/ */

/* table */
table {
	margin: 10px auto 10px 20px;
	background: #FFF;
	border-collapse: collapse;
	border-top: 1px solid #999;
	border-bottom: 2px solid #999;
}

/* caption = table title/heading */
caption {
	text-align: left;
	color: #999;
	margin: .3em 20px;
}

/* reduced font size to save space */
tr { font-size: 90%; }
/* prevent nested tables reducing font size further */
tr tr { font-size: 100%; }

/* tinted rows */
/* in CSS3 selectors: tbody tr:even or tbody tr:nth-child(2n) */
tr.odd {
	background: #f3f3f3;
}

/* table cells */
th, td {
	font-weight: normal;
	padding: .3em .7em;
	text-align: left;
	vertical-align: top;
}

/* 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: 1px solid #999;
}

/* tints for column headings */
thead {
	background: #cdcdcd;
	white-space: nowrap;
}

/* tints for totals */
tfoot {
	background: #cdcdcd;
}

/* bold text for totals */
tfoot th,
tfoot td {
	font-weight: bold;
}

