@charset "utf-8";
/* CSS Document */
* { margin: 0;
	padding: 0;
    list-style-type: none;
}
html{
    text-align:center;/* 居中 */
}
body {
	text-align:center;/* 居中,注意在container中要还原left以免影响子元素*/
	font-family:"宋体", Arial, Helvetica, sans-serif;
	font-size:13px;
	color: #666;
	line-height: 160%;
}

a { text-decoration: none;
}
a:link,a:visited{color: #666666;
}
a:hover {
	color: #9B5C3D;

}
a:active {}
img{border: 0;}
.color1 {
	color: #000;
}
.color2 {
	color: #9B5C3D;
}
.color3 {
	color: #F19001;
}

/*︻▓▇▇◤◤特殊标记︻▓▇▇◤ */
.longTitle{/* 长标截断 */
	text-overflow:ellipsis;/*IE省略号*/
	white-space:nowrap;/*强制在同一行内显示所有文本，直到文本结束或者遭遇 br 对象*/
	overflow:hidden;
	-o-text-overflow:ellipsis;/*op专用省略号*/
	}
.clearf{
	clear:both;
	overflow:hidden;
	font-size:0px;
	line-height:0px;
}
