@charset "utf-8";
/**
 * @File Name : font.css
 * @Description : Layout[main] | Contents[main]
 * @Modification Information
 * <pre>
 * 수정일 | 수정자 | 수정내용
 * 2019.01.16 | 문영신 | 최초 등록
 * 2019.01.29 | 문영신 | 요구반영. 결함개선. 고도화.
 * </pre>
 * @author 웹표준화실 문영신
 * @since 2019.01.16
 *
 * @Copyright (C) IACTS.CO.KR All rights reserved.
 */


/* ★★ font_lib.css 파일은 절대 편집하지 마세요.
 * ☆★ 폰트 변경하려면 @import url(font_lib.css); 를 제거하고 아래에 직접 @font-face 선언하세요.
 */


/* ◇◆ @font-face ◇◆ */


/* Noto Sans
 * 나눔 폰트는 font-family:'나눔고딕',NanumGothic,'Nanum Gothic' 처럼 로컬 폰트명부터 먼저 적어주면 되는데..
 * 폰트 패밀리명을 'Noto Sans KR' 로 하면 로컬 폰트명과 같아서, 모든 @font-face{} 에서 local('Noto Sans KR') 을 추가해야지 로컬 폰트부터 찾아서 적용된다.
 * 그래서, font-family: 'Noto Sans'; 로 다르게 명명하였고, 스타일 정의시 로컬 폰트명부터 먼저 찾도록 아래 예처럼 사용하면 된다.
 * 예) .ffnsk { font-family: 'Noto Sans KR','본고딕',NotoSans,'Noto Sans'; }
 */
@font-face{
	font-family: 'Noto Sans';
	font-weight: 200; /* 100 */
	src: url('../../font/NotoSans-Thin.eot');
	src: local('☺'),
				url(../../font/NotoSans-Thin.woff2) format('woff2'),
				url('../../font/NotoSans-Thin.woff') format('woff');
}
@font-face{
	font-family: 'Noto Sans';
	font-weight: 300;
	src: url('../../font/NotoSans-Light.eot');
	src: local('☺'),
				url(../../font/NotoSans-Light.woff2) format('woff2'),
				url('../../font/NotoSans-Light.woff') format('woff');
}
@font-face{
	font-family: 'Noto Sans';
	font-weight: 400; /* ((( 350 */
	src: url('../../font/NotoSans-DemiLight.eot');
	src: local('☺'),
				url(../../font/NotoSans-DemiLight.woff2) format('woff2'),
				url('../../font/NotoSans-DemiLight.woff') format('woff');
}
@font-face{
	font-family: 'Noto Sans';
	font-weight: 500; /* ((( 400 */
	src: url('../../font/NotoSans-Regular.eot');
	src: local('☺'),
				url(../../font/NotoSans-Regular.woff2) format('woff2'),
				url('../../font/NotoSans-Regular.woff') format('woff');
}
@font-face{
	font-family: 'Noto Sans';
	font-weight: 600; /* ((( 500 */
	src: url('../../font/NotoSans-Medium.eot');
	src: local('☺'),
				url(../../font/NotoSans-Medium.woff2) format('woff2'),
				url('../../font/NotoSans-Medium.woff') format('woff');
}
@font-face{
	font-family: 'Noto Sans';
	font-weight: 700;
	src: url('../../font/NotoSans-Bold.eot');
	src: local('☺'),
				url(../../font/NotoSans-Bold.woff2) format('woff2'),
				url('../../font/NotoSans-Bold.woff') format('woff');
}
@font-face{
	font-family: 'Noto Sans';
	font-weight: 800; /* 900 */
	src: url('../../font/NotoSans-Black.eot');
	src: local('☺'),
				url(../../font/NotoSans-Black.woff2) format('woff2'),
				url('../../font/NotoSans-Black.woff') format('woff');
}


 /* ◇◆ CSS font-family ◇◆ */
/* Nanum Myeongjo 20180814 */
@font-face {
	font-family: 'Nanum Myeongjo';
	font-style: normal;
	font-weight: 400;
	src: url('../../font/nanum-myeongjo-v8-korean_latin-regular.eot');
	src: local('NanumMyeongjo'),
				url('../../font/nanum-myeongjo-v8-korean_latin-regular.woff2') format('woff2'),
				url('../../font/nanum-myeongjo-v8-korean_latin-regular.woff') format('woff');
}
@font-face {
	font-family: 'Nanum Myeongjo';
	font-style: normal;
	font-weight: 600;
	src: url('../../font/nanum-myeongjo-v8-korean_latin-800.eot');
	src: local('NanumMyeongjo Bold'), local('NanumMyeongjoBold'),
				url('../../font/nanum-myeongjo-v8-korean_latin-800.woff2') format('woff2'),
				url('../../font/nanum-myeongjo-v8-korean_latin-800.woff') format('woff');
}



 /* .ffng{
	font-family:
		'나눔고딕',NanumGothic,'Nanum Gothic',
		'Open Sans',
		'Microsoft JhengHei',
		'맑은 고딕','Malgun Gothic',
		sans-serif;
} */


@media only screen and (min-resolution: 125dpi){ /* [mobile] ◇◆◇◆◇◆◇◆◇◆ */


/* UA 기본폰트 */
[lang|='ko'],
[lang|='ko']>*{
	font-family:sans-serif;
}

/* [class], */ /* ☆ 이거하면 위에서 클래스로 정의한 모든 폰트를 기본으로 되돌린다. */
.ffng{
	font-family:sans-serif;
}


}/* /[mobile] */