@charset "utf-8";
/* CSS Document */

/* 관리자 웹 본문 글꼴. common.css / common_IE.css 가 @import 한다.
   주의 1: 블록마다 닫는 중괄호를 반드시 넣는다. 하나라도 빠지면 CSS 파서가
           뒤따르는 @font-face 를 "중첩 at-rule" 로 보고 통째로 폐기하며,
           해당 굵기는 브라우저 합성 볼드로 렌더링된다 (한글에서 자소가 뭉개짐).
   주의 2: src 는 한 선언에 콤마로 나열해야 폴백으로 동작한다. src 를 두 줄로
           쓰면 폴백이 아니라 뒤 선언이 앞 선언을 덮어쓴다. */

@font-face {
  font-family: 'Nanum Gothic';
  font-style: normal;
  font-weight: 400;
  src: url(./font/NanumGothic-Regular.eot?#iefix) format('embedded-opentype'),
       url(./font/NanumGothic-Regular.ttf) format('truetype');
}

@font-face {
  font-family: 'Nanum Gothic';
  font-style: normal;
  font-weight: 700;
  src: url(./font/NanumGothic-Bold.eot?#iefix) format('embedded-opentype'),
       url(./font/NanumGothic-Bold.ttf) format('truetype');
}

@font-face {
  font-family: 'Nanum Gothic';
  font-style: normal;
  font-weight: 800;
  src: url(./font/NanumGothic-ExtraBold.eot?#iefix) format('embedded-opentype'),
       url(./font/NanumGothic-ExtraBold.ttf) format('truetype');
}
