/* some styling for triggers */
#triggers {
	text-align:center;
}

#triggers img {
	cursor:pointer;
	margin:20px 0 0 4px;
	background-color:#fff;
	border:1px solid #ccc;
	padding:2px;

	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* styling for elements inside overlay */
.details {
	position:absolute;
	top:15px;
	right:15px;
	font-size:12px;
	color:#fff;
	width:90%;
        line-height:1.3em;
}

.details h3 {
	color:#aba;
	font-size:15px;
	_font-size:17px;
	margin:0 0 10px 0;
}

.details h4 {
	color:#fff;
	font-size:12px;
	_font-size:14px;
	margin:0 0 0px 0;
}




/* 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;
	width:400px;
	_height:400px;
        min-height:300px;
	border:1px solid #666;

	/* 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(../images/close.png);
	_background-image:url(../images/overlay_close_IE6.gif);
        position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:36px;
	width:36px;
}

