/*------------------POPUPS------------------------*/
#fade {
	display: none;
	background: #000; 
	position: fixed; left: 0; top: 0; 
	z-index: 10;
	width: 100%; height: 100%;
	opacity: .80;
	z-index: 9999;
}

.videoPlayer {
    margin: -10px auto 0 auto;
    text-align: center;
    width: 320px;
}

.popup_block{
	display: none;
	background: #ccc;
	padding: 20px 20px 0px 20px;
	margin:-10px 0 0 0;	
	border: 20px solid #ddd;
	float: left;
	font-size: 1.2em;
	height:230px;
	position: fixed;
	top: 50%; left: 50%;
	z-index: 99999;
	-webkit-box-shadow: 0px 0px 20px #000;
	-moz-box-shadow: 0px 0px 20px #000;
	box-shadow: 0px 0px 20px #000;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
img.btn_close {
	float: right; 
	/*margin: -100px -55px 0 0;*/
	position:relative;
	top:-55px;
	right:-65px;
	border:none !important;
}
.popup p {
	padding: 5px 10px;
	margin: 5px 0;
}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
	position: absolute;
}
*html .popup_block {
	position: absolute;
}