@charset "utf-8";
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
/**RESET**/
body,blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,p,pre,ul,ol,menu,map,kbd,samp,var,object,tt{ 
	margin:0;
}
ul,ol,th,td,button,fieldset,legend,input,textarea{ 
	padding:0;
}
img{ 
	border:0;
}
/* set image max width to 100% */
img{ 
	max-width: 100%; 
	height: auto; 
	width: auto\9; 
	/* ie8 */ 
	-ms-interpolation-mode: bicubic;
}
object{ 
	max-width: 100%;
}
/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
	display:block;
}
/**GENERAL STYLING**/
body { 
	font-family:"Microsoft YaHei",Helvetica,Arial,sans-serif; 
	color:#333; 
	background:#fff;
}
a { 
	text-decoration:none; 
	outline:none; 
	transition:all ease-out 0.3s; 
	color:#333;
}
a:hover { 
	text-decoration:none;
}
/* list */
ul,ol{ 
	list-style:none;
}
/* reset webkit search input styles */
input[type=search] { 
	-webkit-appearance: none; 
	outline: none;
}
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { 
	display: none;
}
.clearfix:before,.clearfix:after{ 
	content:""; 
	display:table;
} 
.clearfix:after{
	clear:both;
} 
.clearfix{ 
	*zoom:1;
	/*IE/7/6*/
}
.fl{
	float: left;
}
.fr{
	float: right;
}
