div.required
label:after {
    content: " *";
    color: red;
}

/* removing individual required star indicators from checkbox groups */
.no-star > .checkbox > label:after{
    content:"" !important;
}

.no-star label:after{
    content:"" !important;
}

.no-star label{
    margin-right:1em;
}

select {
    color: #999 !important;
}

/* new line radio buttons, can be used for other things*/

.no-star-nl > .checkbox > label:after{
    content:"" !important;
}

.no-star-nl label:after{
    content:"" !important;
}

.no-star-nl label{
    margin-right:1em;
    width:100%;
}