﻿.modalBox
{
	border: solid 1px #557AF9;
}
.modalMessage
{
	margin:15px;
	text-align:center
}
.modalControl
{
	text-align:center;
	margin:0px 15px 15px 0px;
}
.modalButton
{
	border: solid 1px #9999bb;
	margin: 0px 5px 0px	5px;
}

.modalBG
{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    z-index: 9;
    background-color:#333333;
    display: none;
    opacity: 0.40;
    filter: alpha(opacity=40)
}
.modalShadow
{
    border-bottom: solid 2px #9EB4FC;
    border-right: solid 2px #9EB4FC;

    position: fixed;

    z-index: 10;
    background-color: white;
    display: none;
}

*html .modalBG, .modalIShim
{    
    position: absolute;
    left: expression(eval(document.documentElement.scrollLeft));
    top: expression(eval(document.documentElement.scrollTop));
    width: expression(document.documentElement.clientWidth + "px");
    height: expression(document.documentElement.clientHeight + "px");
}

*html .modalIShim
{
    filter: alpha(opacity=0);
    z-index: 8;
}

*html .modalShadow
{
    position: absolute;
}

