/* 清除内外边距 */
html, body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, form, legend, button, input, textarea, /* form elements 表单元素 */
table, tbody, tfoot, thead, tr, th, td, /* table elements 表格元素 */
div, span , applet, object, iframe, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i,
center, dl, dt, dd, ol, ul, li, label, caption{
    margin: 0;
    padding: 0;
}

table{/* 设置表格边框合并，边框大小为0 */
	border-collapse:collapse;a
	border-spacing:0;
}
em, i{
	font-style:normal;
}
fieldset, textarea, img{
	border:none;
}
/* 设置默认字体 */
body, button, select, textarea {    
    font: 16px/1.5 'Microsoft YaHei','simsun','arial','tahoma','Tahoma,Helvetica';
    color:#4B3D3D;
    background:#eee;
}

/* 设置各种标题非字体大小 */
h1 { font-size: 18px; /* 18px / 12px = 1.5 */ }
.title { font-size: 22px; }
h3 { font-size: 14px; }
h4, h5, h6 { font-size: 100%; }

 /* 将斜体扶正 */
address, cite, dfn, em, var {
	font-style: normal;
}
/*重置列表元素*/
ul, ol{
	list-style:none;
}
a {
	text-decoration: none;/* 设置文本修饰为标准文本 */
	-webkit-transition:color .2s ease-in;/* 设置css3效果兼容老版本 Safair 和 Chrome浏览器 */
	cursor:pointer;
	outline: none;
	background:none;
}
a:hover {
	text-decoration: none;
	color:#CC313B
}
a:active {
	star:expression(this.onFocus=this.blur());
}
:focus {
	outline:0;
}
/* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
abbr[title], acronym[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
q:before, q:after {
	content: '';
}
input{ outline:none;}
address,caption,cite,code,em,strong,th{
	font-style:normal;
	font-weight:normal;
}
caption,th{text-align:left}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}
q:before,q:after{
	content:''
}
sup{
	vertical-align:text-top;
}
sub{
	vertical-align:text-bottom;
}
label, select, input, button{
	font-size:12px;
	vertical-align:middle;
}
legend{
	color:#000;
}
a{
	text-decoration:none;
	outline:0;
	blr:expression(this.onFocus=this.blur());
}
a:hover{
	text-decoration:underline;
}
a:link {
    color: #333333;
    text-decoration: none;
}
a:visited {
    color: #333333;
    text-decoration: none;
}


