/* the overlayed element */
.simple_overlay {
	/* must be initially hidden */
	display:none;
	/* place overlay on top of other elements */
	z-index:10000;
	/* styling */
	background-color:#333333;
	width:600px;
	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;	
	height: 400px;
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../images/stories/close.gif);
	position:absolute;
	right:2px;
	top:5px;
	cursor:pointer;
	height:20px;
	width:20px;
	background-repeat: no-repeat;
}
.poppic{
	position: absolute;
	left: 170px;
	top: 10px;
	right: 20px;
	bottom: 10px;
	border: 6px solid #4B4B4B;
}

.details {
	position:absolute;
	top:0px;
	font-size:10px;
	color:#CCCCCC;
	width:150px;
	padding: 10px;
	left: 0px;
	float: left;
}

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

.details h4 {
	font-size:10px;
	color: #FFFFFF;
}

