﻿/**
 * 100% height layout with header and footer
 * ----------------------------------------------
   with html5
 */

html, body.login
{
    margin: 0;
    padding: 0;
    height: 100%; /* needed for container min-height */
    font-family: arial,sans-serif;
}

div#container
{
    position: relative; /* needed for footer positioning*/
    margin: 0 auto; /* center, not in IE5 */
    padding-top: 50px;
    padding-bottom: 50px;
    width: 300px;
    height: auto !important; /* real browsers */
    height: 100%; /* IE6: treaded as min-height*/
    min-height: 100%; /* real browsers */
}

div#header
{
    padding-left: 16px;
}

div#content
{
    background-color: #E8E8E8;
    border: 1px solid gray;
    border-radius: 10px;
    padding: 16px;
}

div#footer
{
    position: absolute;
    width: 100%;
    bottom: 0; /* stick to bottom */
}

    div#footer #mainFooter
    {
        color: white;
        background-color: transparent;
    }

.messagebox
{
    background-color: white;
    background-color: #E8E8E8;
    border: 1px solid gray;
    border-radius: 10px;
    padding: 8px;
}

.messagebox-details
{
    color: black;
}

div#customHeader
{
    padding: 16px;
    background-color: white;
}

div#customFooter
{
    padding: 16px;
    background-color: white;
}

.loginform-header
{
    padding-top: 24px;
    padding-bottom: 16px;
    font-weight: bold;
    font-size: 16px;
}

.loginform-body
{
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
    padding-top: 16px;
    padding-bottom: 16px;    
}

.loginform-footer
{
    padding-top: 16px;    
}

.loginform-textbox
{
    width: 262px;
}