/* Generic styles */

a,
a:visited,
a:link,
a:active {
    color: #0E5FD8;
    text-decoration: none;
}

.Important {
    color: Red;
}

.WarningLabel {
    color: Red !important;
    text-align: left !important;
}

.AutoWidth {
    width: auto !important;
}

body {
    color: #252F47;
    font-family: Verdana,Arial,Helvetica,sans-serif;
    font-size: 70%;
    line-height: 17px;
    text-align: center;
    background-color: #F0F0F2;
}

    body.LightBody {
        background-color: #FFFFFF;
    }

div {
    display: block;
}

    div#Header,
    div#Body,
    div#Footer {
        width: 100%;
        min-width: 986px;
    }

h2 {
    color: #005AFF;
    font-size: 250%;
    font-weight: normal;
    line-height: normal;
    margin: 0;
    padding: 6px 0 5px;
    text-align: left;
}

.subHeader {
    color: #005AFF;
    font-size: 150%;
    font-weight: normal;
    line-height: normal;
    margin: 0;
    padding: 6px 0 5px;
    text-align: left;
}

div#Body p {
    display: block;
    margin-bottom: 10px;
}

div#Body ul {
    display: block;
    width: 80%;
    padding: 0 0 0 20px;
}

div#Body div.ValidationBlock ul {
    width: 97%;
}

div#DivIE6Message {
    display: none;
}

.balloon {
    width: 319px;
}

.balloonmiddle {
    width: 319px;
    background-image: url(../img/balloonmiddle.gif);
    background-repeat: repeat-y;
    font-family: tahoma, arial;
    font-size: 10px;
    font-style: normal;
    overflow: auto;
    padding-left: 20px;
    padding-right: 40px;
    margin-right: 15px;
}

.balloontop {
    width: 319px;
    background-image: url(../img/balloontop.gif);
    height: 10px;
    background-repeat: no-repeat;
}

.balloonbottom {
    width: 319px;
    background-image: url(../img/balloonbottom.gif);
    height: 35px;
    background-repeat: no-repeat;
}

.HelpImage {
    vertical-align: bottom;
    margin-top: 13px;
    margin-left: 1px;
}

.load {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 6px solid blue;
    border-radius: 50%;
    border-top: 6px solid white;
    width: 30px;
    height: 30px;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

