.wave7filtertable  
{
	color: #333;
	font-family: Play;
	font-size: 16;
	width: 100%;
}

.wave7filtertable td
{
	height: 30px;
	padding: 10px;
	transition: all 0.3s;  /* Simple transition for hover effect */
}

/* Cells in even rows (2,4,6...) are one color */
.wave7filtertable tr:nth-child(even) td 
{ 
	background: #bbb; 
}  

/* Cells in odd rows (1,3,5...) are another (excludes header cells)  */
.wave7filtertable tr:nth-child(odd) td 
{ 
	background: #ddd; 
} 
