@charset "utf-8";
/* CSS Document - formatting parenthesised lists in  alpha (a)  or in decimal (1) format */

ol.decimal {
    counter-reset: decimal;
    text-indent: -1.4em;
}

ol > ol.decimal > li {
  list-style: none;
}

ol.decimal > li {
  list-style: none;
}

ol.decimal > li > p:before, ol.decimal > li > span:before {
    counter-increment: decimal;
    content:"(" counter(decimal, decimal)") " 
}

ol.decimal > li#n16_19 > span:before { /* custom, for order 11002 */
    counter-increment: decimal;
    content:"(*16-19) "
}

ol.alpha {
    counter-reset: list;
    text-indent: -1.4em;
}

ol > ol.alpha > li {
  list-style: none;
}

ol.alpha > li {
  list-style: none;
}

ol.alpha > li > p:before {
    counter-increment: list;
    content:"(" counter(list, lower-alpha)") "
}
