/*
 * Reset CSS
 */
*, *:before, *:after {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html, body {
	width: 100%;
	height: 100%;
}
body, input, textarea, select, button {
	font-size: 12px;
	line-height: 1;
	color: #353535;
	font-family: 'dotum', Arial, Helvetica, sans-serif;
}
table {
	width: 100%;
	table-layout: fixed;
	border-spacing: 0;
	border-collapse: collapse;
}
ul, ol {
	list-style-type: none;
}
a {
	text-decoration: none;
	color: inherit;
}
em, address {
	font-style: normal;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}
img, fieldset {
	border: none;
}
img {
	max-width: 100%;
	height: auto;
}
button, [type=submit], [type=reset] {
	background-color: transparent;
	border: 0;
	cursor: pointer;
}

/* height fix */
#wrap,#container,#content,#main {
	height: 100%;
	position: relative;
}