#bottom {
height: auto;
width: 100%;
display: block;
padding: 10px 50px;
color: var(--white);
background-color: var(--green);
position: relative;
text-align: right;
}

.ft-meta {
display: inline-block;
margin-right: 60px;
}

a.ft-link {
color: var(--white);
text-decoration: none;
}

a.ft-link:hover {
color: var(--lightgreen);
}

@media only screen and (max-width: 1440px) {
#bottom { padding: 10px 40px; }
}

@media only screen and (max-width: 1240px) {
#bottom { padding: 10px 36px; }
}

@media only screen and (max-width: 1080px) {
#bottom { padding: 10px 30px; }
}

@media only screen and (max-width: 768px) {
#bottom { padding: 8px 22px; }
.ft-meta { margin-right: 40px; }
}

@media only screen and (max-width: 480px) {
#bottom { padding: 8px 20px; }
.ft-meta { width: 100%; margin: 0px 0px 20px; text-align: left; display: block; }
}

@media only screen and (max-width: 359px) {
#bottom { padding: 6px 16px; }
}




#scroll-top-link {
    position: fixed;
    right: 30px;
    bottom: 52px;
    z-index: 48;
	height: auto;
	width: auto;
	display: none;
	border-radius: 5px;
}

#scroll-top-link.active {
display: inline;
background: var(--green);
}

#scroll-top-link.active:hover {
background: var(--lightgreen);
}

#scroll-top-link.active .scroll-top-link {
	display: block;
    height: 50px;
    width: 50px;
	background: url(../images/top.active.png) center center no-repeat;
	background-size: 25px 13px;
	text-decoration: none;
}

#scroll-top-link.active .scroll-top-link:hover {
	background: url(../images/top.active.png) center center no-repeat;
	background-size: 25px 13px;
}

@media only screen and (max-width: 1080px) {
#scroll-top-link { right: 15px; bottom: 44px; }
}