@charset "UTF-8";
/* CSS Document */

        .centre {text-align: center;}
		.wht {color:#FFF;}
		.sml { font-size: 75%;}
		.brd {border-top: 5px solid #111083 !important;}
		.blinking{
    animation:blinkingText 2s infinite;
}
@keyframes blinkingText{
    0%{     color: #111083; }
    49%{    color: #111083; }
    60%{    color: transparent; }
    99%{    color: transparent; }
    100%{   color: #111083; }
}

