.pulsating{
	transform: scale(1);
	animation: pulse 4s infinite;
	animation-timing-function: cubic-bezier(0.1, 1.24, 1, 1.39);
	animation-delay: 2s;
}
@keyframes pulse{
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
	}
	30% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}
	60% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}
.scroll-to-top_ {
	background-color: transparent;
	border-radius: 50%;
	bottom: 20px;
	color: white;
	display: block;
	font-size: 1.285em;
	height: 50px;
	line-height: 50px;
	opacity: 0;
	filter: alpha(opacity=0);
	position: fixed;
	left: 20px;
	text-align: center;
	text-decoration: none;
	width: 50px;
	z-index: 1040;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	transform: scale(1);
	animation: pulse 4s infinite;
	animation-timing-function: cubic-bezier(0.1, 1.24, 1, 1.39);
	animation-delay: 1s;
}
.scroll-to-top_.visible {
  opacity: 1;
  filter: alpha(opacity=100);
}
.p-top-10{
	margin-top:5px;
	margin-bottom:2px;
}