/* the overlayed element */
.overlay {
    display:none;
    padding:20px;
	-webkit-border-radius:8px;
	-moz-border-radius:8px;
	border-radius:8px;
	-webkit-box-shadow: 0px 0px 20px #808080;
	-moz-box-shadow: 0px 0px 20px #808080;
	box-shadow: 0px 0px 20px #808080;
	background-color:rgba(255,255,255,0.9);
}

/* default close button positioned on upper right corner */
.overlay .close {
    background-image:url(../img/overlay/close.png);
    position:absolute;right:5px;top:5px;
    cursor:pointer;
    height:35px;width:35px;
}

.overlay h1 {
	padding:5px 20px;margin:20px -20px 0 -20px;
	font-family:'Times New Roman',serif;
	font-size:17px;line-height:23px;color:rgb(255,255,255);	
	background:rgb(118,37,39);
}

.overlay p {
	margin:10px 0 0 0;
	font-family:'Times New Roman',serif;
	font-size:14px;color:rgb(0,0,0);	
}