/* the overlayed element */
.simple_overlay {
	/* must be initially hidden */
	display:none;
	/* place overlay on top of other elements */
	z-index:10000;
	/* styling */
	background-color:#333;
	min-height:200px;
	border:15px solid #EEEDE9;

	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;
	margin-right: auto;
	margin-left: auto;
}
/*css do video*/
#pop_window{
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	opacity: 0.8;
	z-index: 9998;
	background-color: rgb(17, 17, 17);
	text-align: center;
	width: 100%;
}
.container_pop_window{
	z-index: 10000;
	text-align: left;
	display: block;
	width: 550px;
	height: 300px;




	-moz-box-shadow:0 0 90px 5px #000000
; 				margin-right: auto;
	margin-left: auto;
	margin-top: 50px;
	position: relative;
	background-color: #333333;
}
#close_pop_window{
	display: block;
}
/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../img/scrollgallery/close.png);
	position:absolute;
	right:-30px;
	top:-30px;
	cursor:pointer;
	height:35px;
	width:35px;
	z-index: 10001;
}

