/* Rules the WordPress page applied inline to elements that are generated at
   runtime by JavaScript, so they don't appear in the static markup.

   #mysticky-wrap is created on scroll by the mystickymenu plugin, which is
   configured to clone #main-header. The site suppresses it — the page has its
   own sticky nav — so without this rule the theme's header reappears on scroll.

   .page-breadcrumbs / .subpage-banner are rendered on interior pages only, and
   are kept here so this file stays reusable as a template for those pages. */
#mysticky-wrap   { display: none; }
.page-breadcrumbs{ display: none; }
.subpage-banner  { display: none; }
