@charset "utf-8";
/* CSS Document */

#back-top {
	position: fixed;
	bottom: 50px;
	margin-left: -150px;
}

#back-top a {
	width: 100px;
	display: block;
	text-align: center;
	font: 14px Cambria, Georgia, serif;
	text-decoration: none;
	color: #999;

	/* transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover {
	color: #000;
}

/* arrow icon (span tag) */
#back-top span {
	width: 100px;
	height: 100px;
	display: block;
	margin-bottom: 7px;
	background: #999 url(../images/Arrow.png) no-repeat center center;

/* 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-color: #383838;
}