/* the overlayed element */
.simple_overlay {
	/* must be initially hidden */
	display:none;
	/* place overlay on top of other elements */
	z-index:10000;
	/* styling */
	background-color: #E8D4BC;
	width:700px;
	min-height:200px;
	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);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:32px;
	width:32px;
}



.img_in{
	padding-top:40px;
	padding-left:5em;
	float:left;
	
	width: 450px;

}


.img_ini{
	padding-top:150px;
	padding-left:5em;
	float:left;
	
	width: 450px;

}
.img_ina{
	padding-top:40px;
	padding-left:150px;
	float:left;

	

}


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

#triggers img {
	cursor:pointer;
	

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



/* styling for elements inside overlay */
.details {
	position:relative;
	right:15px;
	font-size:13px;
	color:#fff;
	width:165px;
	background-color: #541617;
	padding:6px;
	text-align:left;
	height:600px;
	float:right;
	
}

.details_v {
	position:relative;
	right:15px;
	font-size:12px;
	color:#fff;
	width:135px;
	background-color: #541617;
	padding:6px;
	text-align:left;
	height:650px;
	float:right;
	
}

.details h3 {
	color:#E8D4BC;
	font-weight:bold;
	font-size:18px;
	margin:0 0 -10px 0;
}

