/*
	Floating back to top button works with Script REQUIRES script in
	/home/protonic/public_html/index.php
*/
	#back-top {
		position: fixed;
		bottom: 95px;
		margin-left: 950px;
	}
	#back-top a {
		width: 70px;
		display: block;
		text-align: center;
		font: 11px/100% Arial, Helvetica, sans-serif;
		text-transform: uppercase;
		text-decoration: none;
		color: #BD9DC8;
		/* background color transition */
		-webkit-transition: 1s;
		-moz-transition: 1s;
		transition: 1s;
	}
	#back-top a:hover {
		color: #5874AD;
	}
	/* arrow icon (span tag) */
	#back-top span {
		width: 70px;
		height: 70px;
		display: block;
		margin-bottom: 7px;
		background: #ddd url(/lib/v5/img/up-arrow.png) no-repeat center center;
		/* rounded corners */
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border: 1px solid #BBBBBB
		border-radius: 10px;
		/* background color transition */
		-webkit-transition: 1s;
		-moz-transition: 1s;
		transition: 1s;
	}
	#back-top a:hover span {
		background-color: #5874AD;
	}