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

@media only screen and (max-width: 500px)  {
	

#toTop {
	display: none;
}

}


@media only screen and (min-width: 501px)  {
	

#toTop {
	position: fixed;
	margin-right: 3px;
	margin-top: 10px;
	top: 0;
	right: 0;
	background-image: url(../img/ui.totop.png);
	background-repeat: no-repeat;
	background-position: left top;
	z-index: 555;
}

}

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

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