﻿/* bracket around letter for terms */
ol {
    counter-reset: list;
    margin: 15;
}

ol > li {
    list-style: none;
    position: relative;
}

ol > li:before {
    counter-increment: list;
    content: counter(list, lower-alpha) ") ";
    position: absolute;
    left: -1.7em;
}

ol.listv {
    counter-reset: list;
    margin: 15;
}

ol.listv > li {
    list-style: none;
    position: relative;
}

ol.listv > li:before {
    counter-increment: list;
    content: counter(list, lower-roman) ". ";
    position: absolute;
    left: -1.4em;
}