﻿.modal-overlay   
{   
    position:fixed;   
    top:0;   
    right:0;   
    bottom:0;   
    left:0;   
    height:100%;   
    width:100%;   
    margin:0;   
    padding:0;   
    background-color: #000000; 
    z-index:101;
}
.modal-loading
{
	position:fixed;   
    top:50%;   
    left:50%;   
    margin:0;   
    padding:0;   
    z-index:102;
    width: 150px;
    height: 10px;
} 
.modal-window   
{   
    position:fixed;   
    top:50%;   
    left:50%;   
    margin:0;   
    padding:0;   
    z-index:103; 
    background-color: #FFFFFF;
} 
.close-window   
{   
    position:absolute;   
    width:24px;   
    height:24px;   
    right:8px;   
    top:-32px;   
    background:transparent url('/images/icons/close-red-24-h.gif') no-repeat scroll right top;   
    text-indent:-99999px;   
    overflow:hidden;   
    cursor:pointer;   
    opacity:.5;   
    filter: alpha(opacity=50);   
    -moz-opacity: 0.5;   
}   
.close-window:hover   
{   
    opacity:.99;   
    filter: alpha(opacity=99);   
    -moz-opacity: 0.99;   
}

.save-window   
{   
    position:absolute;   
    width:24px;   
    height:24px;   
    left:8px;   
    top:-32px;   
    background:transparent url('/images/icons/save-24-h.gif') no-repeat scroll right top;   
    text-indent:-99px;   
    overflow:hidden;   
    cursor:pointer;   
    opacity:.5;   
    filter: alpha(opacity=50);   
    -moz-opacity: 0.5;   
}   
.save-window:hover   
{   
    opacity:.99;   
    filter: alpha(opacity=99);   
    -moz-opacity: 0.99;   
}

/* IE6 hack */
* html .modal-overlay   
{   
    position: absolute;   
    height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');   
}   
* html .modal-window
{
	position: absolute;	
	margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}


/* Loading Window */
#loadingWindow
{
	vertical-align: middle;
	font-family: Verdana;
	font-size: 30px;
	height: 100px;
	width: 200px;
	padding-left: 50px;
	padding-top: 35px;
}

#loadingWindow img
{
	margin-top: -6px;
	margin-bottom: 29px;
	margin-left: -45px;
	position: absolute;
}