/* CSS rules shared between frontend and backend appMenu.tpl files */
#divApp {
  padding: 0;
  background-color: #000000;
  color: #ffffff;
  overflow: auto;
}
#divLogoBG {
  width: 100%;
  height: 30%;
  background: url('/LogoBG.png') no-repeat;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  background-size: 100% 100%;
  /* reserve space, color added later */
  border-bottom: 1px solid transparent;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}
#divLogo {
  height: 100%;
  background: url('/Logo.png') no-repeat center;
  background-size: contain;
  image-rendering: auto;
}
#divMenu li a:hover, li a:focus {
  text-decoration: none;
}

#divMenu ul {
  list-style-type: none;
  font-size: 200%;
}

.divMenuGrid {
  text-align: center;
}

.divMenuGrid ul {
  font-size: 1rem;
  margin-top: 1em;
  padding: 0;
}

.divMenuGrid li {
  width: 100%;
  max-width: 150px;
  height: 120px;
  display: inline-block;
  vertical-align: top;
}
.divMenuGrid li a {
  display: block;
  font-size: 2rem;
  text-align: center;
  overflow: hidden;
}

.divMenuGrid li .fafes {
  display: block;
  font-size: 5rem;
  margin: 0 auto .1em;
}

