.privatemessageinfo {
	animation: privatemessageinfo 15s;
	display: none;
	left: 0;
	right: 0;
	margin: 0px auto;
	padding: 0;
	position: fixed;
	text-align: center;
	top: -330px;
	width: 330px;
	height: 276px;
	overflow: hidden;
	z-index: 500;
}

.privatemessageinfo:before {
	content:"";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 79px;
	background: url('./images/popuppm-before.png');
	background-size: cover;
	width: 330px;
	height: 197px;
	z-index: -500;
}

.privatemessageinfo:after {
	content:"";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0px;
	background:url('./images/popuppm-after.png');
	background-size: cover;
	width: 330px;
	height: 162px;
	pointer-events: none;
}

.privatemessageinfo_letter {
	position: absolute;
	width: 300px;
	height: 160px;
	padding-top: 10px;
	top: 68px;
	left: 5px;
	box-shadow: 0px 0px 3px #999;
	-moz-box-shadow: 0px 0px 3px #999;
	-webkit-box-shadow: 0px 0px 3px #999;
	border-radius: 0;
}

a.privatemessageinfobutton:link {
	font-size: 1.3em;
	vertical-align: middle;	
}

a.privatemessageinfobutton:visited {
	font-weight: bold;
	text-decoration: none;
}

a.privatemessageinfobutton:hover {
	text-decoration: none;
}

a.privatemessageinfoclose:link {
	font-size: 1.3em;
	vertical-align: middle;	
}

a.privatemessageinfoclose:visited {
	font-weight: bold;
	text-decoration: none;
}

a.privatemessageinfoclose:hover {
	text-decoration: none;
}

.privatemessageinfobutton_text {
	font-size: 1.4em;
	vertical-align: middle;
}

@media only screen and (max-width: 350px), only screen and (max-device-width: 350px) {
	.privatemessageinfo {
		animation: none;
	}
}

@keyframes privatemessageinfo {0% {top:-330px;} 10% {top:20px;} 90% {top:20px;} 100% {top:-330px;}}

