@charset "utf-8";
/* CSS Document */

#popup
{
	background: white;
	position: absolute;
	height: 315px;
	width: 312px;
	
	padding: 23px 0px 0px 0px;
	
	border: 1px gray solid;
	
	z-index: 10002;
	
	text-align: center;
}
#popup h3
{
	font-size: large;
}
#popup p
{
	margin-left: 9px;
	margin-right: 9px;
}
#popup img
{
}
#popup #popupTitleBar
{
	background: url(../page_graphics/title_bar.png) top repeat-x;
	position: absolute;
	border-bottom: 1px solid gray;
	top:0;
	left: 0;
	height: 20px;
	width: 100%;
}
#popup #popupTitleBar #closeButton
{
	height: 20px;
	width: 39px;
	float: right;
	background: url(../page_graphics/close_button.png) right center no-repeat;
	
	cursor: pointer;
}

#popupBg
{
	background-color: black;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
	opacity: .5;


	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
	height: 1000%;
	
	z-index: 10000;
}