<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*

#toTop {
	display: none;
	text-decoration: none;
	position: fixed;
	bottom: 14px;
	right: 20px;
	overflow: hidden;
	width: 40px;
	height: 40px;
	border: none;
	text-indent: 100%;
	background: url("../images/home/to-top1.png") no-repeat 0px 0px;
        z-index: 9850;
}
#toTopHover {
	width: 40px;
	height: 40px;
	display: block;
	overflow: hidden;
	float: right;
	opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
}
*/

.scroll-top-wrapper {
            position: fixed;
            opacity: 0;
            visibility: hidden;
            overflow: hidden;
            text-align: center;
            z-index: 99999999;
            background-color: #fbb900;
            color: #eeeeee;
            width: 50px;
            height: 48px;
            line-height: 48px;
            right: 20px;
            bottom: 5px;
            padding-top: 2px;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
            border-bottom-left-radius: 10px;
            -webkit-transition: all 0.5s ease-in-out;
            -moz-transition: all 0.5s ease-in-out;
            -ms-transition: all 0.5s ease-in-out;
            -o-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
            z-index: 9850;
            /*background: url("../images/home/to-top1.png") no-repeat 0px 0px;*/
    }
    .scroll-top-wrapper:hover {
            background-color: #fbb900;
    }
    .scroll-top-wrapper.show {
            visibility:visible;
            cursor:pointer;
            opacity: 1.0;
    }
    .scroll-top-wrapper i.fa {
            line-height: inherit;
    }</pre></body></html>