/* Fixes issue that caused sub-menus in superfish to display on page load before being hidden */
/* Please see JS injector for JavaScript code to accompany this */

/* Hide the sub-menus initially */
#superfish-main .sf-depth-1 > ul {
  display: none;
  visibility: hidden;
}

/* A helper class we will add via JS later */
body.page-loaded #superfish-main .sf-depth-1 > ul {
  display: block;
  visibility: visible;
}