﻿/* http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/ 
*/

.black_overlay{
    display: none;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 25000px;
    background-color: black;
    z-index:1001;
    -moz-opacity: 0.8;
    opacity:.80;
    filter: alpha(opacity=80);
}

.white_content {
    display: none;
    position: absolute;
    top: 10%;
    left: 10%;
    width: 73%;
    height: 80%;
    padding: 16px;
    border: 16px solid #d10c55;
    background-color: white;
    z-index:1002;
    overflow: auto;
}

.white_content_display_old {
    display: block;
    position: absolute;
    top: 200px;
    left: 200px;
    width: 200px;
    height: 200px;
    padding: 16px;
    z-index:1002;
    overflow: auto;
    border: 16px solid #d10c55;
    background-color: white;
}

.white_content_display {
    display: block;
    position: absolute;
    top: 200px;
    left: 200px;
    width: 110px;
    height: 100px;
    padding: 0px;
    z-index:1002;
    overflow: auto;
}


.black_overlay_display{
    display: block;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 25000px;
    background-color: black;
    z-index:1001;
    -moz-opacity: 0.3;
    opacity:.30;
    filter: alpha(opacity=30);   
}


.black_overlay_small{
    display: none;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 25000px;
    background-color: black;
    z-index:1001;
    -moz-opacity: 0.8;
    opacity:.80;
    filter: alpha(opacity=80);
}

.white_content_small {
    display: none;
    position: absolute;
    top: 30%;
    left: 30%;
    width: 33%;
    height: 40%;
    padding: 16px;
    border: 16px solid #d10c55;
    background-color: white;
    z-index:1002;
    overflow: auto;
}

.PopupMessage
{
	padding-top:20px;
	color:#000000;
	font-size:18px;
	font-weight:bold;
	text-align:center;
}