﻿/* the overlayed element */
div.overlay {
	background-image:url('../images/white.png'); /* dimensions after the growing animation finishes  */;
	width: 770px;
	height: 539px; /* initially overlay is hidden */; /* some padding to layout nested elements nicely  */;
	display: none;
	position:absolute;
}

/* default close button positioned on upper right corner */
div.overlay div.close {
	background-image:url('../images/close.png');
	position:absolute;
	right:35px;
	top:15px;
	cursor:pointer;
	height:35px;
	width:95px;
}

/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

div.clear, hr {
	clear:both;
	display:block;
	font-size:1px;
	height:0pt;
	line-height:1px;
	margin:0pt;
	padding:0pt;
}
