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

#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom:15px;
	right:15px;
	overflow:hidden;
	cursor: pointer;
	width:35px;
	height:35px;
	z-index: 100;
	text-indent:100%;
	background:  url(../img/template/ui.totop.png) no-repeat center center;
	background-color: rgba(238,238,238,0.4);
	opacity: 0.6;
	-webkit-transition:0.1s;
	-moz-transition:0.1s;
	-o-transition:0.1s;
	transition:0.1s;	
}

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

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