a#scroll-to-top {
	
	/* Background image, replace in images folder */
	background: url(../images/scroll.png) no-repeat center center;
	
	/* Match to background image size */
	//width: 35px;
	//height: 35px;
	
	/* Postion on the page */
	//position: fixed;	
	//right: 30px;
	//bottom: 30px;
	
	/* Hide link text */
	text-indent: -9999px;
	font-size: 0;
	
	/* Other */
	//cursor: pointer;	
	//outline: 0;
}

a#scroll-to-top {
	cursor : pointer;
	position: fixed;
	/*background-color: #eee;*/
	z-index: 9999;
	display: block;
    color: #222;
	text-align: center;
        font-weight: bold;
	font-size: 13px;
    /*border: 1px solid #bbb;
    box-shadow: 0 0 0 1px #fff inset, 0 1px 4px rgba(0,0,0,.2);
    -moz-box-shadow: 0 0 0 1px #fff inset, 0 1px 4px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 0 0 1px #fff inset, 0 1px 4px rgba(0,0,0,.2);*/
	right: 5px;
	bottom: 240px;
	width: 50px;
	padding: 15px 10px 25px;				
	-moz-transition: bottom 250ms ease-in-out;
	-webkit-transition: bottom 250ms ease-in-out;
    border-radius: 5px 5px 0 0;
    text-shadow: 0 1px #fff;
}

a#scroll-to-top.offscreen {
    bottom: -100px;
    -moz-transition-duration: 250ms;
    -webkit-transition-duration: 250ms;
}

a#scroll-to-top:hover {
    /*background-color: #f4f4f4;
    color: #000;*/
}

a#scroll-to-top:active {
    padding: 16px 10px 24px;
}


	
