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

.simple_overlay2 {
	display:none;
	z-index:10000;
	background-color:#333;
	width:480px;	
	min-height:200px;
	border:1px solid #666;
	-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, .simple_overlay2 .close {
	background-image:url(../images/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}


/* styling for elements inside overlay */
.details, .details2 {
	position:absolute;
	top:15px;
	right:15px;
	width:250px;
}

.details p, .details2 p {
	font-size:12px;
	color: #FFF;
	/*font-weight:normal;*/
}

.details a:hover, .details a:visited  {
	color: #CCC;
}

.details2 a:link, .details2 a:visited  {
	color: #FFF;
	text-decoration:none;
}
.details2 a:hover {
	color: #0CF;
	text-decoration:underline;
}

.details h3, .details2 h3 {
	color: #FFF;
	font-size:16px;
	font-weight:bold;
	margin:0 0 -10px 0;
}

.details span.overlay-bold, .details2 span.overlay-bold {
	color:#CCC;
	}
