﻿/* 
   The below CSS file was built using samples + techniques described by Rachel Andrew in her book:
   The CSS Anthology: 101 Essential Tips, Tricks & Hacks
*/

/* Overall Page */

body {
    margin: 0;
    padding-bottom: 2em;
    background-color: #FFFFFF;
    color: #000000;
    /*font-family: Verdana, Arial, Helvetica, sans-serif;*/
    font-family: sans-serif;
    border-top: 1px solid #B51032;
}

@font-face {
    font-family: 'Sarabun'; /*a name to be used later*/
    src: url('Font/Sarabun-Bold.ttf'); /*URL to font*/
}

blink {
    animation: 1s linear infinite condemned_blink_effect;
    color: #ff0000;
    font-size: 15px;
    font-weight: bold;
}

@keyframes condemned_blink_effect {
    0% {
        visibility: hidden;
    }

    50% {
        visibility: hidden;
    }

    100% {
        visibility: visible;
    }
}
