﻿div#modalWindow
{		
	display:none;
	position:absolute;	
	width:100%;
	top:0;
	left:0;	
	background-color:#e4e4e4;
	opacity: .35;               /* standard CSS3 style for transparency */
	-moz-opacity: .35;          /* transparency for older Mozillas */
	filter: alpha(opacity=35);  /* transparency for IE; note no decimal point */
	z-index:2000;
}

div#modalContent
{	
	position:absolute;	
	overflow:hidden;/*must have*/			
	z-index:2015;
}

div#modalContent iframe
{
	display:none;/*sorry for IE5*/
	display/**/:block;/*sorry for IE5*/
	position:absolute;/*must have*/
	top:0;/*must have*/
	left:0;/*must have*/
	z-index:-1;/*must have*/
	filter:mask();/*must have*/
	width:3000px;/*must have for any big value*/
	height:3000px/*must have for any big value*/;
}