.responsive_table { 
  width: 100%;
  margin: 0;
  padding: 10px 0 20px 0;
  word-wrap: break-word;
}

.responsive_table tr {
  border: 1px solid #a0a0a0;
  text-align: center;
}

.responsive_table th, .responsive_table td {
  padding: 10px;
}
.responsive_table colgroup{
	display:table-column-group;
}
.responsive_table td {text-align: center; border-bottom: 1px solid #a0a0a0;}
.responsive_table th {
  background: #e9e9e9;
  text-align: center;
  font-weight: bold;
  border-bottom: 2px solid #aaaaaa;
}

.responsive_table tr:nth-child(2n){
   background: #f5f5f5;
}

#t_left {
	text-align: left;
}

@media screen and (max-width: 800px) {
  .responsive_table {
    border: 0;
  }
  .responsive_table thead {
    display: none;
  }
  .responsive_table colgroup{
	display: none;
  }
  .responsive_table tr {
    margin-bottom: 10px;
    display: block;
    border-bottom: 2px solid #a0a0a0;
  }
  .responsive_table td {
    display: block;
    text-align: right;
	border: 0;
    border-bottom: 1px dotted #a0a0a0;
	width: 93%;
  }
  .responsive_table th {
    text-align: left;
  }
  .responsive_table td:last-child {
    border-bottom: 0;
  }
  .responsive_table td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
	display: block;
	padding: 0 8px;
  }
  #t_left {
	text-align: right;
  }
}