@charset "UTF-8";
/* CSS Document */

/* the overlayed element */

#trigger {
	width:1010px;
	position:relative;
	height:0px;
	text-align:center;
	margin:0 auto;
	/*display:none;*/
}

.overlay {
	
	/* initially overlay is hidden */
	display:none;
	position:absolute;
	z-index:9998;
	
	/* growing background image */
	background-image:url(../img/video_vlak.png);
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:820px;
	height:525px;
	
	/* some padding to layout nested elements nicely  */
	/*padding:35px;*/

	/* a little styling */	
	font-size:0.9em;
	font-family:Aller, Verdana, Geneva, sans-serif
}

/* default close button positioned on upper right corner */
.overlay div.close {
	background-image:url(../img/close.png);
	position:absolute; right:-12px; top:-12px;
	cursor:pointer;
	height:50px;
	width:50px;
}

.overlay div.close:hover {
	background-position:0px -50px;
}
