/*
|--------------------------------------------------------------------------
| UItoTop jQuery Plugin 1.2
| http://www.mattvarone.com/web-design/uitotop-jquery-plugin/
|--------------------------------------------------------------------------
*/

#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	z-index: 100;
	bottom:10px;
	right:10px;
	overflow:hidden;

	width:51px;
	height:51px;
	border-radius: 50%; 
	
	text-indent:100%;
	background:url('ui.totop.png') no-repeat center top;

	-webkit-box-shadow: 0 10px 30px 1px rgba(0,0,0,0.2);
	box-shadow: 0 10px 30px 1px rgba(0,0,0,0.2);
}

.page_software #toTop{
	background-image: url('ui.totop_s.png');
}
.page_consulenza #toTop{
	background-image: url('ui.totop_c.png');
}


#toTop:hover{
	background-position: center -51px;
}