/* Add to label tag to add red astrisk to indicate required form field */
label.required:after {
	content:"*";
	color: red;	
}

fieldset.form-field-border {
    border: 1px solid #eee !important;
    border-left: 5px solid #eee !important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow:  0px 0px 0px 0px #000;
            box-shadow:  0px 0px 0px 0px #000;
}

legend.form-field-border {
	width:inherit;
	padding:0 10px;
	border-bottom:none;
    font-size: 1em !important;
    font-weight: bold !important;
    text-align: left !important;

}

