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

#toTop { /* 제이쿼리에서 버튼을 담아줄 태그 자동생성 */
	display: none;
	text-decoration: none;
	position: fixed;
	bottom: 110px; /* 아래에서의 위치 */
	right: 10px;
    /* z-index: 1500; - 다른 fixed나 absolute받은 것 위에 존재 */
	overflow: hidden;
	width:70px;
	height:70px;
	border:none;
	text-indent: -9999px;
	background:url(../images/common/tBtn.png) no-repeat left top;
    z-index: 1500;
}


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