@charset "utf-8";
/* CSS Document */
 *html{background-image:url(about:blank);background-attachment:fixed;}/*解决IE6下滚动抖动的问题*/
#tbox{width:47px; height:73px; float:right; position:fixed;
_position:absolute;
_bottom:auto;
_top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,0)||0)-(parseInt(this.currentStyle.marginBottom,0)||0)));
_margin-bottom:0px;
}/*解决IE6下不兼容 position:fixed 的问题*/



/*returnTop*/
#gotop{
    position:absolute; 
	top:0px; 
	display:none; 
	cursor:pointer;
    text-align:center; 
   text-decoration:none;
    color:#979797;
	background:url(/static/img/topbanner2.png) top ; 
	padding-top:5px;
    width:45px;
    /*使用CSS3中的transition属性给跳转链接中的文字添加渐变效果*/
    -moz-transition:color 1s;
    -webkit-transition:color 1s;
    -o-transition:color 1s;
}
#gotop:hover{
    color:#666;
}
#gotop span{
    background:transparent url(/static/img/topbanner1.png) no-repeat;
    border-radius:6px;
    display:block;
    height:28px;
    width:38px;
	margin:0 auto;
   
    /*使用CSS3中的transition属性给<span>标签背景颜色添加渐变效果*/
    -moz-transition:background 1s;
    -webkit-transition:background 1s;
    -o-transition:background 1s;
}
#gotop:hover span{
    background:transparent url(/static/img/topbanner1.png) no-repeat;
}

