#modal {
	position: fixed;
	z-index:9999;
	width: 500px;
	height: 270px;
	display: none;
	left: 50%;
	top: 48%;
	margin-left: -250px;
	margin-top: -135px;
	padding: 14px;
	font: normal 13px/1.5 Arial, sans-serif;
	border-radius: 5px;
	background: #FFF;
}
#mask {
	position: fixed;
	z-index: 9000;
	background-color: #777;
	display: none;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	filter:alpha(opacity=70);
	opacity: 0.7;
	-moz-opacity:0.7;
}
* html #modal, * html  #mask { position: absolute; }

#modal h2 { margin: 100px 40px 0 60px; padding: 0; font-size: 16px; font-weight: bold; border: none; font-family: arial; }
#modal a { text-decoration: none; color: #000; }
#modal a:hover { text-decoration: underline; }

#close {
	display: block;
	position: absolute;
	width: 130px;
	height: 20px;
	bottom: 22px;
	right: 20px;
	text-align: right;
	}
	
.msg-confirm h2, .msg-confirmed h2, .msg-unsubscribe h2 { color: #9db400; }

.error-blocked h2, .error-exists h2, .error-format h2, .error-field h2 { color: #b20518; }