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

#toTop {
	z-index: 97;
	display:none;
	text-decoration:none;
	position:fixed; 
	bottom: 15px;
	right: 15px;
	overflow:hidden; 
	width: 40px; 
	height: 40px; 
	border: 0; 
	text-indent:-999px; 
	background:url(../img/ui.totop.png) no-repeat center #333; 
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px; 
	border-radius: 2px; 
}

#toTopHover {
	display:block;  
	width: 40px; 
	height: 40px; 
	overflow:hidden;
	 float:left; 
	 opacity: 0; 
	 -moz-opacity: 0;
	 filter:alpha(opacity=0); 
	 background:url(../img/ui.totop.png) no-repeat center #666;
}

#toTop:active, #toTop:focus {
  outline:none;
}

