/* Prevent body scrolling */
body.theme-dark,
body.theme-light {
  overflow: hidden !important;
  height: 100vh;
  margin: 0;
  padding: 0;
}

/* Global select/dropdown styling - use theme colors */
select {
  background-color: var(--theme-bg-input, var(--theme-bg-panel)) !important;
  color: var(--theme-fg-input, var(--theme-fg-primary)) !important;
  border-color: var(--theme-border-input, var(--theme-border-base)) !important;
}

select option {
  background-color: var(--theme-bg-input, var(--theme-bg-panel)) !important;
  color: var(--theme-fg-input, var(--theme-fg-primary)) !important;
}

select:focus {
  border-color: var(--theme-accent-color, var(--theme-primary-color)) !important;
  outline-color: var(--theme-accent-color, var(--theme-primary-color)) !important;
}

/* Nav Header Protection - stays above all modals and dialogs */
.nav-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 100000 !important;
  display: flex !important;
  visibility: visible !important;
}

/* Dialog and Modal Backdrop - keep below nav-header */
dialog::backdrop {
  z-index: 99999 !important;
}

/* All dialogs should be below nav-header */
dialog {
  z-index: 99999 !important;
}

/* Generic modals with fixed positioning */
.modal {
  z-index: 10000;
  position: fixed;
}

/* Room Designer Specific Styles */
.room-designer-layout {
  display: grid;
  grid-template-columns: 280px 1fr 320px; /* Restored to 280px for tighter fit */
  height: calc(100vh - 58px); /* Account for 50px header + 8px top padding */
  gap: 8px;
  padding: 8px;
  padding-bottom: 8px;
  background-color: var(--theme-bg-base);
  color: var(--theme-fg-base);
  overflow: hidden !important; /* Prevent layout from scrolling */
  position: relative;
  z-index: 1; /* Keep below nav-header (z-index: 100000) */
}

/* Ensure panels maintain fixed height in room-designer-layout */
/* Must override unified-layout-base.css rules that set height: auto !important */
/* Using maximum specificity to ensure these rules take precedence */
/* Target both main#designer-app and any .room-designer-layout */
main#designer-app.room-designer-layout .panel-left,
main#designer-app.room-designer-layout .panel-middle,
main#designer-app.room-designer-layout .panel-right,
body .room-designer-layout .panel-left,
body .room-designer-layout .panel-middle,
body .room-designer-layout .panel-right,
.room-designer-layout .panel-left,
.room-designer-layout .panel-middle,
.room-designer-layout .panel-right {
  height: 100% !important; /* Fill grid cell - override any conflicting rules */
  max-height: 100% !important; /* Don't exceed grid cell */
  min-height: 0 !important; /* Allow flex shrinking */
  overflow: hidden !important; /* Contain content */
}

/* Override unified-layout-base.css panel rules specifically for room-designer */
/* Maximum specificity to override main#appMainLayout rules */
main#designer-app.room-designer-layout .panel-left,
main#designer-app.room-designer-layout .panel-middle,
main#designer-app.room-designer-layout .panel-right,
body.theme-light main#designer-app.room-designer-layout .panel-left,
body.theme-light main#designer-app.room-designer-layout .panel-middle,
body.theme-light main#designer-app.room-designer-layout .panel-right,
body.theme-dark main#designer-app.room-designer-layout .panel-left,
body.theme-dark main#designer-app.room-designer-layout .panel-middle,
body.theme-dark main#designer-app.room-designer-layout .panel-right,
body.theme-light .room-designer-layout .panel-left,
body.theme-light .room-designer-layout .panel-middle,
body.theme-light .room-designer-layout .panel-right,
body.theme-dark .room-designer-layout .panel-left,
body.theme-dark .room-designer-layout .panel-middle,
body.theme-dark .room-designer-layout .panel-right {
  height: 100% !important;
  max-height: 100% !important;
  min-height: 0 !important;
  overflow: hidden !important;
  flex: initial !important; /* Override flex: initial from unified-layout-base.css */
}

main#designer-app .panel-left,
main#designer-app .panel-right {
  background-color: var(--theme-bg-panel);
  border: 1px solid var(--theme-border-panel);
  border-radius: 10px;
  padding: 4px !important; /* Minimal padding for tight layout - High specificity */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100% !important; /* Fill grid cell - override any conflicting rules */
  max-height: 100% !important; /* Don't exceed grid cell */
  min-height: 0 !important; /* Allow flex shrinking */
}

main#designer-app .panel-middle {
  background-color: var(--theme-bg-panel);
  border: 1px solid var(--theme-border-panel);
  border-radius: 10px;
  padding: 0 !important; /* No padding for 3D viewer */
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100% !important;
  max-height: 100% !important;
  min-height: 0 !important;
}

/* Middle Panel (3D Viewer) - Fixed, No Scroll */
.panel-middle {
  overflow: hidden !important; /* Never scroll the 3D viewer */
  position: relative;
  padding: 0; /* No padding, children control their spacing */
  display: flex;
  flex-direction: column;
  gap: 0;
}

.panel-middle #designer-canvas-container {
  flex: 1 1 0; /* Grow, shrink, basis 0 - take available space */
  position: relative;
  overflow: hidden;
  min-height: 0; /* Critical for flex shrinking */
  min-width: 0;
}

.panel-middle #viewerContainer {
  width: 100%;
  height: 100%;
  overflow: hidden !important; /* Lock the viewer in place */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Side Panels - Scrollable */
/* Consolidated into main#designer-app rule above */


.panel-right {
  overflow: hidden !important;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  padding: 10px !important; /* Compact padding */
  height: 100% !important; /* Fill grid cell - override any conflicting rules */
  max-height: 100% !important; /* Don't exceed grid cell */
  min-height: 0 !important; /* Allow flex shrinking */
}

/* Right panel body - now the only child, fills entire space */
.panel-right-body {
  flex: 1 1 0; /* Use 0 as basis to force filling available space */
  overflow-y: auto; /* Scroll if content exceeds height */
  overflow-x: hidden;
  min-height: 0; /* Allow shrinking */
  max-height: 100%; /* Don't exceed parent */
  background-color: var(--theme-bg-panel);
  color: var(--theme-fg-primary);
}

#selected-item-section {
  padding: 0; /* No padding - direct content flow */
  background-color: var(--theme-bg-panel);
  color: var(--theme-fg-primary);
  border: none;
  border-radius: 0;
  min-height: 100%; /* Fill parent minimum */
  height: auto; /* Let content determine height */
  overflow: visible; /* Don't create nested scroll */
}

/* ===================================================================
   LEFT COLUMN ROOM TAB STYLING (NO INLINE STYLES)
   
   IMPORTANT: This section uses UNIFIED STYLING SYSTEM
   NO inline styles allowed - all styles defined here for maintainability
   =================================================================== */

.clear-room-btn {
  background-color: #ef4444;
  color: white;
}

.clear-room-btn:hover {
  background-color: #dc2626;
}

.doors-windows-section {
  margin-top: 12px;
}

.doors-windows-btn {
  width: 100%;
  padding: 8px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.doors-icon {
  font-size: 16px;
}

.layout-display-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin-top: 12px;
  padding: 10px;
  background: var(--theme-bg-hover, rgba(0, 0, 0, 0.03));
  border-radius: 4px;
  font-size: 12px;
  color: var(--theme-fg-base, #333);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 0; /* handled by grid gap */
  color: var(--theme-fg-base, #333);
  white-space: nowrap;
  width: auto;
}

/* Dark mode override for checkbox labels */
body.theme-dark .checkbox-label {
  color: var(--theme-fg-base, #e2e8f0) !important;
}

body.theme-dark .checkbox-label span {
  color: var(--theme-fg-base, #e2e8f0) !important;
}

.grid-size-row {
  margin-top: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
}

.grid-size-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
}

.grid-size-select {
  padding: 2px 4px;
  border-radius: 3px;
  font-size: 11px;
}

.panel-left::-webkit-scrollbar,
.panel-right::-webkit-scrollbar {
  width: 8px;
}

.panel-left::-webkit-scrollbar-thumb,
.panel-right::-webkit-scrollbar-thumb {
  background: var(--theme-border-panel, rgba(148, 163, 184, 0.35));
  border-radius: 4px;
}

.panel-left::-webkit-scrollbar-thumb:hover,
.panel-right::-webkit-scrollbar-thumb:hover {
  background: var(--theme-accent-color, rgba(148, 163, 184, 0.5));
}

.panel-card {
  background-color: var(--theme-bg-panel);
  border: 1px solid var(--theme-border-panel);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.panel-card-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--theme-border-panel);
}

.panel-card-header h3 {
  margin: 0;
  font-size: 16px;
  color: var(--theme-fg-header, #333);
}

.panel-card-body {
  padding: 8px 6px 8px; /* Reduced padding to match right panel */
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--theme-fg-base, #333);
}

.panel-card-body div,
.panel-card-body p,
.panel-card-body span {
  color: inherit;
}

.panel-card-body strong {
  color: var(--theme-fg-header, #333);
  font-weight: 600;
}

/* Dark mode overrides for saved designs list */
body.theme-dark #saved-designs-list {
  background: var(--theme-bg-panel, #1c2330) !important;
  color: var(--theme-fg-base, #e2e8f0) !important;
  border-color: var(--theme-border-panel, #2a3442) !important;
}

body.theme-dark #saved-designs-list p {
  color: var(--theme-fg-muted, #94a3b8) !important;
}

body.theme-dark #saved-designs-list div {
  color: var(--theme-fg-base, #e2e8f0) !important;
}

body.theme-dark #saved-designs-list div[style*="color: #333"],
body.theme-dark #saved-designs-list div[style*="color:#333"],
body.theme-dark #saved-designs-list div[style*="color: #666"],
body.theme-dark #saved-designs-list div[style*="color:#666"] {
  color: var(--theme-fg-base, #e2e8f0) !important;
}

body.theme-dark #saved-designs-list div[style*="font-weight: bold"] {
  color: var(--theme-fg-header, #e2e8f0) !important;
}

/* Dark mode overrides for panel cards */
body.theme-dark .panel-card-header h3 {
  color: var(--theme-fg-header, #e2e8f0) !important;
}

body.theme-dark .panel-card-body {
  color: var(--theme-fg-base, #e2e8f0) !important;
}

body.theme-dark .panel-card-body div,
body.theme-dark .panel-card-body p,
body.theme-dark .panel-card-body span {
  color: var(--theme-fg-base, #e2e8f0) !important;
}

body.theme-dark .panel-card-body strong {
  color: var(--theme-fg-header, #e2e8f0) !important;
}

.field-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.control-group input[type="range"] {
  width: 100%;
}

.control-group label {
  font-size: 12px;
  color: var(--theme-fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.field-block label {
  font-size: 12px;
  color: var(--theme-fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field-block input,
.field-block select {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid var(--theme-border-input);
  background-color: var(--theme-bg-input);
  color: var(--theme-fg-input);
}

#designer-cabinet-select {
  min-height: 132px;
  font-size: 13px;
}

.cabinet-quick-preview {
  border: 1px solid var(--theme-border-panel);
  border-radius: 8px;
  background-color: var(--theme-bg-base);
  padding: 12px 12px 14px;
  min-height: 90px;
  font-size: 13px;
  line-height: 1.5;
}

.cabinet-quick-preview h4 {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--theme-fg-header);
}

.cabinet-quick-preview dl {
  margin: 0;
  display: grid;
  grid-template-columns: 96px 1fr;
  row-gap: 4px;
  column-gap: 12px;
  font-size: 12px;
}

.cabinet-quick-preview dt {
  color: var(--theme-fg-muted);
  text-transform: uppercase;
}

.cabinet-quick-preview dd {
  margin: 0;
  color: var(--theme-fg-base);
}

.cabinet-actions {
  display: flex;
  gap: 8px;
}

.cabinet-actions button {
  flex: 1;
  padding: 9px 10px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background-color: var(--theme-accent-color);
  color: #fff;
  border-color: var(--theme-accent-color);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  background: transparent;
  color: var(--theme-fg-base);
  border-color: var(--theme-border-panel);
}

.btn-secondary:hover {
  border-color: var(--theme-accent-color);
  color: var(--theme-accent-color);
}

.cabinet-actions button:disabled,
.layout-preset-btn:disabled,
.layout-draw-buttons button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.layout-preset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.layout-preset-btn {
  padding: 9px 10px;
  border-radius: 6px;
  border: 1px solid var(--theme-border-panel);
  background: transparent;
  color: var(--theme-fg-base, #333) !important;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

/* Dark mode override for layout preset buttons */
body.theme-dark .layout-preset-btn {
  color: var(--theme-fg-base, #e2e8f0) !important;
}

.layout-preset-btn:hover,
.layout-preset-btn.active {
  border-color: var(--theme-accent-color);
  color: var(--theme-accent-color);
}

.layout-preset-btn.emphasised {
  width: 100%;
  font-weight: 600;
  justify-content: center;
}

.layout-actions {
  display: flex;
  gap: 8px;
}

.layout-draw-buttons {
  display: flex;
  gap: 8px;
}

.layout-draw-progress {
  font-size: 12px;
  color: var(--theme-fg-muted);
}

/* Dark mode override for layout draw progress */
body.theme-dark .layout-draw-progress {
  color: var(--theme-fg-muted, #94a3b8) !important;
}

.muted {
  color: var(--theme-fg-muted);
  font-size: 12px;
  line-height: 1.5;
}

/* Dark mode override for muted text */
body.theme-dark .muted {
  color: var(--theme-fg-muted, #94a3b8) !important;
}

#layout-draw-controls[hidden] {
  display: none !important;
}

#designer-status-line {
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 12px;
  min-height: 40px;
  display: flex;
  align-items: center;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

#designer-status-line:empty {
  display: none;
}

#designer-status-line[data-status="info"] {
  background-color: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
  color: #93c5fd;
}

#designer-status-line[data-status="success"] {
  background-color: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.35);
  color: #6ee7b7;
}

#designer-status-line[data-status="warning"] {
  background-color: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.35);
  color: #fcd34d;
}

#designer-status-line[data-status="error"] {
  background-color: rgba(248, 113, 113, 0.12);
  border-color: rgba(248, 113, 113, 0.35);
  color: #fca5a5;
}

/* Middle Panel: Canvas */
.panel-middle {
  padding: 0;
  position: relative;
}

#designer-canvas-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

#designer-canvas-container canvas {
  display: block;
}

#designer-canvas-container.drag-target {
  outline: 2px dashed var(--theme-accent-color);
}

#designer-toolbar {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.55);
  padding: 8px 10px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  align-items: center;
  flex-wrap: wrap;
}

#designer-toolbar button {
  padding: 6px 10px;
  border: 1px solid var(--theme-border-button);
  background-color: var(--theme-bg-button);
  color: var(--theme-fg-button);
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
}

#designer-toolbar button.active {
  border-color: var(--theme-accent-color);
  color: var(--theme-accent-color);
}

#designer-toolbar button:hover {
  background-color: var(--theme-bg-button-hover);
}

#designer-toolbar .toolbar-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

#designer-toolbar .toolbar-group + .toolbar-group {
  margin-left: 12px;
}

#designer-toolbar .toolbar-label {
  font-size: 11px;
  color: var(--theme-fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wall-elevation-btn {
  padding: 6px 10px;
  border: 1px solid var(--theme-border-button);
  background: rgba(15, 23, 42, 0.4);
  color: var(--theme-fg-button);
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.wall-elevation-btn:hover {
  background: rgba(15, 23, 42, 0.55);
}

.wall-elevation-btn.active {
  border-color: var(--theme-accent-color);
  color: var(--theme-accent-color);
}

.wall-elevation-placeholder {
  font-size: 12px;
  color: var(--theme-fg-muted);
}

/* Right Panel: Properties */
#room-summary-section,
#wall-settings-section,
#selected-item-section {
  margin-bottom: 20px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.summary-line.total {
  font-weight: 600;
  font-size: 16px;
  color: var(--theme-accent-color);
  border-top: 1px solid var(--theme-border-panel);
  padding-top: 12px;
  margin-top: 12px;
}

/* Removed old #selected-item-section styling - now handled above */

#selected-item-section h4 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--theme-fg-header);
}

#selected-item-section dl {
  margin: 0 0 10px;
  display: grid;
  grid-template-columns: 120px 1fr;
  row-gap: 4px;
  column-gap: 12px;
  font-size: 12px;
}

.selected-anchor-controls {
  margin-top: 8px; /* Reduced from 10px */
  padding: 8px; /* Reduced from 10px */
  border-radius: 8px;
  border: 1px solid var(--theme-border-panel);
  background: var(--theme-bg-panel);
  display: flex;
  flex-direction: column;
  gap: 8px; /* Reduced from 12px */
}

.anchor-input-row {
  display: flex;
  flex-direction: column;
  gap: 4px; /* Reduced from 6px */
}

.input-with-unit {
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-with-unit input {
  flex: 1;
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid var(--theme-border-input);
  background: var(--theme-bg-input);
  color: var(--theme-fg-input);
  font-size: 12px;
}

.input-with-unit .unit {
  font-size: 11px;
  color: var(--theme-fg-muted);
  text-transform: uppercase;
}

.anchor-input-row .hint {
  font-size: 11px;
  color: var(--theme-fg-muted);
  margin: 0;
}

.clearance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px; /* Reduced from 8px */
}

.clearance-cell {
  padding: 6px; /* Reduced from 8px */
  border-radius: 6px;
  background: var(--theme-bg-panel);
  border: 1px solid var(--theme-border-panel);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
}

.clearance-cell span {
  color: var(--theme-fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
}

.clearance-cell strong {
  color: var(--theme-fg-base);
  font-size: 13px;
}

#selected-item-section dt {
  color: var(--theme-fg-muted);
  text-transform: uppercase;
}

#selected-item-section dd {
  margin: 0;
  color: var(--theme-fg-base);
}

.selected-item-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px; /* Add small top margin */
}

.selected-item-actions button {
  flex: 1;
  padding: 7px; /* Reduced from 8px */
  border-radius: 6px;
  border: 1px solid var(--theme-border-panel);
  background: transparent;
  color: var(--theme-fg-base);
  cursor: pointer;
  font-size: 12px;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.selected-item-actions button:hover {
  border-color: var(--theme-accent-color);
  color: var(--theme-accent-color);
}

#selected-item-section p {
  color: var(--theme-fg-muted);
  font-size: 13px;
  margin: 6px 0 0; /* Reduced from 8px */
}

/* Room Designer Specific Styles - REMOVED DUPLICATE */
/* This section was duplicate - removed to prevent conflicts */
/* Use the main .room-designer-layout rule at the top of the file */

/* Left Panel: Cabinet Library */
#cabinet-library-controls {
  margin-bottom: 15px;
}

#cabinet-library-controls label {
  display: block;
  font-size: 12px;
  margin-bottom: 5px;
}

#cabinet-library-controls input,
#cabinet-library-controls select {
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid var(--theme-border-input);
  background-color: var(--theme-bg-input);
  color: var(--theme-fg-input);
  margin-bottom: 10px;
}

#cabinet-library-list {
  flex-grow: 1;
  overflow-y: auto;
}

.cabinet-item {
  padding: 10px;
  border: 1px solid var(--theme-border-panel);
  border-radius: 4px;
  margin-bottom: 8px;
  cursor: grab;
  background-color: var(--theme-bg-base);
}

.cabinet-item:hover {
  background-color: var(--theme-bg-hover);
  border-color: var(--theme-accent-color);
}

/* Middle Panel: Canvas */
.panel-middle {
  padding: 0;
  position: relative;
}

#designer-canvas-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#designer-canvas-container canvas {
  display: block;
}

#designer-toolbar {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 8px;
  background: rgba(0,0,0,0.5);
  padding: 8px;
  border-radius: 6px;
}

#designer-toolbar button {
  padding: 8px 12px;
  border: 1px solid var(--theme-border-button);
  background-color: var(--theme-bg-button);
  color: var(--theme-fg-button);
  border-radius: 4px;
  cursor: pointer;
}

#designer-toolbar button:hover {
  background-color: var(--theme-bg-button-hover);
}

/* Right Panel: Properties */
#room-summary-section,
#wall-settings-section,
#selected-item-section {
  margin-bottom: 20px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.summary-line.total {
  font-weight: bold;
  font-size: 16px;
  color: var(--theme-accent-color);
  border-top: 1px solid var(--theme-border-panel);
  padding-top: 10px;
  margin-top: 10px;
}

#selected-item-section p {
  color: var(--theme-fg-muted);
  font-size: 13px;
}

/* === MOZAIK EXPORT STYLES === */

.export-type-selection {
  margin: 12px 0;
}

.radio-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.4;
  cursor: pointer;
}

.radio-label input[type="radio"] {
  margin-top: 2px;
  cursor: pointer;
}

.radio-label span {
  flex: 1;
}

.export-customer-info .field-block {
  margin-bottom: 8px;
}

.export-actions button {
  font-size: 13px;
  padding: 8px 12px;
}

/* Mozaik Preview Modal */
#mozaik-preview-modal {
  max-width: 800px;
  width: 90vw;
}

#mozaik-preview-content {
  font-size: 11px;
  line-height: 1.3;
  border: 1px solid var(--theme-border-panel);
}

#mozaik-export-summary {
  font-size: 12px;
  line-height: 1.4;
}

#export-summary-details {
  white-space: pre-line;
  margin-top: 8px;
}

.wall-dimension-controls {
  border-top: 1px solid var(--theme-border-panel, #e0e0e0);
  padding-top: 12px;
}

.wall-dimension-controls h4 {
  font-weight: 600;
  color: var(--theme-fg-base, #333);
  margin: 0 0 8px 0;
}

/* Dark mode overrides for wall dimension controls */
body.theme-dark .wall-dimension-controls h4 {
  color: var(--theme-fg-base, #e2e8f0) !important;
}

body.theme-dark .wall-dimension-controls {
  border-color: var(--theme-border-panel, #2a3442) !important;
}

body.theme-dark .layout-display-options {
  background: var(--theme-bg-hover, rgba(255, 255, 255, 0.05)) !important;
  color: var(--theme-fg-base, #e2e8f0) !important;
}

.input-with-unit {
  display: flex;
  align-items: center;
  gap: 5px;
}

.input-with-unit input {
  padding: 6px 8px;
  border: 1px solid var(--theme-border-input, #d0d0d0);
  border-radius: 3px;
  font-size: 12px;
  background-color: var(--theme-bg-input, #fff);
  color: var(--theme-fg-input, #333);
}

.input-with-unit .unit {
  font-size: 11px;
  color: var(--theme-fg-muted, #666);
  font-weight: 500;
}

/* ========================================
   PHASE 5: PER-CABINET OVERRIDES STYLES
   ======================================== */

/* Context Menu - REMOVED (replaced by unified version below) */

/* Override Badge */
.override-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
  color: white;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 10px;
  box-shadow: 0 2px 4px rgba(255, 152, 0, 0.3);
}

.override-badge .icon {
  font-size: 13px;
}

/* Override Modal */
.cabinet-override-content {
  max-width: 500px;
  width: 90vw;
}

.override-hint {
  background: var(--theme-bg-hover, #e3f2fd);
  border-left: 3px solid var(--theme-accent-color, #2196f3);
  padding: 12px;
  margin: 0 0 20px 0;
  border-radius: 4px;
  font-size: 13px;
  color: var(--theme-accent-color, #1565c0);
}

.override-section {
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid var(--theme-border-panel, #e0e0e0);
  border-radius: 4px;
  background: var(--theme-bg-panel, #fafafa);
}

.override-section label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  color: var(--theme-fg-base, #333);
}

.override-section input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.override-section select {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--theme-border-input, #d0d0d0);
  border-radius: 4px;
  font-size: 13px;
  background: var(--theme-bg-input, white);
  color: var(--theme-fg-input, #333);
}

.override-section select:disabled {
  background: var(--theme-bg-hover, #f0f0f0);
  color: var(--theme-fg-muted, #999);
  cursor: not-allowed;
}

.override-preview {
  margin-top: 20px;
  padding: 16px;
  background: var(--theme-bg-hover, #fff3e0);
  border: 1px solid var(--theme-border-panel, #ffb74d);
  border-radius: 4px;
  color: var(--theme-fg-base, #333);
}

.override-preview h4 {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: var(--theme-fg-header, #e65100);
}

.override-preview dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
  margin: 0;
  font-size: 12px;
}

.override-preview dt {
  font-weight: 600;
  color: var(--theme-fg-muted, #555);
}

.override-preview dd {
  margin: 0;
  color: var(--theme-fg-base, #333);
}

/* Dark theme overrides - ensure they apply in modal context */
body.theme-dark .override-preview,
body.theme-dark .modal .override-preview {
  background: var(--theme-bg-panel, #1c2330) !important;
  border-color: var(--theme-border-panel, #2a3442) !important;
  color: var(--theme-fg-base, #e2e8f0) !important;
}

body.theme-dark .override-preview h4,
body.theme-dark .modal .override-preview h4 {
  color: var(--theme-fg-header, #e2e8f0) !important;
}

body.theme-dark .override-preview dt,
body.theme-dark .modal .override-preview dt {
  color: var(--theme-fg-muted, #94a3b8) !important;
}

body.theme-dark .override-preview dd,
body.theme-dark .modal .override-preview dd {
  color: var(--theme-fg-base, #e2e8f0) !important;
}

/* Override Details in Selected Item */
.override-details {
  margin-top: 12px;
  padding: 12px;
  background: var(--theme-bg-hover, #fff8e1);
  border: 1px solid var(--theme-border-panel, #ffc107);
  border-radius: 4px;
}

.override-details summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  color: var(--theme-fg-base, #f57c00);
  padding: 4px 0;
}

.override-details summary:hover {
  color: var(--theme-accent-color, #e65100);
}

.override-details dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 6px;
  margin: 10px 0 0 0;
  font-size: 12px;
}

.override-details dt {
  font-weight: 600;
  color: var(--theme-fg-muted, #666);
}

.override-details dd {
  margin: 0;
  color: var(--theme-fg-base, #333);
}

/* Dark Theme Overrides */
.theme-dark .context-menu {
  background: var(--theme-bg-panel);
  border-color: var(--theme-border-panel);
  color: var(--theme-fg-primary);
}

.theme-dark .context-menu-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.theme-dark .override-section,
body.theme-dark .override-section {
  background: var(--theme-bg-panel, #1c2330) !important;
  border-color: var(--theme-border-panel, #2a3442) !important;
}

.theme-dark .override-section label,
body.theme-dark .override-section label {
  color: var(--theme-fg-base, #e2e8f0) !important;
}

.theme-dark .override-section select,
body.theme-dark .override-section select {
  background: var(--theme-bg-input, #243142) !important;
  color: var(--theme-fg-input, #e2e8f0) !important;
  border-color: var(--theme-border-input, #364b63) !important;
}

.theme-dark .override-section select:disabled,
body.theme-dark .override-section select:disabled {
  background: var(--theme-bg-hover, #2a3442) !important;
  color: var(--theme-fg-muted, #94a3b8) !important;
}


.theme-dark .override-details {
  background: rgba(255, 193, 7, 0.1);
  border-color: rgba(255, 193, 7, 0.3);
}

.theme-dark .override-hint,
body.theme-dark .override-hint {
  background: var(--theme-bg-panel, rgba(26, 90, 153, 0.15)) !important;
  border-left-color: var(--theme-accent-color, #1a84d8) !important;
  color: var(--theme-accent-color, #1a84d8) !important;
}

/* ========================================
   GUIDED SETUP MODAL STYLES (Phase 2)
   Matching index.html tile format exactly
   ======================================== */

/* Guided setup minimal styles - Updated fallbacks for light theme */
.guided-step-content{
  background:var(--theme-bg-panel,#f9fafb);
  color:var(--theme-fg-base,#333);
  border:1px solid var(--theme-border-panel,#e5e7eb);
  border-radius:10px;
  padding:16px
}
.guided-step-header{display:flex;flex-direction:column;gap:4px;margin-bottom:12px}
.guided-step-title{margin:0;font-size:18px;color:var(--theme-fg-header,#1a5a99)}
.guided-step-subtitle{margin:0;color:var(--theme-fg-muted,#666);font-size:12px}
.guided-navigation{display:flex;align-items:center;gap:8px;justify-content:space-between;margin-top:12px}
.guided-nav-button{background:var(--theme-accent-color,#1a5a99);border:1px solid var(--theme-accent-color,#1a5a99);color:#fff;padding:6px 12px;border-radius:6px;font-weight:700;cursor:pointer}
.guided-nav-button.secondary{background:var(--theme-bg-button,#f3f4f6);border-color:var(--theme-border-button,#d1d5db);color:var(--theme-fg-button,#374151)}
.step-progress{font-size:12px;color:var(--theme-fg-muted,#666)}
.category-options{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:10px}
.category-option{background:var(--theme-bg-panel,#ffffff);border:1px solid var(--theme-border-panel,#e5e7eb);border-radius:8px;padding:12px;cursor:pointer}
.category-option.selected{outline:2px solid var(--theme-accent-color,#1a5a99)}
.door-style-options,.hardware-options,.drawer-options{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
@media (max-width:1200px){.door-style-options,.hardware-options,.drawer-options{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:760px){.door-style-options,.hardware-options,.drawer-options{grid-template-columns:1fr}}
.door-style-tile,.hardware-tile,.drawer-tile,.case-material-tile,.cabinet-tile{
  position:relative;
  background:var(--theme-bg-panel,#ffffff);
  border:1px solid var(--theme-border-panel,#e5e7eb);
  border-radius:10px;
  overflow:hidden;
  cursor:pointer;
  display:flex;
  flex-direction:row;
  min-height:180px;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,0.05)
}
/* Left image column for portrait preview (approx 28-30% width) */
.door-tile-image,.hardware-tile-image,.drawer-tile-image,.case-material-tile-image,.cabinet-tile-image{
  width:28%;
  min-width:160px;
  max-width:240px;
  aspect-ratio:3/5;
  background:var(--theme-bg-base,#f9fafb);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden
}
.door-tile-image img,.drawer-tile-image img,.hardware-tile-image img,.case-material-tile-image img,.cabinet-tile-image img{width:100%;height:100%;object-fit:cover}
/* Right text column */
.door-tile-content,.hardware-tile-content,.drawer-tile-content{padding:14px 16px;display:flex;flex-direction:column;gap:8px;flex:1}
.door-style-tile:hover,.hardware-tile:hover,.drawer-tile:hover{border-color:var(--theme-border-panel,#d1d5db)}
/* Keep tiles a consistent height and prevent overlap */
.door-style-tile *,.hardware-tile *,.drawer-tile *{min-width:0}
@media (max-width:700px){
.door-style-tile,.hardware-tile,.drawer-tile,.case-material-tile,.cabinet-tile{flex-direction:column}
.door-tile-image,.hardware-tile-image,.drawer-tile-image,.case-material-tile-image,.cabinet-tile-image{width:100%;min-width:0;height:180px}
}
.door-tile-title,.drawer-tile-title{margin:0 0 6px;font-size:14px;color:var(--theme-fg-header,#333)}
.door-style-tile.selected,.hardware-tile.selected,.drawer-tile.selected,.case-material-tile.selected{outline:2px solid var(--theme-accent-color,#1a5a99)}
.door-tile-overlay,.hardware-tile-overlay,.drawer-tile-overlay,.case-material-tile-overlay{position:absolute;inset:auto 8px 8px auto;z-index:10}
.tile-details-btn{background:var(--theme-bg-button,#f3f4f6);border:1px solid var(--theme-border-button,#d1d5db);color:var(--theme-fg-button,#374151);padding:4px 8px;border-radius:6px;font-size:12px;cursor:pointer;white-space:nowrap}
.hardware-color-info{display:flex;align-items:center;gap:6px;margin-top:6px;color:var(--theme-fg-muted,#666)}
.color-swatch{width:14px;height:14px;border-radius:50%;border:1px solid var(--theme-border-panel,#d1d5db)}

/* Details modal content containment and readability */
.guided-details-overlay .gdo-content{grid-template-columns:320px 1fr;gap:14px}
.guided-details-overlay .gdo-content img{max-width:100%;height:auto;display:block}
.guided-details-overlay .gdo-panel{max-height:78vh;overflow:hidden}
.guided-details-overlay .gdo-panel .scrollable{overflow:auto;max-height:calc(78vh - 90px)}

/* Step 6 cabinet overview layout */
.cabinet-overview{display:grid;grid-template-columns:1.4fr 1fr;gap:16px;align-items:start}
@media (max-width:1200px){.cabinet-overview{grid-template-columns:1fr}}
@media (max-width:880px){.cabinet-overview{grid-template-columns:1fr}}
.co-illustration{position:relative;background:var(--theme-bg-base,#0b1020);border:1px solid var(--theme-border-panel,#1f2937);border-radius:8px;padding:8px;display:flex;align-items:center;justify-content:center}
.co-illustration img{width:100%;height:auto;max-width:1400px}
.co-illustration img{max-width:100%;height:auto;display:block}
.co-illustration.no-image{min-height:200px}
.co-placeholder{position:absolute;inset:8px;border:1px dashed var(--theme-border-panel,#334155);border-radius:6px;color:var(--theme-fg-muted,#94a3b8);display:none;align-items:center;justify-content:center;padding:10px}
.co-illustration.no-image .co-placeholder{display:flex}
.co-callout{position:absolute;width:24px;height:24px;border-radius:50%;background:var(--theme-accent-color,#2563eb);color:#fff;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:800;box-shadow:0 1px 6px rgba(0,0,0,.35);transform:translate(-50%,-50%)}
.co-explain{background:var(--theme-bg-panel,#0f172a);border:1px solid var(--theme-border-panel,#1f2937);border-radius:8px;padding:12px}
.co-explain h4{margin:0 0 8px;font-size:16px;color:var(--theme-fg-header,#e2e8f0)}
.co-list{margin:0 0 8px 18px;padding:0;display:grid;gap:6px}
.co-num{display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;border-radius:50%;background:var(--theme-accent-color,#10b981);color:#041a14;font-size:11px;font-weight:800;margin-right:6px}
.co-cta{margin-top:10px}

/* ===== Match index (7) guided modal look ===== */
.modal .guided-step-content{position:relative;z-index:1;pointer-events:auto}
.modal .guided-step-header{text-align:center;margin-bottom:1rem}
.modal .guided-step-title{color:var(--theme-fg-header,#1a5a99);font-size:1.25rem;margin:0 0 .25rem}
.modal .guided-step-subtitle{color:var(--theme-fg-muted,#666);font-size:.95rem;margin:0}
.modal .guided-navigation{display:flex;justify-content:space-between;align-items:center;margin-top:1rem;padding-top:.75rem;border-top:1px solid var(--theme-border-panel,#e5e7eb)}
.modal .guided-nav-button{background:linear-gradient(135deg,var(--theme-accent-color,#1a5a99),var(--theme-accent-color,#2563eb));color:#fff;border:none;padding:.5rem 1rem;border-radius:6px;font-weight:600;cursor:pointer}
.modal .guided-nav-button[disabled]{opacity:.55;cursor:not-allowed;filter:grayscale(.35)}
.modal .guided-nav-button.secondary{background:transparent;border:1px solid var(--theme-border-button,#d1d5db);color:var(--theme-fg-muted,#666)}
.modal .door-style-tile,.modal .hardware-tile,.modal .drawer-tile,.modal .case-material-tile,.modal .cabinet-tile{transition:transform .12s ease, border-color .12s ease, background .12s ease}
.modal .door-style-tile:hover,.modal .hardware-tile:hover,.modal .drawer-tile:hover,.modal .case-material-tile:hover,.modal .cabinet-tile:hover{border-color:var(--theme-accent-color,#1a5a99);background:var(--theme-bg-hover,#f3f4f6);transform:translateY(-2px)}
.modal .door-style-tile.selected,.modal .hardware-tile.selected,.modal .drawer-tile.selected,.modal .case-material-tile.selected,.modal .cabinet-tile.selected{border-color:var(--theme-accent-color,#1a5a99);box-shadow:0 0 0 2px rgba(26,90,153,.25)}

/* Category tiles (Step 1) */
.modal .category-options{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px;margin:12px 0 8px}
.modal .category-option{background:var(--theme-bg-base,#ffffff);border:2px solid var(--theme-border-panel,#e5e7eb);border-radius:10px;padding:12px;cursor:pointer;transition:all .2s ease;min-height:120px;display:flex;flex-direction:column;justify-content:center}
.modal .category-option:hover{border-color:var(--theme-accent-color,#1a5a99);background:var(--theme-bg-hover,#f3f4f6);transform:translateY(-2px)}
.modal .category-option.selected{border-color:var(--theme-accent-color,#1a5a99);box-shadow:0 0 0 2px rgba(26,90,153,.25)}
.modal .category-option h4{color:var(--theme-fg-header,#333);font-size:1rem;margin:0 0 6px;font-weight:600}
.modal .category-option p{color:var(--theme-fg-muted,#666);font-size:.9rem;margin:0}

/* All option grids (2-up at ~1040px width) */
.modal .door-style-options,.modal .hardware-options,.modal .drawer-options,.modal .case-material-options,.modal .cabinet-options{display:grid;grid-template-columns:repeat(auto-fit,minmax(420px,1fr));gap:12px;margin:12px 0 8px}
.modal .door-style-tile,.modal .hardware-tile,.modal .drawer-tile,.modal .case-material-tile,.modal .cabinet-tile{background:var(--theme-bg-base,#ffffff);border:2px solid var(--theme-border-panel,#e5e7eb);border-radius:10px;overflow:hidden;cursor:pointer;transition:all .2s ease;min-height:180px;display:flex;flex-direction:row;position:relative;align-items:stretch}
.modal .door-tile-image,.modal .hardware-tile-image,.modal .drawer-tile-image,.modal .case-material-tile-image,.modal .cabinet-tile-image{width:200px;min-height:180px;display:flex;align-items:center;justify-content:center;padding:0;background:var(--theme-bg-base,#ffffff);overflow:hidden;flex-shrink:0}
.modal .door-tile-image img,.modal .hardware-tile-image img,.modal .drawer-tile-image img,.modal .case-material-tile-image img,.modal .cabinet-tile-image img{width:100%;height:100%;object-fit:contain}
.modal .door-tile-content,.modal .hardware-tile-content,.modal .drawer-tile-content,.modal .case-material-tile-content,.modal .cabinet-tile-content{padding:.75rem 1rem;flex:1;display:flex;flex-direction:column;justify-content:flex-start;min-height:180px;gap:0.25rem}
.modal .door-tile-title,.modal .hardware-tile-title,.modal .drawer-tile-title,.modal .case-material-tile-title,.modal .cabinet-tile-title{color:var(--theme-fg-header,#333);font-size:1rem;margin:0;font-weight:600;flex-shrink:0}
.modal .door-tile-description,.modal .hardware-tile-description,.modal .drawer-tile-description,.modal .case-material-tile-description,.modal .cabinet-tile-description{color:var(--theme-fg-muted,#666);font-size:.85rem;line-height:1.6;margin:0;flex:1;word-wrap:break-word;overflow-wrap:break-word}
.modal .feature-tag{background:rgba(26,90,153,.2);color:var(--theme-accent-color,#1a5a99);padding:.15rem .5rem;border-radius:12px;font-size:.72rem;margin-top:.35rem;display:inline-block}
.modal .color-swatch{width:14px;height:14px;border-radius:50%;border:1px solid rgba(0,0,0,.2);display:inline-block;margin-right:6px;vertical-align:middle}

/* Step 6 in modal like index (7) */
.modal .cabinet-overview{display:grid;grid-template-columns:1.45fr 1fr;gap:16px;align-items:start}
.modal .cabinet-overview .co-illustration{position:relative;background:var(--theme-bg-base,#ffffff);border:1px solid var(--theme-border-panel,#e5e7eb);border-radius:10px;overflow:hidden;min-height:260px}
.modal .cabinet-overview .co-illustration img{display:block;width:100%;height:auto;opacity:.95}
.modal .cabinet-overview .co-illustration.no-image{display:flex;align-items:center;justify-content:center}
.modal .cabinet-overview .co-illustration .co-placeholder{position:absolute;inset:0;display:none;align-items:center;justify-content:center;color:var(--theme-fg-muted,#666);font-size:14px;padding:12px;text-align:center}
.modal .cabinet-overview .co-illustration.no-image .co-placeholder{display:flex}
.modal .cabinet-overview .co-callout{position:absolute;width:26px;height:26px;border-radius:50%;background:var(--theme-accent-color,#2563eb);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;box-shadow:0 2px 8px rgba(0,0,0,.35);border:2px solid rgba(255,255,255,.25)}
.modal .cabinet-overview .co-explain{background:var(--theme-bg-panel,#ffffff);border:1px solid var(--theme-border-panel,#e5e7eb);border-radius:10px;padding:12px;color:var(--theme-fg-base,#333)}
.modal .cabinet-overview .co-explain h4{margin:0 0 8px 0;color:var(--theme-fg-header,#333)}
.modal .cabinet-overview .co-list{margin:0;padding-left:0;list-style:none;display:flex;flex-direction:column;gap:8px}
.modal .cabinet-overview .co-list li{display:flex;gap:8px;line-height:1.3;color:var(--theme-fg-base,#333)}
.modal .cabinet-overview .co-num{display:inline-flex;align-items:center;justify-content:center;min-width:22px;height:22px;border-radius:50%;background:var(--theme-accent-color,#1a5a99);color:#fff;font-weight:700;margin-top:2px}

/* YN tiles for yes/no steps */
.yn-options{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin:16px 0}
.yn-tile{background:var(--theme-bg-base,#ffffff);border:2px solid var(--theme-border-panel,#e5e7eb);border-radius:10px;padding:20px;cursor:pointer;transition:all .2s ease;min-height:120px;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center}
.yn-tile:hover{border-color:var(--theme-accent-color,#1a5a99);background:var(--theme-bg-hover,#f3f4f6);transform:translateY(-2px)}
.yn-tile.selected{border-color:var(--theme-accent-color,#1a5a99);box-shadow:0 0 0 2px rgba(26,90,153,.25)}
.yn-title{color:var(--theme-fg-header,#333);font-size:1.2rem;margin:0 0 8px;font-weight:700}
.yn-desc{color:var(--theme-fg-muted,#666);font-size:.9rem;margin:0}

/* Inline controls for guided steps (hinge location, etc) */
.guided-inline-controls{margin-top:10px;display:flex;gap:10px;align-items:center}
.guided-inline-controls label{color:var(--theme-fg-muted,#666);font-size:13px}
.guided-inline-controls select{background:var(--theme-bg-base,#ffffff);color:var(--theme-fg-base,#333);border:1px solid var(--theme-border-panel,#e5e7eb);border-radius:6px;padding:6px 8px;font-size:13px}
.guided-inline-controls select:focus{outline:none;border-color:var(--theme-accent-color,#1a5a99)}

/* Hardware tile specific styles */
.modal .hardware-tile-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:transparent}
.modal .hardware-color-info{display:flex;align-items:center;gap:6px;margin-top:6px;color:var(--theme-fg-muted,#666);font-size:.85rem}

/* Ensure hardware tile text uses theme variables */
.modal .hardware-tile-title,
.modal .hardware-tile-content h3,
.modal .hardware-tile-content h4 {
  color: var(--theme-fg-header, #333) !important;
}

.modal .hardware-tile-description,
.modal .hardware-tile-content p {
  color: var(--theme-fg-muted, #666) !important;
}

.modal .hardware-tile-content {
  color: var(--theme-fg-base, #333);
}

.modal .hardware-tile-content * {
  color: inherit;
}

.modal .hardware-tile-content strong {
  color: var(--theme-fg-header, #333);
}

/* Detail buttons in modal */
.modal .tile-details-btn,
.modal .door-tile-overlay .tile-details-btn,
.modal .hardware-tile-overlay .tile-details-btn,
.modal .drawer-tile-overlay .tile-details-btn,
.modal .case-material-tile-overlay .tile-details-btn,
.modal .cabinet-tile-overlay .tile-details-btn {
  background: var(--theme-bg-button, #f3f4f6) !important;
  border: 1px solid var(--theme-border-button, #d1d5db) !important;
  color: var(--theme-fg-button, #374151) !important;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}

.modal .tile-details-btn:hover,
.modal .door-tile-overlay .tile-details-btn:hover,
.modal .hardware-tile-overlay .tile-details-btn:hover,
.modal .drawer-tile-overlay .tile-details-btn:hover,
.modal .case-material-tile-overlay .tile-details-btn:hover,
.modal .cabinet-tile-overlay .tile-details-btn:hover {
  background: var(--theme-bg-button-hover, #e5e7eb) !important;
  border-color: var(--theme-accent-color, #1a5a99) !important;
  color: var(--theme-accent-color, #1a5a99) !important;
}

/* Dark mode overrides for guided setup modal */
body.theme-dark .guided-step-content {
  background: var(--theme-bg-panel, #1c2330) !important;
  color: var(--theme-fg-base, #e2e8f0) !important;
  border-color: var(--theme-border-panel, #2a3442) !important;
}

body.theme-dark .guided-step-title {
  color: var(--theme-fg-header, #e2e8f0) !important;
}

body.theme-dark .guided-step-subtitle {
  color: var(--theme-fg-muted, #94a3b8) !important;
}

body.theme-dark .category-option {
  background: var(--theme-bg-panel, #1c2330) !important;
  border-color: var(--theme-border-panel, #2a3442) !important;
}

body.theme-dark .category-option h4 {
  color: var(--theme-fg-header, #e2e8f0) !important;
}

body.theme-dark .category-option p {
  color: var(--theme-fg-muted, #94a3b8) !important;
}

body.theme-dark .door-style-tile,
body.theme-dark .hardware-tile,
body.theme-dark .drawer-tile,
body.theme-dark .case-material-tile,
body.theme-dark .cabinet-tile {
  background: var(--theme-bg-panel, #1c2330) !important;
  border-color: var(--theme-border-panel, #2a3442) !important;
}

body.theme-dark .door-tile-title,
body.theme-dark .hardware-tile-title,
body.theme-dark .drawer-tile-title,
body.theme-dark .case-material-tile-title,
body.theme-dark .cabinet-tile-title {
  color: var(--theme-fg-header, #e2e8f0) !important;
}

body.theme-dark .door-tile-description,
body.theme-dark .hardware-tile-description,
body.theme-dark .drawer-tile-description,
body.theme-dark .case-material-tile-description,
body.theme-dark .cabinet-tile-description {
  color: var(--theme-fg-muted, #94a3b8) !important;
}

body.theme-dark .yn-tile {
  background: var(--theme-bg-panel, #1c2330) !important;
  border-color: var(--theme-border-panel, #2a3442) !important;
}

body.theme-dark .yn-title {
  color: var(--theme-fg-header, #e2e8f0) !important;
}

body.theme-dark .yn-desc {
  color: var(--theme-fg-muted, #94a3b8) !important;
}

body.theme-dark .guided-inline-controls label {
  color: var(--theme-fg-muted, #94a3b8) !important;
}

body.theme-dark .guided-inline-controls select {
  background: var(--theme-bg-base, #243142) !important;
  color: var(--theme-fg-base, #e2e8f0) !important;
  border-color: var(--theme-border-panel, #364b63) !important;
}

body.theme-dark .hardware-color-info {
  color: var(--theme-fg-muted, #94a3b8) !important;
}

body.theme-dark .tile-details-btn {
  background: var(--theme-bg-button, #243142) !important;
  border-color: var(--theme-border-button, #364b63) !important;
  color: var(--theme-fg-button, #e2e8f0) !important;
}

body.theme-dark .modal .tile-details-btn,
body.theme-dark .modal .door-tile-overlay .tile-details-btn,
body.theme-dark .modal .hardware-tile-overlay .tile-details-btn,
body.theme-dark .modal .drawer-tile-overlay .tile-details-btn,
body.theme-dark .modal .case-material-tile-overlay .tile-details-btn,
body.theme-dark .modal .cabinet-tile-overlay .tile-details-btn {
  background: var(--theme-bg-button, #243142) !important;
  border-color: var(--theme-border-button, #364b63) !important;
  color: var(--theme-fg-button, #e2e8f0) !important;
}

body.theme-dark .modal .hardware-tile-title,
body.theme-dark .modal .hardware-tile-content h3,
body.theme-dark .modal .hardware-tile-content h4 {
  color: var(--theme-fg-header, #e2e8f0) !important;
}

body.theme-dark .modal .hardware-tile-description,
body.theme-dark .modal .hardware-tile-content p {
  color: var(--theme-fg-muted, #94a3b8) !important;
}

body.theme-dark .modal .hardware-tile-content {
  color: var(--theme-fg-base, #e2e8f0) !important;
}

body.theme-dark .modal .hardware-tile-content strong {
  color: var(--theme-fg-header, #e2e8f0) !important;
}

body.theme-dark .modal .guided-step-title {
  color: var(--theme-fg-header, #e2e8f0) !important;
}

body.theme-dark .modal .guided-step-subtitle {
  color: var(--theme-fg-muted, #94a3b8) !important;
}

body.theme-dark .modal .guided-nav-button.secondary {
  border-color: var(--theme-border-button, #364b63) !important;
  color: var(--theme-fg-muted, #94a3b8) !important;
}

body.theme-dark .modal .category-option {
  background: var(--theme-bg-base, #1c2330) !important;
  border-color: var(--theme-border-panel, #2a3442) !important;
}

body.theme-dark .modal .category-option h4 {
  color: var(--theme-fg-header, #e2e8f0) !important;
}

body.theme-dark .modal .category-option p {
  color: var(--theme-fg-muted, #94a3b8) !important;
}

body.theme-dark .modal .door-style-tile,
body.theme-dark .modal .hardware-tile,
body.theme-dark .modal .drawer-tile,
body.theme-dark .modal .case-material-tile,
body.theme-dark .modal .cabinet-tile {
  background: var(--theme-bg-base, #1c2330) !important;
  border-color: var(--theme-border-panel, #2a3442) !important;
}

body.theme-dark .modal .door-tile-title,
body.theme-dark .modal .hardware-tile-title,
body.theme-dark .modal .drawer-tile-title,
body.theme-dark .modal .case-material-tile-title,
body.theme-dark .modal .cabinet-tile-title {
  color: var(--theme-fg-header, #e2e8f0) !important;
}

body.theme-dark .modal .door-tile-description,
body.theme-dark .modal .hardware-tile-description,
body.theme-dark .modal .drawer-tile-description,
body.theme-dark .modal .case-material-tile-description,
body.theme-dark .modal .cabinet-tile-description {
  color: var(--theme-fg-muted, #94a3b8) !important;
}

body.theme-dark .modal .door-style-tile:hover,
body.theme-dark .modal .hardware-tile:hover,
body.theme-dark .modal .drawer-tile:hover,
body.theme-dark .modal .case-material-tile:hover,
body.theme-dark .modal .cabinet-tile:hover {
  background: var(--theme-bg-hover, #2a3442) !important;
}

body.theme-dark .modal .tile-details-btn:hover,
body.theme-dark .modal .door-tile-overlay .tile-details-btn:hover,
body.theme-dark .modal .hardware-tile-overlay .tile-details-btn:hover,
body.theme-dark .modal .drawer-tile-overlay .tile-details-btn:hover,
body.theme-dark .modal .case-material-tile-overlay .tile-details-btn:hover,
body.theme-dark .modal .cabinet-tile-overlay .tile-details-btn:hover {
  background: var(--theme-bg-button-hover, #2a3a4d) !important;
  border-color: var(--theme-accent-color, #1a5a99) !important;
  color: var(--theme-accent-color, #1a5a99) !important;
}

/* Light mode overrides for guided setup modal - ensure light theme works */
body.theme-light .modal .guided-step-content {
  background: var(--theme-bg-panel, #f9fafb) !important;
  color: var(--theme-fg-base, #333) !important;
  border-color: var(--theme-border-panel, #e5e7eb) !important;
}

body.theme-light .modal .guided-step-title {
  color: var(--theme-fg-header, #1a5a99) !important;
}

body.theme-light .modal .guided-step-subtitle {
  color: var(--theme-fg-muted, #666) !important;
}

body.theme-light .modal .guided-nav-button.secondary {
  border-color: var(--theme-border-button, #d1d5db) !important;
  color: var(--theme-fg-muted, #666) !important;
}

body.theme-light .modal .category-option {
  background: var(--theme-bg-base, #ffffff) !important;
  border-color: var(--theme-border-panel, #e5e7eb) !important;
}

body.theme-light .modal .category-option h4 {
  color: var(--theme-fg-header, #333) !important;
}

body.theme-light .modal .category-option p {
  color: var(--theme-fg-muted, #666) !important;
}

body.theme-light .modal .door-style-tile,
body.theme-light .modal .hardware-tile,
body.theme-light .modal .drawer-tile,
body.theme-light .modal .case-material-tile,
body.theme-light .modal .cabinet-tile {
  background: var(--theme-bg-base, #ffffff) !important;
  border-color: var(--theme-border-panel, #e5e7eb) !important;
}

body.theme-light .modal .door-tile-title,
body.theme-light .modal .hardware-tile-title,
body.theme-light .modal .drawer-tile-title,
body.theme-light .modal .case-material-tile-title,
body.theme-light .modal .cabinet-tile-title {
  color: var(--theme-fg-header, #333) !important;
}

body.theme-light .modal .door-tile-description,
body.theme-light .modal .hardware-tile-description,
body.theme-light .modal .drawer-tile-description,
body.theme-light .modal .case-material-tile-description,
body.theme-light .modal .cabinet-tile-description {
  color: var(--theme-fg-muted, #666) !important;
}

body.theme-light .modal .hardware-tile-content,
body.theme-light .modal .hardware-tile-content * {
  color: var(--theme-fg-base, #333) !important;
}

body.theme-light .modal .hardware-tile-title,
body.theme-light .modal .hardware-tile-content h3,
body.theme-light .modal .hardware-tile-content h4 {
  color: var(--theme-fg-header, #333) !important;
}

body.theme-light .modal .hardware-tile-description,
body.theme-light .modal .hardware-tile-content p {
  color: var(--theme-fg-muted, #666) !important;
}

body.theme-light .modal .hardware-tile-content strong {
  color: var(--theme-fg-header, #333) !important;
}

body.theme-light .modal .hardware-color-info {
  color: var(--theme-fg-muted, #666) !important;
}

body.theme-light .modal .door-style-tile:hover,
body.theme-light .modal .hardware-tile:hover,
body.theme-light .modal .drawer-tile:hover,
body.theme-light .modal .case-material-tile:hover,
body.theme-light .modal .cabinet-tile:hover {
  background: var(--theme-bg-hover, #f3f4f6) !important;
}

body.theme-light .modal .category-option:hover {
  background: var(--theme-bg-hover, #f3f4f6) !important;
}

body.theme-light .modal .tile-details-btn,
body.theme-light .modal .door-tile-overlay .tile-details-btn,
body.theme-light .modal .hardware-tile-overlay .tile-details-btn,
body.theme-light .modal .drawer-tile-overlay .tile-details-btn,
body.theme-light .modal .case-material-tile-overlay .tile-details-btn,
body.theme-light .modal .cabinet-tile-overlay .tile-details-btn {
  background: var(--theme-bg-button, #f3f4f6) !important;
  border-color: var(--theme-border-button, #d1d5db) !important;
  color: var(--theme-fg-button, #374151) !important;
}

body.theme-light .modal .hardware-tile-overlay .tile-details-btn:hover,
body.theme-light .modal .drawer-tile-overlay .tile-details-btn:hover,
body.theme-light .modal .case-material-tile-overlay .tile-details-btn:hover,
body.theme-light .modal .cabinet-tile-overlay .tile-details-btn:hover {
  background: var(--theme-bg-button-hover, #e5e7eb) !important;
  border-color: var(--theme-accent-color, #1a5a99) !important;
  color: var(--theme-accent-color, #1a5a99) !important;
}

/* Light mode overrides for hardware tile image backgrounds */
body.theme-light .modal .hardware-tile-image,
body.theme-light .modal .door-tile-image,
body.theme-light .modal .drawer-tile-image,
body.theme-light .modal .case-material-tile-image,
body.theme-light .modal .cabinet-tile-image {
  background: var(--theme-bg-base, #ffffff) !important;
}

/* Dark mode overrides for hardware tile image backgrounds */
body.theme-dark .modal .hardware-tile-image,
body.theme-dark .modal .door-tile-image,
body.theme-dark .modal .drawer-tile-image,
body.theme-dark .modal .case-material-tile-image,
body.theme-dark .modal .cabinet-tile-image {
  background: var(--theme-bg-base, #1c2330) !important;
}

/* Light mode overrides for cabinet overview (Step 6) */
body.theme-light .modal .cabinet-overview .co-illustration {
  background: var(--theme-bg-base, #ffffff) !important;
  border-color: var(--theme-border-panel, #e5e7eb) !important;
}

body.theme-light .modal .cabinet-overview .co-explain {
  background: var(--theme-bg-panel, #ffffff) !important;
  border-color: var(--theme-border-panel, #e5e7eb) !important;
  color: var(--theme-fg-base, #333) !important;
}

body.theme-light .modal .cabinet-overview .co-explain h4 {
  color: var(--theme-fg-header, #333) !important;
}

body.theme-light .modal .cabinet-overview .co-list li {
  color: var(--theme-fg-base, #333) !important;
}

body.theme-light .modal .cabinet-overview .co-illustration .co-placeholder {
  color: var(--theme-fg-muted, #666) !important;
}

body.theme-light .modal .cabinet-overview .co-num {
  background: var(--theme-accent-color, #1a5a99) !important;
  color: #fff !important;
}

/* Dark mode overrides for cabinet overview (Step 6) */
body.theme-dark .modal .cabinet-overview .co-illustration {
  background: var(--theme-bg-base, #0f172a) !important;
  border-color: var(--theme-border-panel, #1f2937) !important;
}

body.theme-dark .modal .cabinet-overview .co-explain {
  background: var(--theme-bg-panel, #0b1220) !important;
  border-color: var(--theme-border-panel, #1f2937) !important;
  color: var(--theme-fg-base, #e2e8f0) !important;
}

body.theme-dark .modal .cabinet-overview .co-explain h4 {
  color: var(--theme-fg-header, #e2e8f0) !important;
}

body.theme-dark .modal .cabinet-overview .co-list li {
  color: var(--theme-fg-base, #cbd5e1) !important;
}

body.theme-dark .modal .cabinet-overview .co-illustration .co-placeholder {
  color: var(--theme-fg-muted, #cbd5e1) !important;
}

body.theme-dark .modal .cabinet-overview .co-num {
  background: var(--theme-bg-button, #1f2937) !important;
  color: var(--theme-accent-color, #93c5fd) !important;
}

/* Door tile specific styles */
.door-tile-placeholder{background:var(--theme-bg-base,#1c2330);border:1px dashed var(--theme-border-panel,#2a3442);color:var(--theme-fg-muted,#94a3b8);font-size:2rem;display:flex;align-items:center;justify-content:center}
.drawer-tile-placeholder{background:var(--theme-bg-base,#1c2330);border:1px dashed var(--theme-border-panel,#2a3442);color:var(--theme-fg-muted,#94a3b8);font-size:2rem;display:flex;align-items:center;justify-content:center}


/* ========================================
   MODAL SYSTEM STYLES
   Core styles for guided setup modal
   ======================================== */

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  z-index: 10000;
}

.modal[style*="display: block"],
.modal[style*="display:block"] {
  display: flex !important;
}

.modal-dialog {
  width: min(1360px, 98vw);
  max-height: 86vh;
  background: var(--theme-bg-panel, #1c2330);
  color: var(--theme-fg-base, #e2e8f0);
  border: 1px solid var(--theme-border-panel, #2a3442);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.modal-header {
  padding: 10px 12px;
  border-bottom: 1px solid var(--theme-border-panel, #2a3442);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.modal-header h3 {
  color: var(--theme-fg-header, #e2e8f0);
  margin: 0;
}

.modal-close {
  background: transparent;
  border: 0;
  color: var(--theme-fg-muted, #94a3b8);
  font-size: 22px;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--theme-fg-base, #e2e8f0);
}

.modal-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tab-button {
  background: var(--theme-bg-base, #1c2330);
  border: 1px solid var(--theme-border-panel, #2a3442);
  color: var(--theme-fg-base, #cbd5e1);
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
}

.tab-button:hover {
  background: var(--theme-bg-hover, #2a3442);
  border-color: var(--theme-border-hover, #364b63);
}

.tab-button.active {
  background: var(--theme-accent-color, #1a5a99);
  border-color: var(--theme-accent-color, #1a5a99);
  color: #fff;
}

.modal-body {
  padding: 12px;
  overflow: auto;
  flex: 1;
  color: var(--theme-fg-base, #e2e8f0);
}

.tab-content {
  display: none;
  color: var(--theme-fg-base, #e2e8f0);
}

.tab-content.active {
  display: block;
}

/* Modal form elements - ensure proper colors */
.modal select,
.modal input[type="text"],
.modal input[type="number"],
.modal textarea {
  background: var(--theme-bg-input, var(--theme-bg-base, #1c2330));
  color: var(--theme-fg-input, var(--theme-fg-base, #e2e8f0));
  border: 1px solid var(--theme-border-input, var(--theme-border-panel, #2a3442));
}

.modal label {
  color: var(--theme-fg-base, #e2e8f0);
}

.modal p {
  color: var(--theme-fg-base, #e2e8f0);
}

/* Door/Window modal detail styles */
.modal .detail-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 450px 1fr;
  align-items: start;
}

@media (max-width: 1100px) {
  .modal .detail-grid {
    grid-template-columns: 1fr;
  }
}

.modal .detail-info {
  color: var(--theme-fg-base, #e2e8f0);
}

.modal .detail-info h3 {
  color: var(--theme-fg-header, #e2e8f0);
  margin-top: 0;
  margin-bottom: 12px;
}

.modal .detail-info h4 {
  color: var(--theme-fg-header, #e2e8f0);
  margin-top: 16px;
  margin-bottom: 8px;
}

.modal .detail-description {
  color: var(--theme-fg-base, #e2e8f0);
  line-height: 1.6;
  margin-bottom: 16px;
}

.modal .detail-features {
  color: var(--theme-fg-base, #e2e8f0);
}

.modal .detail-features ul {
  color: var(--theme-fg-base, #e2e8f0);
  margin: 8px 0;
  padding-left: 20px;
}

.modal .detail-features li {
  color: var(--theme-fg-base, #e2e8f0);
  margin-bottom: 6px;
}

.modal .detail-specs {
  color: var(--theme-fg-base, #e2e8f0);
}

.modal .detail-specs > div {
  color: var(--theme-fg-base, #e2e8f0);
}

.modal .image-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.modal .image-gallery img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--theme-border-panel, #2a3442);
  background: var(--theme-bg-base, #1c2330);
}

/* Override inline styles in modal content */
.modal [style*="color:#666"],
.modal [style*="color: #666"] {
  color: var(--theme-fg-muted, #94a3b8) !important;
}

.modal [style*="background:#f8f9fa"],
.modal [style*="background: #f8f9fa"] {
  background: var(--theme-bg-panel, #1c2330) !important;
  color: var(--theme-fg-base, #e2e8f0) !important;
}

.modal [style*="border:2px solid #ddd"],
.modal [style*="border: 2px solid #ddd"] {
  border-color: var(--theme-border-panel, #2a3442) !important;
}

.modal [style*="background:#007cba"],
.modal [style*="background: #007cba"] {
  background: var(--theme-accent-color, #1a5a99) !important;
}

.modal [style*="background:#fff"],
.modal [style*="background: #fff"] {
  background: var(--theme-bg-base, #1c2330) !important;
  color: var(--theme-fg-base, #e2e8f0) !important;
}

.modal [style*="color:#007cba"],
.modal [style*="color: #007cba"] {
  color: var(--theme-accent-color, #1a5a99) !important;
}

/* Guided details overlay for "more details" buttons */
.guided-details-overlay {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2147483000;
}

.guided-details-overlay.visible {
  display: block;
}

.guided-details-overlay .gdo-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
}

.guided-details-overlay .gdo-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 960px;
  margin: 0 auto;
  background: #0b1220;
  color: #e2e8f0;
  border: 1px solid #1f2937;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  padding: 16px;
  display: flex;
  flex-direction: column;
  max-height: 78vh;
  overflow: hidden;
}

.guided-details-overlay .gdo-close {
  position: absolute;
  top: 6px;
  right: 8px;
  border: 0;
  background: transparent;
  color: #94a3b8;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 880px) {
  .guided-details-overlay .gdo-panel {
    left: 12px;
    right: 12px;
  }
  
  .guided-details-overlay .gdo-content {
    grid-template-columns: 1fr;
  }
  
  .modal-dialog {
    width: 96vw;
    max-height: 90vh;
  }
  
  .modal-body {
    padding: 8px;
  }
}

/* ====================================
   MILESTONE 4 PHASE 7: UNDO/REDO UI
   ==================================== */

.undo-redo-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--theme-bg-panel, #f8fafc);
  border: 1px solid var(--theme-border-panel, #e2e8f0);
  border-radius: 8px;
  margin-top: 16px;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.undo-redo-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--theme-bg-base, #ffffff);
  border: 1px solid var(--theme-border-panel, #cbd5e1);
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  color: var(--theme-fg-base, #1e293b);
  transition: all 0.2s ease;
}

.undo-redo-btn:hover:not(:disabled) {
  background: var(--theme-bg-hover, #f1f5f9);
  border-color: var(--theme-border-hover, #94a3b8);
  transform: translateY(-1px);
}

.undo-redo-btn:active:not(:disabled) {
  transform: translateY(0);
}

.undo-redo-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.undo-redo-btn .btn-icon {
  font-size: 18px;
  font-weight: bold;
}

.undo-redo-btn .btn-label {
  font-weight: 500;
}

.history-status {
  margin-left: auto;
  font-size: 12px;
  color: var(--theme-fg-muted, #64748b);
  font-weight: 500;
}

/* Keyboard Shortcuts Help */
.keyboard-shortcuts-btn {
  padding: 6px 10px;
  background: var(--theme-bg-base, #ffffff);
  border: 1px solid var(--theme-border-panel, #cbd5e1);
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s ease;
  margin-left: 8px;
}

.keyboard-shortcuts-btn:hover {
  background: var(--theme-bg-hover, #f1f5f9);
  transform: scale(1.1);
}

.keyboard-shortcuts-tooltip {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--theme-bg-panel, #ffffff);
  border: 1px solid var(--theme-border-panel, #cbd5e1);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 320px;
  padding: 16px;
}

.keyboard-shortcuts-tooltip.hidden {
  display: none;
}

.shortcuts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--theme-border-panel, #e2e8f0);
}

.shortcuts-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-fg-base, #1e293b);
}

.shortcuts-header .close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--theme-fg-muted, #64748b);
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  line-height: 1;
}

.shortcuts-header .close-btn:hover {
  color: var(--theme-fg-base, #1e293b);
}

.shortcuts-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shortcut-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}

.shortcut-item kbd {
  display: inline-block;
  padding: 4px 8px;
  background: var(--theme-bg-base, #f8fafc);
  border: 1px solid var(--theme-border-panel, #cbd5e1);
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--theme-fg-base, #334155);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  min-width: 24px;
  text-align: center;
}

.shortcut-item span {
  color: var(--theme-fg-base, #475569);
  flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .undo-redo-toolbar {
    flex-wrap: wrap;
  }
  
  .undo-redo-btn .btn-label {
    display: none;
  }
  
  .keyboard-shortcuts-tooltip {
    right: auto;
    left: 0;
  }
}

/* Reopen Doors & Windows Button */
.reopen-doors-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  margin-top: 12px;
  background: var(--theme-accent, #3b82f6);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.reopen-doors-btn:hover {
  background: var(--theme-accent-hover, #2563eb);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}

.reopen-doors-btn:active {
  transform: translateY(0);
}

.reopen-doors-btn .btn-icon {
  font-size: 18px;
}

.reopen-doors-btn .btn-label {
  flex: 1;
  text-align: left;
}

/* ===================================================================
   PHASE 8: COLLISION DETECTION CONTROLS
   =================================================================== */

.collision-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  margin-top: 16px;
  background: var(--theme-bg-panel, #f8fafc);
  border: 1px solid var(--theme-border-panel, #e2e8f0);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.collision-control-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.collision-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-text-primary, #1e293b);
  user-select: none;
}

.collision-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--theme-accent, #3b82f6);
}

.collision-label .label-text {
  flex: 1;
}

.collision-hint {
  font-size: 12px;
  color: var(--theme-text-secondary, #64748b);
  margin-left: 26px;
  line-height: 1.4;
}

.collision-label:hover {
  color: var(--theme-accent, #3b82f6);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .collision-controls {
    padding: 12px;
    gap: 10px;
  }

  .collision-label {
    font-size: 13px;
  }

  .collision-hint {
    font-size: 11px;
  }
}

/* ===================================================================
   BOTTOM TOOLBAR STYLING (Below 3D Viewer)
   =================================================================== */

#designer-toolbar {
  flex: 0 0 auto; /* Don't grow or shrink - fixed height */
  background: var(--theme-bg-panel, #fff);
  border-bottom: 1px solid var(--theme-border-panel, #e2e8f0);
  padding: 8px 12px;
  min-height: 0;
}

#designer-toolbar button,
#designer-toolbar label {
  color: var(--theme-fg-base, #1e293b);
}

#designer-toolbar .toolbar-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

#bottom-toolbar-container {
  flex: 0 0 auto; /* Don't grow or shrink - fixed height */
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  min-height: 0;
}

.undo-redo-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  flex-shrink: 0;
}

.undo-redo-btn {
  padding: 3px 6px;
  font-size: 11px;
  border: 1px solid var(--theme-border-panel);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

.undo-redo-btn:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.05);
}

.undo-redo-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.undo-redo-btn .btn-icon {
  font-size: 12px;
}

.undo-redo-btn .btn-label {
  font-size: 10px;
}

.history-status {
  font-size: 9px;
  color: var(--theme-fg-muted);
  padding: 0 3px;
}

#designer-status-line {
  flex: 0 0 auto; /* Don't grow or shrink - fixed height */
  min-height: 0;
}

.reopen-doors-btn {
  padding: 3px 8px;
  font-size: 10px;
  margin: 0;
  box-shadow: none;
  border-radius: 3px;
  flex-shrink: 0;
  background: var(--theme-accent-color, #3b82f6);
  color: white;
  border: 1px solid var(--theme-accent-color, #3b82f6);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  width: auto; /* Don't stretch to full width */
}

.reopen-doors-btn .btn-icon {
  font-size: 12px;
}

.reopen-doors-btn .btn-label {
  font-size: 10px;
}

.reopen-doors-btn:hover {
  background: var(--theme-accent-hover, #2563eb);
  border-color: var(--theme-accent-hover, #2563eb);
  opacity: 0.95;
}

.reopen-doors-btn:active {
  transform: translateY(0);
  opacity: 1;
}

/* Keyboard Shortcuts Button & Tooltip */
.keyboard-shortcuts-btn {
  padding: 3px 6px;
  font-size: 14px;
  background: transparent;
  border: 1px solid var(--theme-border-panel);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.keyboard-shortcuts-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.keyboard-shortcuts-tooltip {
  position: absolute;
  bottom: 100%; /* Position ABOVE the button */
  left: 0;
  margin-bottom: 8px; /* Space between button and tooltip */
  background: var(--theme-bg-panel);
  border: 1px solid var(--theme-border-panel);
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 280px;
  max-width: 320px;
}

.keyboard-shortcuts-tooltip.hidden {
  display: none;
}

.shortcuts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--theme-border-panel);
}

.shortcuts-header h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.shortcuts-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shortcut-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.shortcut-item kbd {
  padding: 2px 6px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid var(--theme-border-panel);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}

.shortcut-item span {
  flex: 1;
  text-align: right;
  color: var(--theme-fg-muted);
}

.collision-controls {
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10px 16px;
  gap: 16px;
}

.collision-control-item {
  flex-direction: row;
  gap: 8px;
  margin: 0;
}

.collision-hint {
  display: none; /* Hide hints in compact toolbar */
}

/* ========== Drag and Drop Enhancements ========== */

/* Cabinet Select Dropdown (drag feature disabled - use "Drag to Canvas" button) */
#designer-cabinet-select {
  cursor: default;
}

#designer-cabinet-select option {
  padding: 4px;
}

#designer-cabinet-select option:hover {
  background-color: var(--theme-accent-color, #1a5a99);
  color: white;
}

/* Drag Target Highlight */
#viewerContainer.drag-target {
  outline: 3px dashed var(--theme-accent-color, #1a5a99);
  outline-offset: -6px;
  background-color: rgba(26, 90, 153, 0.05);
}

/* Opening Preset Buttons Draggable */
.opening-preset-btn {
  cursor: grab;
  transition: opacity 0.2s ease;
}

.opening-preset-btn:active {
  cursor: grabbing;
}

/* ========== Context Menu ========== */

.context-menu {
  position: fixed;
  background: #1e293b !important; /* Dark background for light text */
  border: 1px solid #334155;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
  padding: 6px;
  z-index: 10000;
  min-width: 200px;
}

.context-menu-item {
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 13px;
  color: #e2e8f0; /* Light text */
  background: transparent;
  transition: background-color 0.15s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.context-menu-item:hover {
  background-color: #334155;
  color: #ffffff;
}

.context-menu-item .icon {
  font-size: 14px;
  width: 18px;
  text-align: center;
  opacity: 0.9;
}

.context-menu-item .label {
  flex: 1;
}

.context-menu-divider {
  height: 1px;
  background-color: #334155;
  margin: 4px 6px;
}


/* 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 
   * 