.divTable{
     display: table;
     width: 100%;
     padding-bottom: 0px;
     font-size: 1.230769em;
     line-height: 1.5;
     color: #343536;
     font-weight: 400;
     border-bottom: 1px solid #000;
 }
 
 .divTableRow {
     display: table-row;
 }
 
 .divTableCell {
     border: 1px solid #000;
     border-right: none;
     display: table-cell;
     padding: 3px 10px;
 }

 .border-right {
     border-right: 0.5px solid #000;
 }

 .divTableCell1 {
     border-left: 1px solid #000;
     background-color: #eee;
     display: table-cell;
     padding: 3px 10px;
 }
 
 .divTableHead {
     display: table-cell;
     padding: 3px 10px;
     font-weight: bold;
 }
 
 .divTableHead1 {
     border: 1px solid #ddd;
     display: table-cell;
     padding: 3px 10px;
     font-weight: bold;
 }
 
.divTableHeading {
     color: #fff;
     background-color: #383b3c;
     display: table-header-group;
     font-weight: bold;
 }
 
 .divTableFoot {
     background-color: #ddd;
     display: table-footer-group;
     font-weight: bold;
 }
 
 .divTableBody {
     display: table-row-group;
 }
 
 .caption {
     background-color: #4e6bb1;
     border: 1px solid #ddd;
     caption-side: top;
     display: table-caption;
     padding: 10px 10px;
     color: white;
     font-weight: bold;
 }