ol.list-alpha,
ul.list-alpha,
ol.list-dash,
ul.list-dash {
    margin-left: 0;
    padding-left: 0;
}

ol.list-alpha,
ul.list-alpha {
    counter-reset: rcuh-alpha-counter;
    list-style: none;
}

ol.list-alpha li:before,
ul.list-alpha li:before {
    content: counter(rcuh-alpha-counter, upper-alpha) ".";
    counter-increment: rcuh-alpha-counter;
    font-weight: bold;
    margin-right: 5px;
}

ol.list-alpha li,
ul.list-alpha li {
    list-style-type: none;
    list-style-position: inside;
    text-indent: calc(-1em - 5px);
    padding-left: calc(1em + 5px);
}


ol.list-dash,
ul.list-dash {
    list-style: none;
}

ol.list-dash li:before,
ul.list-dash li:before {
    content: "\2013";
    font-weight: bold;
    margin-right: 10px;
}

ol.list-dash li,
ul.list-dash li {
    list-style-type: none;
    list-style-position: inside;
    text-indent: calc(-1em - 10px);
    padding-left: calc(1em + 10px);
}

h2.header-divider {
    display: block;
    border-bottom: 1px solid #4f6bc9;
    margin-bottom: 24px;
}

.col-half {
    float: left; 
    width: 50%; 
}
.col-half-first {
    padding-right: 40px;
}

@media only screen and (max-width:640px) {
    .col-half {
        float: none;
        width: 100%;
        margin-bottom: 1.5em;
    }

    .col-half-first {
        padding-right: 0;
    }

    .rcuh-form input[type="submit"] {
        width: 100%;
        padding: 1.5em;
    }
}