a#scroll-to-top {
	/* Background image, replace in images folder */
	background: #ccc9ba url(http://www.unir-coffee.com/gbl_images/img_backtoTop.png) no-repeat center center;
    opacity:0.7;
    filter:alpha(opacity=70);
    -ms-filter: "alpha( opacity=70 )";

	/* Match to background image size */
	width: 40px;
	height: 35px;
	
	/* Postion on the page */
	position: fixed;	
	bottom: 26px;
	right: 10px;

	/* Hide link text */
	text-indent: -9999px;
	font-size: 0;
	
	/* Other */
	cursor: pointer;	
	outline: 0;

	/* rounded corners */
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
	-ms-border-radius: 3px;

	/* background color transition */
	transition: 1s;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	-o-transition: 1s;
	-ms-transition: 1s;
	padding-bottom: 10px;

    z-index: 10; /* front of div#content */
}

a#scroll-to-top:hover {
    background-color: #000;
    opacity:1;
    filter:alpha(opacity=100);
    -ms-filter: "alpha( opacity=100 )";
}
