/*
Based on Patrick Burt' blog:
http://www.pat-burt.com/web-development/how-to-do-a-css-popup-without-opening-a-new-window/
I had to change position to "fixed" to make it work on this site
*/

#blanket {
	background-color: #111;
	opacity: 0.25;
	filter: alpha(opacity=25);
	position: absolute;
	z-index: 9001;
	top: 0;
	left: 0;
	width: 100%;
}

#popUpDiv {
	position: fixed;
	background-color: white;
	width: 360px;
	height: 400px;
	z-index: 9002;
	border: 2px solid #000080;
}
