﻿.PopUpOverLay
{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 1000;
    display: none;
}
.PopUpcontainer
{
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 200px;
    min-height: 200px;
    margin-left: -110px;
    margin-top: -110px;
    padding: 10px;
    box-shadow: 0px 0px 5px black;
}
.PopUpMain
{
    height: 300px;
    width: 450px;
    background: white;
}
.PopUpFooter
{
    height: 30px;
    overflow:hidden;
}
.PopUpFooter a
{
    background: url('../images/lightbox/lightbox-btn-close.gif');
    height: 22px;
    width: 66px;
    float: right;
    margin: 8px 0 0 0;
    display: block;
}
