/* Snowflake */
#togglePageDecoButton {
	margin-left: 20px;
}

.rotating-forever {
	-webkit-animation: rotating 3s linear infinite;
	-o-animation: rotating 3s linear infinite;
	animation: rotating 3s linear infinite;
}

@-webkit-keyframes rotating {
	from {
		-webkit-transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
	}
}

/* Avatar snow */
.pa-avatar {
	position: relative;
	width: 186px;
	margin-left: 12px;
	margin-right: 24px;
}

.pa-avatar-snowy:before {
	content: "";
	position: absolute;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 180px;
	height: 240px;
	animation: dropFlowParticles 27s linear infinite;
	background: rgba(0, 0, 0, 0) url("http://forumstatic.ru/files/0014/90/a7/97300.png") repeat scroll 0 0;
}

.pa-avatar-snowy:after {
	content: "";
	position: absolute;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 180px;
	height: 240px;
	animation: dropFlowParticles 12s linear infinite;
	background: rgba(0, 0, 0, 0) url("http://forumstatic.ru/files/0014/90/a7/27898.png") repeat scroll 0 0;
	background-size: 358px 125px;
}

/* Page header snow (old style) */
.header-snow-sub tbody {
	-webkit-animation : dropFlowParticles 12s linear infinite;
	-o-animation : dropFlowParticles 12s linear infinite;
	animation: dropFlowParticles 12s linear infinite;
	background: rgba(0, 0, 0, 0) url("http://forumstatic.ru/files/0014/90/a7/27898.png") repeat scroll 0 0;
}
.header-snow-main {
	-webkit-animation : dropFlowParticles 27s linear infinite;
	-o-animation : dropFlowParticles 27s linear infinite;
	animation: dropFlowParticles 27s linear infinite;
	background: rgba(0, 0, 0, 0) url("http://forumstatic.ru/files/0014/90/a7/97300.png") repeat scroll 0 0;
}

.pun-title-table-height table *{ height:290px!important; display:block; }

@-webkit-keyframes dropFlowParticles {
	from { background-position: 0 0; }
	to { background-position: 0 250px; }
}
@keyframes dropFlowParticles {
	from { background-position: 0 0; }
	to { background-position: 0 250px; }
}