/* CSS Document */

/*
Back to top button 
*/
#back-top {
	position: absolute;
	bottom: -64px;
	left: 50%;
	margin-left:-30px;
	padding: 0;
	z-index: 99;
}
body.page_home #back-top {
	/*margin-left: 995px;*/
}

#back-top a {
	width: 60px;
	display: block;
	text-align: center;
	font: 12px Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	color: #191919;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover {
	color: #191919;
}
/* arrow icon (span tag) */
#back-top span {
	width: 19px;
	height: 19px;
	display: block;
	/* margin-bottom: 7px; */
	margin: 0 auto 6px;
	/*background: #ddd url(up-arrow.png) no-repeat center center;*/
	background: url(../../images/all/icon06.png) center 6px no-repeat #191919;
	/*-webkit-background-size:70% auto;*/
	/*-moz-background-size:70% auto;*/
	/*-o-background-size:70% auto;*/
	/*background-size:70% auto;*/
	/* rounded corners */
	-webkit-border-radius: 99em;
	-moz-border-radius: 99em;
	border-radius: 99em;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover span {
	background-color: #C62619;
}

