/* Global styles */
html, body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
  font-family: Acumin, sans-serif;
}

body {
  min-height: 100vh;
  min-width: 100vw;
}

/* Page view styles */
div.page-view {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100vh;
  width: 100%;
}

div.page-view > div.logo {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 50;
  width: 200px;
  padding: 10px;
  text-align: center;
}

div.page-view > div.logo > a {
  color: #fff;
  text-decoration: none;
}

div.page-view > div.logo > a > img {
  border: 0;
}

div.page-view > div.header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 5px 25px;
  background-color: #333;
  color: #fff;
}

div.page-view > div.main {
  flex-grow: 1;
  padding: 10px 20px;
}

div.page-view > div.footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  padding: 5px 25px;
  background-color: #333;
  color: #fff;
  font-size: 9pt;
}

div.page-view > div.header > div.logo {
  order: 1;
  width: 200px;
  font-size: 14pt;
  font-weight: bold;
}

div.page-view > div.header > div.logo > a {
  color: #fff;
  text-decoration: none;
}

div.page-view > div.header > div.title {
  order: 2;
  flex-grow: 1;
}

div.page-view > div.header > div.menu-pulldown {
  order: 3;
  position: relative;
  width: 200px;
  text-align: right;
}

div.page-view > div.footer > div.links > a {
  color: #fff;
  font: inherit;
  text-decoration: none;
}

div.page-view > div.footer > div.links img {
  height: 16px;
  width: 16px;
  padding: 5px;
}
