/* modern message-box PN (PM) by Alexander, Talk19Zehn by ongray-design.de 2013-2017
------------------------------------------------------------------------------------------------------ */
@keyframes messageboxpn {0% {top:-304px;} 10% {top:34px;} 90% {top:34px;} 100% {top:-304px;}}
.messageboxpn {
	animation: messageboxpn 15s;
	color: #FAFAFA;
	background-color: #1270cf; /* Older browsers */
	background: rgb(18,112,207); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(122,188,255,1) 0%, rgba(96,171,248,1) 44%, rgba(64,150,238,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(122,188,255,1)), color-stop(44%,rgba(96,171,248,1)), color-stop(100%,rgba(64,150,238,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(122,188,255,1) 0%,rgba(96,171,248,1) 44%,rgba(64,150,238,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(122,188,255,1) 0%,rgba(96,171,248,1) 44%,rgba(64,150,238,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(122,188,255,1) 0%,rgba(96,171,248,1) 44%,rgba(64,150,238,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(122,188,255,1) 0%,rgba(96,171,248,1) 44%,rgba(64,150,238,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7abcff', endColorstr='#4096ee',GradientType=0 ); /* IE6-9 */
	border: #FAFAFA solid 4px;
	border-radius: 10px;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(20, 39, 200, 0.6);
	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: 500;
}

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;
	}
}