/* the overlayed element */
div.overlay {
	background-image:url(/white.png);

	/* initially overlay is hidden */
	display:none;
	
	/* some padding to layout nested elements nicely  */
	padding:10px;
	width: 500px;
	background-color: #fff;
	border: 1px solid #000;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url(/icon/cross.png);
	background-repeat: no-repeat;
	position:absolute;
	right:16px;
	top:12px;
	cursor:pointer;
	height:16px;
	width:16px;
}

.overlay {
	max-height: 400px;
	overflow-y:auto;
	padding-bottom: 20px;
}

div.overlay div.buttons {
	padding-bottom: 20px;
}

