﻿#modalPage
{
    display: block;
    position: fixed;
    width: 100%;
    height: 101%;
    top: 0px; 
    left: 0px;
    min-height: 100%;
}

.modalBackground
{
    filter: Alpha(Opacity=40); 
    -moz-opacity:0.4; 
    opacity: 0.4;
    width: 100%; 
    height: 120%; 
    background-color: #999999;
    position: absolute;
    z-index: 500;
    top: 0px; 
    left: 0px;
    min-height: 100%;
}

.modalContainer
{
    position: absolute;
    width: 400px;
    left: 50%;
    top: 30%;
    z-index: 750;
}

.modal
{
    background-color: white;
    border: solid 4px #EB6909; 
    position: relative;
    top: -150px;
    left: -150px;
    z-index: 1000;
    width: 400px;
    height: 400px;
    padding: 0px;
}

.modalTop
{
    width: 392px;
    background-color: #EB6909;
    padding: 4px;
    color: #ffffff;
    text-align: center;
}

.modalTop h2
{
    color: #ffffff;
    font-weight: bold;
    font-size: large;
}

.modalBody
{
    padding: 10px;
}

