@charset "UTF-8";
/* CSS Document */

body {
  text-align: center;
  margin: 0;
  background: #152E53;
  color: #404040;
  font-family: sans-serif;
  font-size: 8pt;
}
a {
  color: #000;
  text-decoration: underline;
}
a:hover {
  color: #000;
  text-decoration: none;
}

#content {
  width: 801px;
  height: 469px;
}

/* On small devices, fill the entire screen and hide the rest of the page. */
@media (max-device-width: 8in), (max-device-height: 8in) {
  html {
	/* Prevent scrollbars from causing a resize feedback loop. */
	overflow: hidden;
  }
  html, body {
	height: 100%;
  }
  #content {
	height: 100%;
	width: 100%;
	margin: inherit;
	box-shadow: none;
  }
  .no-mobile {
	display: none;
  }
}