/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#5E677D;
	
	width:730px;	
	min-height:200px;
	border:1px solid #999;
	
	/* 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/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}

#triggers-ueberschrft {
	background-color:#5E677D;
	font-size:11px;
	color:#ddd;
	font-weight:normal;
	line-height:22px;
	margin:0 0 5px 5px;
	padding:0 0 0 5px;
	border-bottom:#FFF 1px solid;
	border-right:#FFF 1px solid;
	border-top:#000 1px solid;
	border-left:#000 1px solid;
	width:240px;
}



#triggers {
	border:none;
}

#triggers img {
	cursor:pointer;
	margin:0 5px;
	background-color:#fff;
	border:1px solid #999;
	padding:3px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}



/* styling for elements inside overlay */
.details {
	position:absolute;
	top:15px;
	right:15px;
	font-size:11px;
	color:#fff;
	width:150px;
}

.details p {
	color: #F0F0F0;
	font-size:11px;
	margin:0 0 0 0;
}

.details h3 {
	color: #FFF;
	font-size:14px;
	margin:0 0 -10px 0;
}

