/* ============================================================
   CW&T CMS Theme Settings
   Edit values below and refresh the browser to see changes.
   No build step required.
   ============================================================ */

:root {
  /* --- Colors --- */
  --color-text: #000000;
  --color-bg: #ffffff;
  --color-page-bg: #dcdcdc;
  --color-border: #000000;
  --color-sidebar-bg: #000000;
  --color-sidebar-text: #ffffff;
  --color-sidebar-active: #ffff00;
  --color-sidebar-section-opacity: 0.5;
  --color-topbar-bg: #000000;
  --color-topbar-border: #000000;

  /* --- Typography --- */
  --font-family: "Space Mono", monospace;
  --font-size-body: 11px;
  --font-size-nav: 11px;
  --font-size-table: 11px;
  --font-size-heading: 11px;
  --font-weight: 400;
  --line-height: 1.6;

  /* --- Spacing --- */
  --sidebar-width: 14rem;
  --topbar-height: 2.5rem;
  --table-cell-padding: 0.5rem 0.75rem;
  --input-padding-left: 10px;

  /* --- Borders --- */
  --border-width: 1px;
  --border-radius: 0px;

  /* --- Section Cards --- */
  --section-border-color: #000000;
  --section-header-bg: darkgrey;
  --section-header-text: #000000;
}

/* --- Apply variables globally --- */

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  font-size: var(--font-size-body);
  line-height: var(--line-height);
  color: var(--color-text);
  background-color: var(--color-page-bg);
}

/* Sidebar */
.lg\:w-56 { width: var(--sidebar-width); }
.lg\:pl-56 { padding-left: var(--sidebar-width); }
.max-w-xs { max-width: var(--sidebar-width); }

/* Sidebar active nav link */
.sidebar-active {
  color: var(--color-sidebar-active) !important;
  text-decoration-color: var(--color-sidebar-active) !important;
}

/* Sidebar background */
[class*="bg-black"]:is(nav *, .flex.grow) {
  background-color: var(--color-sidebar-bg);
}

/* Topbar */
.sticky.top-0.z-40 {
  background-color: var(--color-topbar-bg);
  border-color: var(--color-topbar-border);
  height: var(--topbar-height);
}

/* Tables */
table { font-size: var(--font-size-table); }
th, td { padding: var(--table-cell-padding); }

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight);
  font-family: var(--font-family);
}

/* All border radius */
*, *::before, *::after {
  border-radius: var(--border-radius);
}


/* --- Text inputs: left padding across site --- */

input[type="text"]:not([class*="pl-"]),
input[type="email"]:not([class*="pl-"]),
input[type="search"]:not([class*="pl-"]),
input[type="password"]:not([class*="pl-"]),
input[type="number"]:not([class*="pl-"]),
input[type="tel"]:not([class*="pl-"]),
input[type="url"]:not([class*="pl-"]),
input[type="date"]:not([class*="pl-"]),
textarea:not([class*="pl-"]),
select:not([class*="pl-"]) {
  padding-left: var(--input-padding-left);
}

/* --- Dropdowns: black ring + caret margin --- */
select {
  --tw-ring-color: #000000;
  padding-right: 1.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 20 20' fill='%23000000'%3E%3Cpath d='M6.5 3.5l7 6.5-7 6.5V3.5z' transform='rotate(90 10 10)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 10px;
}

/* --- Fix: inputs inside ring-bordered wrappers must be transparent
       so the parent's inset box-shadow ring is visible --- */

[class*="ring-"] > input,
[class*="ring-"] > select,
[class*="ring-"] > textarea {
  background: transparent;
}

/* --- White content panels: 1px black border --- */
.overflow-hidden.bg-white {
  border: 1px solid var(--color-border);
}

/* --- Section Cards --- */

.section-card {
  border: 1px solid var(--section-border-color);
  background-color: var(--color-bg);
  overflow: visible;
}

.section-card-header {
  background-color: var(--section-header-bg);
  color: var(--section-header-text);
  padding: 0.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid black;
}

.section-card-header h3 {
  color: var(--section-header-text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1;
}

/* Variant detail definition list: vertically center labels */
.section-card dl > div {
  align-items: center;
}

.section-card dl > div > dt {
  align-self: center;
}

.section-card dl > div > dd {
  align-self: center;
}

.section-card-header .btn-outline {
  background-color: var(--color-bg);
  color: var(--color-text);
  border: 1px solid var(--color-text);
  padding: 0.175rem 0.75rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: var(--font-weight);
}

.section-card-header .btn-outline:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
}


/* ============================================================
   Unresolved newsletter archive (unresolved.cwandt.com)
   ============================================================ */

.unresolved-banner {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}
.unresolved-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2.5rem 2rem;
  max-width: 100%;
}
.unresolved-banner-copy { flex: 1 1 480px; }
.unresolved-title {
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  font-size: 28px;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem 0;
  text-transform: uppercase;
}
.unresolved-blurb {
  font-size: var(--font-size-body);
  line-height: 1.6;
  margin: 0;
  max-width: 60ch;
}
.unresolved-banner-subscribe {
  flex: 0 1 320px;
  min-width: 240px;
}

.unresolved-subscribe-form {
  display: flex;
  gap: 0;
}
.unresolved-subscribe-input {
  flex: 1 1 auto;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  padding: 0.5rem 0.75rem;
  min-width: 0;
}
.unresolved-subscribe-button {
  border: 1px solid var(--color-border);
  border-left: none;
  background: var(--color-text);
  color: var(--color-bg);
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  padding: 0.5rem 1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.unresolved-subscribe-button:hover {
  background: var(--color-bg);
  color: var(--color-text);
}
.unresolved-subscribe-msg {
  font-size: var(--font-size-body);
  margin-top: 0.5rem;
  min-height: 1.2em;
}
.unresolved-subscribe-msg.is-success { color: var(--color-text); }
.unresolved-subscribe-msg.is-error { color: #b00020; }
.unresolved-subscribe-msg.is-pending { color: var(--color-text); opacity: 0.6; }

.unresolved-list {
  display: block;
}
.unresolved-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  background: var(--color-bg);
  transition: background-color 80ms linear;
}
.unresolved-row:hover { background: var(--color-page-bg); }
.unresolved-row-subject {
  flex: 1 1 auto;
  font-size: var(--font-size-body);
  padding-right: 1rem;
}
.unresolved-row-date {
  flex: 0 0 auto;
  font-size: var(--font-size-body);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.unresolved-empty {
  padding: 2rem;
  text-align: center;
}

.unresolved-detail-header {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}
.unresolved-detail-header-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2rem;
}
.unresolved-detail-meta { flex: 1 1 480px; }
.unresolved-backlink {
  font-size: var(--font-size-body);
  color: var(--color-text);
  text-decoration: none;
  display: inline-block;
}
.unresolved-backlink:hover { text-decoration: underline; }
.unresolved-detail-subject {
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  font-size: 20px;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}
.unresolved-detail-date {
  font-size: var(--font-size-body);
  letter-spacing: 0.05em;
  opacity: 0.7;
}
.unresolved-detail-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.unresolved-action-button {
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-family);
  font-weight: var(--font-weight);
  font-size: var(--font-size-body);
  padding: 0.5rem 1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  list-style: none;
}
.unresolved-action-button:hover { background: var(--color-text); color: var(--color-bg); }
.unresolved-subscribe-details[open] .unresolved-action-button {
  background: var(--color-text);
  color: var(--color-bg);
}
.unresolved-subscribe-details[open] > .unresolved-subscribe {
  margin-top: 0.5rem;
}
.unresolved-subscribe-details > summary { list-style: none; }
.unresolved-subscribe-details > summary::-webkit-details-marker { display: none; }

.unresolved-body {
  padding: 1.5rem 1rem 4rem;
  max-width: 640px;
  margin: 0 auto;
  font-size: var(--font-size-body);
  line-height: 1.6;
  word-wrap: break-word;
}
.unresolved-body img {
  max-width: 100%;
  height: auto;
  display: block;
}
.unresolved-body a {
  color: var(--color-text);
  text-decoration: underline;
}
.unresolved-block-heading {
  font-family: inherit;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin: 2em 0 1em;
}
.unresolved-block-heading::after {
  content: '\2014';
  display: block;
  margin-top: 0.4em;
  letter-spacing: 0;
}
.unresolved-block-paragraph {
  margin: 0 0 1.1em;
  font-weight: normal;
}
.unresolved-block-image {
  margin: 1.5em 0;
}
.unresolved-block-image img {
  margin: 0 auto;
}
.unresolved-block-caption {
  font-size: 10px;
  letter-spacing: 0.04em;
  opacity: 0.6;
  text-align: center;
  margin-top: 0.5em;
}
.unresolved-block-divider {
  border: 0;
  border-top: 1px solid var(--color-border);
  margin: 2em 0;
  opacity: 0.5;
}
@media (max-width: 480px) {
  .unresolved-body { padding: 1rem 0.75rem 3rem; }
}

/* Admin-only annotations on the archive (only rendered for logged-in users) */
.unresolved-row-tag {
  font-size: 9px;
  letter-spacing: 0.05em;
  border: 1px solid var(--color-border);
  padding: 0.05em 0.4em;
  margin-left: 0.5rem;
  vertical-align: middle;
  opacity: 0.6;
}
.unresolved-row.is-hidden-row {
  background: #f2f2f2;
}
.unresolved-row.is-hidden-row:hover {
  background: #ebebeb;
}
.unresolved-row.is-hidden-row .unresolved-row-subject,
.unresolved-row.is-hidden-row .unresolved-row-date {
  opacity: 0.55;
}
/* Featured dot — lives in the row's existing left padding so subject
   text stays flush with all other subjects. Subtle by default; row
   gets the dot only when is_featured is set. */
.unresolved-row {
  position: relative;
}
.unresolved-row.is-featured-row::before {
  content: '';
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  opacity: 0.85;
}
.unresolved-admin-flag {
  font-size: var(--font-size-body);
  padding: 0.5rem 1rem;
  border: 1px dashed var(--color-border);
  margin: 0.5rem 0;
  opacity: 0.7;
}

/* Per-row hide button on the archive list (auth-gated) */
.unresolved-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.unresolved-row-link {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: inherit;
  text-decoration: none;
}
.unresolved-row-action {
  flex: 0 0 auto;
  margin: 0;
}
.unresolved-row-button {
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 0.25rem 0.6rem;
  cursor: pointer;
}
.unresolved-row-button:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

/* Inline edit panel on the detail page (auth-gated) */
.unresolved-edit-panel {
  border: 1px dashed var(--color-border);
  margin: 0 1rem 1rem;
  padding: 0.5rem 1rem;
}
.unresolved-edit-panel > summary {
  cursor: pointer;
  list-style: none;
  display: inline-block;
}
.unresolved-edit-panel > summary::-webkit-details-marker { display: none; }
.unresolved-edit-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.unresolved-edit-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
}
.unresolved-edit-input,
.unresolved-edit-textarea {
  font-family: inherit;
  font-size: var(--font-size-body);
  background: var(--color-bg);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 0.4rem 0.6rem;
  width: 100%;
  box-sizing: border-box;
}
.unresolved-edit-textarea {
  min-height: 240px;
  resize: vertical;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  line-height: 1.4;
}

/* Block-based edit mode on the detail page */
.unresolved-edit-form-blocks {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.unresolved-edit-bar {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.unresolved-edit-bar-label { opacity: 0.6; margin-right: auto; }
.unresolved-body-editing {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.unresolved-block-edit {
  border: 1px solid var(--color-border);
  padding: 0.6rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.unresolved-block-edit-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
}
.unresolved-block-edit-label { font-weight: normal; }
.unresolved-block-edit-remove {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.unresolved-block-edit-input,
.unresolved-block-edit-textarea {
  font-family: 'Space Mono', monospace;
  font-size: var(--font-size-body);
  background: var(--color-bg);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 0.4rem 0.5rem;
  width: 100%;
  box-sizing: border-box;
  line-height: 1.5;
}
.unresolved-block-edit-textarea {
  min-height: 80px;
  resize: vertical;
}
.unresolved-block-edit-toolbar {
  display: flex;
  gap: 0.3rem;
  margin: 0 0 0.25rem;
}
.unresolved-block-edit-btn {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 0.15rem 0.5rem;
  cursor: pointer;
}
.unresolved-block-edit-btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
}
.unresolved-block-edit-richtext {
  font-family: 'Space Mono', monospace;
  font-size: var(--font-size-body);
  background: var(--color-bg);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  padding: 0.4rem 0.5rem;
  line-height: 1.5;
  min-height: 2.5rem;
  outline: none;
}
.unresolved-block-edit-richtext:focus {
  border-color: var(--color-text);
}
.unresolved-block-edit-richtext a {
  color: inherit;
  text-decoration: underline;
}
.unresolved-block-edit-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.unresolved-block-edit-row > * {
  flex: 1;
}
.unresolved-block-edit-row > .unresolved-block-edit-select {
  flex: 0 0 auto;
  width: 5rem;
}
.unresolved-block-edit-row > .unresolved-block-edit-btn {
  flex: 0 0 auto;
}
.unresolved-block-add {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
  margin-top: 1rem;
}
.unresolved-block-add-label {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-right: 0.25rem;
}
/* Danger zone at the bottom of Edit Mode (permanently delete row). */
.unresolved-edit-danger-zone {
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--color-border);
  text-align: center;
}
.unresolved-action-button-danger {
  border-color: #c0392b;
  color: #c0392b;
}
.unresolved-action-button-danger:hover {
  background: #c0392b;
  color: var(--color-bg);
}
.unresolved-block-edit {
  /* Anchor for the absolutely-positioned drag handle. The handle
     floats outside the block on the left, inside the article's
     padding zone. */
  position: relative;
  transition: opacity 120ms ease;
}
.unresolved-block-edit-drag-handle {
  position: absolute;
  left: -1.6rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: grab;
  user-select: none;
  padding: 0.25rem 0.45rem;
  font-size: 16px;
  line-height: 1;
  opacity: 0.55;
  transition: opacity 120ms ease;
}
.unresolved-block-edit-drag-handle:hover,
.unresolved-block-edit-drag-handle:focus {
  opacity: 1;
}
.unresolved-block-edit-drag-handle:active {
  cursor: grabbing;
}
.unresolved-block-edit.is-dragging {
  opacity: 0.4;
}
.unresolved-block-edit-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0.25rem 0;
}
.unresolved-block-edit-hint {
  font-size: 9px;
  letter-spacing: 0.04em;
  opacity: 0.55;
  margin: 0;
}
.unresolved-block-edit-divider-preview {
  border-top: 1px solid var(--color-border);
  margin: 0.5rem 0;
  height: 0;
  opacity: 0.5;
}

/* Fixed masthead on every newsletter detail page */
.unresolved-masthead {
  text-align: center;
  padding: 3rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.unresolved-masthead-line {
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  letter-spacing: 0.04em;
  margin: 0;
}
.unresolved-orange-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6600;
}
.unresolved-masthead-date {
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  letter-spacing: 0.06em;
  margin: 0;
}
/* Slim utility nav at the very top of the detail page */
.unresolved-detail-utility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}
.unresolved-detail-utility-subject {
  flex: 1 1 auto;
  text-align: left;
  font-family: var(--font-family);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.unresolved-detail-utility-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Fixed sign-off rendered inside the unresolved-body article */
.unresolved-detail-signature {
  text-align: left;
  margin: 2rem 0 0;
  font-size: var(--font-size-body);
  line-height: 1.6;
}
.unresolved-detail-signature p { margin: 0; }

/* Fixed footer on every newsletter detail page */
.unresolved-detail-footer {
  text-align: center;
  padding: 2.5rem 1rem 3rem;
  font-size: var(--font-size-body);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.unresolved-detail-footer a {
  color: var(--color-text);
  text-decoration: underline;
}

/* Per-row Delete button on archive list (auth-gated) */
.unresolved-row-button-delete:hover {
  background: #b00020;
  border-color: #b00020;
  color: #fff;
}

/* Flash banner (e.g. "Deleted X.") */
.unresolved-flash {
  list-style: none;
  margin: 0;
  padding: 0;
}
.unresolved-flash li {
  padding: 0.6rem 2rem;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--font-size-body);
}
.unresolved-flash-success { background: #f4f4f4; }
.unresolved-flash-error { background: #fde2e6; }

/* Sync inbox bar (logged-in only, top of archive list) */
.unresolved-admin-bar {
  padding: 0.6rem 2rem;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--font-size-body);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.unresolved-admin-bar-hint {
  color: #777;
}
.unresolved-admin-bar-spacer { flex: 1; }

/* Analytics page */
.unresolved-analytics {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
  font-size: var(--font-size-body);
}
.unresolved-analytics-summary {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.unresolved-analytics-stat {
  min-width: 8rem;
}
.unresolved-analytics-stat-value {
  font-size: 2rem;
  line-height: 1;
}
.unresolved-analytics-stat-label {
  margin-top: 0.4rem;
  color: #555;
}
.unresolved-analytics-section {
  margin-bottom: 2.5rem;
}
.unresolved-analytics-h2 {
  font-size: var(--font-size-body);
  margin: 0 0 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.3rem;
}
.unresolved-analytics-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-body);
}
.unresolved-analytics-table th,
.unresolved-analytics-table td {
  text-align: left;
  padding: 0.35rem 0.6rem 0.35rem 0;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.unresolved-analytics-table th.num,
.unresolved-analytics-table td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.unresolved-analytics-table td a {
  color: inherit;
  text-decoration: underline;
}
