/* 
	RESET - ADAPTED FROM MEYER RESET
	URL - http://meyerweb.com/eric/tools/css/reset/
	LICENSE - PUBLIC DOMAIN
*/
/* RESET
----------------------------------------------------------------------------------------------------*/
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, caption, canvas, center, cite, code,
dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, form, footer, header, hgroup, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav,object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, tt, table, tbody, textarea, tfoot, thead, time, tr, th, td, u, ul, var, video  { 
	/*font-family: inherit;*/
	font-size: 100%; 
	
	font-style: inherit; 
	vertical-align: baseline; 
	white-space: normal;
	text-align: left; 
	margin: 0; 
	padding: 0; 
	border: 0; 
	outline: 0;
	background: transparent; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
	display: block; }
								  
ol, ul, li{ list-style: none; margin: 0;}
blockquote, q { quotes: none; }
:focus { outline: 0; }
table { 
	border-collapse: collapse; 
	border-spacing: 0; }
*{
	-webkit-box-sizing: border-box;
     	-moz-box-sizing: border-box;
         box-sizing: border-box;
         font-family: "Lantinghei SC", "Microsoft YaHei", 微软雅黑, SimSun, Arial
}
a{
	text-decoration: none;
}
a:hover{
	text-decoration: none;
}
.a{
	-webkit-transition:0.1s ease 0.1s;-moz-transition:0.1s ease 0.1s;-ms-transition:0.1s ease 0.1s;-o-transition:0.1s ease 0.1s;transition:0.1s ease 0.1s;
}
.a:hover{
	-webkit-transition:0.1s ease 0.1s;-moz-transition:0.1s ease 0.1s;-ms-transition:0.1s ease 0.1s;-o-transition:0.1s ease 0.1s;transition:0.1s ease 0.1s;
}
.border{
	border-radius: 3px;
}
.m0{
	margin: 0;
}
.p0{
	padding: 0;
}
.mp0{
	margin: 0;
	padding: 0;
}
.f0{
	font-size: 0;
}
.f0>*{
	font-size: 14px;
	display: inline-block;
}
.t-c{
	text-align: center;
}
.t-r{
	text-align: right;
}
.blcok{
	display: block;
}
.i-block{
	display: inline-block;
}
.none{
	display: none;
}
.position-r{
	position: relative;
}
.position-a{
	position: absolute;
}
.position-f{
	position: fixed;
}
.fr{
	float: right;
}
.fl{
	float: left;
}
.t-justify{
	text-align: justify;
}