@charset "utf-8";
/**
 * @File Name : font.css
 * @Description : Layout[main] | Contents[main]
 * @Modification Information
 * <pre>
 * 수정일 | 수정자 | 수정내용
 * 2018.08.29 | 문영신 | 최초 등록
 * 2018.09.07 | 문영신 | 요구반영. 결함개선. 고도화.
 * </pre>
 * @author 웹표준화실 문영신
 * @since 2018.08.29
 *
 * @Copyright (C) IACTS.CO.KR All rights reserved.
 */

@import url(font_lib.css);

/* ★★ font_lib.css 파일은 절대 편집하지 마세요.
 * ☆★ 폰트 변경하려면 @import url(font_lib.css); 를 제거하고 아래에 직접 @font-face 선언하세요.
 */


/* ◇◆ @font-face ◇◆ */


/* Nanum Gothic */
/* @font-face {
	font-family: 'Nanum Gothic';
	font-weight: 400;
	src: url(../../font/NanumGothic-Regular.eot);
	src: local('☺'),
				url(../../font/NanumGothic-Regular.woff2) format('woff2'),
				url(../../font/NanumGothic-Regular.woff) format('woff');
}
@font-face {
	font-family: 'Nanum Gothic';
	font-weight: 700;
	src: url(../../font/NanumGothic-Bold.eot);
	src: local('☺'),
				url(../../font/NanumGothic-Bold.woff2) format('woff2'),
				url(../../font/NanumGothic-Bold.woff) format('woff');
}
@font-face {
	font-family: 'Nanum Gothic';
	font-weight: 800;
	src: url(../../font/NanumGothic-ExtraBold.eot);
	src: local('☺'),
				url(../../font/NanumGothic-ExtraBold.woff2) format('woff2'),
				url(../../font/NanumGothic-ExtraBold.woff) format('woff');
} */


 /* ◇◆ CSS font-family ◇◆ */


 /* .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] */