 div.Table {

     display: table;
     margin: auto;

 }

 div.Title {

     display: table-caption;

     text-align: center;

     font-weight: bold;

     font-size: larger;

 }

 div.Heading {

     display: table-row;

     font-weight: bold;

     text-align: center;

 }

 div.Row {

     display: table-row;


 }

 div.Cell {

     display: table-cell;

     border: solid;
     border-width: thin;

     border-color: #078C03;

     padding-left: 3px;

     padding-right: 3px;
     font-size: 12px;



 }