/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error
{
    color: #ff0000;
}

.field-validation-valid
{
    display: none;
}

.input-validation-error
{
    border: 1px solid #ff0000;
    background-color: #ffeeee;
    margin-bottom: 0px;
}

.validation-summary-errors
{
    font-weight: bold;
    color: #ff0000;
}

.validation-summary-valid
{
    display: none;
}

.blinktext
{
    font-size: 24px;
    margin: 0px;
    font-weight: 600;
    -webkit-animation: mymove1 1s infinite; /* Chrome, Safari, Opera */
    animation: mymove1 1s infinite;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes mymove1
{
    0%
    {
        color: #ECF0F5;
    }

    50%
    {
        color: #ECF0F5;
    }

    100%
    {
        color: red;
    }
}

/* Standard syntax */
@keyframes mymove1
{
    0%
    {
        color: #ECF0F5;
    }

    50%
    {
        color: #ECF0F5;
    }

    100%
    {
        color: red;
    }
}







.clickbutton
{
    width: 100%;
    margin-bottom: 20px;
    font-size: 18px;
}


@media (max-width: 1220px)
{
    .clickbutton
    {
        width: 100%;
        margin-bottom: 20px;
        font-size: 14px;
    }
}

@media (max-width: 1054px)
{
    .clickbutton
    {
        width: 100%;
        margin-bottom: 20px;
        font-size: 12px;
    }
}




.footicker
{
    margin: -16px -15px 15px -15px;
    display: block;
    width: 110%;
    background: #ecf0f5;
    border-bottom: 1px solid #d2d6de;
    padding: 15px 15px;
    box-sizing: content-box;
}

    .footicker .div1
    {
        width: 90%;
        overflow: hidden;
        -webkit-box-shadow: 0px 0px 11px 1px rgba(0,0,0,0.34);
        -moz-box-shadow: 0px 0px 11px 1px rgba(0,0,0,0.34);
        box-shadow: 0px 0px 11px 1px rgba(0,0,0,0.34);
    }

    .footicker .dt
    {
        display: table;
        width: 100%;        
    }

        .footicker .dt .dc
        {
            display: table-cell;
            vertical-align: middle;
        }

            .footicker .dt .dc:first-child
            {
                padding: 8px 16px;
                background: #3c8dbc;
                color: #ffffff;
                font-size: 15px;
                white-space: nowrap;
            }

.marquee
{
    width: 1100px;
    overflow: hidden;
}

.footlinks,.footlinks:hover,.footlinks:focus
{
    position: relative;
    font-size: 15px;
    padding-left: 25px;
    padding-right: 25px;
    display: inline-block;
    color: #333333;
}

    .footlinks:before
    {
        content: "\f0a4";
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        text-decoration: inherit;
        color: #333333;
        font-size: 18px;
        position: absolute;
        top: 0px;
        left: 0;
    }
