* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	background-color: white;
	margin: 0;
	padding: 0;
}
body {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body, input, select, textarea {
	font-family: "Helvetica", "Arial", sans-serif;
	font-size: 12pt;
}

@media print {
  body, input, select, textarea {
	font-size: 10pt;
  }
}

h1, h2, h3, h4, h5, h6, main, section, article, aside, summary, details, figure {
  margin: 10px 0 5px 0;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}
h1 {
  font-size: 200%;
}
h2 {
  font-size: 160%;
}
h3 {
  font-size: 145%;
}
h4 {
  font-size: 130%;
}
h5 {
  font-size: 115%;
}
h6 {
  font-size: 100%;
}

p {
  margin-bottom: 1em;
  width: 100%;
}
ul, li {
	list-style-position: outside;
	margin-left: .25in;
}

body {
  background-color: white;
}
body, input, select, textarea {
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 12pt;
}
@media print {
  body, input, select, textarea {
    font-size: 10pt;
  }
}

/*----------------------------------------------------------------------------------------------------
 * Whole page
 *----------------------------------------------------------------------------------------------------*/
.page {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0 10px;
}
@media only screen and (min-width: 961px) { /* Desktop Styles */
  .page {
    width: 961px;
  }
}
@media print {
  .page {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
  }
}

.page hr {
  width: 100%;
  border: none;
  height: 1px;
  background-color: #90aa9e;
}

/*----------------------------------------------------------------------------------------------------
 * Header (banner)
 *----------------------------------------------------------------------------------------------------*/
header {
  align-items: center;
  background-color: white;	
  display: flex;
  height: 75px;
  justify-content: left;
  position: relative;
  width: 100%;
}
header nav {
  position: absolute;
  top: 18px;
  right: 0px;
  z-index: 1;
}

.title-header {
  align-items: center;
  background-color: white;	
  display: flex;
  height: 75px;
  justify-content: left;
  padding-left: 10px;
  position: relative;
  width: 100%;
}
.title-header nav {
  position: absolute;
  top: 15px;
  right: 0px;
  z-index: 1;
}

/*----------------------------------------------------------------------------------------------------
 * Navigation
 *----------------------------------------------------------------------------------------------------*/
.nav-bars {
  border-radius: 7px;
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 0 6px;
  z-index: 1;
}
.nav-bar1, .nav-bar2, .nav-bar3 {
  background-color: #333;
  height: 5px;
  margin: 6px 0;
  transition: 0.4s;
  width: 35px;
}
.nav-bars.active .nav-bar1, header nav:hover .nav-bar1, .title-header nav.active .nav-bar1 { /* Rotate first bar */
  -webkit-transform: rotate(45deg) translate(6px, 8px);
  transform: rotate(45deg) translate(6px, 8px);
}
.nav-bars.active .nav-bar2, header nav:hover .nav-bar2, .title-header nav.active .nav-bar2 { /* Fade out the second bar */
  opacity: 0;
}
.nav-bars.active .nav-bar3, header nav:hover .nav-bar3, .title-header nav.active .nav-bar3 { /* Rotate last bar */
  -webkit-transform: rotate(-45deg) translate(7px, -10px);
  transform: rotate(-45deg) translate(7px, -10px);
}
header nav .nav-list, .title-header nav .nav-list {
	display: none;
}
header nav.active .nav-list, .title-header nav.active .nav-list  {
	display: block;
}
.nav-list {
  background-color: white;
  border: 1px solid black;
  clear: both;
  padding: 0 10px;
}
.nav-list li {
  border-radius: 3px;
  font-size: 125%;
  list-style-type: none;
  padding: 10px;
  margin: 2px 0;
}
.nav-list a {
  color: black;
  text-decoration: none;
}
.nav-list li:hover {
  background-color: #5995DA;
  color: white;
}
.nav-list li:hover a {
  color: white;
}
.nav-sub {
  background: url("../../images/1x1.gif") repeat-y left; 
  padding-left: 5px;
}

/*----------------------------------------------------------------------------------------------------
 * Errors
 *----------------------------------------------------------------------------------------------------*/
.form-error {
	color: red;
	padding-bottom: 5px;
}
