@charset "utf-8";
/* CSS Document */

/* the overlayed element */
.simple_overlay {
	/* must be initially hidden */
	display: none;
	/* place overlay on top of other elements */
	z-index:10000;
	/* styling */
	position: absolute;
	margin-top: 216px;
	margin-left: 227px;
	background-color: #43616B;
	width: 460px;	
	min-height: 400px;
	border:1px solid #666;
	/* CSS3 styling for latest browsers */
	-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 {
	background-image:url(../images/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}
/* styling for elements inside overlay */
.details {
	position:absolute;
	top: 15px;
	left: 15px;
	font-size:11px;
	color: #CCC;
	width: 350px;
}
.details p {
	color: #CCC;
}

.details h3 {
	color: red;
	font-size:15px;
	margin:0 0 -10px 0;
}
.details h4 {
	color: red;
	font-size:13px;
	margin:0 0 0 0;
}
.item {
	font-style: normal;
	font-weight: normal;
}
a.item:link {
	font-style: normal;
	font-weight: normal;
}
a.item:link:visited {
	color: #FF6;
	font-style: normal;
}
a.item:hover {
	background-color:#09F;
}


