.table1 {
    border:1px solid black;
}

.tableheader1 {
    font-weight: bold;
}
.tablecell1 {
    border:1px solid black;
    padding-left: 20px;
    padding-right: 20px;
}

.titlebar {
    background-color: #13223C;
}

.titletext {
    color:#ffffff;
    font-family: "H@ND-font", "Helvetica Neue" , Arial, Verdana;
    margin-right:50px;
}

.field-validation-error
        {
            color: #ff0000;
        }

.errorText {
    color: #ff0000;
}

.errorblinking{
    animation:errorBlinkingText 1.2s infinite;
}
@keyframes errorBlinkingText{
    0%{     background-color: #fff;    }
    49%{    background-color: #fff; }
    60%{    background-color: red; }
    99%{    background-color:red;  }
    100%{   background-color: #fff;    }
}