@charset "utf-8";
/* =======================================

	CommonElements

======================================= */
html,
body {
	height: 100%;
}

body:lang(ko) {
	font-family: 'Segoe UI',SegoeUI,'Malgun Gothic',Gulim,"Helvetica Neue",Helvetica,Arial,sans-serif;
}
body {
	font-size: 13px;
	line-height: 160%;
	text-align: center;
	color: #000;

	-webkit-text-size-adjust: 100%;
}

a:link {
	text-decoration: none;
	color: #000;
}
a:visited {
	text-decoration: none;
	color: #000;
}
a:active {
	text-decoration: none;
	color: #000;
}
a:hover {
	text-decoration: none;
	color: #000;
}

a.blank {
	display: inline-block;
	overflow: hidden;
	padding: 0 0 0 20px;
	background: url(../img/icon_link_blank.png) no-repeat left center;
	background: url(../img/icon_link_blank_ie8.png) no-repeat left center\9;
	background-size: 15px 13px;
}
sup {
	font-size: smaller;
	vertical-align: super;
}

/* ------------------------------------
	wrap
------------------------------------ */
#siteHeader .hedWrap,
#siteFooter .ftWrap {
	position: relative;
	width: 100%;
	min-width: 320px;
	max-width: 720px;
	margin: 0 auto;
}

/* ------------------------------------
	Header
------------------------------------ */
#siteHeader {
	position: absolute;
	z-index: 1001;
	width: 100%;
	height: 50px;
	background: rgba(255,255,255,.7);
	background: #fff\9;
	-webkit-box-shadow: 0 1px 5px 1px rgba(0,0,0,.5);
	-moz-box-shadow: 0 1px 5px 1px rgba(0,0,0,.5);
	box-shadow: 0 1px 5px 1px rgba(0,0,0,.5);
}


#siteHeader .hedWrap h1 {
	width: 96%;
	height: 45px;
	margin: 0 auto;
	padding-top: 5px;
	text-align: left;
}

#siteHeader .hedWrap h1 img {
	width: auto;
	height: 40px;
}

#menuToggle {
	position: absolute;
	top: 10px;
	right: 10px;
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 30px;
	height: 30px;
	transition: all .2s;
}

#menuToggle:before,
#menuToggle:after {
	content: '';
}

#menuToggle:before,
#menuToggle:after,
#menuToggle span {
	font-size: 0;
	position: absolute;
	left: 0;
	display: inline-block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 4px;
	transition: all .2s;
	text-indent: -9999;
	border-radius: 2px;
	background-color: #444;
}

#menuToggle:before {
	top: 2px;
}
#menuToggle span {
	top: 0;
	bottom: 0;
	margin: auto;
}
#menuToggle:after {
	bottom: 2px;
}

#menuToggle.active:before {
	-webkit-transform: translateY(11px) rotate(-45deg);
	transform: translateY(11px) rotate(-45deg);
}
#menuToggle.active span {
	opacity: 0;
}
#menuToggle.active:after {
	-webkit-transform: translateY(-11px) rotate(45deg);
	transform: translateY(-11px) rotate(45deg);
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.open {
	display: block !important;
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;

	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}


#globalNav {
	position: absolute;
	z-index: 1000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	margin: 0 auto -100px;
	background: rgba(30,30,30,.95);
}

#globalNav ul {
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 100px 0 0;
}

#globalNav ul li {
	display: none;
	overflow: hidden;
	width: 100%;
	margin: 0 auto 20px;
	text-align: center;
}

#globalNav ul li a {
	font-size: 1.2em;
	font-weight: 200;
	display: inline-block;
	overflow: hidden;
	width: 100%;
	height: 100%;
	padding: 25px 0 0;
	color: #fff;
}

#globalNav ul li a:after {
	display: block;
	width: 100px;
	height: 2px;
	margin: 15px auto 0;
	content: '';
	background: #13e4fd;
}

@-webkit-keyframes scaleIn {
	from {
		-webkit-transform: scale(.8);
		transform: scale(.8);
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes scaleIn {
	from {
		-webkit-transform: scale(.8);
		transform: scale(.8);
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
.scale {
	display: block !important;
	-webkit-animation-name: scaleIn;
	animation-name: scaleIn;
	-webkit-animation-duration: .5s;
	animation-duration: .5s;

	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.floatCenter {
	width: 100%;
	margin: 30px auto;
	text-align: center;
}


/* ------------------------------------
	Footer
------------------------------------ */
#siteFooter {
	width: 100%;
	margin: 0 auto;
}

.comingFooter {
position: absolute;
bottom: 0; left: 0; right: 0;
}

#siteFooter small {
	font-size: .8em;
	display: block;
	width: 80%;
	max-width: 720px;
	margin: 0 auto;
	padding: 20px 5px;
	text-align: center;
	vertical-align: middle;
	color: #000;
	border-top: 1px solid #000;
}

/* ------------------------------------
	hSelect
------------------------------------ */
.hSelect {
	position: absolute;
	top: 10px;
	right: 50px;
	width: 100px;
	height: 30px;
	background:  url(../img/language.png) no-repeat center center;
	background-size: 100px 28px;
}
.hSelect form {
	opacity: 0;
}
.hSelect select {
	width: 100px;
	height: 28px;
	cursor: pointer;
	text-indent: -9999px;
	border: none;
	border: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.hSelect select option {
	padding-right: 10px;
}

/* =====================================
	ClearFixElements
===================================== */
.column:before,
.column:after,
.clearfix:before,
.clearfix:after {
	display: table;
	content: ' ';
}
.column:after,
.clearfix:after {
	clear: both;
}

.column,
.clearfix {
	*zoom: 1;
}
