#bottom {
width: 100%;
position: relative;
}

#bottom .container {
height: 200px;
}

#scroll-top-link {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 990;
	height: auto;
	width: auto;
	display: none;
	border-radius: 4px;
}

#scroll-top-link.active {
	display: inline;
	background: rgba(80,80,80,0.5);
}

#scroll-top-link.active:hover {
	background: rgba(194,114,175,0.8);
}

#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: 980px) {
#bottom { display: none; }
#scroll-top-link {right: 15px;bottom: 15px;}
}