﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */

/* styles for textboxes */
.txtnormal{
    font-family: Verdana;
    font-size: 12px;
    width: 120px;
}
.txtnormal_big{
    font-family: Verdana;
    font-size: 12px;
    width: 250px;
}
.txtname{
    font-family: Verdana;
    font-size: 11px;
    width: 200px;
}
/* styles for validation helpers */
.field-validation-error {
    color: #b94a48;
}

.field-validation-valid {
    display: none;
}

.formtd {
    width: 20%;
}
input.input-validation-error {
    border: 1px solid #b94a48;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    color: #b94a48;
}

.validation-summary-valid {
    display: none;
}
 .alignright {
        text-align: right;
    }
 /*Required Fields*/
/*.form-group.required .control-label:after {
    color: #d00;
    content: "*";
    position: absolute;
    margin-left: 8px;
    top: 7px;
}*/

label:has(+ input:required):after {
    content: ' *';
    color: red;
}
label:has(+ textarea:required):after {
    content: ' *';
    color: red;
}
label:has(+ select:required):after {
    content: ' *';
    color: red;
}