/* modern message-box PN (PM) written by Alexander, Talk19Zehn ongray-design.de 2012-2019ff
------------------------------------------------------------------------------------------------------ */
@keyframes messageboxpn {0% {top:-304px;} 10% {top:34px;} 90% {top:34px;} 100% {top:-304px;}}
.messageboxpn {
	animation: messageboxpn 15s;
	color: #FAFAFA;
	background-color: #010423;
	background-image: -webkit-linear-gradient(top, #010423, #485479, #010101);
	background-image: linear-gradient(to bottom, #010423, #485479, #010101);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#191919', endColorstr='#485479',GradientType=0 ); /* IE6-9 */
	border: 1px solid #00008B;
	box-shadow: 0px 0px 14px 4px rgb(6, 93, 189);
	border-radius: 10px;
	display: none;
	left: 0;
	right: 0;
	margin: 0px auto;
	padding: 10px 2px 15px;
	position: fixed;
	text-align: center;
	top: -304px;
	width: 52%;
	height: 16em;
	overflow: hidden;
	z-index: 1500;
}

a.messageboxbuttonpn:link {
	color: #FAFAFA;
	font-size: 11px;
	font-weight: bold;
	text-decoration: underline;
}

a.messageboxbuttonpn:visited {
	color: #FAFAFA;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
}

a.messageboxbuttonpn:hover {
	color: #CCCCCC;
	font-size: 11px;
	font-weight: bold;
	text-decoration: underline;
}

/* End modern message-box PN (PM)
------------------------------------- */

/* responsive modern message-box PN (PM)
-----------------------------------------------*/
@media only screen and (max-width: 350px), only screen and (max-device-width: 350px) {
	.messageboxpn {
		animation: none;
	}
}