﻿body,html,form {
    height:100%;
    margin:0;
    overflow:auto;
}
.hide
{
    display:none;
}

.shrinkie
{
    position: fixed;   /* Take it out of the flow of the document */
    left: 0;           /* Left edge at left for now */
    right: 0;          /* Right edge at right for now, so full width */ 
    width: 100%;      /* Give it the desired width */ 
    height: 100%;
    margin: auto;      /* Center it */
    max-width: 100%;   /* Make it fit window if under 500px */ 
    z-index: 3;    /* Whatever needed to force to front (1 might do) */
    overflow:auto;
}
.StandardWidth
{
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    height:100%;
    z-index:3;
}

.Banner
{
    position: fixed;
    height: 32px;
    width: 100%;
    background-image: url(/images/gradient1.bmp);
    background-repeat: repeat-x;
    -moz-background-size: contain;
    background-size: contain;
    border-bottom: 1px solid orange;
    z-index: 4;
}

.BannerImage
{
    position:absolute;
    height:100%;
    width:auto;
    z-index:20;
}

.Navigation
{
    position:fixed;
    width:0;
}

.Content
{
    position: fixed;   /* Take it out of the flow of the document */
    left: 0;           /* Left edge at left for now */
    right: 0;          /* Right edge at right for now, so full width */ 
    top: 30px;         /* Move it down from top of window */
    bottom: 0;
    width: 1000px;      /* Give it the desired width */ 

    margin: auto;      /* Center it */
    max-width: 100%;   /* Make it fit window if under 500px */ 
    z-index: 3;    /* Whatever needed to force to front (1 might do) */
    /*background-color: white;*/
    background-color:#ffefdc;
    overflow-y:auto;
    overflow-x:hidden;
}

.Login
{
    position:absolute;
    bottom:0;
    right:10px;
}
