	/* some styling for triggers */
	#triggers {
		text-align:center;
	}
	
	#triggers img {
		cursor:pointer;
		margin:0 5px;
		background-color:#333;
		border:1px solid #ccc;
		padding:2px;
	
		-moz-border-radius:4px;
		-webkit-border-radius:4px;
		
	}
	
	
	
	/* styling for elements inside overlay */
	.details {
		position:absolute;
		bottom: 20px;
		left: 0px;
		padding-top: 6px;
		padding-bottom: 4px;
		padding-left: 4px;
		padding-right: 6px;
		font: 12px Arial;
		color:#e3e3e3;
		background: #000;
		width: 60%;
		height: 15px;
		text-align: right;
		font-weight: bold;
	}


	/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color: transparent;
	width:auto;	
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 0px #1e1e1e;
	-webkit-box-shadow: 0 0 90px #1e1e1e;	
}

.simple_overlay img {

	border: 2px solid black;
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(http://basicdc.com/jqt/close_button.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}


/* the overlayed element */
.apple_overlay {
	
	/* initially overlay is hidden */
	display:none;
	
	/* growing background image */
	background:url(http://scoringlive.com/images/white.png);
	
	/* 
		width after the growing animation finishes
		height is automatically calculated
	*/
	width:600px;		
	
	/* some padding to layout nested elements nicely  */
	padding:35px;

	/* a little styling */	
	font-size:12px;
	text-align: center;
}

/* default close button positioned on upper right corner */
.apple_overlay .close {
	background-image:url(http://basicdc.com/jqt/close_button.png);
	position:absolute; right:5px; top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}

.contentWrap {
font: 12px Arial;
}
