.flat-table {
  display: block;
  font: 10px Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 100%;
  overflow: auto;
  width: auto;
 } 
.flat-table   th {
    background-color: rgb(0, 0, 120);
    color: white;
	font-size: 85%;
    font-weight: normal;
    padding: 12px 30px;
    text-align: center;
  }
.flat-table td {
    // background-color: rgb(238, 238, 238);
    //color: rgb(111, 111, 111);
    padding: 5px 10px;
  	font-size: 100%;
  }
.flat-table tr:nth-child(even) {
	background-color: #c2c2c2
}