﻿/* CSS Document */
#modalBackground
{
    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);
}
#modalWindow
{
    position: fixed;
    left: 0;
    top: 0;

	z-index: 10;
	background-color: white;
	display: none;
	width: 864px;
	height: 664px;
	border:  2px solid #669900;
}

/*<!--[if gte IE 5.5]>*/
/*<![if lt IE 7]>*/

#modalBackground, #modalIframe
{    
	position: absolute;
    left: expression(ignoreMe = document.documentElement.scrollLeft + "px");
    top: expression(ignoreMe = document.documentElembtWidth + "px");
    height: expression(document.documentElement.clientHeight + "px");
}

#modalIframe
{
	/*position: absolute;*/
	filter: alpha(opacity=0);
	z-index: 8;
}

#modalWindow
{
	position: absolute ;
    left: expression(ignoreMe = document.documentElement.scrollLeft + "px");
    top: expression(ignoreMe = document.documentElement.scrollTop + "px");
}

/*<![endif]>*/
/*<![endif]-->*/
