





<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<meta name="format-detection" content="telephone=no">
<meta name="Author" content="Ministry of Finance and Economy" />
<meta name="description" content="" />
<meta name="keywords" content="" />

<meta property="og:title" content="" />
<meta property="og:image" content="/images/mosf_mi.png" />
<meta property="og:description" content="">
<title>Ministry of Finance and Economy</title>

<!-- 2019 renewal CSS -->
  <link rel="stylesheet" href="/css/2019/reset.css">
  <link rel="stylesheet" href="/css/2019/content.css" />
  <link rel="stylesheet" href="/css/2019/board.css" />
  <link rel="stylesheet" href="/css/2023/layout.css">
  <link rel="stylesheet" href="/css/2019/layout-device.css">
  <link rel="stylesheet" href="/css/2019/font.css">
  <link rel="stylesheet" href="/css/2019/simplebar.css">
  <link rel="stylesheet" href="/css/2019/select.css" /> 
  <link rel="stylesheet" href="/css/2019/jquery-ui.css" />
  <link rel="shortcut icon" href="/images/ico/moef.ico" />
  <link rel="apple-touch-icon" href="/images/ico/app-moef.ico" />
  
  <link rel="stylesheet" href="/css/2023/swiper.css?ver=20250516_2">
  <link rel="stylesheet" href="/css/2023/main.css">
	
<!-- 2019 renewal JS -->
  <script src="/js/jquery-3.5.1.min.js"></script>
  <!--<script src="/js/jquery-1.12.0.min.js"></script>-->
  <script src="/js/plugins/jquery-ui.min.js"></script>	
  <script src="/js/2019/jquery.easing.1.3.min.js"></script>
  <script src="/js/2019/jquery.mousewheel.min.js"></script>
  <script src="/js/2019/simplebar.js"></script>
  <script src="/js/2019/layout.js"></script>
  <script src="/js/2019/layout-device.js"></script>
  <script src="/js/2019/content.js"></script>  
  <script src="/js/plugins/jquery.select.min.js"></script>
  
  <script src="/js/2023/swiper.js"></script>
  <script src="/js/2023/script.js"></script>
  
<!--[if lt IE 9]>
	<script src="/js/ie/html5shiv.min.js"></script>
	<script src="/js/ie/css3-mediaqueries.js"></script>
	<script src="/js/ie/respond.min.js"></script>
	<script src="/js/ie/IE9.js"></script>
	<script src="/js/ie/placeholders.min.js"></script>
<![endif]-->
  

<!--[if lt IE 9]>
	<script src="/js/ie/html5shiv.min.js"></script>
	<script src="/js/ie/css3-mediaqueries.js"></script>
	<script src="/js/ie/respond.min.js"></script>
	<script src="/js/ie/IE9.js"></script>
	<script src="/js/ie/placeholders.min.js"></script>
<![endif]-->
</head>

<body>
	<!-- 팝업 -->
	







<script>	
	// 레이어팝업 : 쿠키세팅 
	function setCookie( name, value, expiredays ) {
		var todayDate = new Date();
		todayDate = new Date(parseInt(todayDate.getTime() / 86400000) * 86400000 + 54000000); 
		if ( todayDate > new Date() ){ 
			expiredays = expiredays - 1; 
		} 
		todayDate.setDate( todayDate.getDate() + expiredays ); 
		document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";" 
	}
	
	// 레이어팝업 : 쿠키 가져오기 
	function getCookie( name ) {
		var nameOfCookie = name + "="; 
		var x = 0; 
		while ( x <= document.cookie.length ){ 
			var y = (x+nameOfCookie.length); 
			if ( document.cookie.substring( x, y ) == nameOfCookie ) { 
				if ( (endOfCookie=document.cookie.indexOf( ";", y )) == -1 ) 
				endOfCookie = document.cookie.length; 
				return unescape( document.cookie.substring( y, endOfCookie ) ); 
			} 
			x = document.cookie.indexOf( " ", x ) + 1; 
			if ( x == 0 ) break; 
		} 
		return ""; 
	}
		
	// 레이어팝업 쿠키 
	$(function(){
		var popupItem = $('.daily-popup .popupWrap').children('section');
		popupItem.each(function(){
			var $this = $(this),
				idx = $this.index(),
				i = idx + 1,
				$chk_box = $this.find('.pChkBox'),
				num = 'hideToday-' + i;
			
			$chk_box.find('input').attr('id', num);
			$chk_box.find('label').attr('for', num);
			
			// 팝업 close
			var $close = $this.find('.closeBtn');	
			
			$close.click(function(){
				// 오늘하루 보지않기 체크 유무
				if($chk_box.find('input').is(':checked')){
					setCookie("close0" + i,"Y",7);
					$this.removeClass('show');
				}else{
					$this.removeClass('show');
				}
			});
		});
		
	});
	
	// 레이어팝업 세팅
	$(window).ready(function(){
		
		var cookiedata = document.cookie;
				
		var popupItem = $('.daily-popup .popupWrap').children('section');
		
		popupItem.each(function(){
			var $this = $(this),
				idx = $this.index(),
				i = idx + 1;
			// 오늘하루 보지않기 체크 유무
			if(cookiedata.indexOf("close0"+ i +"=Y")<0){
				$(this).addClass('show');
			}else{
				$(this).removeClass('show');
			}
		});
	});
</script>

<div class="daily-popup">
	<div class="popupWrap" style="max-width:none;">
		
		
		 
		

		
	</div>
</div>
	<dl id="skipToContent">
		<dt>Shortcut menu</dt>
		<dd><a href="#container">the body go</a></dd>
		<dd><a href="#header">main menu go</a></dd>
	</dl>

	





<script src="/js/jquery.validate.min.js"></script>
<script src="/js/mainFont.js"></script>
<script>
function goSearch(){	
	if($("#search-main").val() == ""){
		alert("Please enter a keyword.");
		return false;
	}	
   	document.getElementById("searchFormHeader").submit();	
}

//facebook 공유
function goFaceBook(url){
	var tmpUrl = window.location.href;
	//var href = "http://www.facebook.com/sharer.php?u="+url;
	var href = "http://www.facebook.com/sharer.php?u="+encodeURIComponent(tmpUrl);
	var a = window.open(href); 
	if(a){
		a.focus();
	}
}
	
// twitter 공유
function goTwitter(url){
	//var href = "http://twitter.com/intent/tweet?url="+url;
	var tmpUrl = window.location.href;
	var href = "http://twitter.com/intent/tweet?url="+encodeURIComponent(tmpUrl);
	var a = window.open(href);		
	if(a){
		a.focus();
	}
}
</script>

<!--s:header-->
<div id="header">
    <h1><a href="/">Ministry of Finance and Economy</a></h1>
    <div class="gnb">
        <ul>
            <li>
                <a href="javascript:;"><span>ABOUT MINISTRY</span></a>
                <ul class="gnb_sub">
                    <li><a href="/co/selectAboutMosf.do?boardCd=C0001">Minister</a></li>
                    <li><a href="/co/selectAboutMosf.do?boardCd=C0002">Vice Ministers</a></li>
                    <li><a href="/co/selectAboutMosf.do?boardCd=C0004">Introduction</a></li>
                    <li><a href="/co/selectAboutMosf.do?boardCd=C0005">History</a></li>
                    <li><a href="/co/selectAboutMosf.do?boardCd=C0006">Organization</a></li>
                    <li><a href="/co/selectAboutMosf.do?boardCd=C0007">Ministry Identity</a></li>
                </ul>
            </li>
            <li>
                <a href="javascript:;"><span>PRESS CENTER</span></a>
                <ul class="gnb_sub">
                    <li><a href="/pc/selectTbPressCenterList.do?boardCd=N0001">Press Releases</a></li>
                    <li><a href="/mi/selectTbMinisterList.do?boardCd=M0001">Photo News</a></li>
                    <li><a href="/mi/selectTbMinisterList.do?boardCd=M0002">Speeches</a></li>
                    <!-- <li><a href="/wk/selectTbWeeklyDtl.do?boardCd=P0009">Newsletter</a></li> -->
                    <!-- <li><a href="/pm/MultimediaList.do">MultiMedia</a></li> -->
                    <li><a href="/gn/selectTbGraphicNewsList.do">Graphic News</a></li>
                </ul>
            </li>
            <li>
                <a href="javascript:;"><span>DATA&LAW</span></a>
                <ul class="gnb_sub">
                    <li><a href="https://www.mofe.go.kr/sns/2024/foreignExchange.do?category=nesEng" target="_blank" title="new window" class="newTab">FX Market Reform<i></i></a></li>
                    <li><a href="https://ktb.moef.go.kr/eng/aucRes.do" target="_blank" title="new window" class="newTab">Treasury Bonds<i></i></a></li>
                    <li><a href="https://www.openfiscaldata.go.kr/op/en/index" target="_blank" title="new window" class="newTab">Fiscal Data<i></i></a></li>
                    <li><a href="/di/selectTbDailyIndDtl.do">Daily Economic Indicators</a></li>
                    <li><a href="/lw/laword.do">Laws in English</a></li>
                </ul>
            </li>
            <li>
                <a href="javascript:;"><span>PUBLICATIONS</span></a>
                <ul class="gnb_sub">
                    <li><a href="/pu/selectTbPublicDtl.do?boardCd=P0002&seq=">Economic Bulletin</a></li>
                    <li><a href="/pm/KoreaTreasuryBondList.do">Korea Treasury Bonds</a></li>
                    <li><a href="/pm/KoreanTaxationList.do">Korean Taxation</a></li>
                    <li><a href="/pm/OtherPublicationsList.do">Other Publications</a></li>
                </ul>
            </li>
        </ul>
    </div>
    <div class="nav-bg"></div>
    <div class="right">
        <div class="search_bar">
            <button class="search_icon_mobile" title="open searchbar"><span class="circle"></span><span class="line"></span>open searchbar</button>
            <form name="searchFormHeader" id="searchFormHeader" action="/sh/searchList.do" method="get" class="searchFrm">
                <input type="hidden" id="range" name="range" value="anywhere">
                <label for="search-main"><span>search</span></label>
                <input type="text" id="search-main" name="searchTerm" placeholder="Search" autocomplete="off" value="" title="search" class="searchInput">
            </form>
            <div class="search_btn"><a href="javascript:;" class="search_icon" onclick="goSearch();" title="search"><span>search</span></a></div>
        </div>
        <!--search-->
        <div class="lang">
            <button class="fontsize" title="Font Size">Font Size</button>
            <div class="size_box">
                <p class="tit">Font Size</p>
                <ul>
                    <li class="lv1">
                        <button type="button" id="buttonlv1" class="btn_plus">
                            <span class="ico">A</span>
                            <span class="txt">small</span>
                        </button>
                    </li>
                    <li class="lv2">
                        <button type="button" id="buttonlv2" class="btn_plus on">
                            <span class="ico">A</span>
                            <span class="txt">medium</span>
                        </button>
                    </li>
                    <li class="lv3">
                        <button type="button" id="buttonlv3" class="btn_plus">
                            <span class="ico">A</span>
                            <span class="txt">large</span>
                        </button>
                    </li>
                    <li class="lv4">
                        <button type="button" id="buttonlv4" class="btn_plus">
                            <span class="ico">A</span>
                            <span class="txt">xlarge</span>
                        </button>
                    </li>
                    <li class="lv5">
                        <button type="button" id="buttonlv5" class="btn_plus">
                            <span class="ico">A</span>
                            <span class="txt">xxlarge</span>
                        </button>
                    </li>
                </ul>
                <button type="button" class="btn_close" title="Close" data-pop-focus="last"><span class="hidden">Close</span></button>
            </div>
            <a href="https://www.mofe.go.kr" target="_blank" title="Ministry of Finance and Economy KOR">KOR</a>
        </div>
        <!--lang-->
        <button class="all_menu" title="open fullmenu">
            <span>open fullmenu</span>
        </button>
    </div>
</div>
<!--e:header-->
<!--s:allmenu-->
<div class="allmenu">
    <div class="in">
        <div class="menu_container">
            <ul class="all_nav">
                <li>
                    <button>ABOUT MINISTRY</button>
                    <ul>
                        <li><a href="/co/selectAboutMosf.do?boardCd=C0001">Minister</a></li>
                        <li><a href="/co/selectAboutMosf.do?boardCd=C0002">Vice Ministers</a></li>
                        <li><a href="/co/selectAboutMosf.do?boardCd=C0004">Introduction</a></li>
                        <li><a href="/co/selectAboutMosf.do?boardCd=C0005">History</a></li>
                        <li><a href="/co/selectAboutMosf.do?boardCd=C0006">Organization</a></li>
                        <li><a href="/co/selectAboutMosf.do?boardCd=C0007">Ministry Identity</a></li>
                    </ul>
                </li>
                <li>
                    <button>PRESS CENTER</button>
                    <ul>
                        <li><a href="/pc/selectTbPressCenterList.do?boardCd=N0001">Press Releases</a></li>
                        <li><a href="/mi/selectTbMinisterList.do?boardCd=M0001">Photo News</a></li>
                        <li><a href="/mi/selectTbMinisterList.do?boardCd=M0002">Speeches</a></li>
                        <!-- <li><a href="/wk/selectTbWeeklyDtl.do?boardCd=P0009">Newsletter</a></li> -->
                        <!-- <li><a href="/pm/MultimediaList.do">MultiMedia</a></li> -->
                        <li><a href="/gn/selectTbGraphicNewsList.do">Graphic News</a></li>
                    </ul>
                </li>
                <li>
                    <button>DATA&LAW</button>
                    <ul>
                    <li><a href="https://www.mofe.go.kr/sns/2024/foreignExchange.do?category=nesEng" target="_blank" title="new window">FX Market Reform<i></i></a></li>
                        <li><a href="https://ktb.moef.go.kr/eng/aucRes.do" target="_blank" title="new window">Treasury Bonds</a></li>
                        <li><a href="https://www.openfiscaldata.go.kr/op/en/index" target="_blank" title="new window">Fiscal Data</a></li>
                        <li><a href="/di/selectTbDailyIndDtl.do">Daily Economic Indicators</a></li>
                        <li><a href="/lw/laword.do">Laws in English</a></li>
                    </ul>
                </li>
                <li>
                    <button>PUBLICATIONS</button>
                    <ul>
                        <li><a href="/pu/selectTbPublicDtl.do?boardCd=P0002&seq=">Economic Bulletin</a></li>
                        <li><a href="/pm/KoreaTreasuryBondList.do">Korea Treasury Bonds</a></li>
                        <li><a href="/pm/KoreanTaxationList.do">Korean Taxation</a></li>
                        <li><a href="/pm/OtherPublicationsList.do">Other Publications</a></li>
                    </ul>
                </li>
            </ul>
        </div>
        <div class="mSiteInfo">
            <div class="info">
                <a href="/co/selectAboutMosf.do?boardCd=C0009" title="Contact us">Contact us</a>
            </div>
            <div class="site">
                <a href="https://twitter.com/moefkorea_eng" target="_blank" title="Tweets" class="tweetSite">Tweets<i></i></a>
                <a href="https://www.mofe.go.kr" target="_blank" class="koreanSite">한국어<i>KOR</i></a>
            </div>
        </div>
        <button class="menu_close">close fullmenu</button>
    </div>
</div>
<!--e:allmenu-->

<aside class="func-nav">

</aside>

	<div id="container" class="container">
		




<script type="text/javascript">
// 페이지 들어오자마자 호출됨
$(window).on('load', function(){ 
	refresh();
	koreanetRss();
});
/*
$(window).load(function(){ 
		
		
		// Ecos 지수 수집 호출 2번서버만
		//refreshEcos();
	}
);
*/

$(document).ready(function() {		
	
});

var sum=0;          
$(document).ready(function() {
	setInterval(function(){
		sum +=1;
// 		console.log("count==="+sum);
		refresh();
		
		// Ecos 지수 수집 호출 2번서버만
		//refreshEcos();
		
	}, 60000); //60000 으로 변경

	//rssAjax(); // rss 호출
}); 

/********************************* IE일경우에만 트위터 연계 처리 *************************************/

var agent = navigator.userAgent.toLowerCase();
if ( (navigator.appName == 'Netscape' && navigator.userAgent.search('Trident') != -1) || (agent.indexOf("msie") != -1) ) {
	loadTwitter();
	var loadTwCnt = 0;
	
	$("#chrome").css("display","none");
		
} else {
	$("#chrome").css("display","block");
} 

  
/** 트위터 조회시에만 js를 사용한다. **/
function loadTwitter(){
	if(loadTwCnt > 0 ){
		loadTwitterApi();
	}else{
		loadTwCnt = 1;
		
		var script1 = null;
		var script2= null;
		
		// 메인화면 로드 시 용량 줄이기 위해 트위터 선택 시 js 호출... 용량 상관없으면 그냥 호출해도 됨
		script1 = document.createElement('script');
		script1.type = 'text/javascript';
		script1.src = '/js/sns/oauth.js';

		document.body.appendChild(script1);

		script2 = document.createElement('script');
		script2.type = 'text/javascript';
		script2.src ='/js/sns/sha1.js';

		document.body.appendChild(script2);
		
		setTimeout('loadTwitterApi()',1500);
	}
}	


/** 반응형웹개발_GJD_20170412_트위터 데이터를 jsonp형식으로 받아오도록 데이터 요청. **/
function loadTwitterApi(){
	var twitterPrm = null;	// 호출 시 정보가 들어갈 변수
	twitterPrm = {
		api : 'https://api.twitter.com/1.1/statuses/user_timeline.json',	// 트위터 api주소
		count : 12, 			// 불러올 개수
		include_rts : false, 	// 
		callback : 'loadTwtterData', 	// 호출함수
		
		/* 국문 기획재정부 트위터 등록 키 값 
		consumerKey : 'p3sujjI586AZjjaMZ5UVauIWz',
		consumerSecret : 'B3J9SXtf3TdkZ0qIUPGU1GOM4DCSkejKPNA9R8ZOTIMkTnvnzV',
		accessToken : '128151550-AV7EQCe3f6nA6nGOGUA6jUiLEIQBSI7i9BffckUK',
		tokenSecret :  'QRMVDDCE6c3MQGCD4T8YSVV9370S3nNu65KKa4O9VQpj9'
		*/
		
		/* 영문 기획재정부 트위터 등록 키 값*/ 
		consumerKey : 'EFgcDw9IbuyL7q1u6nc8A1w8p',
		consumerSecret : 'viQWRA0JnefPsrPGrwVJLi9249H1yygpxWJzjcTpz4TjFCEwoS',
		accessToken : '1130655244247953408-eSQeqwoqzfiaB65mwvEhbysS8mH53d',
		tokenSecret :  'DaW6aGYXiVOkw2MfjBMtPUXkMppukFcNNZcZAVUCYG0A0'
		
		
	};
	//oauth인증
	var oauthMessage = {
		method : "GET",
		action : twitterPrm.api,
		parameters : {
			count : twitterPrm.count,
			screen_name : twitterPrm.userId,
			callback : twitterPrm.callback,
			oauth_version : "1.0",
			oauth_signature_method : "HMAC-SHA1",
			oauth_consumer_key : twitterPrm.consumerKey,
			oauth_token : twitterPrm.accessToken
		}
	};
	// OAuth 인증
	OAuth.setTimestampAndNonce(oauthMessage);
	OAuth.SignatureMethod.sign(oauthMessage,{
		consumerSecret : twitterPrm.consumerSecret,
		tokenSecret : twitterPrm.tokenSecret
	});
	var twJsonPath = OAuth.addToURL(oauthMessage.action, oauthMessage.parameters);
	$.ajax({
		type : oauthMessage.method,
		url : twJsonPath,
		dataType : "jsonp",
		jsonp : false,
		cache : true
	});
}
 
 
/** 반응형웹개발_GJD_20170412_트위터 데이터를 jsonp형식으로 받아와 화면에 뿌려준다. **/
function loadTwtterData(data){

	var html = "";
	// 데이터가 있는 경우
	if(data !=null || data !=""){
		
		html += "<div class='wrap'>";
		// 타임라인 개수만큼 반복처리
		$(data).each(function(i, obj){

			var text 		= obj.text;			// 본문 내용
			var date 		= obj.created_at;	// 게시일자
			
			/* if(typeof obj.entities.media=='undefined'){	//미디어 처리시에 사용
				mediaurl = "";
			}else{
				// 미디어가 존재하면 해당 url경로를 넣어준다.
				if(obj.entities.media[0].type == "photo"){
					// 미디어 형식이 사진인 경우에만 값을 넣어준다.
					mediaurl = obj.entities.media[0].media_url;
				}
			} */
		
			var year = date.substring(26, 30);		// 년도, 뒤에 구분자 / 표기
			var month = date.substring(4, 7);			// 월
			var day =  date.substring(8, 10);			// 일
				
							
			// 년/월/일 로 합쳐서 변수에 넣자
			var twPubDate = month+" "+day+", "+year;
			
			
			var message = text.split("\n");
    		var cont_text_title = message[0];
    		var cont_text="";
    		for(var k=0; k<message.length; k++){
    			if(k>0){        				
    				cont_text += message[k];        			
    			}
    		}
    		
			var cont_text = "";
			
			if(text.length > 200){
				cont_text = obj.text.substr(0,200)+"...";		// 본문 내용을 글자 수 130자로 자르고, 뒤에 ...을 붙인다.
			}else{
				cont_text = text;
			}
			
			var sns_cont_text_title = cont_text_title;
			sns_cont_text_title = sns_cont_text_title.replace(/\n/g, "");
			sns_cont_text_title = sns_cont_text_title.replace(/\'/g, "");
			sns_cont_text_title = sns_cont_text_title.replace(/\"/g, "＂");
			
			cont_text = cont_text.replace(/\'/g, "");
			cont_text = cont_text.replace(/\"/g, "＂");
			
			// 화면 HTML
			/* html += "<div class='grid-item grid-twitter'>";
			html += "<div class='grid-item-data'>";
			html += "<div class='grid-default' >";
			html += "<h3>"+cont_text_title+"</h3>";
			html += "<p>"+cont_text+"</p>";
			html += "<div class='grid-option no-file'>";
			html += "<span class='date'>"+twPubDate+".</span>";		
			html += "</div>";
			html += "</div>";
			html += "<a href='https://twitter.com/moefkorea/status/"+obj.id_str+"' target='_blank' style='text-decoration: none;'>";
			html += "<div class='grid-active' >";
			html += "<h3>"+cont_text_title+"<span class='blink'></span></h3>";
			html += "<div>";		
			html += "<span class='date'>"+twPubDate+".</span>";
			html += "<p>"+cont_text+"</p>";
			html += "</div>";		
			html += "</div>";
			html += "</a>";
			html += "</div>";
			html += "</div>";
 */
			
			
			html += "	<div class='ie-tweets-box'><img src='../images/2019/twitter-img-logo.jpg' alt='twitter logo' />";
			html += "	<ul>";
			html += "		<li class='title'>";
			html += "			<a href='https://twitter.com/moefkorea_eng' title='Tweets by moefkorea_eng' target='_blank'>";
			html += "				<span class='account'>MOEF</span>";
			html += "				<span class='name'>@moefkorea_eng</span>";
			html += "			</a>	";
			html += "			<p class='date'>"+twPubDate+"</p>";
			html += "		</li>";
			html += "		<li class='content'>";
			html += "			<a href='https://twitter.com/moefkorea/status/"+obj.id_str+"' target='_blank' title='open window' style='text-decoration: none;'>"+cont_text+"</a>";
			html += "		</li>";
			html += "	</ul></div>";
			
			/* mediaurl 을 조회하면 메인화면 파일 사이즈가 커서 주석처리함.
			if(mediaurl != null && mediaurl != ""){
				html += '<p class="imgtw"><a href="http://twitter.com/'+ obj.user.screen_name +'/statuses/'+ obj.id_str +'" target="_blank"><img src="' + mediaurl + '" alt="' + cont_text_title + '"/></a></p>';
				html += '<p class="ttltw"><a href="http://twitter.com/'+ obj.user.screen_name +'/statuses/'+ obj.id_str +'" target="_blank">'+cont_text_title+'</a></p>';
				html += '<span class="datetw">'+twPubDate+'</spa'else{
			}
			*/
			
			if(i==11){
				// 12이되면 종료, 
				return false;
			}
		});
			html += "</div>";
	}else{// 데이터가 없는 경우
		html += "<div class='grid-item service-error'>";
		html += "<div class='grid-item-data'>";
     	html += "<img src='../images/sns/service-error.png' alt='일시적으로 서비스가 원활하지 않습니다. 잠시 후 다시 시도해주세요.' />";
     	html += "</div>";
     	html += "</div>";
	}
	$("#ie-notice").html(html);		// 화면에 뿌려준다..

}

/********************************* IE일경우에만 트위터 연계 처리 *************************************/

function goPg(goUrl){
   	document.getElementById("Form").action = goUrl;
   	document.getElementById("Form").submit();	
}

function fn_link(linkUrl,title,att){
	window.open( linkUrl,title,att );
}

function rssAjax(){
	// 국채	
	$.ajax({
	       url:  '/di/getTreasury.do;jsessionid=JCLxNXPAQjIDyuvEwFq6eNwc2581AGQt8IanMGev.node20',
	           dataType: "json",
	           data : { },
	           success : function(data){
						$(data.data).each(function(i,items){
							// 결과 생성
							var treasuryData = '<li><a class="title" href="https://ktb.moef.go.kr/eng/aucResDetail.do?nttId='+items.nttId+'&bbsId='+items.bbsId+'"title="'+items.nttSj+'" target="_blank">'+items.nttSj+'</a></li>';
							$('#treasury').append(treasuryData);
						});
	           }
		}); 
}
// 
function refresh(){
	$.ajax({
	       url:  '/di/get5DayIndex.do;jsessionid=JCLxNXPAQjIDyuvEwFq6eNwc2581AGQt8IanMGev.node20',
	           dataType: "json",
	           data : { },
	           success : function(data){
	        	   		var tbDailyIndData = "";
						$(data.data).each(function(i,items){
							
							if(items.title == "KOSPI"){
								if(items.buho == "+"){
									tbDailyIndData += "<p class='active'><i class='rate-up'>"+items.daebi+"</i><b class='count'>"+items.jisu+"</b></p>";
								}else if(items.buho == "-"){
									tbDailyIndData += "<p class='active'><i class='rate-down'>"+items.daebi+"</i><b class='count'>"+items.jisu+"</b></p>";
								}else{
									tbDailyIndData += "<p class='active'><i class='rate-keep'>"+items.daebi+"</i><b class='count'>"+items.jisu+"</b></p>";
								}
							}else{
								if(items.buho == "+"){
									tbDailyIndData += "<p><i class='rate-up'>"+items.daebi+"</i><b class='count'>"+items.jisu+"</b></p>";
								}else if(items.buho == "-"){
									tbDailyIndData += "<p><i class='rate-down'>"+items.daebi+"</i><b class='count'>"+items.jisu+"</b></p>";
								}else{
									tbDailyIndData += "<p><i class='rate-keep'>"+items.daebi+"</i><b class='count'>"+items.jisu+"</b></p>";
								}
							}
						});
						
						$('#tbDailyInd').empty().append(tbDailyIndData);
	           }
	       });
}

function refreshEcos(){
	$.ajax({
		url:  '/di/get5DayIndexEcos.do;jsessionid=JCLxNXPAQjIDyuvEwFq6eNwc2581AGQt8IanMGev.node20',
		dataType: "json",
		data : { },
		success : function(data){
			var tbDailyIndData = "";
			$(data.data).each(function(i,items){
				console.log(i);
			});	
		}
	});
}

/* 고정파일다운로드 function */
function fn_download(name){
	//alert("fileUrl="+fileUrl+"\n oriNm="+oriNm);
// 	document.getElementById("detailForm").target="_self";
	document.getElementById("Form").action = "/co/fixFileDown.do;jsessionid=JCLxNXPAQjIDyuvEwFq6eNwc2581AGQt8IanMGev.node20?orgNm="+name+"";
   	document.getElementById("Form").submit();

}


/* Koreanet News Rss */
function koreanetRss() {
    $.ajax({
      url: '/co/getKoreanetRss.do;jsessionid=JCLxNXPAQjIDyuvEwFq6eNwc2581AGQt8IanMGev.node20',
      dataType: "json",
      data : { },
      success : function(data){
    	  if(data.data != "fail"){
	    	  if(data.data.length > 0){
	    		  	var html = "";
		   			$(data.data).each(function(i,items){
		   				html += '<li>';
		   				html += '    <a href="'+items.link+'" target="_blank" title="'+items.title+' (new window)">';
		   				html += '        <strong>'+items.title+'</strong>';
		   				html += '        <p>'+items.pubDate+'</p>';
		   				html += '    </a>';
		   				html += '</li>';
					});	
		   			$('.koreanetRss').html(html);
		   		}
    	  }else{
			var html = '<li class="empty">No results were found containing.<br/> Try entering fewer or broader query terms.</li>'; 
			$('.koreanetRss').append(html);
    	  }
      }
    });
  }

</script>
<link rel="stylesheet" href="/css/2019/tweets_ie.css">
<form name="frmCheck" id="frmCheck"> 
	<input type="hidden" name="adminId"/>
	<input type="hidden" name="stateCd"/>
</form>
<form id="Form" name="Form" action="/;jsessionid=JCLxNXPAQjIDyuvEwFq6eNwc2581AGQt8IanMGev.node20?boardCd=E0009" method="post">

<!-- mainContainer : 메인 본문 영역 : s -->
<div class="mainContainer">
    <div>
        <div class="main_visual swiper-container">
            <ul class="swiper-wrapper">
            	            	
	            	<li class="swiper-slide">
	                    <a href="https://www.moef.go.kr/sns/2024/foreignExchange.do?category=nesEng" style="background-image:url('/co/singleFileDown.do;jsessionid=JCLxNXPAQjIDyuvEwFq6eNwc2581AGQt8IanMGev.node20?seq=0&fileSeq=12999&boardCd=C0008')">
	                        <div class="img"><img src="/co/singleFileDown.do;jsessionid=JCLxNXPAQjIDyuvEwFq6eNwc2581AGQt8IanMGev.node20?seq=0&fileSeq=12999&boardCd=C0008" alt="Foreign Exchange and Capital Market Reform" /></div>
	                        <div class="txt">
	                            <strong>Foreign Exchange and Capital Market Reform</strong>
	                            <p>
	                                The Korean government is advancing comprehensive reforms in the foreign exchange and capital markets to enhance accessibility for global investors. Beyond improving market access, these initiatives are positioned as a key policy lever to drive sustainable economic growth and strengthen Korea’s long-term growth potential. By attracting stable, long-term foreign capital and fostering deeper and more efficient market development, the reforms seek to reinforce macroeconomic resilience and support the realization of a “Korean Premium.”
	                            </p>
	
	                        </div>
	                    </a>
	                </li>
                            	
	            	<li class="swiper-slide">
	                    <a href="https://english.moef.go.kr/pc/selectTbPressCenterDtl.do?boardCd=N0001&seq=6328" style="background-image:url('/co/singleFileDown.do;jsessionid=JCLxNXPAQjIDyuvEwFq6eNwc2581AGQt8IanMGev.node20?seq=2&fileSeq=13126&boardCd=C0008')">
	                        <div class="img"><img src="/co/singleFileDown.do;jsessionid=JCLxNXPAQjIDyuvEwFq6eNwc2581AGQt8IanMGev.node20?seq=2&fileSeq=13126&boardCd=C0008" alt="2026 Economic Growth Strategy" /></div>
	                        <div class="txt">
	                            <strong>2026 Economic Growth Strategy</strong>
	                            <p>
	                                Amid mounting internal and external challenges, the government will pursue a structural transformation of its growth paradigm to revive potential growth and address economic polarization, thereby realizing a major economic leap in which all citizens can grow together alongside national growth. In this context, the government has formulated the 2026 Economic Growth Strategy, centered on 15 flagship initiatives across four strategic pillars.
	                            </p>
	
	                        </div>
	                    </a>
	                </li>
                
            </ul>
            <button class="swiper-next" title="next">next</button>
            <button class="swiper-prev" title="previous">previous</button>
            <div class="swiper-pagination"></div>
            <button class="swiper-button-play" title="start">start</button>
			<button class="swiper-button-pause on" title="stop">stop</button>
        </div>
        <div class="inner">
        	 
            <div class="main_section">
                <h2><a href="/pc/selectTbPressCenterList.do?boardCd=N0001">PRESS RELEASES</a></h2>
                <ul class="board_list">
                	
	                    <li>
	                        <a class="title" href="/pc/selectTbPressCenterDtl.do?boardCd=N0001&seq=6382" title="First Macroeconomic, Fiscal and Financial Meeting Held  To Strengthen Macroeconomic Policy Coordination in Response to the Middle East Conflict">
	                            <span class="date">
	                                <strong>02</strong>
	                                <em>Apr. 2026</em>
	                            </span>
	                            <div class="cont">
	                                <strong>First Macroeconomic, Fiscal and Financial Meeting Held  To Strengthen Macroeconomic Policy Coordination in Response to the Middle East Conflict</strong>
	                                <p>First Vice Minister of Finance and Economy Lee Hyoung Il chaired an inter-ministerial vice ministers’ meeting on price trends and the Middle East conflict response on April 2, where participants discussed (i) March consumer price trends and (ii) price developments and management measures for key livelihood items under special monitoring, including those affected by the Middle East conflict.

Vice Minister Lee noted that “consumer prices rose 2.2% in March, supported by falling agricultural prices and the implementation of price caps, despite upward pressure from higher petroleum prices driven by the Middle East conflict and rising global oil prices.” He added that “given heightened volatility in global oil prices and persistent upside risks, all ministries should work together to ensure price and supply stability across key items.”

The meeting marked the first since the launch of the Middle East Conflict Response Team under the Livelihood Price Task Force. Relevant ministries reviewed price trends and discussed management measures for 43 key items under special monitoring, including manufactured goods and processed food products potentially affected by the conflict.

The government will step up monitoring and conduct on-site inspections at 10,000 gas stations nationwide to prevent excessive price hikes following the second adjustment of price caps on petroleum products. It will also expand supply measures for chicken, whose prices have risen recently due to livestock disease outbreaks, and provide discounts of up to 40% starting April 2. In addition, the government plans to allocate KRW 15 billion over April and May to expand discount support for essential items such as rice, eggs, and mackerel, which have seen strong price increases.

Meanwhile, daily prices of key livelihood items among manufactured goods, processed foods, and dining-out services in the special monitoring list will be newly surveyed by the Ministry of Data and Statistics in order to closely track any fluctuations stemming from the Middle East conflict. Items with potential supply or price concerns will be continuously added to the list and subject to intensified management.



Please refer to the attached files. 
</p>
	                            </div>
	                        </a>
	                    </li>
                    
	                    <li>
	                        <a class="title" href="/pc/selectTbPressCenterDtl.do?boardCd=N0001&seq=6381" title="First Macroeconomic, Fiscal and Financial Meeting Held  To Strengthen Macroeconomic Policy Coordination in Response to the Middle East Conflict">
	                            <span class="date">
	                                <strong>01</strong>
	                                <em>Apr. 2026</em>
	                            </span>
	                            <div class="cont">
	                                <strong>First Macroeconomic, Fiscal and Financial Meeting Held  To Strengthen Macroeconomic Policy Coordination in Response to the Middle East Conflict</strong>
	                                <p>Deputy Prime Minister and Minister of Finance and Economy Koo Yun Cheol chaired the first meeting on macroeconomic, fiscal and financial issues on April 1, 2026 at the Government Complex Seoul. With the attendance of Minister of Planning and Budget Park Hong-geun and Chairman of the Financial Services Commission Lee Eok-weon, the meeting focused on discussing policy responses to the ongoing Middle East conflict.

In light of the heightened macroeconomic volatility, coordinating major policy tools—including fiscal policy, taxation, finance, and foreign exchange—has become paramount. This inaugural meeting thus aims to find the optimal policy mix and solidify a framework for close cooperation.

The participants shared the view that, as uncertainty surrounding the Middle East situation has persisted for five weeks, there are growing concerns about its impact not only on the real economy and financial markets but also on vulnerable groups. In this regard, they underscored the importance of the swift passage and execution of the supplementary budget proposal recently submitted to the National Assembly. They also committed to making all-out efforts to ensure close communication and cooperation with the National Assembly during the deliberation process, and to thoroughly prepare for immediate execution once the budget is approved.

Given the high level of uncertainty, the participants agreed to proactively review and prepare available policy measures in case the conflict becomes prolonged, and to respond swiftly when necessary.

Going forward, they agreed to hold the meeting on a monthly basis to discuss not only current macroeconomic issues but also structural challenges such as inequality and declining potential growth, while ensuring consistent and timely policy responses through close coordination among the relevant authorities.



Please refer to the attached files. 

</p>
	                            </div>
	                        </a>
	                    </li>
                    
	                    <li>
	                        <a class="title" href="/pc/selectTbPressCenterDtl.do?boardCd=N0001&seq=6380" title="Inaugural Meeting of the WGBI Monitoring  and Investment Promotion Task Force">
	                            <span class="date">
	                                <strong>01</strong>
	                                <em>Apr. 2026</em>
	                            </span>
	                            <div class="cont">
	                                <strong>Inaugural Meeting of the WGBI Monitoring  and Investment Promotion Task Force</strong>
	                                <p>The Ministry of Finance and Economy held the inaugural meeting of the World Government Bond Index (WGBI) Monitoring and Investment Promotion Task Force on April 1, 2026, at the Government Complex Seoul, chaired by Deputy Minister for Treasury Hwang Soon Kwan. The meeting was convened to coincide with the commencement of Korea’s inclusion in the WGBI, with participation from the Financial Services Commission, the Bank of Korea, the Financial Supervisory Service, and the Korea Securities Depository. During the meeting, participants discussed trends in foreign investment flows before and after the WGBI inclusion and established related monitoring plans.

Deputy Minister Hwang emphasized that the Task Force should play a key role in ensuring both stability and further advancement of Korea’s government bond market. He underscored the importance of closely monitoring capital inflow trends and facilitating smooth inflows across relevant institutions. He also called for proactive efforts beyond monitoring, urging each institution to identify and address difficulties faced by foreign investors in advance and to actively explore additional measures to promote further capital inflows.

The government plans to regularly monitor foreign capital inflows through the Task Force, while actively formulating measures to promote such inflows. In addition, it will extensively conduct investor relations (IR) targeting overseas investors, with the aim of maximizing the benefits of Korea’s inclusion in the WGBI.




Please refer to the attached files. 



</p>
	                            </div>
	                        </a>
	                    </li>
                    
                </ul>
            </div>
            <div class="main_section news">
                <div class="flexCnt">
                    <div class="left">
                        <h2><a href="/mi/selectTbMinisterList.do?boardCd=M0001">PHOTO NEWS</a></h2>
                        <div class="cont">
                        	
	                            <a href="/mi/selectTbMinisterDtl.do?boardCd=M0001&seq=3054" title="Deputy Prime Minister Koo Yun Cheol attends the signing ceremony of a memorandum of understanding (MOU) among the Ministry of  Finance and Economy, the Ministry of Climate, Energy and Environment, and the Bank of Korea on March 24 at the Government Complex Seoul in Seoul, for a pilot project to build EV charging infrastructure using central bank digital currency (CBDC) and deposit tokens.">
	                                <div class="img">
                                        <div class="in" style="background-image: url(/co/imgfileDown.do?seq=3054&boardCd=M0001&fileType=img);"></div>
	                                </div>
	                                <dl>
	                                    <dt>Deputy Prime Minister Koo Yun Cheol attends the signing ceremony of a memorandum of understanding (MOU) among the Ministry of  Finance and Economy, the Ministry of Climate, Energy and Environment, and the Bank of Korea on March 24 at the Government Complex Seoul in Seoul, for a pilot project to build EV charging infrastructure using central bank digital currency (CBDC) and deposit tokens.</dt>
	                                    <dd>Mar 24, 2026</dd>
	                                </dl>
	                            </a>
                            
                        </div>
                    </div>
                    <div class="right">
                        <h2><a href="/gn/selectTbGraphicNewsList.do">GRAPHIC NEWS</a></h2>
                        <ul class="news_list">
                        	
                        		<li>
	                        		<a href="/gn/selectTbGraphicNewsDtl.do?boardCd=G0001&seq=4320" title="Current Employment Statistics, January 2026">
	                                    <div class="img">
	                                        <!--<div class="in" style="background-image:url(/co/imgfileDown.do?seq=4320&boardCd=G0001)"></div>-->
											<div class="in" style="background-image:url(/co/thumbImgDown.do?seq=4320&boardCd=G0001)"></div>
	                                    </div>
	                                    <!--
	                                    <dl>
	                                        <dt>Current Employment Statistics, January 2026</dt>
	                                        <dd>Feb 11. 2026</dd>
	                                    </dl>
	                                    -->
	                                </a>
                                </li>
                        	
                        		<li>
	                        		<a href="/gn/selectTbGraphicNewsDtl.do?boardCd=G0001&seq=4319" title="Consumer Price Index, January 2026">
	                                    <div class="img">
	                                        <!--<div class="in" style="background-image:url(/co/imgfileDown.do?seq=4319&boardCd=G0001)"></div>-->
											<div class="in" style="background-image:url(/co/thumbImgDown.do?seq=4319&boardCd=G0001)"></div>
	                                    </div>
	                                    <!--
	                                    <dl>
	                                        <dt>Consumer Price Index, January 2026</dt>
	                                        <dd>Feb 03. 2026</dd>
	                                    </dl>
	                                    -->
	                                </a>
                                </li>
                        	
                        </ul>
                    </div>
                </div>
            </div>
            <div class="main_section">
                <!-- <h2><a href="https://ecos.bok.or.kr/#/StatisticsByTheme/KoreanStat100" target="_blank" title="LATEST INDICATORS" class="newTab">LATEST INDICATORS<i></i></a></h2> -->
                <h2>LATEST INDICATORS</h2>
                <div class="cont_area">
                    <div class="item">
                        <!-- pc latest -->
                        <div class="latest swiper-container">
                            <ul class="swiper-wrapper">
                            	<li class="swiper-slide">
                            		<div class="list">
                                		
                                    		<div class="box1">
	                                            <p>Bank of Korea Base Rate</p>
	                                            <strong>2.5 <span>%</span></strong>
	                                            <span class="date">
	                                            	
	                                            	Apr 03, 2026
	                                            </span>
	                                        </div>
                                    	
                                    		<div class="box2">
	                                            <p>Call Rate (Overnight)</p>
	                                            <strong>2.492 <span>%</span></strong>
	                                            <span class="date">
	                                            	
	                                            	Apr 03, 2026
	                                            </span>
	                                        </div>
                                    	
                                    		<div class="box3">
	                                            <p>KORIBOR(3 month)</p>
	                                            <strong>2.81 <span>%</span></strong>
	                                            <span class="date">
	                                            	
	                                            	Apr 03, 2026
	                                            </span>
	                                        </div>
                                    	
                                    		<div class="box4">
	                                            <p>CD(91 day)</p>
	                                            <strong>2.82 <span>%</span></strong>
	                                            <span class="date">
	                                            	
	                                            	Apr 03, 2026
	                                            </span>
	                                        </div>
                                    	
                                   	</div>
                            	</li>
                            	<li class="swiper-slide">
                            		<div class="list">
                                		
                                    		<div class="box5">
	                                            <p>Monetary Stabilization Bonds(364 day)</p>
	                                            <strong>2.899 <span>%</span></strong>
	                                            <span class="date">
	                                            	
	                                            	Apr 03, 2026
	                                            </span>
	                                        </div>
                                    	
                                    		<div class="box6">
	                                            <p>Treasury Bonds(3 year)</p>
	                                            <strong>3.448 <span>%</span></strong>
	                                            <span class="date">
	                                            	
	                                            	Apr 03, 2026
	                                            </span>
	                                        </div>
                                    	
                                    		<div class="box7">
	                                            <p>Treasury Bonds(5 year)</p>
	                                            <strong>3.622 <span>%</span></strong>
	                                            <span class="date">
	                                            	
	                                            	Apr 03, 2026
	                                            </span>
	                                        </div>
                                    	
                                    		<div class="box8">
	                                            <p>Corporate Bonds(3 year, AA-)</p>
	                                            <strong>4.093 <span>%</span></strong>
	                                            <span class="date">
	                                            	
	                                            	Apr 03, 2026
	                                            </span>
	                                        </div>
                                    	
                                   	</div>
                            	</li>
                            	<li class="swiper-slide">
                            		<div class="list">
                                		
                                    		<div class="box9">
	                                            <p>KRW/USD(Closing Rate)</p>
	                                            <strong>1505.2 <span>Won</span></strong>
	                                            <span class="date">
	                                            	
	                                            	Apr 03, 2026
	                                            </span>
	                                        </div>
                                    	
                                    		<div class="box10">
	                                            <p>KRW/JPY(100 Yen)</p>
	                                            <strong>944.23 <span>Won</span></strong>
	                                            <span class="date">
	                                            	
	                                            	Apr 06, 2026
	                                            </span>
	                                        </div>
                                    	
                                    	
                                    		<div class="box11">
	                                            <p>KOSPI</p>
	                                            <strong>5,377.3</strong>
	                                            <span class="date">
	                                            	
	                                            	Apr 03, 2026
	                                            </span>
	                                        </div>
                                    	
                                    		<div class="box12">
	                                            <p>KOSDAQ Index</p>
	                                            <strong>1,063.75</strong>
	                                            <span class="date">
	                                            	
	                                            	Apr 03, 2026
	                                            </span>
	                                        </div>
                                    	
                                   	</div>
                            	</li>
                            </ul>
                            <button class="swiper-next" title="next">next</button>
                            <button class="swiper-prev" title="previous">previous</button>
                            <button class="swiper-button-play2" title="start">start</button>
                            <button class="swiper-button-pause2 on" title="stop">stop</button>
                        </div>
                        <!-- //pc latest -->
                        
                        <!-- 모바일 latest -->
                        <div class="latest_m swiper-container">
                            <ul class="swiper-wrapper">
                            
                                <li class="swiper-slide">
                                    <div class="box1">
                                        <p>Bank of Korea Base Rate</p>
                                        <strong>2.5 <span>%</span></strong>
                                        <span class="date">
                                            
                                            Apr 03, 2026
                                        </span>
                                    </div>
                                </li>
                            
                                <li class="swiper-slide">
                                    <div class="box2">
                                        <p>Call Rate (Overnight)</p>
                                        <strong>2.492 <span>%</span></strong>
                                        <span class="date">
                                            
                                            Apr 03, 2026
                                        </span>
                                    </div>
                                </li>
                            
                                <li class="swiper-slide">
                                    <div class="box3">
                                        <p>KORIBOR(3 month)</p>
                                        <strong>2.81 <span>%</span></strong>
                                        <span class="date">
                                            
                                            Apr 03, 2026
                                        </span>
                                    </div>
                                </li>
                            
                                <li class="swiper-slide">
                                    <div class="box4">
                                        <p>CD(91 day)</p>
                                        <strong>2.82 <span>%</span></strong>
                                        <span class="date">
                                            
                                            Apr 03, 2026
                                        </span>
                                    </div>
                                </li>
                            
                            
                                <li class="swiper-slide">
                                    <div class="box5">
                                        <p>Monetary Stabilization Bonds(364 day)</p>
                                        <strong>2.899 <span>%</span></strong>
                                        <span class="date">
                                            
                                            Apr 03, 2026
                                        </span>
                                    </div>
                                </li>
                            
                                <li class="swiper-slide">
                                    <div class="box6">
                                        <p>Treasury Bonds(3 year)</p>
                                        <strong>3.448 <span>%</span></strong>
                                        <span class="date">
                                            
                                            Apr 03, 2026
                                        </span>
                                    </div>
                                </li>
                            
                                <li class="swiper-slide">
                                    <div class="box7">
                                        <p>Treasury Bonds(5 year)</p>
                                        <strong>3.622 <span>%</span></strong>
                                        <span class="date">
                                            
                                            Apr 03, 2026
                                        </span>
                                    </div>
                                </li>
                            
                                <li class="swiper-slide">
                                    <div class="box8">
                                        <p>Corporate Bonds(3 year, AA-)</p>
                                        <strong>4.093 <span>%</span></strong>
                                        <span class="date">
                                            
                                            Apr 03, 2026
                                        </span>
                                    </div>
                                </li>
                            
                            
                                <li class="swiper-slide">
                                    <div class="box9">
                                        <p>KRW/USD(Closing Rate)</p>
                                        <strong>1505.2 <span>Won</span></strong>
                                        <span class="date">
                                            
                                            Apr 03, 2026
                                        </span>
                                    </div>
                                </li>
                            
                                <li class="swiper-slide">
                                    <div class="box10">
                                        <p>KRW/JPY(100 Yen)</p>
                                        <strong>944.23 <span>Won</span></strong>
                                        <span class="date">
                                            
                                            Apr 06, 2026
                                        </span>
                                    </div>
                                </li>
                            
                            
                                <li class="swiper-slide">
                                    <div class="box11">
                                        <p>KOSPI</p>
                                        <strong>5,377.3</strong>
                                        <span class="date">
                                            
                                            Apr 03, 2026
                                        </span>
                                    </div>
                                </li>
                            
                                <li class="swiper-slide">
                                    <div class="box12">
                                        <p>KOSDAQ Index</p>
                                        <strong>1,063.75</strong>
                                        <span class="date">
                                            
                                            Apr 03, 2026
                                        </span>
                                    </div>
                                </li>
                            
                            </ul>
                            <button class="swiper-prev" title="previous">previous</button>
                            <button class="swiper-next" title="next">next</button>
                            <button class="swiper-button-play3" title="start">start</button>
                            <button class="swiper-button-pause3 on" title="stop">stop</button>
                        </div>
                        <!-- //모바일 latest -->
                        
                    </div>
                </div>
            </div>
            <div class="main_section public">
                <div class="flexCnt">
                    <div class="left">
                        <h2><a href="/pu/selectTbPublicDtl.do?boardCd=P0002&seq=">PUBLICATIONS</a></h2>
                        <div class="swiper-container">
                            <ul class="swiper-wrapper">
                                <li class="swiper-slide">
                                    <a href="/pu/selectTbPublicDtl.do?boardCd=P0002&seq=2051">
                                        <div class="img">
											<i class="img_cover"></i>
                                            <img src="/co/thumbImgDown.do?seq=2051&boardCd=P0002&fileType=img" alt="Economic Bulletin">
                                        </div>
                                        <span class="type01">Economic Bulletin</span>
                                        <p>Economic Bulletin, March 2026</p>
                                    </a>
                                </li>
                                <li class="swiper-slide">
                                    <a href="javascript:fn_download('2026_Economic_Growth_Strategy.pdf');" title="Download">
                                        <div class="img">
                                            <img src="img/book_cover2.png" alt="2026 Economic Growth Strategy">
                                        </div>
                                        <span class="type02">Publications</span>
                                        <p>2026 Economic Growth Strategy</p>
                                    </a>
                                </li>
                                <li class="swiper-slide">
                                    <a href="javascript:fn_download('Brochure_2023.pdf');" title="Download">
                                        <div class="img">
                                            <img src="img/book_cover3.png" alt="Introduction to MOEF">
                                        </div>
                                        <span class="type02">Brochure</span>
                                        <p>Introduction to MOEF</p>
                                    </a>
                                </li>
                            </ul>
                            <button class="swiper-next" title="next">next</button>
                            <button class="swiper-prev" title="previous">previous</button>
                        </div>
                    </div>
                    <div class="right">
                        <!--<h2><a href="https://www.korea.net/NewsFocus/Business" target="_blank" class="newTab"><img src="img/2023/korea_net.png" alt="KOREA.net" class="base"><img src="img/2023/korea_net_blue.png" alt="KOREA.net" class="color"> NEWS<i></i></a></h2> -->
                        <h2><img src="img/2023/korea_net.png" alt="KOREA.net" class="base"> NEWS</h2>
                        <ul class="board_list2 koreanetRss">
                        </ul>
                    </div>  
                </div>
            </div>
        </div>
    </div>
</div>
<!-- mainContainer : 메인 본문 영역 : e -->
</form>
	</div>
	    
 

<!-- footer : 푸터 영역 : s -->
<div id="footer">
    <div class="footerContent">
        <div class="footCnt">
            <div class="siteInfo">
                <div class="cntHead"><img src="/img/foot_logo.png" alt="Ministry of Finance and Economy"></div>
                <ul>
                    <li>42 Doum 6-ro, Sejong 30112, Republic of Korea</li>
                    <li>+82-44-215-2114</li>
                    <li>ⓒ Ministry of Finance and Economy. All rights reserved.</li>
                </ul>
            </div>
            <div class="HomeInfo">
                <div class="cntHead">RELATED SITES</div>
                <ul>
                    <li><a href="https://www.fsc.go.kr/eng/index" title="Financial Serivces Commission (new window)" target="_blank">Financial Serivces Commission</a></li>
                    <li><a href="https://www.bok.or.kr/eng/main/main.do" title="Bank of Korea (new window)" target="_blank">Bank of Korea</a></li>
                    <li><a href="https://www.nts.go.kr/english/main.do" title="National Tax Service (new window)" target="_blank">National Tax Service</a></li>
                    <li><a href="https://www.koreaexim.go.kr/he/index" title="Export-Import Bank of Korea (new window)" target="_blank">Export-Import Bank of Korea</a></li>
                    <li><a href="https://www.customs.go.kr/english/main.do" title="Korea Customs Service (new window)" target="_blank">Korea Customs Service</a></li>
                    <li><a href="https://fis.kr/en" title="Korea Fiscal Information Service (new window)" target="_blank">Korea Fiscal Information Service</a></li>
                    <li><a href="https://www.pps.go.kr/eng/index.do" title="Public Procurement Service (new window)" target="_blank">Public Procurement Service</a></li>
                    <li><a href="https://www.kic.kr/en/" title="Korea Investment Corporation (new window)" target="_blank">Korea Investment Corporation</a></li>
                    <li><a href="https://www.kostat.go.kr/anse" title="Statistics Korea (new window)" target="_blank">Statistics Korea</a></li>
                    <li><a href="https://www.komsco.com/eng" title="Korea Minting and Security Printing Corporation (new window)" target="_blank">Korea Minting and Security Printing Corporation</a></li>
                </ul>
            </div>
            <div class="reachUs">
                <div class="cntHead">REACH US</div>
                <!-- <a href="/wk/selectNewsLetterReg.do" title="Sign up for newsletters">Sign up for newsletters</a> -->
                <span><a href="https://twitter.com/moefkorea_eng" target="_blank" title="Twitter (new window)" class="sns_link">Twitter</a></span>
                <ul>
                    <li><a href="/co/selectAboutMosf.do?boardCd=C0009">Contact us</a></li>
                    <li><a href="/co/selectAboutMosf.do?boardCd=C0015">Privacy Guidelines</a></li>
                </ul>
            </div>
        </div>
    </div>
</div>
<!-- footer : 푸터 영역 : e -->

<!-- rss-Popup : RSS 팝업 : s -->
<div class="rss-Popup">
	<div class="container">
		<div class="tit">
			<h3 class="title" >Ministry of Finance and Economy<Br>RSS Service</h3>
		</div>
		<ul class="cnt">
			<li onclick="openrss('http://english.moef.go.kr/ec/engmosfpolicyrss.do?boardCd=E0005');" title="Economic Policy RSS"><span>Economic Policy</span>http://english.moef.go.kr/ec/engmosfpolicyrss.do?boardCd=E0005</li>
			<li onclick="openrss('http://english.moef.go.kr/ec/engmosfpolicyrss.do?boardCd=E0002');" title="Budget & Fiscal Management RSS"><span>Budget & Fiscal Management</span>http://english.moef.go.kr/ec/engmosfpolicyrss.do?boardCd=E0002</li>
			<li onclick="openrss('http://english.moef.go.kr/ec/engmosfpolicyrss.do?boardCd=E0009');" title="Treasury RSS"><span>Treasury</span>http://english.moef.go.kr/ec/engmosfpolicyrss.do?boardCd=E0009</li>
			<li onclick="openrss('http://english.moef.go.kr/ec/engmosfpolicyrss.do?boardCd=E0001');" title="Government-wide Cooperation RSS"><span>Government-wide Cooperation</span>http://english.moef.go.kr/ec/engmosfpolicyrss.do?boardCd=E0001</li>
			<li onclick="openrss('http://english.moef.go.kr/ec/engmosfpolicyrss.do?boardCd=E0003');" title="Tax & Customs RSS"><span>Tax & Customs</span>http://english.moef.go.kr/ec/engmosfpolicyrss.do?boardCd=E0003</li>
			<li onclick="openrss('http://english.moef.go.kr/ec/engmosfpolicyrss.do?boardCd=E0004');" title="Public Institutions Policy RSS"><span>Public Institutions Policy</span>http://english.moef.go.kr/ec/engmosfpolicyrss.do?boardCd=E0004</li>
			<li onclick="openrss('http://english.moef.go.kr/ec/engmosfpolicyrss.do?boardCd=E0007');" title="International Economic Affairs RSS"><span>International Economic Affairs</span>http://english.moef.go.kr/ec/engmosfpolicyrss.do?boardCd=E0007</li>
			<li onclick="openrss('http://english.moef.go.kr/mi/engmosfpublicrss.do?boardCd=M0002');" title="Speeches RSS"><span>Speeches</span>http://english.moef.go.kr/mi/engmosfpublicrss.do?boardCd=M0002</li>
			<li onclick="openrss('http://english.moef.go.kr/mi/engmosfpublicrss.do?boardCd=M0001');" title="Photos RSS"><span>Photos</span>http://english.moef.go.kr/mi/engmosfpublicrss.do?boardCd=M0001</li>
			<li onclick="openrss('http://english.moef.go.kr/pc/engmosfrss.do?boardCd=N0002');" title="Media Schedule RSS"><span>Media Schedule</span>http://english.moef.go.kr/pc/engmosfrss.do?boardCd=N0002</li>
			<li onclick="openrss('http://english.moef.go.kr/pc/engmosfrss.do?boardCd=N0001');" title="Press Releases RSS"><span>Press Releases</span>http://english.moef.go.kr/pc/engmosfrss.do?boardCd=N0001</li>
		</ul>
		<a href="javascript:;" title="close" class="close"><span>close</span></a>
	</div>
</div>
<!-- rss-Popup : RSS 팝업 : e -->

<!-- success-popup : 구독 해지 팝업 : s -->
<div class="success-popup">
	<div class="container">
		<div class="tit">
			<h3 class="title">You’re now unsubscribed.</h3>
		</div>	
		<a href="/" class="scClose" title="close">close</a>
	</div>
</div>
<!-- success-popup : 구독 해지 팝업 : e -->
	
<input type="text" id="urlAddress" value = "복사될 url 경로" style="display:none"/>
<label for="urlAddress" style="display:none">copy URL</label>

<!-- 수집로그 : START
	mobile navigation -->
<!-- 	<script src="/js/mosf-ui.js"></script> -->
	<script src="/js/classie.js"></script>
	<!-- LOGGER(TM) TRACKING SCRIPT V.40 FOR logger.co.kr / 42205 : COMBINE TYPE / DO NOT ALTER THIS SCRIPT. -->
	<script>var _TRK_LID = "42205";var _L_TD = "ssl.logger.co.kr";var _TRK_CDMN = "";</script>
	<script>var _CDN_DOMAIN = location.protocol == "https:" ? "https://fs.bizspring.net" : "http://fs.bizspring.net"; 
	(function (b, s) { var f = b.getElementsByTagName(s)[0], j = b.createElement(s); j.async = true; j.src = '//fs.bizspring.net/fs4/bstrk.1.js'; f.parentNode.insertBefore(j, f); })(document, 'script');
	</script>
	<noscript><img alt="Logger Script" width="1" height="1" src="http://ssl.logger.co.kr/tracker.1.tsp?u=42205&amp;js=N"/></noscript>
<!-- 수집로그 : END -->
</body>
</html>
