@charset "utf-8"
@namespace h "http://www.w3.org/1999/xhtml";
/************************/
/*    REFERENCE LIST    */
/* Version:  2024.10.22 */
/************************/

/* Set up ol an ul so that they reset the list-item counter */
ol.re
{
    counter-reset: list-item;
}
/* Default list style types for ordered lists */
ol.re
{
    padding: 0.5em 1em;
    list-style-type: none;
    list-style-position: outside;
}
 /* The start attribute on ol elements */
ol.re[start]
{
    counter-reset: list-item /*attr(start, integer, 1)*/;
    counter-increment: list-item -1;
}

ol.re li.re:before
  {
    content: "Re "counter(list-item) ": ";
  }
