﻿body {
    width: 1000px;
    margin: 10px auto;
    font-family: "Helvetica Neue", "Lucida Grande", "Segoe UI", Arial, Helvetica, Verdana, sans-serif;
    font-size: 14px;
    color: #333;    
    
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
    padding: 30px;
}

.logo {
    text-align: left;
    padding-top: 5px;    
}

h1
{
    font-size: 36px;
    font-weight: 400;

    margin: 0 auto 0 auto; 
    padding: 30px 0 20px 0; 
    text-align:left;
}

h2
{
    font-size: 22px;
    font-weight: 400;

    margin: 0 auto 0 auto; 
    padding: 5px 0 5px 0; 
    text-align:left;
}

h3 {
    font-size: 14px;
    font-weight: 500;

    margin: 0 auto 0 auto;
    padding: 5px 0 5px 0;
    text-align: left;
}

.messsage
{
    font-size: 12px;

    margin: 0 auto 0 auto; 
    padding: 5px 0 5px 0; 
    text-align: left;
}

.small
{
    font-size: 9px;
    color: darkgray;           

    margin: 0 auto 0 auto; 
    padding: 5px 0 5px 0; 
    text-align: left;
}


.button {
    cursor: pointer;
    font-size: medium;
    font-weight: 500;
    color: white;
    text-align: center;
    border: none;
    background-color: red;
    border-radius: 6px;
    padding: 2px;
    height: 40px;
    min-width: 140px;
}

    .button:hover {
        background-color: #cc0000;
    }

.gray_button {
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    border: 1px solid #cfcfcf;
    background-color: #eee;
    border-radius: 4px;
    padding: 2px;
    height: 30px;
    min-width: 100px;
}

    .gray_button:hover {
        border-color: gray;
        background-color: #cfcfcf;
    }


.input {
    font-size: small;
    width: 360px;
    height: 22px;
    border: 1px solid #cfcfcf;
    background-color: white;
    border-radius: 4px;
}

.table {
    border-collapse: separate;
    border-spacing: 8px;
}

a
{
    text-decoration: none;
    color: red;
}