/**
 * @file
 * CSS Styles for Views CSS Tables.
 */
.views-css-tables-table {
  display: table;
}
.views-css-tables-table--caption {
  display: table-caption;
}
.views-css-tables-table--thead {
  display: table-header-group;
}
.views-css-tables-table--row {
  display: table-row;
}
.views-css-tables-table--cell {
  display: table-cell;
}
.views-css-tables-table--tbody {
  display: table-row-group;
}
