/* CSS Document */
#popupDiv {
	position: absolute;
	visibility: hidden;
	z-index: 1;
	width: 350px;
	height: 200px;
	left: 0px;
	top: 0px;
	border: 1px solid #1e22ae;
	padding: 1px;
	background-color: #94a1e2;
}
.hiddenContent {
	visibility: hidden;
	position: absolute;
	height: 0px;
	width: 0px;
	left: 0px;
	top: 0px;
}
.popupDivContent {
	border: 2px solid #1e22ae;
	width: 346px;
	height: 196px;
	background-color: #F2F1F2;
}
.popupDivContent h1 {
	color: #151d72;
	margin-top: 25px;
	margin-left: 30px;
	vertical-align: top;
	font-weight: bold;
	font-size: 12px;
}
.popupDivContent p {
	color: #151d72;
	margin-left: 30px;
	margin-right: 30px;
}
.popupDivContent a.close,
.popupDivContent a.close:visited,
.popupDivContent a.close:link,
.popupDivContent a.close:hover {
	color: #151d72;
	text-align: center;
	display: block;
	margin-top: 15px;
	margin-right: 100px;
	margin-left: 100px;
	font-weight:bold;
}
.popupDivContent a.close:hover {
	text-decoration: none;
}

