/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	
	background-image: url(/images/pop_sugestions.png);
	background-repeat: no-repeat;
	
	width:320px;
	min-height:330px;
	
	margin-left: -200px;
	padding: 40px;
	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(/images/close.png);
	position:absolute;
	right: -3px;
	top: 4px;
	cursor:pointer;
	height:35px;
	width:35px;
}
 
/* some styling for triggers */
#triggers {
	text-align:center;
}

.radio_games {
	padding: 3px 3px 3px 1px;
}
