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

#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	left: 90%;
	bottom:43px;
	cursor:pointer;
	overflow:hidden;
	width:57px;
	height:57px;
	border:none;
	text-indent:-999px;
	z-index:20;
	background:url(../images/top.png) no-repeat left 0px;
}


#toTop:hover {
	background:url(../images/top_hover.png) no-repeat left 0px;
	width:57px;
	height:57px;
	display:block;
	overflow:hidden;
	float:left;
}

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

@media (max-width: 600px) {
#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	left: 85%;
	bottom:43px;
	cursor:pointer;
	overflow:hidden;
	width:57px;
	height:57px;
	border:none;
	text-indent:-999px;
	z-index:20;
	background:url(../images/top.png) no-repeat left 0px;
}
}

@media (max-width: 400px) {
#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	left: 80%;
	bottom:43px;
	cursor:pointer;
	overflow:hidden;
	width:57px;
	height:57px;
	border:none;
	text-indent:-999px;
	z-index:20;
	background:url(../images/top.png) no-repeat left 0px;
}
}