@charset "utf-8";
/* CSS Document */


      .responsive_table table {
  border-collapse: collapse;
  width: 100%;
  border:1;
  text-align:center;
  cellpadding:2; 
  cellspacing:2;
}

.responsive_table table .td1 {
	 width:20%; 
	 height:25;
	 background-color:#7e3838;
	 color:#fff;
	 text-align:center;
	 font-weight:bold;
	 text-transform:uppercase;
}

.responsive_table table .td2 {
	width:80%; 
	height:25; 
	bgcolor:#ffffff;
}
th {
  background-color: #eee;
  font-weight: bold;
}
th,
td {
  border: 0.125em solid #333;
  line-height: 1.5;
  padding: 0.75em;
  text-align: left;
}
/* Stack rows vertically on small screens */
@media (max-width: 30em) {
  /* Hide column labels */
	thead tr {
		position: absolute;
		top: -9999em;
		left: -9999em;
	}
	tr {
    border: 0.125em solid #333;
    border-bottom: 0;
  }
	/* Leave a space between table rows */
  tr + tr {
    margin-top: 1.5em;
  }
  /* Get table cells to act like rows */
  tr,
  td {
		/*display: block;*/
	}
	td {
		border: none;
		border-bottom: 0.125em solid #333;
	/* Leave a space for data labels */
		/*padding-left: 50%;*/
	}
	/* Add data labels */
  td:before {
    content: attr(data-label);
    display: inline-block;
    font-weight: bold;
    line-height: 1.5;
    margin-left: -100%;
    width: 100%;
  }
}
/* Stack labels vertically on smaller screens */
@media (max-width: 20em) {
  td {
    padding-left: 0.75em;
  }
  td:before {
    display: block;
    margin-bottom: 0.75em;
    margin-left: 0;
  }
}