@charset "UTF-8";
/* Back to Top Button CSS Document */

/*Back to top button */
#back-to-top-button {
    display:none;
    position: fixed;
    z-index: 99;
	cursor: pointer;
	width: 108px;
	height: 108px;
    text-align: center;
	font: 1.1em/100%;
	text-transform:uppercase;
	text-decoration: none;
	color: #666;
	padding-top: 8px;
	background: #ddd url(../Assets/backtotop-up-arrow.png) no-repeat center bottom;
	/* rounded corners */
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-to-top-button:hover {
    background-color: #777;
    color: #eeeeee;
}