

/* the overlayed element */
.overlay {
	text-align: center;

	/* growing background image */
	background-image: url("../images/overlayWhite.png");
	
	/* dimensions after the growing animation finishes  */
	width:400px;		
	height:250px;	
	
	/* initially overlay is hidden */
	display:none;

	
	/* some padding to layout nested elements nicely  */
	padding:55px;
}
div.overlay h2 {

}

div.overlay p {
	text-align: justify;
	
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image: url("../images/close.png");
	position:absolute;
	right:5px;
	top:5px;
	cursor:pointer;
	height:35px;
	width:35px;
}
.overlayImage {
	
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	margin-bottom: 0;
	width: 400px;
	height: 400px;
	
}
.overlayImage:hover {
	
}

