@charset "utf-8";
/*通用样式表*/
html, body{width: 100%; overflow-x: hidden; background: #f2f2f2;}
html, body, div, p, b, span, i, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, table, tr, td, form, input, textarea, select, button{
	margin: 0; 
	padding:0;
	font-size:14px/24px;
	font-family: "微软雅黑";
 
  -moz-font-smoothing:antialiased; /*控制字体渲染只对MacOS的Webkit有效  antialiased反锯齿*/
	-webkit-font-smoothing: antialiased;
  font-smoothing:antialiased;	
  
	-moz-box-sizing:border-box; /*元素指定的任何内边距和边框都将在已设定的宽度和高度内进行绘制*/
	-webkit-box-sizing:border-box; 
  box-sizing:border-box;   
  
	color: #;
}

h1, h2, h3, h4, h5, h6{font-weight: normal;}
ul, ol{list-style:none;}
li{list-style-type:none;}
img{border:0px;}

a, area{outline:none; blr:expression(this.onFocus=this.blur())} 
a{
	text-decoration:none; 
	cursor:pointer;
	outline:none;
}	
a:hover{ text-decoration:none;}

.clear{clear:both; width:100%; *display:inline;}
.block{display: block;}
.pull-left{float: left;}
.pull-right{float: right;}




.fenye {
	padding: 20px;
	text-align: center;
}
	.cutpage {
		font-size: 12px;
		font-family: Tahoma;
	}
		.cutpage a{
			display:inline-block; 
			width: 25px; 
			height:25px; 
			line-height:25px; 
			text-align: center; 
			margin:0 5px;
			color: #000;
			border-radius: 100%;
		}
.cutpage a.current,.cutpage a:hover{background:#1467d8; color:#fff;}
/*backToTop*/
.backToTop {
	width: 47px;
	height: 57px;
	display: block;
	background:url(../images/hddb.jpg) no-repeat 0 0;
	position: fixed;
	right: 50px;
	bottom: 50px;
	z-index: 10000;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-ms-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
	transition: all 1s ease 0s;	
}
*html .backToTop {
	position: absolute;
	left: 50%;
	margin-left: 500px;
	z-index: 10000;
	bottom: auto;
	top: expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-125-(parseInt(this.currentStyle.marginTop, 10)||0)-(parseInt(this.currentStyle.marginBottom, 10)||0)));
}	