/**
 * css reset功能通用原子类即常用的基本类型比如文字，定位边距等的设定。
 * @author   andyzhu
 * @Email  1571151627@qq.com
 * @date 2013-7-12
**/

/* css reset*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,span{ margin: 0px; padding: 0px; 
border-spacing:0px !important;
	border-collapse:0px;
	outline:medium;
	word-break:break-all;
}

body{ font-size: 12px;  }

table{ border-collapse: collapse; border-spacing: 0px; }

fieldset,img{ border: 0; }

address,caption,cite,code,dfn,em,strong,th,var{ font-style: normal; font-weight: normal; }

caption,th{ text-align: left; }

ol,ul,li{ list-style: none; }

q:before,q:after{ content:''; }

abbr,acronym{ border: 0px; }

a{ text-decoration: none;  outline: none; }

a:hover{ text-decoration: none; }

a:active {star:expression(this.onFocus=this.blur());}

input[type="submit"] { cursor: pointer; }

input[type="button"] { cursor: pointer; }

button { cursor: pointer; }

/* 定位*/
.fl{ float: left; display: inline; }

.fr{ float: right; display: inline; }

.cl{ clear: left; }

.cr{ clear: right; }

.cb{ clear: both; }

.clearfix:after{ content: "."; display: block; height: 0; clear: both; visibility: hidden; }

*html .clearfix{ zoom: 1; }

*+html .clearfix{ zoom: 1; } 

.zoom{ zoom: 1; }

.hidden{ visibility: hidden; }

.none{ display: none; }

/* 文字*/
.red{ color: red;}
.center{text-align:center;}