 |
|
 |
|
|
¼½Ä¼³¸í |
|
|
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ºÎµ¿»ê ÀÓ´ë Àü¼¼ °è¾à¼ °¡À̵å</title>
<style>
#ai_editor {
max-width: 1200px ;
margin: 0 auto ;
font-family: 'Malgun Gothic', 'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, sans-serif ;
line-height: 1.6 ;
color: #333 ;
background: #fff ;
padding: 40px 20px ;
}
#ai_editor .header {
text-align: center ;
margin-bottom: 75px ;
background-color: #2c5aa0 ;
padding: 40px ;
border-radius: 20px ;
color: white ;
}
#ai_editor .header h1 {
font-size: 36px ;
margin: 0 0 16px 0 ;
font-weight: 700 ;
}
#ai_editor .header p {
font-size: 18px ;
margin: 0 ;
opacity: 0.9 ;
}
#ai_editor .section {
margin-bottom: 75px ;
}
#ai_editor .section-title {
font-size: 28px ;
font-weight: 700 ;
color: #2c5aa0 ;
text-align: center ;
margin-bottom: 40px ;
position: relative ;
}
#ai_editor .section-title::after {
content: '' ;
position: absolute ;
bottom: -10px ;
left: 50% ;
transform: translateX(-50%) ;
width: 60px ;
height: 4px ;
background: #2c5aa0 ;
border-radius: 2px ;
}
#ai_editor .grid-2x2 {
display: grid ;
grid-template-columns: 1fr 1fr ;
gap: 30px ;
margin-bottom: 40px ;
}
#ai_editor .card {
background: #fff ;
border-radius: 16px ;
padding: 30px ;
box-shadow: 0 8px 32px rgba(44, 90, 160, 0.1) ;
border: 2px solid #f5f7fa ;
transition: all 0.3s ease ;
}
#ai_editor .card:hover {
transform: translateY(-5px) ;
box-shadow: 0 16px 48px rgba(44, 90, 160, 0.15) ;
}
#ai_editor .card-icon {
font-size: 32px ;
margin-bottom: 16px ;
color: #2c5aa0 ;
font-weight: 600 ;
}
#ai_editor .card-title {
font-size: 20px ;
font-weight: 600 ;
color: #2c5aa0 ;
margin-bottom: 12px ;
}
#ai_editor .card-description {
font-size: 16px ;
color: #666 ;
line-height: 1.5 ;
}
#ai_editor .grid-2x3 {
display: grid ;
grid-template-columns: 1fr 1fr ;
gap: 25px ;
margin-bottom: 40px ;
}
#ai_editor .content-item {
background-color: #f8fafc ;
border-radius: 12px ;
padding: 24px ;
border-left: 5px solid #2c5aa0 ;
}
#ai_editor .content-item-title {
font-size: 18px ;
font-weight: 600 ;
color: #2c5aa0 ;
margin-bottom: 8px ;
}
#ai_editor .content-item-desc {
font-size: 16px ;
color: #555 ;
}
#ai_editor .grid-3x2 {
display: grid ;
grid-template-columns: 1fr 1fr 1fr ;
gap: 20px ;
margin-bottom: 40px ;
}
#ai_editor .step-card {
background: #fff ;
border-radius: 12px ;
padding: 24px ;
text-align: center ;
box-shadow: 0 4px 20px rgba(44, 90, 160, 0.08) ;
position: relative ;
border: 1px solid #e2e8f0 ;
}
#ai_editor .step-number {
display: inline-block ;
width: 36px ;
height: 36px ;
background: #2c5aa0 ;
color: white ;
border-radius: 50% ;
font-size: 18px ;
font-weight: 600 ;
line-height: 36px ;
margin-bottom: 16px ;
}
#ai_editor .step-title {
font-size: 18px ;
font-weight: 600 ;
color: #2c5aa0 ;
margin-bottom: 8px ;
}
#ai_editor .step-desc {
font-size: 16px ;
color: #666 ;
}
#ai_editor .grid-1x4 {
display: grid ;
grid-template-columns: 1fr ;
gap: 20px ;
margin-bottom: 40px ;
}
#ai_editor .highlight-card {
background-color: #fff5f5 ;
border: 2px solid #fecaca ;
border-radius: 12px ;
padding: 24px ;
display: flex ;
align-items: center ;
gap: 20px ;
}
#ai_editor .highlight-icon {
font-size: 28px ;
flex-shrink: 0 ;
}
#ai_editor .highlight-content {
flex: 1 ;
}
#ai_editor .highlight-title {
font-size: 18px ;
font-weight: 600 ;
color: #dc2626 ;
margin-bottom: 6px ;
}
#ai_editor .highlight-desc {
font-size: 16px ;
color: #555 ;
}
#ai_editor .stats-grid {
display: grid ;
grid-template-columns: repeat(4, 1fr) ;
gap: 20px ;
margin-bottom: 40px ;
}
#ai_editor .stat-card {
background: #2c5aa0 ;
color: white ;
text-align: center ;
padding: 24px ;
border-radius: 12px ;
}
#ai_editor .stat-number {
font-size: 32px ;
font-weight: 700 ;
margin-bottom: 8px ;
}
#ai_editor .stat-label {
font-size: 16px ;
opacity: 0.9 ;
}
#ai_editor .conclusion {
background-color: #f0f9ff ;
border-radius: 16px ;
padding: 40px ;
text-align: center ;
}
#ai_editor .conclusion h3 {
font-size: 24px ;
color: #2c5aa0 ;
margin-bottom: 16px ;
}
#ai_editor .conclusion p {
font-size: 18px ;
color: #555 ;
margin: 0 ;
}
@media (max-width: 992px) {
#ai_editor {
padding: 30px 15px ;
}
#ai_editor .header {
padding: 30px 20px ;
}
#ai_editor .header h1 {
font-size: 32px ;
}
#ai_editor .grid-2x2 {
grid-template-columns: 1fr ;
gap: 25px ;
}
#ai_editor .grid-2x3 {
grid-template-columns: 1fr ;
gap: 20px ;
}
#ai_editor .grid-3x2 {
grid-template-columns: 1fr 1fr ;
gap: 20px ;
}
#ai_editor .stats-grid {
grid-template-columns: repeat(2, 1fr) ;
gap: 15px ;
}
}
@media (max-width: 768px) {
#ai_editor {
padding: 25px 12px ;
}
#ai_editor .header {
margin-bottom: 60px ;
padding: 25px 15px ;
}
#ai_editor .header h1 {
font-size: 28px ;
}
#ai_editor .header p {
font-size: 16px ;
}
#ai_editor .section {
margin-bottom: 60px ;
}
#ai_editor .section-title {
font-size: 24px ;
margin-bottom: 30px ;
}
#ai_editor .card {
padding: 25px 20px ;
}
#ai_editor .card-icon {
font-size: 28px ;
}
#ai_editor .card-title {
font-size: 18px ;
}
#ai_editor .content-item {
padding: 20px ;
}
#ai_editor .content-item-title {
font-size: 17px ;
}
#ai_editor .grid-3x2 {
grid-template-columns: 1fr ;
gap: 15px ;
}
#ai_editor .step-card {
padding: 20px ;
}
#ai_editor .stats-grid {
grid-template-columns: 1fr ;
gap: 12px ;
}
#ai_editor .stat-card {
padding: 20px ;
}
#ai_editor .highlight-card {
padding: 20px ;
gap: 15px ;
}
#ai_editor .highlight-icon {
font-size: 24px ;
}
#ai_editor .highlight-title {
font-size: 17px ;
}
#ai_editor .conclusion {
padding: 30px 20px ;
}
#ai_editor .conclusion h3 {
font-size: 22px ;
}
#ai_editor .conclusion p {
font-size: 16px ;
}
}
@media (max-width: 480px) {
#ai_editor {
padding: 20px 10px ;
}
#ai_editor .header {
padding: 20px 12px ;
}
#ai_editor .header h1 {
font-size: 24px ;
}
#ai_editor .section-title {
font-size: 22px ;
}
#ai_editor .card {
padding: 20px 15px ;
}
#ai_editor .card-icon {
font-size: 24px ;
}
#ai_editor .card-title {
font-size: 17px ;
}
#ai_editor .content-item {
padding: 18px 15px ;
}
#ai_editor .step-card {
padding: 18px 15px ;
}
#ai_editor .step-number {
width: 32px ;
height: 32px ;
line-height: 32px ;
font-size: 16px ;
}
#ai_editor .step-title {
font-size: 17px ;
}
#ai_editor .stat-card {
padding: 18px 15px ;
}
#ai_editor .stat-number {
font-size: 28px ;
}
#ai_editor .highlight-card {
padding: 18px 15px ;
gap: 12px ;
}
#ai_editor .conclusion {
padding: 25px 15px ;
}
#ai_editor .conclusion h3 {
font-size: 20px ;
}
}
</style>
<div id="ai_editor">
<div class="header">
<h1>🏢 ºÎµ¿»ê ÀÓ´ë Àü¼¼ °è¾à¼</h1>
<p>Àü¹®ÀûÀÌ°í ¾ÈÀüÇÑ ÀÓ´ëÂ÷ °è¾àÀ» À§ÇÑ °¡À̵å</p>
</div>
<div class="section">
<h2 class="section-title">📋 °è¾à¼ ÇÙ½É ±¸¼º ¿ä¼Ò</h2>
<div class="grid-2x2">
<div class="card">
<div class="card-icon">🏠 ºÎµ¿»êÀÇ Ç¥½Ã</div>
<div class="card-description">ÀÓ´ë ¹°°ÇÀÇ Á¤È®ÇÑ À§Ä¡, ¸éÀû, ±¸Á¶ µî ¹°¸®Àû Á¤º¸¸¦ »ó¼¼È÷ ±âÀçÇÏ¿© °è¾à ´ë»óÀ» ¸íÈ®È÷ ÇÕ´Ï´Ù.</div>
</div>
<div class="card">
<div class="card-icon">💰 Àü¼¼º¸Áõ±Ý</div>
<div class="card-description">ÀÓÂ÷ÀÎÀÌ ÀÓ´ëÀο¡°Ô Áö±ÞÇÏ´Â º¸Áõ±Ý ÃѾװú Áö±Þ ¹æ½ÄÀ» ¸í½ÃÇÕ´Ï´Ù.</div>
</div>
<div class="card">
<div class="card-icon">📅 °è¾à ±â°£</div>
<div class="card-description">ÀÓ´ëÂ÷ ½ÃÀÛÀϰú Á¾·áÀÏÀ» ¸íÈ®È÷ Á¤ÇÏ¿© °è¾à ±â°£À» ¼³Á¤ÇÕ´Ï´Ù.</div>
</div>
<div class="card">
<div class="card-icon">📝 Ư¾à »çÇ×</div>
<div class="card-description">´ç»çÀÚ °£ Ãß°¡ ÇÕÀÇ »çÇ×À̳ª Ưº°ÇÑ Á¶°ÇµéÀ» ±âÀçÇÕ´Ï´Ù.</div>
</div>
</div>
</div>
<div class="section">
<h2 class="section-title">💼 »ó¼¼ °è¾à ³»¿ë</h2>
<div class="grid-2x3">
<div class="content-item">
<div class="content-item-title">💵 °è¾à±Ý</div>
<div class="content-item-desc">°è¾à ü°á ½Ã Áï½Ã Áö±ÞÇÏ´Â ±Ý¾×À¸·Î ÀϹÝÀûÀ¸·Î Àüü º¸Áõ±ÝÀÇ 10% ³»¿Ü</div>
</div>
<div class="content-item">
<div class="content-item-title">💳 Áßµµ±Ý</div>
<div class="content-item-desc">°è¾à±Ý°ú ÀÜ±Ý »çÀÌ¿¡ Áö±ÞÇÏ´Â ±Ý¾×À¸·Î ÇÊ¿ä½Ã ÇùÀÇÇÏ¿© °áÁ¤</div>
</div>
<div class="content-item">
<div class="content-item-title">💎 ÀܱÝ</div>
<div class="content-item-desc">ÀÔÁÖÀÏ¿¡ Áö±ÞÇÏ´Â ³ª¸ÓÁö º¸Áõ±ÝÀ¸·Î Àüü ±Ý¾×ÀÇ ´ëºÎºÐÀ» Â÷Áö</div>
</div>
<div class="content-item">
<div class="content-item-title">🤝 ÇùÀÇ ³»¿ë</div>
<div class="content-item-desc">°ü¸®ºñ, ¼ö¼± Àǹ«, ÀÓ´ë·á Àλó µî¿¡ ´ëÇÑ ´ç»çÀÚ °£ ÇùÀÇ »çÇ×</div>
</div>
<div class="content-item">
<div class="content-item-title">⚠️ ƯÀÌ»çÇ×</div>
<div class="content-item-desc">Ææ¼Ç, ¹Ý·Áµ¿¹°, ±Ý¿¬ µî Ưº°ÇÑ »ç¿ë Á¶°ÇÀ̳ª Á¦ÇÑ »çÇ×</div>
</div>
<div class="content-item">
<div class="content-item-title">🔒 º¸Áõ Á¶°Ç</div>
<div class="content-item-desc">º¸Áõ±Ý ¹Ýȯ Á¶°Ç, ¿¬´ëº¸ÁõÀÎ ¼³Á¤ µî º¸Áõ °ü·Ã ¼¼ºÎ »çÇ×</div>
</div>
</div>
</div>
<div class="section">
<h2 class="section-title">⚡ °è¾à ÁøÇà 6´Ü°è</h2>
<div class="grid-3x2">
<div class="step-card">
<div class="step-number">1</div>
<div class="step-title">¹°°Ç È®ÀÎ</div>
<div class="step-desc">ºÎµ¿»ê ÇöÀå È®ÀÎ ¹× µî±âºÎ µîº» ¿¶÷</div>
</div>
<div class="step-card">
<div class="step-number">2</div>
<div class="step-title">°è¾à Á¶°Ç ÇùÀÇ</div>
<div class="step-desc">º¸Áõ±Ý, ±â°£, Ư¾à »çÇ× µî ¼¼ºÎ Á¶°Ç ÇùÀÇ</div>
</div>
<div class="step-card">
<div class="step-number">3</div>
<div class="step-title">°è¾à¼ ÀÛ¼º</div>
<div class="step-desc">Ç¥ÁØ ¾ç½Ä Ȱ¿ëÇÏ¿© Á¤È®ÇÑ °è¾à¼ ÀÛ¼º</div>
</div>
<div class="step-card">
<div class="step-number">4</div>
<div class="step-title">°è¾à±Ý Áö±Þ</div>
<div class="step-desc">°è¾à ü°á°ú µ¿½Ã¿¡ °è¾à±Ý Áö±Þ</div>
</div>
<div class="step-card">
<div class="step-number">5</div>
<div class="step-title">ÀüÀԽŰí</div>
<div class="step-desc">Áֹμ¾ÅÍ¿¡¼ ÀüÀÔ½Å°í ¹× È®Á¤ÀÏÀÚ Ãëµæ</div>
</div>
<div class="step-card">
<div class="step-number">6</div>
<div class="step-title">ÀÜ±Ý Áö±Þ</div>
<div class="step-desc">ÀÔÁÖÀÏ¿¡ ÀÜ±Ý Áö±Þ ÈÄ ¿¼è Àμö</div>
</div>
</div>
</div>
<div class="section">
<h2 class="section-title">📊 ÁÖ¿ä Åë°è</h2>
<div class="stats-grid">
<div class="stat-card">
<div class="stat-number">8</div>
<div class="stat-label">°³ Á¶Ç× ±¸¼º</div>
</div>
<div class="stat-card">
<div class="stat-number">2</div>
<div class="stat-label">ÆäÀÌÁö ºÐ·®</div>
</div>
<div class="stat-card">
<div class="stat-number">3</div>
<div class="stat-label">°¡Áö Ä÷¯ ¿É¼Ç</div>
</div>
<div class="stat-card">
<div class="stat-number">100%</div>
<div class="stat-label">¹ýÀû È¿·Â</div>
</div>
</div>
</div>
<div class="section">
<h2 class="section-title">⚠️ °è¾à ½Ã ÁÖ¿ä ÁÖÀÇ»çÇ×</h2>
<div class="grid-1x4">
<div class="highlight-card">
<div class="highlight-icon">🔍</div>
<div class="highlight-content">
<div class="highlight-title">µî±âºÎµîº» È®ÀÎ Çʼö</div>
<div class="highlight-desc">¼ÒÀ¯±Ç, ±ÙÀú´ç±Ç, Àü¼¼±Ç µî ±Ç¸®°ü°è¸¦ ¹Ýµå½Ã È®ÀÎÇÏ¿© ¾ÈÀüÇÑ °è¾àÀ» º¸ÀåÇϼ¼¿ä.</div>
</div>
</div>
<div class="highlight-card">
<div class="highlight-icon">📝</div>
<div class="highlight-content">
<div class="highlight-title">È®Á¤ÀÏÀÚ Ãëµæ</div>
<div class="highlight-desc">ÀüÀԽŰí ÈÄ ÀÓ´ëÂ÷°è¾à¼¿¡ È®Á¤ÀÏÀÚ¸¦ ¹Þ¾Æ ¿ì¼±º¯Á¦±ÇÀ» È®º¸Çϼ¼¿ä.</div>
</div>
</div>
<div class="highlight-card">
<div class="highlight-icon">💰</div>
<div class="highlight-content">
<div class="highlight-title">º¸Áõ±Ý Çѵµ È®ÀÎ</div>
<div class="highlight-desc">ÁÖÅÃÀÓ´ëÂ÷º¸È£¹ý¿¡ µû¸¥ ¼Ò¾×ÀÓÂ÷ÀÎ º¸È£ Çѵµ¸¦ È®ÀÎÇÏ¿© ±Ç¸®¸¦ º¸È£¹ÞÀ¸¼¼¿ä.</div>
</div>
</div>
<div class="highlight-card">
<div class="highlight-icon">📋</div>
<div class="highlight-content">
<div class="highlight-title">Ư¾à»çÇ× ¸í½Ã</div>
<div class="highlight-desc">¼ö¸® Àǹ«, °ü¸®ºñ ºÎ´ã ÁÖü µî Áß¿äÇÑ »çÇ×Àº ¹Ýµå½Ã °è¾à¼¿¡ ¸í½ÃÇϼ¼¿ä.</div>
</div>
</div>
</div>
</div>
<div class="conclusion">
<h3>✅ ¾ÈÀüÇϰí Åõ¸íÇÑ ÀÓ´ëÂ÷ °è¾àÀ» À§ÇÏ¿©</h3>
<p>Ç¥ÁØÈµÈ °è¾à¼ ¾ç½ÄÀ» »ç¿ëÇÏ¿© ºÐÀïÀ» ¿¹¹æÇϰí, ¹ýÀû º¸È£¸¦ ¹ÞÀ» ¼ö ÀÖ´Â ¿Ïº®ÇÑ ÀÓ´ëÂ÷ °è¾àÀ» ü°áÇϼ¼¿ä. Àü¹®°¡ÀÇ µµ¿òÀ» ¹Þ¾Æ ´õ¿í ¾ÈÀüÇÑ °Å·¡¸¦ ÁøÇàÇÒ °ÍÀ» ±ÇÀåÇÕ´Ï´Ù.</p>
</div>
</div>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p><font color="#464646" face="µ¸¿ò, dotum"><span style="font-size: 13.3333px;"><b><br></b></span></font></p><p style="text-align: left;" align="left"><font color="#464646" face="µ¸¿ò, dotum"><span style="font-size: 13.3333px;"><b><br></b></span></font></p><p style="text-align: left;" align="left"><font color="#464646" face="µ¸¿ò, dotum"><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;"><b>[ºÎµ¿»ê ÀÓ´ë Àü¼¼ °è¾à¼]</b></span></font><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;"> </span></p><p style="text-align: left; line-height: 2;" align="left"><span style="color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt; background-color: rgb(255, 255, 255);"> </span><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;">ºÎµ¿»ê ÀÓ´ë °è¾à¼¾ç½ÄÀÔ´Ï´Ù.
8Á¶Ç×À¸·Î ±¸¼ºµÇ¾î ÀÖÀ¸¸ç ºÎµ¿»êÀÇ Ç¥½Ã¿Í °è¾à±Ý, Áßµµ±Ý, ÀܱݵîÀ» ±âÀçÇϵµ·Ï µÇ¾î ÀÖ½À´Ï´Ù.</span></p><p style="text-align: left; line-height: 2;" align="left"><span style="color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt;"> </span></p><p style="line-height: 2;"> </p><div style="text-align: left;" align="left"><span style="color: rgb(70, 70, 70); text-indent: -18.24px; font-family: µ¸¿ò, dotum; font-size: 10pt; background-color: rgb(255, 255, 255);">• </span><span style="color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt;">°è¾à¼ »ùÇà > ºÎµ¿»ê > ÀÓ´ëÂ÷</span></div><div style="text-align: left;" align="left"><span style="background-color: rgb(255, 255, 255); color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt; text-indent: -18.24px;">• </span><span style="background-color: rgb(255, 255, 255); color: rgb(70, 70, 70); font-family: µ¸¿ò, dotum; font-size: 10pt; text-indent: -18.24px;">°¢ 2 Page</span></div><div style="text-align: left;" align="left"><span style="text-indent: -18.24px; font-family: µ¸¿ò, dotum; font-size: 10pt; background-color: rgb(255, 255, 255);">• </span><span style="font-family: µ¸¿ò, dotum; font-size: 10pt;"><font color="#464646"><span style="font-size: 10pt; color: rgb(0, 0, 0);">Ä÷¯ </span></font><span style="font-size: 10pt; color: rgb(255, 170, 0);">¡á</span> <span style="font-size: 10pt; color: rgb(0, 117, 200);">¡á</span><font color="#464646"><span style="font-size: 10pt; color: rgb(0, 0, 0);"> </span></font></span><span style="font-family: µ¸¿ò, dotum; font-size: 10pt; background-color: rgb(255, 255, 255);">¡à</span></div><p style="text-align: left; line-height: 2;" align="left"><span style="font-family: µ¸¿ò, dotum; font-size: 10pt;"> Ä÷¯µðÀÚÀÎÀÌ ¾ø´Â ¹«Áö¸¦ ¹ÙÅÁÀ¸·Î ÃÑ 3°¡Áö°¡ Æ÷ÇÔµÈ ¹®¼·Î ¿øÇÏ´Â Ä÷¯µðÀÚÀÎÀ» ¼±ÅÃÇÏ¿© ¹®¼¸¦ ÀÛ¼ºÇÒ ¼ö ÀÖ½À´Ï´Ù.</span></p><p style="text-align: left; line-height: 2;" align="left"><b style="font-family: µ¸¿ò, dotum; font-size: 10pt;"><br></b></p><p style="text-align: left; line-height: 2;" align="left"><b style="font-family: µ¸¿ò, dotum; font-size: 10pt;"><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;">[³» ¿ë]</span></b></p><p style="text-align: left; line-height: 2;" align="left"><font face="µ¸¿ò, dotum"><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;"> </span></font><span style="background-color: rgb(255, 255, 255); font-family: µ¸¿ò, dotum; font-size: 10pt; text-indent: -18.24px;">• </span><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;">ºÎµ¿»êÀÇÇ¥½Ã</span></p><p style="text-align: left; line-height: 2;" align="left"><font face="µ¸¿ò, dotum"><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;"> </span></font><span style="background-color: rgb(255, 255, 255); font-family: µ¸¿ò, dotum; font-size: 10pt; text-indent: -18.24px;">• </span><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;">Àü¼¼º¸Áõ±Ý</span></p><p style="text-align: left; line-height: 2;" align="left"><font face="µ¸¿ò, dotum"><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;"> </span></font><span style="background-color: rgb(255, 255, 255); font-family: µ¸¿ò, dotum; font-size: 10pt; text-indent: -18.24px;">• </span><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;">°è¾à±Ý</span></p><p style="text-align: left; line-height: 2;" align="left"><font face="µ¸¿ò, dotum"><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;"> </span></font><span style="background-color: rgb(255, 255, 255); font-family: µ¸¿ò, dotum; font-size: 10pt; text-indent: -18.24px;">• </span><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;">Áßµµ±Ý</span></p><p style="text-align: left; line-height: 2;" align="left"><font face="µ¸¿ò, dotum"><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;"> </span></font><span style="background-color: rgb(255, 255, 255); font-family: µ¸¿ò, dotum; font-size: 10pt; text-indent: -18.24px;">• </span><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;">ÀÜ ±Ý</span></p><p style="text-align: left; line-height: 2;" align="left"><font face="µ¸¿ò, dotum"><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;"> </span></font><span style="background-color: rgb(255, 255, 255); font-family: µ¸¿ò, dotum; font-size: 10pt; text-indent: -18.24px;">• </span><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;">±â °£</span></p><p style="text-align: left; line-height: 2;" align="left"><span style="background-color: rgb(255, 255, 255); font-family: µ¸¿ò, dotum; font-size: 10pt; text-indent: -18.24px;"> • </span><font face="µ¸¿ò, dotum"><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;">ÇùÀdz»¿ë</span></font></p><p style="text-align: left; line-height: 2;" align="left"><font face="µ¸¿ò, dotum"><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;"> </span></font><span style="background-color: rgb(255, 255, 255); font-family: µ¸¿ò, dotum; font-size: 10pt; text-indent: -18.24px;">• </span><span style="font-size: 10pt; font-family: µ¸¿ò, dotum;">ƯÀÌ»çÇ×</span></p><div style="text-align: left;" align="left"><br></div><p style="text-align: left; line-height: 2;" align="left"><font face="µ¸¿ò, dotum"><span style="font-size: 13.3333px;"><br></span></font></p><p style="text-align: left; line-height: 2;" align="left"><span style="font-family: µ¸¿ò, dotum; font-size: 10pt;">¡Ø ÇÑ±ÛÆÄÀÏ(.hwp)ÀÇ °æ¿ì ¾ËÁý¿¡ Æ÷ÇԵǾî ÀÖ½À´Ï´Ù.</span></p><div style="text-align: left;"><br></div> |
|
|
 |
|
 |
|