﻿/* the overlayed element */
.video_overlay {
	
	/* must be initially hidden */
	 display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#333;
	
	width:386px;	
	min-height:200px;
	border:1px solid #666;
	
	text-align:center;
	padding-bottom: 1px;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.video_overlay .close {
	background-image:url(/images/close.png);
	position:absolute;
	right:-35px;
	top:-25px;
	cursor:pointer;
	height:36px;
	width:36px;
	//background-image:url(/images/close.gif);
}
/* tooltip styling */ 
.tooltip {display:none;height:400px;width:720px;font-size:11px;color:#fff;text-align:center;position:absolute;top:0px; //margin-top: 0px; //margin-left:0px;}
.tooltip .ttipbg {background:url(/images/black_arrow_big3.png);height:400px;padding:0px 0px 0px 0px;width:720px;font-size:11px;color:#fff;text-align:center;}
