@charset 'UTF-8';

div#overdiv
{
	position: absolute;
	display: none;
	left: 0px;
	top: expression(Tools.getBodyScrollTop() + 'px');
	height: expression(Tools.getClientHeight() + 'px');
	width: 100%;
	background-color: #999999;
	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=30);
	-moz-opacity: 0.3;
	-khtml-opacity: 0.3;
	opacity: 0.3;
	z-index: 100;
}
div.popup
{
	position: absolute;
	display: none;
	visibility: hidden;
	top: expression((Tools.getBodyScrollTop() + (Tools.getClientHeight() - this.clientHeight) / 2) + 'px');
	width: 300px;
	background-color: #c1d9ff;
	border: 1px solid #3a5774;
	padding: 10px;
	z-index: 100;
}

div.popup_header
{
	background-color: #e0edfe;
	color: black;
	font-size: 11pt;
	font-weight: bold;
	padding: 8px;
}

div.popup_header div.box_close
{
	position: absolute;
	right: 20px;
	top: 19px;
}
div.popup_body
{
	background-color: white;
	padding: 8px;
	font-size: 10pt;
}
div.popup_body p
{
	font-size: 10pt;
	padding-bottom: 2px;
}
div.popup_body input.text,div.popup_body textarea.text
{
	width: 98%;
	font-size: 10pt;
}
div.popup_body p a
{
	font-size: 10pt;
}

div.popup_footer
{
	margin-top: 10px;
	text-align: right;
}