<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ----------------------------
 * Scopia numlist 
 * ----------------------------
 * Ordered list
 * ---------------------------- */
.lst ol,
.dokuwiki .lst ol,
.dkwk .lst ol{
    list-style-position: outside;
    padding-left: auto;
}
.lst ol ol{list-style-type: inherit;}
.lst ol .li{display: inline;}

/** OL base
 * ---------------------------- */

.lst-dec ol {list-style-type: decimal !important;}
.lst-alpha ol {list-style-type: upper-alpha !important;}
.lst-alphal ol {list-style-type: lower-alpha !important;}
.lst-roman ol {list-style-type: upper-roman !important;}
.lst-romanl ol {list-style-type: lower-roman !important;}

.lst-legal ol{list-style-type: decimal !important;}
.lst-legal ol ol{list-style-type: lower-alpha !important;}
.lst-legal ol ol ol{list-style-type: decimal !important;}
.lst-legal ol ol ol ol{list-style-type: inherit;}


/** OL Parentheses
 * ---------------------------- */

.lst-dec-p ol{
  list-style: none !important;
  counter-reset: ldnump;
}
.lst-dec-p ol li:before {
    content: counter(ldnump) ') ';
    counter-increment: ldnump;
}

.lst-dec-p2 ol{
  list-style: none !important;
  counter-reset: ldnump2;
}
.lst-dec-p2 ol li:before {
    content: '(' counter(ldnump2) ') ';
    counter-increment: ldnump2;
}


.lst-alpha-p ol{
  list-style: none !important;
  counter-reset: lanump;
}
.lst-alpha-p ol li:before {
    content: counter(lanump, upper-alpha) ') ';
    counter-increment: lanump;
}

.lst-alpha-p2 ol{
  list-style: none !important;
  counter-reset: lanump2;
}
.lst-alpha-p2 ol li:before {
    content: '(' counter(lanump2, upper-alpha) ') ';
    counter-increment: lanump2;
}

.lst-alphal-p ol{
  list-style: none !important;
  counter-reset: lalnump;
}
.lst-alphal-p ol li:before {
    content: counter(lalnump, lower-alpha) ') ';
    counter-increment: lalnump;
}

.lst-alphal-p2 ol{
  list-style: none !important;
  counter-reset: lalnump2;
}
.lst-alphal-p2 ol li:before {
    content: '(' counter(lalnump2, lower-alpha) ') ';
    counter-increment: lalnump2;
}

.lst-roman-p ol{
  list-style: none !important;
  counter-reset:lrnump;
}
.lst-roman-p ol li:before {
  content: counter(lrnump, upper-roman) ') ';
  counter-increment: lrnump;
}
.lst-roman-p2 ol{
  list-style: none !important;
  counter-reset:lrnump2;
}
.lst-roman-p2 ol li:before {
  content: '(' counter(lrnump2, upper-roman) ') ';
  counter-increment: lrnump2;
}

.lst-romanl-p ol{
  list-style: none !important;
  counter-reset:lrlnump;
}
.lst-romanl-p ol li:before {
  content: counter(lrlnump, lower-roman) ') ';
  counter-increment: lrlnump;
}

.lst-romanl-p2 ol{
  list-style: none !important;
  counter-reset:lrlnump2;
}
.lst-romanl-p2 ol li:before {
  content: '(' counter(lrlnump2, lower-roman) ') ';
  counter-increment: lrlnump2;
}

/** OL Hierarchical
 * ---------------------------- */
.lst-dec-h ol{
  list-style: none !important;
  counter-reset: ldnum;
}
.lst-dec-h ol li:before {
    content: counter(ldnum) '. ';
    counter-increment: ldnum;
}
.lst-dec-h ol li ol li:before {
    content: counters(ldnum, '.') ' ';
}

.lst-alpha-h ol{
  list-style: none !important;
  counter-reset:lanum;
}
.lst-alpha-h ol li:before {
  content: counter(lanum, upper-alpha) '. ';
  counter-increment: lanum;
}
.lst-alpha-h ol li ol li:before {
    content: counters(lanum, '.', upper-alpha) ' ';
}

.lst-alphal-h ol{
  list-style: none !important;
  counter-reset:lalnum;
}
.lst-alphal-h ol li:before {
  content: counter(lalnum, lower-alpha) '. ';
  counter-increment: lalnum;
}
.lst-alphal-h ol li ol li:before {
    content: counters(lalnum, '.', lower-alpha) ' ';
}

.lst-roman-h ol{
  list-style: none !important;
  counter-reset:lrnum;
}
.lst-roman-h ol li:before {
  content: counter(lrnum, upper-roman) '. ';
  counter-increment: lrnum;
}
.lst-roman-h ol li ol li:before {
    content: counters(lrnum, '.', upper-roman) ' ';
}

.lst-romanl-h ol{
  list-style: none !important;
  counter-reset:lrlnum;
}
.lst-romanl-h ol li:before {
  content: counter(lrlnum, lower-roman) '. ';
  counter-increment: lrlnum;
}
.lst-romanl-h ol li ol li:before {
    content: counters(lrlnum, '.', lower-roman) ' ';
}


</pre></body></html>