*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body{
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.5;
  font-family: Verdana, Arial, sans-serif;
}

.table{
  display: table;
  table-layout: fixed;
  width: 100%;
  padding: 3px;
}

.caption{
  display: table-caption;
  text-align: center;
  font-weight: bold;
  font-size: larger;
  background-color: #B0C4DE;
  margin-bottom: 5px;
}

.thead{
  display: table-header-group;
  font-weight: bold;
  background-color: #FFFACD;
}

.tbody{
  display: table-row-group;
}

.tr{
  display: table-row;
}

.th{
  border-bottom: 1px dashed #cccccc;
}

.tr:nth-child(odd){
  background: #F0F8FF;
}

.th,
.td{
  display: table-cell;
}

.td{
  padding: 10px 0;
}

.label{
  display: none;
}

@media screen and (max-width: 1750px){
  .thead{
    display: none;
  }
  .tr{
    display: block;
    margin-bottom: 1.5em;
    padding: 10px;
  }
  .td{
    display: inherit;
    padding: 0;
  }
  .label{
    font-weight: bold;
    display: inline-block;
    min-width: 120px;
  }  
}

@media print {
  .th{
    font-size: 12px;
	font-weight: bold;
	
  }
  .td{
    font-size: 11px;
    line-height: 12px;
	margin: 2px;
	padding: 2px;
	}
}