/* CSS for List with Parentheses
 * Designed by Iseulbee
 */
ol.parenthesis {
    counter-reset: list-in-thm;
    margin-left: 0;
    padding-left: 0;
}
ol.parenthesis li {
    list-style: none;
    position: relative;
    padding-left: 0;
    margin-left: 2.2em;
}
ol.parenthesis li:before {
    content: "(" counter(list-in-thm) ")";
    counter-increment: list-in-thm;
    position: absolute;
    width: 3.0em;
    left: -3.5em;
    text-align: right;
}