/* Global */
* {
  box-sizing: border-box;
}

html, body {
  -webkit-text-size-adjust: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: inherit;
  font-style: inherit;
  font-size: 16px;
  color: #474849;
  margin: 0;
  padding: 0;
}

#bg {
  position: relative;
  min-height: 100vh;
}

#topbar {
  background-color: #000;
  color: #fff;
  overflow: hidden;
  z-index: 2;
  position: fixed; /* Set top section to a fixed position */
  width: 100%;
  top: 0;
}

#logo {
  margin-top: 10px;
  margin-left: 20px;
  margin-bottom: 10px;
  float: left;
}

#logo a {text-decoration: none; color: #ffffff;}

#menu ul {
  font-weight: bold;
  z-index: 3;
  margin-top: 28px;
  float: right;
}

#menu li {
  display: inline;
  padding-right: 18px;
}

#menu a {text-decoration: none; color: #ffffff;}
#menu a:visited {color: #ffffff;}
#menu a:hover {color: silver;}

a {text-decoration: none; color: #1570A6;}
a:visited {color: #1570A6;}
a:hover {color: red;}

#splash {
  overflow: auto;
  background-color: #fff;
  padding-top: 75px;
  padding-bottom: 175px;
}

/* Change the #splash position when the screen width is 522px or smaller */
/* regular: 522px, bold: 535px */
@media only screen and (max-width:535px) {
  #splash {
    padding-top: 135px;
  }
}

#flaxitxt {
  position: relative;
  top: 30px;
  width: 100%;
  font-size: 36px;
  text-align: center;
}

.spec {
  position: relative;
  text-align: center;
  font-size: 36px;
}

.spectxt {
  margin-top: 10px;
  margin-bottom: 100px;
  margin-left: 20%;
  margin-right: 20%;
}

#midsec {
  width: 90%;
  background-color: white;
  text-align: justify;
  margin: auto;
}

#bottombar {
  background-color: #000;
  color: #fff;
  font-size: 14px;
  position: absolute;
  height: 175px;
  width: 100%;
  bottom: 0;
  padding-top: 4px;
  padding-bottom: 20px;
}

#bottombar a {text-decoration: none;color: #ffffff;}
#bottombar a:visited {color: #ffffff;}
#bottombar a:hover {color: silver;}

.note {
  font-size: 12px;
}

label{
  font-size: 14px;
}

input[type='text'], input[type='email'], select, textarea {
  width: 100%;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 12px;
  resize: vertical;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 10px;
}

.button::-moz-focus-inner{
  border: 0;
  padding: 0;
}

.button{
  display: inline-block;
  *display: inline;
  zoom: 1;
  padding: 6px 20px;
  margin: 0;
  cursor: pointer;
  border: 1px solid #bbb;
  overflow: visible;
  font: bold 13px arial, helvetica, sans-serif;
  text-decoration: none;
  white-space: nowrap;
  color: #555;
  
  background-color: #ddd;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,1)), to(rgba(255,255,255,0)));
  background-image: -webkit-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
  background-image: -moz-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
  background-image: -ms-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
  background-image: -o-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
  background-image: linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0));
  
  -webkit-transition: background-color .2s ease-out;
  -moz-transition: background-color .2s ease-out;
  -ms-transition: background-color .2s ease-out;
  -o-transition: background-color .2s ease-out;
  transition: background-color .2s ease-out;
  background-clip: padding-box; /* Fix bleeding */
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .3), 0 2px 2px -1px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .3) inset;
  text-shadow: 0 1px 0 rgba(255,255,255, .9);
  
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button:hover{
  background-color: #eee;
  color: #555;
}

.button:active{
  background: #e9e9e9;
  position: relative;
  top: 1px;
  text-shadow: none;
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
}

/* Small button style */

.button.small{
  padding: 4px 12px;
}

/* Large button style */

.button.large{
  padding: 12px 30px;
  text-transform: uppercase;
}

.button.large:active{
  top: 2px;
}

/* Colored buttons styles */

.button.green, .button.red, .button.blue {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0,0,0,.2);
  
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.3)), to(rgba(255,255,255,0)));
  background-image: -webkit-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
  background-image: -moz-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
  background-image: -ms-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
  background-image: -o-linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
  background-image: linear-gradient(top, rgba(255,255,255,.3), rgba(255,255,255,0));
}

/* */

.button.blue{
  background-color: #269CE9;
  border-color: #269CE9;
}

.button.blue:hover{
  background-color: #70B9E8;
}

.button.blue:active{
  background: #269CE9;
}
