/* Back to top button */

#back-top {
	position: fixed;
	top: 30px;
	margin-left: 1000px;
	display: block;
	width: 80px;
	height: 80px;
	text-align: center;
	font: 11px/100% Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	color: #bbb;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
	margin-bottom: 7px;
	background: #AAA url("../img/up-arrow.png") no-repeat center center;
	/* rounded corners */
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}

#back-top:hover {
	background-color: #777;
}