/*
|--------------------------------------------------------------------------
| 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:40px;
	height:40px;
	/*
	z-index: 100;
	*/
	text-indent:100%;
	background:  url(../img/template/ui.totop.png) no-repeat center center;
	background-color: #ABABAB;
	opacity: 0.7;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;	
	-webkit-transition:0.5s;
	-moz-transition:0.5s;
	-o-transition:0.5s;
	transition:0.5s;
}

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

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