/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

:focus {
  -moz-outline-style:none;
}

/* the overlayed element */
.simple_overlay2 {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:100000;
	
	/* styling */
	background-color:#fff;

	
	width:750px;	
	height:500px;
	border:1px solid #666;
	padding:20px 0px 10px 20px;
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #fff;
	-webkit-box-shadow: 0 0 90px #fff;	
}

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

/* close button positioned on upper right corner */
.simple_overlay2 h3 {
	color:#000;

}
.simple_overlay2 .print {
	color:#000;
	cursor:pointer;
	margin-bottom:30px;

}

.simple_overlay2 #title{
	font-size:11px;
	font-weight:bold;
	text-align:center;	
}

.simple_overlay2 #authorship p{
	font-size:11px;
	text-align:center;
	line-height:1.2;
	margin:0;
}

.simple_overlay2 #text p{
	font-size:11px;
	line-height:1.2;
	margin:0;
}

.simple_overlay2 #scrollBox {
	overflow-y:scroll;
	overflow-x: hidden;
	height:490px;
	padding-right:10px;

}


