@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {
	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
	display: block; 
	}
	}
@media(max-width: 480px) {
  td {
    display: table-row;
  }
  p, pre, dl, ol, ul {
  padding-top: 1em;
  }
}

tr.odd, tr:nth-child(odd) {
    background-color: #fff;
    }