/* USE FOR STANDARD TABLES */
table
{
  font-variant-numeric: lining-nums tabular-nums;
  display: table;
  table-layout: auto;
  margin: auto;
  max-width: 98%;
  border-collapse: collapse;
  break-inside: avoid;
  border: 1px solid black;
}

@supports not (break-inside: avoid)
{
  table
  {
    break-inside: avoid-page!important;
  }
}

table.title-page
{
  margin: 0 auto;
}

table.narrow
{
  table-layout: fixed;
  margin: auto;
}

table.narrow td
{
  transform: scaleX(0.8);
  margin: auto;
  overflow: hidden;
}

tr
{
  break-inside: avoid;
}
@supports not (break-inside: avoid)
{
  tr
  {
    break-inside: avoid-page ! important;
  }
}

th, td /* Use for standard tables */
{
  empty-cells: show;
  border: 1.5px solid grey;
  padding: 0.25em;
  text-align: left;
}

th /* Use for standard tables */
{
  line-height: 100%;
  font-size: 90%;
  font-weight: 500;
  letter-spacing: -0.01em;
  background: #e1e1e1;
  text-align: left;
}

td div.rotate270,
th div.rotate270
{
  margin: -15px 0;
  position: relative;
  height: 4em;
  width: 4em;
  border-collapse:collapse;
  transform: rotate(-90deg);
  padding-left: 0%;
  padding-top: 60%;
  text-align: center;
  font-size: 120%;
}

thead th, tfoot th
{
  text-align: center;
}

thead th
{
  vertical-align: top;
}

tfoot th
{
  vertical-align: bottom;
}

th.unit /* Use for currency sign or other unit under heading */
{
  text-align: center;
  line-height: 80%;
  font-weight: normal;
}

thead th.unit /* Use for currency sign or other unit under heading */
{
  border-top: hidden;
}

tfoot th.unit /* Use for currency sign or other unit under heading */
{
  border-bottom: hidden;
}

td /* Use for standard tables */
{
  vertical-align: top;
  line-height: 100%;
  font-size: 90%;
  letter-spacing: -0.01em;
  break-inside: avoid;
}

@supports not (break-inside: avoid)
{
  td
  {
    break-inside: avoid-page ! important;
  }
}

td.header > div
{
  display: block;
  font-weight: 400;
}

/* USE FOR TABBED TEXT OR TABLES WITHOUT BORDERS */
table.noborders,
th.noborders,
th.noborders-first_column,
td.noborders,
td.noborders-number,
td.noborders-euro,
td.noborders-centered,
td.noborders-first_column
{
  border: 0;
  background: none;
}

table.noborders
{
   margin: 0 0.5em 0 1em;
}

th.noborders,
th.noborders-first_column,
td.noborders,
td.noborders-number,
td.noborders-euro,
td.noborders-centered,
td.noborders-first_column
{
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  background: none;
  font-size: 1em;
  vertical-align: top;
  /* Use colwidth for padding */
}

th.noborders,
th.noborders-first_column
{
  font-weight: bold;
}

td.noborders-first_column,
th.noborders-first_column
{
  padding-left: 0;
}

th.noborders,
td.noborders
{
  padding-left: 0.5em;
  padding-right: 0.5em;
}

td.noborders,
td.noborders-first_column
{
	text-align: left;
}

aside table.noborders
{
   margin: 0.5em 0 0 0;
   font-style: inherit;
   color: inherit;
}

aside th,
aside td
{
  line-height: inherit;
}

aside td.banner
{
  background: #29627e;
  color: white;
  text-align: center;
}

/* COMMON TABLE TAGS */
td.number,
td.currency
{
  text-align: right;
}

td.euro:before
{
  text-align: left;
  content: "%E2%82%AC";
}

col.centered,
th.centered,
td.centered
{
  text-align: center;
}

/*-------- MEDIA WIDTH 478px -------*/
@media screen and (max-width: 478px)
{

  th.noborders,
  td.noborders
  {
    padding-left: 0.1em;
    padding-right: 0.1em;
  }
}

/*-------- MEDIA WIDTH 748px -------*/
@media screen and (max-width: 740px)
{
  ;

}