<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#menu, #menu ul {
  font-family: Arial, Helvetica, sans-serif;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: static;
  display: none;
}
#menu li {
  display: inline-block;
  float: left;
  margin-right: 1px;
  margin-bottom: 1px;
}
#menu li a {
  display: block;
  min-width: 140px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  background: #666;
  text-decoration: none;
}
#menu li:hover a {
  background: #f90;
}
#menu li:hover ul a {
  background: #f3f3f3;
  color: #444;
  height: 40px;
  line-height: 40px;
}
#menu li:hover ul a:hover {
  background: #fa3;
  color: #fff;
}
#menu li ul {
  display: none;
}
#menu li ul li {
  display: block;
  float: none;
}
#menu li ul li a {
  width: auto;
  min-width: 100px;
  padding: 0 20px;
}
#menu li a:hover + .hidden, .hidden:hover {
  display: block !important;
}
.show-menu {
  text-decoration: none;
  text-align: center;
}
#show-menu-cb {
  display: none;
}
#show-menu-cb:checked ~ #menu {
  display: block;
}
#menu li, li a {
  width: 100%;
}
.headerWithMenu {
  margin: 0 auto;
  text-align: center;
}
.headerWithMenu div {
  margin: 0 auto;
  display: table;
}
.headerWithMenu div &gt; label:hover {
  cursor: pointer;
}
.headerWithMenu div &gt; * {
  padding: 8px;
  display: table-cell;
  vertical-align: middle;
}
</pre></body></html>