/* CSS Document */

#back-top {
	z-index:2000;
	position: fixed;
	bottom:0;
	right:5px;
	margin:0 0 0 0;
	padding:0;
/*	margin-left:870px;*/
}

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

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

/* arrow icon (span tag) */
#back-top span {
	width: 20px;
	height: 35px;
	display: block;
	margin-bottom:-15px;
	padding-top:20px;
	background: url(../images_perm/to-top.png) no-repeat center center;
	background-color:#fff;

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

	/* transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover span {
	background: url(../images_perm/up-arrow.png) no-repeat center center;
	background-color:#777;
}
