  /* VLAD: each row in this table have a number automatically assigned to each item.*/
table {
    counter-reset: rowNumber;
}

table tr {
    counter-increment: rowNumber;
}

table tr td h3 a:first-child::before {
    content: counter(rowNumber) ". ";
}

ol > li > ol {
  counter-reset: list;
}
ol > li > ol > li {
  list-style: none;
}
ol > li > ol> li:before {
  content: counter(list, lower-alpha) ") ";
  counter-increment: list;
}

/*ol {
  counter-reset: list;
}
ol > li {
  list-style: none;
}
ol > li:before {
  content: counter(list, decimal) ") ";
  counter-increment: list;
}*/