<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Open dropdowns on hover instead of click.
 */

/*@media (min-width: 768px) {*/

.sp-header .dropdown:hover &gt; .dropdown-menu {
  display: block;
}

/*}*/

/*
 * The following is needed since the dropdowns are &lt;div&gt; elements instead
 * of &lt;a&gt; elements
 */

.sp-header .nav &gt; li &gt; div {
  position: relative;
  display: block;
  padding: 10px 15px;
  cursor: default;
}

.sp-header .navbar-nav &gt; li &gt; div {
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 20px;
}

.sp-header .navbar-collapse.collapse {
  display: none;
}</pre></body></html>