/* ----------------------------------------------------------------------------
   Overlay
-----------------------------------------------------------------------------*/

/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display: none;
	
	/* place overlay on top of other elements */
	z-index: 10000;
	
	/* styling */
	background-color: #fff;
	
	width: 720px;	
	min-height: 200px;
	border: 1px solid #ccc;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow: 0 0 10px #ccc;
	-webkit-box-shadow: 0 0 10px #ccc;	
}

	.simple_overlay_inner {
		display: block;
		padding: 15px;
	}
		
		.simple_overlay_inner h1 {}


/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image: url(../_img/overlay/close.png);
	position: absolute;
	right: -15px;
	top: -15px;
	cursor: pointer;
	height: 35px;
	width: 35px;
}

.simple_overlay p { margin: 0.25em 0 1.25em; line-height: 1em; }

.overflowWrap {
	display: block;
	padding: 5px;
	max-height: 500px;
	border: 1px solid #eee;
	overflow: auto;
}

.overlayWrap {
	display: block;
	padding: 5px;
	background: #000;
}

.overlayPhoto {
		display: block;
		margin: 0;
		padding: 0;
		width: 680px;
		height: 510px;
		background: url(../_img/loader.gif) center no-repeat #000;
		text-align: center;
		overflow: hidden;
	}
		
		.overlayPhoto img.mainPhoto { vertical-align: middle; }
		
		.overlayPhoto img { vertical-align: middle; }
			
			.overlayPhoto img.width { width: 100%; }
			.overlayPhoto img.height { height: 100%; }


.simple_overlay input.btn_style1 {
	padding: 3px 7px;
	font-size: 1.167em; /* 14px = 1.167em */
	text-transform: uppercase;
}


.simple_overlay .deleteAlbum {
	display: block;
	margin: 25px 0 0;
	font-size: 1.167em; /* 14px = 1.167em */
	text-align: center;
	text-shadow: 0px 1px 0px #fff;
}
