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

#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom:300px;
	right:10px;
	overflow:hidden;
	width:55px;
	height:55px;
	border:none;
	text-indent:100%;
	background: #641679 url(../images/arrow.png) no-repeat center;
	/*background: #C53F31 url(../images/arrow.png) no-repeat center;*/
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#toTopHover {
	background: #491D56 url(../images/arrow.png) no-repeat center;
	/*background: #C53F31 url(../images/arrow.png) no-repeat center;*/
	width:55px;
	height:55px;
	display:block;
	overflow:hidden;
	float:left;
	opacity: 0;
	-moz-opacity: 0;
	filter:alpha(opacity=0);
}

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