﻿body {
    background-image: url("/images/subtle_grunge.png");
    background-color: #F3F0F0;
}


input[type="radio"] {
            -ms-transform: scale(1.5); /* IE 9 */
            -webkit-transform: scale(1.5); /* Chrome, Safari, Opera */
            -moz-transform: scale(1.5);
            -o-transform: scale(1.5);
            transform: scale(1.5);
        }

        input[type="checkbox"] {
            -ms-transform: scale(1.5); /* IE 9 */
            -webkit-transform: scale(1.5); /* Chrome, Safari, Opera */
            -moz-transform: scale(1.5);
            -o-transform: scale(1.5);
            transform: scale(1.5);
        }



        .blink_me {
            -webkit-animation: blinker 1s linear infinite;
            -moz-animation: blinker 1s linear infinite;
            -ms-animation: blinker 1s linear infinite;
            -o-animation: blinker 1s linear infinite;
            animation: blinker 1s linear infinite;
            font-weight: bold;
        }

        @-moz-keyframes blinker {
            50% {
                opacity: 0;
            }
        }

        @-webkit-keyframes blinker {
            50% {
                opacity: 0;
            }
        }

        @keyframes blinker {
            50% {
                opacity: 0;
            }
        }
td {
    vertical-align: middle !important;
}
th {
    vertical-align: middle !important;
}

