
/* the overlayed element */
.overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#333;
	
	width:575px;	
	min-height:240px;
	border:1px solid #666;
	overflow:visible;
position:fixed;
left:260px;
top:130px;
color:#ddd;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

.overlay p{
color:#ddd;
}

/* close button positioned on upper right corner  */
.close {
	background-image:url(/graphics/overlay/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
z-index:10001;
}


/* styling for elements inside overlay */
.details {
	position:relative;
	padding:15px;
	font: 12px Arial, Helvetica, sans-serif;
	color:#eee;
	line-height: 18px;
}

.details input {
margin-bottom:5px;
}

.details p, .details table {
font: 12px Arial, Helvetica, sans-serif;
	color:#eee;
	line-height: 18px;
margin-top:8px;
text-align:left;
}

.details p {
text-align:center;
}

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

.details h4 {
	color:#E7A324;
	font-size:13px;
	font-weight:bold;
	margin:0px;
}
