@charset "utf-8";
/*
Back to top button 
*/
#back-top {
	position: fixed;
	bottom: 30px;
	margin-left: 10px;
	padding: 8px;
}
#back-top a:hover span{
	color: #000;
	background-color: #999;
}
/* arrow icon (span tag) */
#back-top span {
	display: block;
	margin-bottom: 7px;
	/* rounded corners */
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
	background-image: url(../images/blog/bg-up-w.png);
	background-repeat: no-repeat;
	background-position: center center;
	height: 30px;
	width: 30px;
	background-color: #333;
	margin-top: 5px;
}
