	/* some styling for triggers */
	#triggers {
		text-align:left;
		position: relative;
	}
		
	#triggers img {
		/*margin:0 5px;*/
		background-color:#fff;
		border:1px solid #ccc;
		/*padding:2px;*/
	
		/* some fancy shadows for modern browsers */
		-moz-border-radius:4px;
		-webkit-border-radius:4px;		
	}
	
	/* Let's overlay a fancy play image over the video thumbnail so people know they can click it*/
	#triggers span {
		text-align:left;
		position: absolute;
		left:0;
		top:0;
		width: 170px; /* this is the width of the image + (1 px border + 2 px padding) times 2 */
		height: 100%;
		background: transparent url(../image/jwlightbox/play.png) no-repeat center center;
		cursor:pointer;
	}

	/* the overlayed element */
	.simple_overlay {
	
		/* must be initially hidden */
		display:none;
	
		/* place overlay on top of other elements */
		z-index:10000;
	
		/* styling */
		background-color:#000;
	
		margin-top:20px;
		border:30px solid #000;
	
		/* 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 */
	.simple_overlay .close {
		background-image:url(../image/jwlightbox/close.png);
		position:absolute;
		right:-15px;
		top:-15px;
		cursor:pointer;
		height:35px;
		width:35px;
	}