#back-top {
	position: fixed;
	bottom: 150px;
	margin-left:260px;
	
}

#back-top a {
	width: 108px;
	display: block;
	text-align: center;
	font: 11px/100% Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	color: #bbb;

	/* transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
	
}
#back-top a:hover {
	color: #000;
}

/* arrow icon (span tag) */
#back-top span {
	width: 108px;
	height: 108px;
	display: block;
	margin-bottom: 7px;
	background:url(../images/up-arrow.png) #0c0a0b  no-repeat center center;

	/* rounded corners */
	-webkit-border-radius: 0px 10px 10px 0px / 0px 10px 10px 0px;
-moz-border-radius:0px 10px 10px 0px / 0px 10px 10px 0px;
border-radius: 0px 10px 10px 0px / 0px 10px 10px 0px;

	/* transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
	-moz-box-shadow: 3px 0px 2px #454545;
-webkit-box-shadow:3px 0px 2px #454545;
}
#back-top a:hover span {
	background-color: #d7aa51;
	
}

