@charset "utf-8";


* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box
}
html, body, div, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, button,textarea, p, th, td {
	margin: 0;
	padding: 0;
}
img {border: 0;}
:focus {outline: 0;}
h1, h2, h3, h4, h5, h6 {font-size: 100%; font-weight:100;}
input, button, textarea,select, optgroup, option {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
}
input, button, textarea, select {*font-size: 100%;} /*purpose To enable resizing for IE */
ol, ul, li {list-style: none;}
:link, :visited , ins {text-decoration: none;}
news, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main { display: block;}


/* Basic Set */
html , body{
	height:100%;
	min-height:100%;
	width:100%;
}
body{
	background:#FFF;
	
	font-size:16px;
	line-height:1.8;
	letter-spacing:1px;
}


/* Basic Layout */
.wrapper{
	position:relative;
	height:auto;
	width:100%;
	min-height:100%;
	overflow:hidden;
	margin-left:auto; 
	margin-right:auto;
}
.container{
	position:relative;
	margin:0 auto;
	max-width:1200px;
	width:92%;
	margin-right: auto;
	margin-left: auto;
}
.container:before, .container:after{ display:table; content:" " }
.container:after{ clear:both }