﻿html {
    position: relative;
    min-height: 100%;
}

.LinkBtn:link {
    text-decoration: none;
    font-size: medium;
}

.LinkBtn:visited {
    text-decoration: none;
}

.LinkBtn:hover {
    text-decoration: underline;
    color: red;
}

.LinkBtn:active {
    text-decoration: underline;
    color: red;
}

.modal {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: grey;
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
}

.center {
    z-index: 1000;
    margin: 300px auto;
    padding: 10px;
    width: 130px;
    background-color: White;
    border-radius: 10px;
    filter: alpha(opacity=100);
    opacity: 1;
    -moz-opacity: 1;
}

    .center img {
        height: 128px;
        width: 128px;
    }

.buttonShadow {
    background-color: #eaecef;
    border: none;
    color: Black;
    padding: 0px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 5px #999;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

    .buttonShadow:hover {
        box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
    }

    .buttonShadow:active {
        background-color: #c0c3c6;
    }

.buttonBlue {
    background-color: #337AB7;
    border: none;
    color: white;
    padding: 0px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    height: 35px;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

    .buttonBlue:hover {
        box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
    }

    .buttonBlue:active {
        background-color: #c0c3c6;
    }


.buttonSpan {
    display: inline-block;
    border-radius: 8px;
    background-color: #008CBA;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 5px;
    width: 200px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

    .buttonSpan span {
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
    }

        .buttonSpan span:after {
            content: '\00bb';
            position: absolute;
            opacity: 0;
            top: 0;
            right: -20px;
            transition: 0.5s;
        }

    .buttonSpan:hover span {
        padding-right: 25px;
    }

        .buttonSpan:hover span:after {
            opacity: 1;
            right: 0;
        }

.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.lableShadow {
    font-family: 'Times New Roman', Times, serif;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 1px 1px 2px black, 0 0 25px #4b4c4f, 0 0 5px #626263;
}


h1, h2, h3, span,strong, div, table, label, button {
    font-family: Calibri, sans-serif;
}

body {
    /* Margin bottom by footer height */
    msdargin-bottom: 40px;
    margin:0px 0px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 40px;
    line-height:22px; /* Vertically center the text there */
    background-color: #a5a5a5;
}