ol.legal-list {
    counter-reset: list;    
}
ol.legal-list > li {
    list-style: none;
    position: relative;
    margin-left: 36px;
}
ol.legal-list > li:before {
    counter-increment: list;
    content: "(" counter(list, lower-alpha) ") ";
    color: hsl(217, 71%, 53%);
    position: absolute;
    left: -36px;
}