    .GridPager a, .GridPager span
    {
        display: block;
        height: 22px;
        width: 22px;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
    }
    .GridPager a
{
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #4079bf;
}
    .GridPager span
{
    background-color: #4079bf;
    color: #CCCCCC;
    border: 1px solid #4079bf;
}

#divImage
{
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    height: 550px;
    width: 600px;
    padding: 3px;
    border: solid 1px black;  
}

.blinking{
    animation:blinkingText 1s infinite;
}
@keyframes blinkingText{
    0%{     color:  #fff;    }
    49%{    color: #78281F; }
    50%{    color: #B03A2E; }
    99%{    color: #fff;  }
    100%{   color: #fff;    }
}