<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * jQuery Basic Table
 * Author: Jerry Low
 */

.b-table table.bt thead,
.b-table table.bt tbody th {
  display: none;
}


.b-table{ font-size:18px; line-height:1.4em;}

.b-table table.bt tfoot th,
.b-table table.bt tfoot td,
.b-table table.bt tbody td {
  border: none;
  display: block;
  vertical-align: top;
}

.b-table table.bt tfoot th:before,
.b-table table.bt tfoot td:before,
.b-table table.bt tbody td:before {
  content: attr(data-th) ": ";
  font-weight: bold;
 /* width: 6.5em;*/
  display: inline-block;
}
/*--------------*/
.b-table table thead th:first-child{ width:15%; }
.b-table table thead th:nth-child(2){ width:38%;}
.b-table table thead th:last-child{ width:47%;}

.b-table2 table thead th:first-child{ width:17%; }
.b-table2 table thead th:nth-child(2){ width:33%;}
.b-table2 table thead th:last-child{ width:50%;}


.b-table table thead th:first-child,
.b-table table tbody td:first-child{
	padding-left:25px;
}


.b-table table.bt tfoot th.bt-hide,
.b-table table.bt tfoot td.bt-hide,
.b-table table.bt tbody td.bt-hide {
  display: none;
}

.b-table table.bt tfoot th .bt-content,
.b-table table.bt tfoot td .bt-content,
.b-table table.bt tbody td .bt-content {
  vertical-align: top;
}

.b-table .bt-wrapper.active {
  /*max-height: 310px;*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}


.b-table table {
  background: white;
  border-collapse: collapse;
  width: 100%;
}

.b-table table tr,
.b-table table th,
.b-table table td {
  border: none;
  border-bottom: 1px solid #e4ebeb;
  
}

.b-table table th,
.b-table table td {
  padding: 10px 12px;
  text-align: left;
}

.b-table table th {
  background: #1050a5;
  color: #ffffff;
  text-transform: uppercase;
}

.b-table table tr td {
  background: #f3f6fa;
  color: #333;
}
.bt-content{ line-height:1.5em;}

.b-table table tr:nth-of-type(2n+2) td {
  background: #ffffff;
}

/*table.bt tfoot th,
table.bt tfoot td,
table.bt tbody td {

  padding: 0;
}

table.bt tfoot th:before,
table.bt tfoot td:before,
table.bt tbody td:before {
  background: #56a2cf;
  color: white;
  margin-right: 10px;
  padding: 2px 10px;
}

table.bt tfoot th .bt-content,
table.bt tfoot td .bt-content,
table.bt tbody td .bt-content {
  display: inline-block;
  padding: 2px 5px;
}

table.bt tfoot th:first-of-type:before,
table.bt tfoot th:first-of-type .bt-content,
table.bt tfoot td:first-of-type:before,
table.bt tfoot td:first-of-type .bt-content,
table.bt tbody td:first-of-type:before,
table.bt tbody td:first-of-type .bt-content {
  padding-top: 10px;
}

table.bt tfoot th:last-of-type:before,
table.bt tfoot th:last-of-type .bt-content,
table.bt tfoot td:last-of-type:before,
table.bt tfoot td:last-of-type .bt-content,
table.bt tbody td:last-of-type:before,
table.bt tbody td:last-of-type .bt-content {
  padding-bottom: 10px;
}*/


@media only screen and (max-width: 780px){
.b-table table.bt tfoot th, 
.b-table table.bt tfoot td, 
.b-table table.bt tbody td{ 
width:100%; float:left;}
.b-table table.bt tfoot th:before, 
.b-table table.bt tfoot td:before, 
.b-table table.bt tbody td:before{
	 float:left; width:20%; margin-right:0;
	 padding:0;}
.b-table table.bt tbody td .bt-content{ float:left; width:80%; padding:0;}

.b-table table thead th:first-child,
.b-table table tbody td:first-child{
	padding-left:12px;
}
}

@media only screen and (max-width: 500px){
	
.b-table table.bt tfoot th:before, 
.b-table table.bt tfoot td:before, 
.b-table table.bt tbody td:before{
	 width:30%;}
.b-table table.bt tbody td .bt-content{ 
 width:70%;}	 
	 
}



</pre></body></html>