/*
가이드 명칭 : YG CSS 가이드
가이드 내용 : 사이트 레이아웃
최초 제작자 : YG WDT
최종 제작일 : 2018.04.
수정 / 배포 : 담당자 문의 후 수정 가능. 재배포 절대 불가
*/

/* ------------------------------- */
/* IE6.0 Hack CSS 연결 ----------- */
/* ------------------------------- */

@charset "utf-8";

/* 
 * Common
 */
html * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*,
*:after,
*:before {
	-webkit-text-size-adjust: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: 100%;
}

html,
body,
p,
ul,
li,
dl,
dt,
dd {
	margin: 0;
	padding: 0;
	word-break: keep-all;
}

body {
	font-family: 'Titillium Web', sans-serif;
	font-size: 62.5%;
	font-weight: 400;
	letter-spacing: 0px;
	-webkit-overflow-scrolling: touch;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	line-height: 100%;
}

h1 {
	font-size: 3.6em;
}

h2 {
	font-size: 3.0em;
}

h3 {
	font-size: 2.4em;
}

h4 {
	font-size: 1.8em;
}

h5 {
	font-size: 1.4em;
}

h6 {
	font-size: 1.2em;
}

ul,
ol,
dl {
	list-style: none;
}

img {
	border: 0;
	vertical-align: top;
}

a {
	display: inline-block;
	overflow: visible;
	cursor: pointer;
	padding: 0;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	vertical-align: middle;
	text-align: center;
	box-sizing: border-box;
	onfocus: blur;
	color: #000000;
}

a,
a:link {
	text-decoration: none;
}

a:hover,
a:active,
a:focus {
	text-decoration: underline;
}

button {
	display: inline-block;
	color: #ffffff;
	background-color: #282828;
	border: 3px solid #000000;
	cursor: pointer;
}

button:hover,
button:active,
button:focus {
	color: #000000;
	background-color: #ffffff;
}