.divTable{
	display: table;
	width: 100%;
	border: none;	
}
.divTableRow {
	display: table-row;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
}
.divTableCell, .divTableHead {
	border: 0px solid #999999;
	display: table-cell;
	padding: 3px 10px;
	display: table-cell;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
	font-weight: bold;
}
.divTableFoot {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}
.divTableBody {
	display: table-row-group;
}

  .table {
    display: table;
    text-align: left;
    width: 100%;
    border-collapse: separate;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;

  }
  
  .table_row {
    display: table-row;
	border-bottom: #bc982d 1px solid;
	
  }
  
  .theader {
    display: table-row;
  }
  
  .table_header {
    display: table-cell;
    border-bottom: #ccc 0px solid;
    border-top: #ccc 0px solid;
    background: transparent;
    color: #bc982d;
    padding-top: 10px;
    padding-bottom: 10px;
	padding-right: 3px;
	padding-left: 3px;	
    font-weight: 700;
  }
  
  .table_header:first-child {
    border-left: #ccc 0px solid;
    border-top-left-radius: 0px;
  }
  
  .table_header:last-child {
    border-right: #ccc 0px solid;
    border-top-right-radius: 0px;
  }
  
  .table_small {
    display: table-cell;
  }
  
  .table_row > .table_small > .table_cell:nth-child(odd) {
    display: none;
    background: transparent;
    color: #e5e5e5;
    padding-top: 10px;
    padding-bottom: 10px;
	padding-right: 5px;
	padding-left: 5px;
	min-height: 300px;
  }
  
  .table_row > .table_small > .table_cell {
    padding-top: 3px;
    padding-bottom: 3px;
	padding-right: 3px;
	padding-left: 3px;
    color: #bc982d;
    border-bottom: #bc982d 1px solid;
  }
  
  .table_row > .table_small:first-child > .table_cell {
    border-left: #bc982d 0px solid;
  }
  
  .table_row > .table_small:last-child > .table_cell {
    border-right: #ccc 0px solid;
  }
  
  .table_row:last-child > .table_small:last-child > .table_cell:last-child {
    border-bottom-right-radius: 0px;
  }
  
  .table_row:last-child > .table_small:first-child > .table_cell:last-child {
    border-bottom-left-radius: 0px;
  }
  
  .table_row:nth-child(2n+3) {
    background: transparent;
  }
  
  @media screen and (max-width: 900px) {
    .table {
      width: 100%
    }
  }
  
  @media screen and (max-width: 650px) {
    .table {
      display: block;
    }
    .table_row:nth-child(2n+3) {
      background: none;
    }
    .theader {
      display: none;
    }
    .table_row > .table_small > .table_cell:nth-child(odd) {
      display: table-cell;
      width: 50%;
    }
    .table_cell {
      display: table-cell;
      width: 50%;
    }
    .table_row {
      display: table;
      width: 100%;
      border-collapse: separate;
      padding-bottom: 20px;
      margin: 5% auto 0;
      text-align: left;
    }
    .table_small {
      display: table-row;
    }
    .table_row > .table_small:first-child > .table_cell:last-child {
      border-left: none;
    }
    .table_row > .table_small > .table_cell:first-child {
      border-left: #ccc 1px solid;
    }
    .table_row > .table_small:first-child > .table_cell:first-child {
      border-top-left-radius: 0px;
      border-top: #ccc 1px solid;
    }
    .table_row > .table_small:first-child > .table_cell:last-child {
      border-top-right-radius: 0px;
      border-top: #ccc 1px solid;
    }
    .table_row > .table_small:last-child > .table_cell:first-child {
      border-right: none;
    }
    .table_row > .table_small > .table_cell:last-child {
      border-right: #ccc 1px solid;
    }
    .table_row > .table_small:last-child > .table_cell:first-child {
      border-bottom-left-radius: 0px;
    }
    .table_row > .table_small:last-child > .table_cell:last-child {
      border-bottom-right-radius: 0px;
    }
  }