.tllwrap ol {
    list-style-type: none;
    counter-reset: item;
    padding: 0;
    margin: 0;
}
.tllwrap ol > li {
    display: table;
    counter-increment: item;
    line-height: 1.4;
    padding-top: 1em;
}
.tllwrap ol > li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.72em;
    white-space: nowrap;
}
.tllwrap li ol > li {
    margin: 0;
}
.tllwrap li ol > li:before {
    content: counters(item, ".") " ";
}