/* ==========================================================
   Coratex Korea - Senior-friendly refinements (50~60대 가독성)
   - Keeps existing layout, improves readability & accessibility
   ========================================================== */

:root{
  --text: #111;
  --muted: #444;
  --border: rgba(0,0,0,.12);
  --surface: #fff;
  --surface-2: #fafafa;
  --radius: 14px;
}

html{
  scroll-behavior: smooth;
}

body{
  color: var(--text);
  font-family: "Noto Sans KR", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: -0.1px;
}

@media (max-width: 576px){
  body{ font-size: 17px; }
}

p, li{ max-width: 70ch; }

h1, h2, h3, h4{
  letter-spacing: -0.3px;
  line-height: 1.25;
  color: #0b0b0b;
}

h1{ font-size: clamp(28px, 4vw, 44px); }
h2{ font-size: clamp(22px, 3vw, 32px); }
h3{ font-size: clamp(20px, 2.2vw, 26px); }

a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

a:hover{
  text-decoration-thickness: 2px;
}

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 3px solid rgba(0, 123, 255, .35);
  outline-offset: 3px;
  border-radius: 10px;
}

.navbar-nav .nav-link{
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 14px !important;
}

.navbar .navbar-brand{
  font-weight: 800;
  font-size: 20px !important;
}

@media (max-width: 992px){
  .navbar-nav .nav-link{ padding: 12px 8px !important; }
}

.btn, .btn:active{
  border-radius: 999px !important;
  padding: 12px 18px !important;
  font-size: 18px !important;
  font-weight: 800 !important;
}

.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.card.senior-card{
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  overflow: hidden;
}

.senior-card .card-body{
  padding: 18px 18px;
}

.senior-card img, .senior-card svg{
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--surface-2);
}

@media (max-width: 576px){
  .senior-card img, .senior-card svg{ height: 150px; }
}

.badge-soft{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-weight: 700;
  color: var(--muted);
}

.section-soft{
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.table{
  font-size: 17px;
}

.table th, .table td{
  padding: 12px 12px !important;
  vertical-align: middle !important;
}

.table thead th{
  background: var(--surface-2);
  border-bottom: 2px solid var(--border) !important;
}

.table-responsive{
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

blockquote{
  font-size: 1.02em;
  border-left: 4px solid var(--border);
  padding-left: 14px;
  color: var(--muted);
}

.footer_section p{
  font-size: 16.5px;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 9999;
  background: #fff;
  border: 2px solid #000;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus{ left: 10px; }

.quick-cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.quick-cta a{
  text-decoration: none;
}

.quick-cta .btn-outline-dark{
  border-width: 2px;
}

.small-note{
  color: var(--muted);
  font-size: 16px;
}

/* ==========================================================
   Visual clarity improvements (프로페셔널 + 가독성)
   - Home(hero/section separation)
   - Footer distributor line
   ========================================================== */

.en{ font-family: "Open Sans", "Noto Sans KR", sans-serif; }

/* Hero background overlay for readability */
.hero_area{
  position: relative;
  background-image: url(../images/coratex_splash.jpeg);
  background-position: center;
}
.hero_area::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.35) 45%, rgba(0,0,0,.62));
}
.hero_area > *{ position: relative; z-index: 1; }

/* Make header feel more premium without losing contrast */
.header_section{
  background: rgba(25,25,25,.92);
  backdrop-filter: blur(6px);
}

/* New hero layout */
.slider_section{ color: #fff; }
.slider_section .hero-panel{
  background: rgba(0,0,0,.42);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 26px 26px;
  box-shadow: 0 18px 60px rgba(0,0,0,.28);
}
.hero-grid{
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero-copy{ max-width: 640px; }
.hero-eyebrow{
  margin: 0 0 8px 0;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .95;
}
.hero-copy h1{
  color: #fff;
  margin: 0 0 8px 0;
  text-transform: none;
}
.hero-tag{
  margin: 0 0 12px 0;
  font-weight: 800;
  font-size: 1.15em;
}
.hero-lead{ margin: 0 0 16px 0; }
.hero-cta{ display:flex; gap: 10px; flex-wrap: wrap; }
.hero-cta .btn{ border-width: 2px !important; }
.hero-note{
  margin: 16px 0 0 0;
  font-size: 16.5px;
  opacity: .95;
}
.hero-media img{
  width: 360px;
  max-width: 100%;
  height: auto;
  background: rgba(255,255,255,.92);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

@media (max-width: 576px){
  .slider_section .hero-panel{ padding: 18px; }
  .hero-media img{ width: 100%; }
}

/* Product image right after hero (matches original structure, but cleaner) */
.product_showcase{ padding: 18px 0 0 0; }
.product_frame{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  max-width: 980px;
  margin: 0 auto;
}
.product_frame img{ width: 100%; height: auto; display: block; border-radius: 12px; }

/* Section separation */
.section-alt{ background: #f6f7fb; }
.heading_container h2{
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 6px;
}
.heading_container h2::after{
  content: "";
  display: block;
  width: 84px;
  height: 4px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  margin: 10px auto 0;
}

/* Home: buy cards */
.info-card{ box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.info-card .card-body{ padding: 18px; }

/* Footer distributor note */
.distributor-note{
  margin: 10px 0 0 0;
  font-weight: 900;
  font-size: 16.5px;
  letter-spacing: -0.2px;
  color: #fff;
  opacity: .98;
}

/* Improve the footer link visibility */
.info_section a{ color: #fff; text-decoration: underline; }


/* When distributor note is placed on light cards */
.content-card .distributor-note{ color: #111; opacity: 1; }

/* Home hero alignment (centered for clarity) */
.home_page .hero-grid{ justify-content: center; }
.home_page .hero-copy{ margin: 0 auto; text-align: center; }
.home_page .hero-cta{ justify-content: center; }

/* Quick call button (mobile-friendly) */
.floating-call{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  background: #111;
  color: #fff !important;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.2px;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.floating-call:hover{ transform: translateY(-1px); }
.floating-call:focus{ outline: 3px solid rgba(255,255,255,.9); outline-offset: 3px; }

/* Injection/Extrusion/Blow pages: improve heading readability */
.content-card h1{ font-size: 32px; }
.content-card h2{ font-size: 20px; }
.content-card .sub{ font-size: 18px; }
.content-card .note{ font-size: 16.5px; }


/* ==========================================================
   Always-horizontal top navigation (senior-friendly)
   ========================================================== */
.header_section{ position: sticky; top: 0; z-index: 999; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.header_section .navbar{ padding-top: 10px; padding-bottom: 10px; }
.navbar-nav-wrap{ gap: 10px; }
.navbar-nav.flex-row{ flex-direction: row !important; }
.navbar-nav{ margin: 0; padding: 0; }
.navbar-nav .nav-item{ margin-left: 10px; }
.navbar-nav .nav-link{ padding: 10px 12px; border-radius: 10px; font-weight: 700; }
.navbar-nav .nav-item.active .nav-link{ background: var(--surface-2); border: 1px solid var(--border); }
.nav-call{ white-space: nowrap; }
@media (max-width: 576px){
  .navbar-brand span{ font-size: 16px; }
  .navbar-nav .nav-item{ margin-left: 6px; }
  .navbar-nav .nav-link{ padding: 9px 10px; font-size: 16px; }
  .nav-call{ padding: 9px 10px; }
}


/* ==========================================================
   Home hero panel: centered and slightly higher
   ========================================================== */
.slider_section .container{
  display: flex;
  justify-content: center;
}
.slider_section .hero-panel{
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  transform: translateY(-28px);
}
@media (max-width: 576px){
  .slider_section .hero-panel{ transform: translateY(-16px); }
}


/* Mini links in the counters (Companies view) */
/* Target section (counters): clean grid, readable, and aligned */
.target_section{
  position: relative;
}
.target_section::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.58);
}
.target_section .container{
  position: relative;
  z-index: 1;
}

/* 5 cards: desktop in one row, gracefully wraps on smaller screens */
.target_section .counter-grid{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

@media (max-width: 1200px){
  .target_section .counter-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px){
  .target_section .counter-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px){
  .target_section .counter-grid{
    grid-template-columns: 1fr;
  }
}

.target_section .counter-card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  color: #fff;
  width: 100%;
  min-height: 170px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.target_section .counter-num{
  font-weight: 900;
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.15;
  margin: 0 0 8px 0;
  letter-spacing: -0.2px;
}

.target_section .counter-sub{
  font-weight: 750;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.25;
  opacity: .95;

  /* Allow wrapping (no truncation) but keep card heights aligned */
  min-height: 2.6em; /* ~2 lines */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;

  word-break: keep-all;
  overflow-wrap: anywhere;
}

.target_section .counter-cta{
  margin-top: 10px;
  font-weight: 900;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.25;

  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  padding: 8px 10px;

  /* Wrap nicely if needed, while keeping heights aligned */
  min-height: 2.6em; /* ~2 lines */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  word-break: keep-all;
  overflow-wrap: anywhere;
}

.target_section .counter-card--link{
  text-decoration: none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.target_section .counter-card--link:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.30);
}
.target_section .counter-card--link:focus{
  outline: 3px solid rgba(255,255,255,.35);
  outline-offset: 2px;
}
/* ==========================================================
   Header: black background + white text (always horizontal)
   ========================================================== */
.header_section{
  background: #111 !important;
  border-bottom: 1px solid rgba(255,255,255,.14) !important;
  backdrop-filter: none !important;
}
.header_section .navbar{
  /* Keep the logo/menu away from the screen edges */
  padding-left: 22px;
  padding-right: 22px;
}
@media (min-width: 992px){
  .header_section .navbar{ padding-left: 28px; padding-right: 28px; }
}
.header_section .navbar-brand span{ color: #fff !important; }
.header_section .navbar-nav .nav-link{
  color: rgba(255,255,255,.92) !important;
}
.header_section .navbar-nav .nav-link:hover,
.header_section .navbar-nav .nav-item.active .nav-link{
  color: #fff !important;
  background: rgba(255,255,255,.14);
}
.header_section .navbar-nav .nav-link:focus{
  outline: 3px solid rgba(255,255,255,.35);
  outline-offset: 2px;
}

/* Remove any leftover call button styling in nav (button removed in HTML) */
.nav-call{ display: none !important; }

/* Keep nav horizontal but allow wrapping (never stacked in a column list) */
.navbar-nav.flex-row{ flex-direction: row !important; }
.navbar-nav{ flex-wrap: wrap; }

/* Global breathing room (avoid edge-hugging) */
.container, .container-fluid{
  padding-left: 22px;
  padding-right: 22px;
}
@media (min-width: 992px){
  .container{ padding-left: 28px; padding-right: 28px; }
}

/* Home hero panel: slightly higher (centered on background image) */
.slider_section .hero-panel{
  transform: translateY(-40px);
}
@media (max-width: 576px){
  .slider_section .hero-panel{ transform: translateY(-22px); }
}

/* About / Product effectiveness: softer page background so it doesn't feel empty */
.soft_bg{
  background: #f6f7f9;
}
.soft_bg .hero_area{
  background: transparent;
}
.soft_bg section:not(.info_section):not(.footer_section){
  background: #fff;
  border-radius: 18px;
  margin: 22px auto;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

/* Keep global footer/info sections looking like the main site (dark, full-width) */
.soft_bg .info_section,
.soft_bg .footer_section{
  border-radius: 0;
  margin: 0;
  box-shadow: none;
}

.soft_bg .layout_padding,
.soft_bg .layout_padding2{
  padding-top: 42px;
  padding-bottom: 42px;
}

/* Target counters: one clean link label (no duplicates) */
/* (links are now rendered as .counter-link) */

/* Force navbar items to stay in a horizontal row (avoid vertical stacking) */
.header_section .navbar-nav{
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
}

/* Header inner padding so the brand/menu don't hug the edges */
.header_section .navbar{
  padding-left: 22px;
  padding-right: 22px;
}
@media (min-width: 992px){
  .header_section .navbar{ padding-left: 28px; padding-right: 28px; }
}



/* =========================
   Pro layout: About & Effectiveness (v8)
   ========================= */
.pro_about .page_hero,
.pro_effect .page_hero{
  margin-bottom: 22px;
  padding: 18px 18px 8px 18px;
}

.page_hero .kicker{
  display: inline-block;
  font-weight: 700;
  letter-spacing: .08em;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.75);
  margin-bottom: 10px;
}

.page_hero .page_title{
  font-size: 34px;
  line-height: 1.2;
  margin: 6px 0 10px 0;
  font-weight: 800;
}

.page_hero .page_subtitle{
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 10px 0;
  color: #111;
}

.page_hero .en{
  display: inline-block;
  margin-left: 6px;
  color: rgba(0,0,0,.75);
  font-weight: 500;
  font-size: 16px;
}

.pro_card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(0,0,0,.05);
}

.pro_block .section_title{
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 14px 0;
}

.pro_media{
  padding: 14px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pro_media img{
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
}

.pro_grid{
  display: grid;
  gap: 12px;
}

.pro_grid_2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pro_grid_4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature_card,
.metric_card{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 14px;
  background: rgba(246,247,249,.55);
}

.feature_ko,
.metric_ko{
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #111;
}

.feature_en,
.metric_en{
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(0,0,0,.72);
  font-weight: 500;
}

.effect_card{
  padding: 18px;
}

.effect_tag{
  display: inline-block;
  font-weight: 800;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.10);
  margin-bottom: 12px;
}

.effect_ko{
  font-size: 18px;
  line-height: 1.55;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.effect_en{
  font-size: 15px;
  line-height: 1.55;
  color: rgba(0,0,0,.74);
  font-weight: 500;
}

.pro_image{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
}

/* Responsive */
@media (max-width: 992px){
  .page_hero .page_title{ font-size: 30px; }
  .pro_grid_2{ grid-template-columns: 1fr; }
  .pro_grid_4{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 576px){
  .page_hero .page_title{ font-size: 26px; }
  .page_hero .page_subtitle{ font-size: 17px; }
  .pro_grid_4{ grid-template-columns: 1fr; }
}


/* ==========================================================
   v9 Corporate polish (타 기업의 '정돈된' 느낌만 참고해 개선)
   - 과한 효과 없이, 여백/위계/일관성/가독성 중심
   ========================================================== */

:root{
  --text: #0b0d12;
  --muted: #2b2f38;
  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --surface-3: #eef2f8;
  --border: rgba(15,17,21,.12);

  --brand: #0f1115;
  --brand-2: #141826;
  --accent: #0b5ed7;
  --accent-2: #0a58ca;

  --radius: 16px;
  --radius-sm: 12px;

  --shadow-sm: 0 6px 18px rgba(15,17,21,.08);
  --shadow-md: 0 16px 38px rgba(15,17,21,.12);
  --shadow-lg: 0 26px 70px rgba(15,17,21,.16);
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

body{
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img{
  max-width: 100%;
  height: auto;
}

/* Sub pages: subtle premium background (no 'empty white' feel) */
.soft_bg{
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(11,94,215,.06), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(15,17,21,.06), transparent 60%),
    var(--surface-2);
}

/* Keep the dark info/footer as-is; refine content cards only */
.soft_bg section:not(.info_section):not(.footer_section){
  border: 1px solid rgba(15,17,21,.10);
  background: linear-gradient(180deg, #fff, rgba(245,247,251,.92));
}

/* Header: cleaner corporate look */
.header_section{
  background: var(--brand) !important;
}
.header_section .navbar-brand span{
  font-weight: 900;
  letter-spacing: -0.2px;
}
.header_section .navbar-nav .nav-link{
  text-decoration: none !important;
  font-weight: 800;
  border: 1px solid transparent;
}
.header_section .navbar-nav .nav-link:hover,
.header_section .navbar-nav .nav-item.active .nav-link{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.14);
}

/* Links: keep underline in body copy, but avoid underline on UI elements */
a.btn, .hero-cta a, .counter-card--link, .navbar-nav .nav-link{
  text-decoration: none !important;
}

/* Buttons: slightly more premium without being flashy */
.btn{
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, border-color .12s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,.20);
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0,0,0,.24);
}
.btn:active{
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(0,0,0,.20);
}
.btn.btn-primary{
  background: var(--accent) !important;
  border-color: var(--accent) !important;
}
.btn.btn-primary:hover{
  background: var(--accent-2) !important;
  border-color: var(--accent-2) !important;
}

/* Cards: consistent radius + subtle depth */
.card, .pro_card{
  border-radius: var(--radius) !important;
}
.pro_card{
  box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.pro_card:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* About/Effectiveness page hero: looks like a real page header block */
.page_hero{
  border-radius: var(--radius);
  border: 1px solid rgba(15,17,21,.08);
  background: linear-gradient(180deg, #fff, rgba(245,247,251,.92));
  box-shadow: var(--shadow-sm);
}
.page_hero .kicker{
  background: rgba(11,94,215,.08);
  border-color: rgba(11,94,215,.18);
  color: #0a3d90;
  font-weight: 900;
}
.page_hero .page_title{
  letter-spacing: -0.4px;
}
.page_hero .page_subtitle{
  color: rgba(11,13,18,.92);
}

/* Feature/metric/effect cards: unify palette and spacing */
.feature_card,
.metric_card{
  background: linear-gradient(180deg, rgba(255,255,255,.70), rgba(238,242,248,.90));
  border: 1px solid rgba(15,17,21,.10);
  border-radius: var(--radius-sm);
}
.effect_tag{
  background: rgba(11,94,215,.08);
  border: 1px solid rgba(11,94,215,.18);
  color: #0a3d90;
}
.effect_ko{
  letter-spacing: -0.2px;
}
.effect_en{
  color: rgba(11,13,18,.76);
}

/* Divider accent under section titles */
.heading_container h2::after{
  background: rgba(11,94,215,.35);
}

/* Tables: a bit more 'enterprise' */
.table thead th{
  background: rgba(245,247,251,.92) !important;
}
.table tbody tr:nth-child(even){
  background: rgba(245,247,251,.50);
}

/* Accessibility: reduce motion if user prefers */
@media (prefers-reduced-motion: reduce){
  *{
    scroll-behavior: auto !important;
  }
  .btn, .pro_card, .counter-card--link{
    transition: none !important;
    transform: none !important;
  }
}
