
/* the overlayed element */
.simple_overlay {
	/* schriftfarbe für alle Textelemente im Overlay */
	color: #fff;
	
	/* 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(../img/close.png);
	position:absolute;
	right:-45px;
	top:-45px;
	cursor:pointer;
	height:35px;
	width:35px;
} 

/* Text über dem Player im Overlay */
#rbbheadTitle {
	color: white;
	font-size: 12px;
	line-height: 19px;
}