/*Source of code: http://www.xul.fr/javascript/lightbox-javascript-css.html */

#filter
{
	display: none;
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index:1001;
	opacity:0.7;
        /*The below included for IE 7*/
	filter: alpha(opacity=10);
}
#box 
{
	display: none;
	position: absolute;
	top: 10%;
	left: 20%;
	width:800px;
	height: 600px;
	padding: 0;
	margin:0;
	border: 2px solid black;
	background-color: #B1E11C;
	z-index:1002;
	overflow:hidden;
	
}
#ed_iframe
{
	width:100%;
	height:550px;
}
#ed_closeBox
{
	margin-left:10px;
}
