/*make table rows alternate colors*/
table {
	margin-left:auto;
	margin-right:auto;
}

tr:nth-child(even) {background: #EEE}
tr:nth-child(odd) {background: #FFF}
