/* Table */
.table { 
    display: table;
    width: calc(100% - 10px);
    border: 0px;
    padding: 3px;
    background-color: FFFFFF;
    margin-left:50px;
    margin-bottom:50px;
    }
.tr { 
      display:table-row; 
    }
    
.table .tr:nth-child(1n+2) {
 background-color: #F2F2F2; 
 color: #000000; 
 }
 
.table .tr:nth-child(2n+3) {
   background-color: #ffffff; 
   color: #000000; 
}

.td { 
      display:table-cell; 
      border:thin solid silver; 
      padding:3px;

    }

.table .tr:hover{
background-color: rgba(0,150,255,.3);
}

.th {
	  display:table-cell; 
      border:thin solid silver; 
      background-color: #81BEF7;
      padding:3px;
      text-align: center;
      font-size: 1.1em;
      font-weight:bold;
   }
 
.thead{
	display: block;
		width: calc(100% - 20px);
}

.tbody{
	max-height: 100%;
	width: calc(100% - 10px);
	display: block;	
}