/* =========================================================
   CapDiz CSS2
   Refactored with comments and logical flow
   Notes:
   - This refactor preserves current behavior as much as possible.
   - Rules were reorganized, duplicate blocks reduced, and comments added.
   - A few truly duplicate declarations were consolidated.
   ========================================================= */


/* ======================================================
   CapDiz Main Stylesheet (css2.css)

   Sections:
   1. Global Reset
   2. Typography
   3. Links
   4. Forms
   5. Layout
   6. Navigation
   7. Utilities
   8. Components
   9. Page-specific styles
   10. Responsive rules

   Last major refactor: 2026
====================================================== */



/* =========================================================
   1. GLOBAL RESET / SAFETY
   ========================================================= */

* {
  box-sizing: border-box;
  font-family: arial, helvetica, sans-serif;
  max-width: 100%;
  color: inherit; /* IMPORTANT: removes forced purple */
}

html {
}

body {
  background-color: #f7f8fb; /* soft off-white with slight cool tone */
  margin: 0;
  font-size: 10.5pt;
  font-weight: 500;
  color: #222222;
}

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


/* =========================================================
   2. GLOBAL TYPOGRAPHY / DEFAULT ELEMENTS
   ========================================================= */

p {
  text-indent: 0in;
  font-size: 10.5pt;
  font-weight: 500;
  line-height: 1.55;
  margin: 10px 0 14px 0;
}

ul {
  font-weight: 400;
  line-height: 1.3;
  margin: 8px 0 14px 0;
}

small {
  font-size: 10px;
}

sup {
  font-size: 9px;
}

pre {
  font-size: 11pt;
  font-weight: 500;
  padding: 1px;
}

hr {
  height: 2px;
  color: #963;
}

h1,
h2 {
  margin: 4px;
  text-align: center;
  display: block;
  line-height: 107%;
}

h3,
h4,
h5,
h6 {
  margin: 4px;
  text-align: left;
  display: block;
  line-height: 107%;
}

h1,
h2,
h3 {
  margin-top: 18px;
  margin-bottom: 10px;
}

h1 {
  font-size: 20pt;
  font-weight: 600;
}

h2 {
  font-size: 18pt;
  font-weight: 500;
}

h3 {
  font-size: 15pt;
  font-weight: 400;
}

h4 {
  font-size: 14pt;
}

h5 {
  font-size: 13pt;
}

h6 {
  font-size: 12pt;
}

legend {
  font-size: 13pt;
  font-weight: 600;
  text-align: left;
  padding: 0 6px;
}

fieldset {
  width: 90%;
  max-width: 920px;
  margin: 0 auto 18px;
  padding: 6px;
  border-radius: 4px;
}

td {
}

tr {
  vertical-align: top;
}

table {
  font-size: 12pt;
  font-weight: 600;
}

table.menu {
  text-align: left;
}

td.price {
  text-align: right;
}


/* =========================================================
   3. GLOBAL LINKS
   ========================================================= */

/* Default / shared link styling */
a,
a:visited,
.tblLinks a,
.tblLinks a:visited,
.capdiz-table a,
.capdiz-table a:visited {
  color: #0645AD;
  text-decoration: none;
}

/* Shared hover styling */
a:hover,
.tblLinks a:hover,
.capdiz-table a:hover {
  color: #3366CC;
  text-decoration: underline;
}

/* Active click */
a:active {
  color: #CC0000;
}


/* =========================================================
   4. FORMS / INPUTS
   ========================================================= */

input,
textarea,
select {
  font-size: 12px;
  color: #333;
  border: 1px solid #11E;
  padding: 2px;
  margin-bottom: 4px;
  border-radius: 4px;
  background-color: #AFD;
}

input[type=button],
input[type=submit],
input[type=reset] {
  background-color: #FC9;
  color: #30F;
  font-size: 9pt;
}

option:nth-child(odd) {
  background-color: #FF6;
}

input:focus,
textarea:focus,
option:focus,
select:focus,
a:focus {
  background-color: #FCC;
}

input[type=submit]:focus,
input[type=button]:focus {
  background-color: #FFF;
  color: #F00;
}

#txtGoogleSearch {
  font-size: 12pt;
  font-weight: 700;
  padding: 4px 2px;
  margin: 5px 1px;
  border: 2px blue solid;
}

#divForm input[type="text"],
#divForm select {
  font-size: 10pt;
  width: 180px;
  border-color: #33C;
}


/* =========================================================
   5. CORE LAYOUT WRAPPERS
   ========================================================= */

#main {
  margin: auto;
}

#divMain {
  background-color: #f7f8fb; /* off white content area */
  border: 1px solid #d8dee6;
  line-height: 107%;
  max-width: 1000px;
  text-align: left;
  margin: 18px auto;
  border-radius: 10px;

  /* subtle modern shadow */
  box-shadow: 0 3px 14px rgba(0,0,0,0.06);
}


p {
  font-size: 10.5pt;
  font-weight: 500;
  line-height: 1.6;
  margin: 10px 0 14px 0;
  color: #222222;
}

#bqMain p,
#indexPage #bqMain p,
#pContents p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 1em;
  color: #222222;
}


#inner {
  width: 99%;
  max-width: 100%;
  margin: auto;
  min-height: 500px;
  padding: 0;
}

.content,
#content {
  min-height: 100vh;
}

#bqMain {
  width: 100%;
  max-width: 760px;
  margin: 1.5rem auto 0 auto;
  padding: 0 16px;
  text-align: left;
}

#pContents {
  max-width: 760px;
  margin: 0 auto;
}

#pContents p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 1em;
}

#pContents li {
  font-size: 17px;
  line-height: 1.6;
}

#pContents ul,
#pContents ol {
  margin: 0 0 1em 1.25em;
}

#pContents h1 {
  margin: 0 0 .4em;
}

#pContents h2 {
  margin: 1.3em 0 .5em;
}

#pContents h3 {
  margin: 1.1em 0 .4em;
}


/* =========================================================
   6. DEFAULT CONTENT WIDTHS INSIDE #inner
   ========================================================= */

#inner p {
  margin: 5px 0;
}

#inner blockquote {
  margin: 12px 0;
  font-size: 100%;
}

#inner p,
#inner ul,
#inner ol,
#inner blockquote {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

#inner ul,
#inner ol {
  padding-left: 2em;
}


/* =========================================================
   7. HEADER / PAGE TITLES / PICTURE BLOCKS
   ========================================================= */

/* =========================================================
   Header Layout
   ========================================================= */


#header_center {
  width: 78%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background-color: #f7f8fb;

}


#header_search_row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 0;
  width: 100%;
}

#tbTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

#header_left {
  width: 11%;
}

#header_right {
  width: 11%;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  padding-top: 6px;
}

#header_right a {
  display: inline-flex;
  align-items: center;
}

#lighthouse {
  float: none;
  width: auto;
  margin: 0;
  flex: 0 0 auto;
  position: relative;
  top: -2px;
}

#lighthouse img {
  display: block;
}



#divSearchbox {
  display: flex;
  justify-content: center;
  margin: 0;
  flex: 1 1 auto;
  max-width: 620px;
}

#divSearchbox .gcse-searchbox-only,
#divSearchbox .gsc-control-cse,
#divSearchbox form,
#divSearchbox table {
  margin: 0 auto !important;
}

#divPicture {
  padding: 12px 0;
  border-bottom: 2px solid #111;
  max-width: 600px;
  margin: 0 auto;
}

#divPicture img {
  display: block;
  margin: 0 auto 14px;
  max-width: 100%;
  height: auto;
}

#divPicture .caption {
  font-size: 0.9em;
  color: #444;
  text-align: center;
}

#Caption {
  font-weight: 600;
  font-size: 15pt;
  display: block;
  text-align: center;
  line-height: 1.2;
  padding: 6px 8px 0 8px;
  max-width: 760px;
  margin: 0 auto 12px auto;
}


#Caption,
#Breadcrumbs,
.post-date {
  color: #555555;
}

#ATitle {
  font-size: 28pt;
  font-weight: 700;
  letter-spacing: 1.6px;
  margin: 6px 0 2px 0;
  line-height: 1.2;
  color: #003366;
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

#siteTagline {
  font-size: 14pt;
  color: #555;
  margin: 2px 0 2px 0;
  line-height: 1.2;
}

#TitleH1 {
  font-size: 18pt;
  font-weight: 500;
  text-decoration: none;
  color: #00E;
  line-height: 110%;
 
}

.title {
  font-style: normal;
  font-size: 11pt;
  font-weight: 600;
}


/* =========================================================
   8. NAVIGATION / MENUS
   ========================================================= */

#nav {
  list-style-type: none;
  height: 40px;
}

#nav li {
  float: left;
  padding-bottom: 0;
}

#nav ul li a {
  color: #222;
}

#nav ul li a:hover {
  color: #0645AD;
  background-color: #dff4ff;
}

#nav a {
  background-repeat: no-repeat;
  background-position: right;
  padding: 0 15px;
  display: block;
  line-height: 40px;
  text-decoration: none;
  font-size: 14px;
  color: #333;
}

#nav a:hover {
  color: #0645AD;
  text-decoration: underline;
}


li h3 {
  color: #30C;
  font-style: italic;
}

#divCategoriesLinks {
  padding-bottom: 8px;
}

/* ===== Top menu wrapper ===== */

div#divCategoriesLinksFlex {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  position: relative;

  background: linear-gradient(to bottom, #f5f9ff, #eaf2fb);
  border: 1px solid #d6e2f0;
  border-radius: 8px;

  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  min-height: 42px;
  

}

/* ===== Top-level menu item ===== */


div.divTop {
  flex: 1;
  position: relative;
  text-align: center;
  border-right: 1px solid #d6e2f0;
  min-width: 0;
}

div.divTop > a {
  display: block;
  height: 42px;
  line-height: 42px;

  color: #003366;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;

  border-right: 1px solid #dde6f2;
}

div.divTop:last-child > a {
  border-right: none;
}

div.divTop > a:hover {
  background-color: #e3efff;
  color: #1a5fd0;
}


/* ===== Dropdown container ===== */
div.divHidden {
  display: none;        /* IMPORTANT */
  position: absolute;   /* IMPORTANT */
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  border: 1px solid #d8dee6;
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* ===== Show dropdown on hover ===== */
div.divTop:hover > div.divHidden {
  display: block;
}

/* ===== Dropdown links ===== */
a.aHidden {
  display: block;
  padding: 8px 10px;
  line-height: 1.3;
  text-decoration: none;
  color: #222222;
  background-color: #ffffff;
  border-top: 1px solid #eef1f4;
}

a.aHidden:visited {
  color: #222222;
}

a.aHidden:hover {
  background-color: #f5f9ff;
  color: #1a5fd0;
  text-decoration: underline;
}



li.nav1,
span.nav1 {
  background-color: #E7D798;
  height: 20px;
  border-style: solid;
  border-width: thin;
  width: 180px;
  border-bottom: none;
}

li.nav1 {
  list-style-type: none;
}

.des {
  font-style: italic;
  font-size: 9pt;
  font-weight: 500;
}

.text {
  font-size: 12pt;
  font-family: arial;
}


#Links {
  max-width: 760px;
  margin: 12px auto 0 auto;
  text-align: left;
}


#Links .AButton {
  display: inline-block;
  margin: 6px 6px 6px 0;
}

#Links h5 {
  margin: 16px 0 8px 0;
  font-size: 15px;
  text-align: left;
}

#LinksLarge a {
  display: block;
  padding: 10px 12px;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  color: #003366;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-left: 4px solid #0055aa;
  border-radius: 4px;
}

#LinksLarge {
  list-style: none;
  padding-left: 0;
}

#LinksLarge li {
  margin-bottom: 10px;
}

#LinksLarge a:hover {
  background-color: #e6f0ff;
  border-color: #b8c9ec;
  transform: translateX(2px);
}


#Breadcrumbs {
  max-width: 760px;
  margin: 12px auto 14px auto;
  padding: 0 10px;
  font-size: 13px;
  line-height: 1.4;
  color: #666;
  text-align: left;
}

#Breadcrumbs a {
  color: #3f5c8a;
  text-decoration: none;
}

#Breadcrumbs a:hover {
  text-decoration: underline;
}
/* =========================================================
   9. SLIDE / MOBILE MENU
   ========================================================= */

#navSlide {
  z-index: 100;
}

#navSlide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  cursor: pointer;
}

#SlideMenu {
  display: none;
  position: absolute;
  width: 94%;
  left: 3%;
  box-sizing: border-box;
  z-index: 100;
  background-color: #f7f7f2;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  margin-top: 8px;
}

#SlideMenu a {
  display: block;
  line-height: 1.35;
  min-height: 30px;
  font-size: 15px;
  text-align: left;
  padding: 12px 4%;
  color: #222;
  text-decoration: none;
  background-color: #f7f7f2;
  border-top: 1px solid #e5e5e5;
  box-sizing: border-box;
  transition: background-color 0.15s ease, color 0.15s ease;
}

#SlideMenu a.sl {
  font-size: 14px;
  padding-left: 10%;
  display: none;
	
}

#SlideMenu a:last-child {
  border-bottom: none;
}


#SlideMenu a.sub {
  padding-left: 12%;
  font-size: 15px;
}

#SlideMenu a:hover {
  background-color: #eaf2ff;
  color: #0645AD;
  text-decoration: underline;
}

#SlideMenu a:last-child {
  border-bottom: 1px solid #d9d9d9;
}

.yesShow {
  display: none;
}

#navSlide,
#SlideMenu,
.yesShow {
  display: none;
}

/* =========================================================
   10. FOOTER
   ========================================================= */

#divFooter,
#divFooter *,
#divFooter a {
  font-size: 10px;
}

#divFooter {
  padding: 6px;
  border-top: 1.5px solid navy;
  margin-top: 8px;
}

#divFooter a {
  color: black;
  text-decoration: none;
}

#divFooter a:visited {
  color: black;
}

#divFooter a:hover {
  text-decoration: underline;
}


/* =========================================================
   11. GENERIC UTILITY CLASSES
   ========================================================= */

.floatleft {
  float: left;
  width: 50%;
}

.img {
  display: block;
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 0 auto 10px auto;
  box-sizing: border-box;
}

.main-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #222222;
}

.main-content p {
  margin-bottom: 1.05rem;
}

.main-content img,
fieldset img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto 1.25rem auto;
}

img.img-wide {
  max-width: 720px;
}

img.img-thumb {
  max-width: 220px;
  margin: 1rem auto;
}

.AButton {
  display: inline-block;
  padding: 8px 14px;
  margin: 6px 0;
  font-size: 14px;
  font-weight: 600;
  
  background-color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s ease;
}

.AButton:hover {
  background-color: #dddddd;
  transform: translateY(-1px);
}

.AButton:active {
  transform: translateY(0);
}

.AButton.ReturnButton {
  margin-top: 12px;
}

/* =========================================================
   12. TABLES / LINK LISTS
   ========================================================= */

table.tblLinks {
  margin-left: 10px;
}

.tblLinks a {
  font-size: 9pt;
  font-weight: 500;
}



/* =========================================================
   13. SITE-WIDE COMPONENTS
   ========================================================= */

/* ----- CapDiz Standard Table ----- */

.capdiz-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 18px 0;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;

}


/* Header */
.capdiz-table thead th {
  background-color: #eef3f9; /* soft blue-gray */
  font-weight: 600;
  border-bottom: 2px solid #cfd8e3;
  color: #003366;
}

/* Cells */
.capdiz-table td,
.capdiz-table th {
  padding: 10px 12px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e5eaf0;
}

/* Alternating rows */
.capdiz-table tbody tr:nth-child(even) {
  background-color: #f8fafc; /* very light gray-blue */
}

/* Hover (nice subtle effect) */
.capdiz-table tbody tr:hover {
  background-color: #eef4ff;
}

/* Text weight cleanup */
.capdiz-table td {
  font-weight: 400;
}

.capdiz-table td:first-child a {
  font-weight: 500;
}



.capdiz-table a {
  font-weight: normal;
}


/* ----- Info box ----- */
.info-box {
  background: #f5f5f5;
  padding: 12px 16px;
  border-left: 4px solid #2c5aa0;
  margin: 20px 0;
}

/* ----- Map embed ----- */
.map-embed {
  max-width: 760px;
  margin: 20px auto;
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 8px;
  display: block;
}

/* ----- Video embed ----- */
.video-embed {
  max-width: 760px;
  margin: 20px auto;
}

.video-embed video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.video-embed figcaption {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
  line-height: 1.4;
}

.video-embed video:hover {
  transform: scale(1.01);
  transition: transform 0.2s ease;
}


/* =========================================================
   14. WEATHER COMPONENTS
   ========================================================= */

.wx-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.wx-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.wx-current {
  font-size: 1.4em;
  font-weight: bold;
}

.wx-forecast th:first-child,
.wx-forecast td:first-child {
  width: 160px;
}

.wx-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 6px 0 10px 0;
}

.wx-pill {
  flex: 1 1 160px;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  padding: 8px 10px;
  background: #fff;
}

.wx-pill-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.wx-pill-name {
  font-weight: bold;
}

.wx-pill-temp {
  font-weight: bold;
  white-space: nowrap;
}

.wx-pill-brief {
  font-size: 0.95em;
  line-height: 1.25;
  color: #333;
}

.wx-pill img {
  display: inline-block;
  vertical-align: middle;
}

.wx-winter {
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  margin: 8px 0 10px 0;
}

.wx-winter-title {
  font-weight: bold;
  margin-bottom: 2px;
}

.wx-winter-text {
  font-size: 0.95em;
  line-height: 1.35;
  color: #333;
}




/* =========================================================
   16. MAIN STORY / HOME / ARTICLE CONTENT
   ========================================================= */

.main-content ul,
.main-content ol {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0 0 1.1rem 1.4rem;
  padding: 0;
}

.main-content li {
  font-size: 1.0625rem;
  line-height: 1.65;
  margin: 0 0 0.55rem 0;
}

.post-date {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.75rem;
  margin-bottom: 0;
  text-align: center;
  font-style: italic;
}

.archive-link {
  margin: 0.75rem 0 0.25rem 0;
  font-size: 0.95rem;
}

#bqMain ul,
#bqMain ol {
  margin: 0.6rem 0 1rem 1.4rem;
  padding-left: 1.2rem;
  font-size: 1.0625rem;
  line-height: 1.65;
}

#bqMain li {
  margin-bottom: 0.9rem;
  font-weight: 300;
}

#bqMain li b,
#bqMain li strong,
#bqMain ul li,
#bqMain ol li {
  font-weight: 400;
}

#indexPage #bqMain p,
#bqMain p {
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 0.85rem;
  font-weight: 400;
}


/* =========================================================
   17. EVENT LISTS / SPECIAL DIRECTORY LISTS
   ========================================================= */

.event-list {
  list-style-type: disc;
  list-style-position: inside;
  width: 300px;
  margin: 0 auto;
}

.event-list li {
  margin-bottom: 8px;
}

.event-list a {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
  text-decoration: none;
  color: #003366;
  letter-spacing: 0.2px;
}

.event-list a:hover {
  text-decoration: underline;
  color: #0055aa;
}

.ski-wrap .cards .card {
  border-bottom: 1px solid #999 !important;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.ski-wrap .cards .card:last-child {
  border-bottom: none !important;
  margin-bottom: 0;
  padding-bottom: 0;
}


/* =========================================================
   19. RSS / GOOGLE SEARCH / MISC PAGE WIDGETS
   ========================================================= */

#divRSSFeeds a,
#divRSSFeeds li,
#divRSSFeeds p {
  font-size: 9pt;
  font-weight: 600;
}

#divRSSFeeds legend {
  font-size: 15pt;
  font-weight: 600;
}

#divRSSFeeds fieldset {
  text-align: left;
  padding: 2px;
  margin: 2%;
}

#divSearchbox {
  margin-top: 10px;
  margin-bottom: 10px;
}

.gsc-control-cse .gsc-search-box td.gsc-input {
  width: 260px !important;
}

.gsc-control-cse .gsc-input-box,
.gsc-control-cse input.gsc-input {
  height: 36px !important;
  font-size: 16px !important;
  padding: 6px 10px !important;
  box-sizing: border-box;
}

.gsc-control-cse .gsc-input-box {
  padding: 0 !important;
}

input.gsc-search-button,
button.gsc-search-button {
  height: 36px !important;
  padding: 0 18px !important;
  font-size: 16px !important;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  background-color: #333;
  color: #fff;
}

input.gsc-search-button:hover,
button.gsc-search-button:hover {
  background-color: #555;
}


/* =========================================================
   20. RESPONSIVE ADJUSTMENTS
   ========================================================= */

/* ---------------------------------------------------------
   Up to 1400px
   --------------------------------------------------------- */
@media screen and (max-width: 1400px) {
  #inner {
    width: 100%;
    min-height: 300px;
  }

  #inner p {
    margin: 12px;
  }

  #inner li {
    margin-bottom: 10px;
  }

  #inner ul,
  #inner ol {
    margin: 12px;
    padding-left: 1.5em;
  }

  #tbTop {
    display: block;
    width: 100%;
  }

  #header_left,
  #header_center,
  #header_right {
    width: 100% !important;
    float: none !important;
    text-align: center;
    margin: 0 auto;

  }

  #header_right {
    margin-top: 8px;
    justify-content: center;
  }

  #lighthouse {
    display: none;
  }

  #divSearchbox {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px auto;
  }

  #divSearchbox .gcse-searchbox-only,
  #divSearchbox .gsc-control-cse,
  #divSearchbox form,
  #divSearchbox table {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #header_search_row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
    width: 100%;
  }

  #Caption {
    display: block;
    line-height: 1.2;
    padding: 6px 8px 0 8px;
    text-align: center;
  }

}

/* ---------------------------------------------------------
   Up to 900px
   --------------------------------------------------------- */

@media screen and (max-width: 900px) {
  body {
    font-size: 9.8pt;
  }

  #inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  #inner p {
    line-height: 1.55;
    margin-bottom: 14px;
  }

  #bqMain {
    max-width: 80%;
    margin: 1rem auto 0 auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  .capdiz-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    font-size: 0.92em;
  }

  .capdiz-table th,
  .capdiz-table td {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.4;
    padding: 8px 8px;
  }

  /* Hide desktop top menu on mobile */
  div#divCategoriesLinksFlex,
  .noShow {
    display: none;
  }

  /* Show mobile menu trigger/items */
  .yesShow {
    display: block;
  }

  #navSlide {
    display: block;
    width: 100%;
    position: relative;
  }

  #Breadcrumbs {
    font-size: 12px;
    padding: 0 12px;
  }
}


/* ---------------------------------------------------------
   Up to 560px
   --------------------------------------------------------- */
@media screen and (max-width: 560px) {
  #tblContact tr td:first-child {
    display: none;
  }

  #tblContact tr td:last-child {
    width: 100%;
  }

  .floatleft {
    float: none;
    width: 100% !important;
  }

  #inner p {
    margin: 8px;
  }

  #inner ul,
  #inner ol {
    margin: 8px;
    padding-left: 2%;
  }

  #ATitle {
    font-size: 14pt;
    margin: 2px 2px 10px 2px;
    line-height: 1.2;
    height: auto;
  }

  input#txtGoogleSearch {
    width: 75%;
  }

  .yesShow {
    display: block;
  }

  #header_center {
    width: 90%;
  }

  #header_right {
    width: 10%;
  }

  
  h2 {
    font-size: 15pt;
  }

  h3 {
    font-size: 13pt;
  }

  #bqMain {
    max-width: 80%;
    margin: 1rem auto 0 auto;
    padding-left: 3px;
    padding-right: 3px;
  }

  #TitleH1 {
    font-size: 16pt;
  }

  #tblContact td:first-child {
    width: 23%;
  }

  #divForm input[type="text"],
  #divForm select {
    width: 90%;
    height: 32px;
  }
}
