/* the overlayed element */

div.overlay {

	/* initially overlay is hidden */ 
	display: none;

	/* some padding to layout nested elements nicely */ 
    padding: 8px;
	background-color: #222;
}

/* default close button positioned on upper right corner */

div.overlay div.close {
	background-image: url(../images/overlay/close.png);
	position: absolute;
	right: -12px;
	top: -12px;
	cursor: pointer;
	height: 35px;
	width: 35px;
}

