.scroll-btn{
	-webkit-transform: scale(.647) translateY(15px);
    -ms-transform: scale(.647) translateY(15px);
    transform: scale(.647) translateY(15px);
    width: 34px;
    position: fixed;
	bottom: 30px;
	right: 0;
	left: 0;
    margin: 0 auto;
    margin-top: 35px;
    cursor: pointer;
    opacity: 1;
    transition: opacity .4s linear,-webkit-transform .4s ease;
    transition: opacity .4s linear,transform .4s ease;
    transition-delay: .8s;
    z-index: 999999;
}

.arrow {
    margin: 0 auto;
    width: 34px;
    height: 34px;
    transition: opacity 1s;
}
.rollover-arrow {
    cursor: pointer;
}
.bounce-arrow {
    -webkit-animation: arrow-bounce 2s infinite;
    animation: arrow-bounce 2s infinite;
}
.down-arrow {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}
.arrow .lpart {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 22px;
    height: 4px;
    top: 16px;
    margin-top: 5px;
    background-color: #e75200;
    position: relative;
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.7071067811865474, M12=-0.7071067811865477, M21=0.7071067811865477, M22=0.7071067811865474, SizingMethod='auto expand')";
}
.arrow .rpart {
    width: 18px;
    height: 4px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #e75200;
    left: 16px;
    top: 11px;
    z-index: -1;
    position: relative;
    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.7071067811865483, M12=0.7071067811865467, M21=-0.7071067811865467, M22=0.7071067811865483, SizingMethod='auto expand')";
}


@-webkit-keyframes arrow-bounce {
	0% {
		-webkit-transform:translateY(10px);
		transform:translateY(10px);
		-webkit-animation-timing-function:ease-in-out;
		animation-timing-function:ease-in-out;
	}
	
	65% {
		-webkit-transform:translateY(25px);
		transform:translateY(25px);
		-webkit-animation-timing-function:ease-in-out;
		animation-timing-function:ease-in-out;
	}
	
	100% {
		-webkit-transform:translateY(10px);
		transform:translateY(10px);
		-webkit-animation-timing-function:ease-in-out;
		animation-timing-function:ease-in-out;
	}
}

@keyframes arrow-bounce {
	0% {
		-webkit-transform:translateY(10px);
		transform:translateY(10px);
		-webkit-animation-timing-function:ease-in-out;
		animation-timing-function:ease-in-out;
	}
	
	65% {
		-webkit-transform:translateY(25px);
		transform:translateY(25px);
		-webkit-animation-timing-function:ease-in-out;
		animation-timing-function:ease-in-out;
	}
	
	100% {
		-webkit-transform:translateY(10px);
		transform:translateY(10px);
		-webkit-animation-timing-function:ease-in-out;
		animation-timing-function:ease-in-out;
	}
}