﻿/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;

	/* place overlay on top of other elements */
	z-index:10000;
	
	
	/* styling */
	float:left;
	vertical-align:top;
	background-color:#000000;
	background-image:url('images/overlay/background1.jpg');
	background-position: right bottom;
	background-repeat: no-repeat;
	width:1000px;	
	min-height:350px;
		border-top:2px;
		border-top-style:solid;
	border-top-color:#666666;
	padding:12px;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0px 0px 1000px 200px #000;
	-webkit-box-shadow: 0 0 1000px 200px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image: url("images/overlay/close.png");
	position: absolute;
	right: -15px;
	top: -15px;
	cursor: auto;
	height: 35px;
	width: 35px;
}
/* styling for elements inside overlay */
	.details {
	position:absolute;
		top:15px;
		right:15px;
			font-size:14px;
		color:#fff;
		width:330px;
	}
	
	.details h3 {
		color:#aba;
		font-size:15px;
		margin:0 0 -10px 0;
	}
	
	/* the overlayed element version 2 */
.simple_overlay_2{
	
	/* must be initially hidden version 2*/
	display:none;

	/* place overlay on top of other elements version 2*/
	z-index:10000;
	
	
	/* styling version 2*/
	float:left;
	vertical-align:top;
	background-color:#000000;
	background-image:url('images/overlay/background2.jpg');
	background-position:left top;
	background-repeat:repeat-x;
	width:700px;	
	height:650px;
	border:3px solid #0000;
	
	/* CSS3 styling for latest browsers version 2 */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner version 2*/
.simple_overlay_2 .close {
	background-image: url("images/overlay/close.png");
	position: absolute;
	right: -15px;
	top: -15px;
	cursor: auto;
	height: 35px;
	width: 35px;
}

		/* styling for elements inside overlay Second Style*/
	.details-2 {
	position:absolute;
		top:30px;
		right:30px;
		left:30px;
		
		font-size:12px;
		color:#fff;
		width:650px;
	}
	.details-2 img{
	padding-left:15px;
		padding-right:15px;
		padding-top:15px;

	
	}
