@charset "utf-8";
/* CSS Document */

/* 通用样式 */

/** 清除内外边距 **/ 
body, h1, h2, h3, h4, h5, h6, hr, p,  
blockquote, /* structural elements 结构元素 */ 
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */ 
pre, /* text formatting elements 文本格式元素 */ 
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */ 
th, td, /* table elements 表格元素 */ 
img/* img elements 图片元素 */{ 
  margin: 0;  
  padding: 0;  
}
body{
	color:#666;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	background-color:#fff;
}
ul,li{
	list-style:none;
}
img{
	border:0px;
}
a{
	color:#666;
	text-decoration:none;
}
a:hover{
	color:#39F;
	text-decoration:none;
}
table {
  border-collapse: collapse;
  border:none;
}
td {
  border-width: 0px;
  border:none;
}
.clear{
	clear:both;
}
.clearfix::after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.f_left{
	float:left;
}
.f_right{
	float:right;
}

.t_left{
	text-align:center;
}
.t_center{
	text-align:center;
}
.t_right{
	text-align:right;
}
h1{
	font-size:14px;
	color:#666;
	line-height:31px;
	margin-left:10px;
	
}
.top10{
	margin-top:10px;
}
