/*
|--------------------------------------------------------------------------
| UItoTop jQuery Plugin 1.2
| http://.mattvarone.com/web-design/uitotop-jquery-plugin/
|--------------------------------------------------------------------------
*/
#toTopHover 
{
    display: none;
}
#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom:10px;
	right:10px;
	overflow:hidden;
	width:51px;
	height:42px;
    border: 1px solid #fff;
	text-indent:100%;
	text-indent: -50px;
    background-image: url(../image/up.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #fe5901;
    opacity: 0.7;
}
#toTop:active, #toTop:focus {
	outline:none;
    opacity: 1;
}

#toTop:hover

{

    opacity:0.85;

	-webkit-transition:all 0.2s ease-in-out;

	-moz-transition:all 0.3s ease-in-out;

	-o-transition:all 0.2s ease-in-out;

	transition:all 0.3s ease-in-out;
}


@media (max-width: 1000px){

	#toTop

	{

width:34px;

height:28px;

bottom: 18px;
}

}