/* Overlay ELements */
.overlay {	
	/* initially overlay is hidden */
	display:none;	
	/* place overlay on top of other elements */ 
    z-index:10000; 	
	/* growing background image */
	background: #ffffff;	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:720px;
	overflow: hidden;	
	/* some padding to layout nested elements nicely  */
	padding:10px;

}
div.overlay a {
	height: 429px;
	display: block;
	overflow: hidden;
}
/* default close button positioned on upper right corner */
.overlay .close {
	background-image:url(img/flowplayer/overlay/close.png);
	position:absolute; right:5px; bottom:5px;
	cursor:pointer;
	height:35px;
	width:35px;
	
}
.overlay .description {
	padding: 10px;
	background: #ffffff;
}
/* some styling for triggers */
.vidtrigger {
	text-align:left;
}
.imgtrigger img {
	cursor:pointer;
}
/* styling for elements inside overlay */

.description h3 {
	color: #d15b05;
	font-size: 1.2em;
	font-weight: normal;
	margin:0;
	padding: 0;
}
.description h4 {
	color: #013658;
	font-size: .9em;
	font-weight: normal;
	margin:0;
	padding: 0;
