table {
	font-family: sans-serif;
	border-collapse: collapse;
}
thead tr, tfoot tr {
	background-color: darkgreen;
	color: white;
	font-weight: bold;
}
tbody tr:nth-child(odd) {
	background-color: white;
}
tbody tr:nth-child(even) {
	background-color: lightgreen;
}
tbody tr:hover {
	background-color: lightblue;
}
td, th {
	border: solid green;
	border-width: 1px 0px 1px 0px;
	padding: .25em .5em;
	text-align: left;
}

