/*网站公用样式，必须定义*/

/*****    让所有标签的外边界和内部的填充都为0    *****/
html,body,a,h1,h2,h3,h4,h5,h6,p,div,ul,li,ol,dl,dt,dd,img,form,input,textarea,select,fieldset {
	margin: 0px;
	padding: 0px;
}
/*****   控制英文字符连续自动换行    *****/
div, span, th, td, dt, dd, h1, h2, h3, h4, h5, h6, em, strong, i, a, b, a, p {
	word-break: break-all;
	word-wrap: break-word;
}
/*****    让所有图片都边框都为0    *****/
img {
	border:none;
}
/*****    让所有类型的列表都是没有样式的    *****/
ul,ol,dl {
	list-style-type: none;
}

/*****    让所有表格中的字体和字号统一，同时保证IE、FF中都是居中显示    *****/
table {
	margin-left:auto;
	margin-right:auto;
	border-width:0px;
	}

.fl{ float:left;}
.fr{ float:right;}
/*****   控制页面中的文字字体和字号   *****/
body,table,input,select,textarea {
	font-family: Arial,"宋体";
	font-size:12px;
}
/*****    清楚对象的左右浮动    *****/
.clear {
	font-size: 0px;
	line-height: 0px;
	clear: both;
	height: 0px;
}
/*****    单独设置下划线    *****/
.underline{
	text-decoration:none;
}
/*****    网页公用的属性设置，包括文字字体、文字颜色、背景颜色或者图像等    *****/
body {
	color:#333333;
	font-family:Arial,Verdana;
	font-size:12px;
}

/*****   网页中默认链接的样式设置   *****/
a {
	color: #333333;
	text-decoration:none;
	
}
/*****   网页中默认鼠标滑过链接的样式设置   *****/
a:hover {
	text-decoration:underline;
}

.w1003{ display:block; width:1003px;}
.m_auto{ margin:0 auto;}

.page_nav{width:100%; margin-top:8px; margin-bottom:8px; line-height:28px; float:left;}
.page_nav a{border:1px solid #CCC; width:40px; line-height:22px; padding-top:2px; margin-right:2px; display:block; float:left; text-align:center;}

