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) ") ";
    position: absolute;
    left: -36px;
}