﻿ol.numbered {
    counter-reset: item;
    margin-top: 10px;
    padding-left: 0;
}

ol.numbered > li {
    display: table;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: bold;
}

ol.numbered > li:before {
    display: table-cell;
    width: 40px;
    content: counters(item, ".") ". ";
    counter-increment: item;
}

ol.numbered > li li {
    font-size: 14px;
    font-weight: normal;
}

ol.numbered p, table {
    font-size: 14px;
    font-weight: normal;
}

ol.lettered {
    list-style-type: lower-alpha;
}

ol.lettered > li {
    margin-bottom: 5px;
}

ol.roman {
    list-style-type: lower-roman;
}

ol.roman > li {
    margin-bottom: 5px;
}

ul.bullet > li {
    margin-bottom: 5px;
}
