
/* 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;
	/* filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;*/
	height: 450px;
	width:750px;	
	min-height:450px;
	border:3px solid #555555;
	
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 200px 5px #000;
	-webkit-box-shadow: 0 0 200px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../images/close.gif);
	position:absolute;
	background-repeat:no-repeat;
	right:-15px;
	top:-15px;
	cursor:pointer; 
	height:35px;
	width:35px;

}

/* some styling for triggers */
#triggers {
	text-align:default;
}
 
#triggers img {
	cursor:pointer;
	margin:0 5px;
	background-color:#fff;
	border:0px solid #ccc;
	padding:0px;
 
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}
 
 
 
/* styling for elements inside overlay */
.details {
	position:absolute;
	top:0px;
	left:20px;
	color:#fff;
	width:750px;
}
 
.details h3 {
	color:#aba;
	margin:0 0 -10px 0;
}