/*
Back to top button 
*/
#back-top {
	position: fixed;
	bottom: 30px;
	margin-left: 1010px;
}
#back-top a {
	width: 56px;
	display: block;
	text-align: center;
	font: 11px/100% Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	color:#fff;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover {
	color: #bbb;
}
/* arrow icon (span tag) */
#back-top span {
	text-align: center;
	width: 50px;
	height: 50px;
	display: block;
	margin-bottom: 7px;
	background: #99ccff url(../img/up-arrow.png) no-repeat center center;
	/* rounded corners */
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
    border-radius: 50%;
	border:3px solid #fff;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover span {
	background-color: #ffd2f1;
}

