body,html {
	background:#fff;
	font-family: 'Helvetica', 'Open Sans', 'Lato', 'SF Pro Text', sans-serif;
}
table {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  margin: 0 auto; /* centers the table */
  min-width: 50%;  /* minimum width 65% */
  width: auto;     /* width fits content */
  max-width: 100%; /* prevents overflow */
}

table td, table th {
  border: 1px solid #ddd;
  padding: 8px;
  white-space: nowrap; /* avoids line breaks */
}

table tr:nth-child(even) {
  background-color: #f2f2f2;
}

table tr:hover {
  background-color: #ddd;
}

table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: rgb(187, 219, 186);
  color: white;
}

h1 {
  display: none;
}

a {
  text-decoration: none;
  color: #336699;
}