﻿#Sand {
  background-image: linear-gradient(#d1c9c9, #ecd8b8);
}
.serif {
  font-family: 'Roboto Slab', serif;
}
.header {
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
}
#Brand {
  cursor: pointer;
}
* {
  padding: 0px;
  margin: 0px;
}
body {
  font-family: 'Roboto Slab', serif;
}
h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  font-size: 3.5em;
  color: #069;
  border-bottom: 1px solid #069;
  margin-bottom: 25px;
}
h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  font-size: 2.5em;
  color: #716658;
}
h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  font-size: 2em;
  color: #fff;
}
h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  font-size: 1.5em;
  color: #fff;
}
h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: normal;
  font-size: 1.25em;
  color: #fff;
}
p,
ol,
ul {
  margin: 10px 0px;
}
strong {
  color: #716658;
}
a {
  color: #26a5b0;
  font-weight: bold;
  text-decoration: none;
}
a:hover {
  color: #aaf8ff;
  transition: color linear 0.25s;
}
input[type='text'],
input[type='email'],
input[type='password'],
input[type='file'],
input[type='date'],
input[type='time'],
select,
textarea {
  width: 100%;
  height: 45px;
  font-family: 'Roboto Slab', serif;
  color: #26a5b0;
  background-color: #ffeedd;
  border-top: 2px solid #ccbbaa;
  border-right: 2px solid #ffffee;
  border-bottom: 2px solid #ffffee;
  border-left: 2px solid #ccbbaa;
  padding: 5px 8px;
  margin-bottom: 10px;
}
button,
input[type='submit'],
input[type='button'] {
  width: 100%;
  height: 45px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  color: #fff;
  background-color: #716658;
  transition: background-color linear 0.25s;
  border: 1px solid #000;
  padding: 10px 15px;
  /* added 05/08/2019 to prevent stacking buttons from touching */
}
input[type='button'].Delete {
  background-color: #900;
}
input[type='button'].Delete:hover {
  background-color: #f00;
  transition: background-color linear 0.25s;
}
input[type='submit']:disabled,
input[type='button']:disabled {
  width: 100%;
  height: 45px;
  cursor: none;
  background-color: #999;
  /* added 05/08/2019 to prevent stacking buttons from touching */
}
input[type='submit']:disabled:hover,
input[type='button']:disabled:hover {
  cursor: not-allowed;
  color: #fff;
  transition: background-color linear 0.25s;
  border: 1px solid #000;
  padding: 10px 15px;
}
button:hover,
input[type='submit']:hover,
input[type='button']:hover {
  background-color: #26a5b0;
}
button:disabled,
input[type='submit']:disabled,
input[type='button']:disabled {
  height: 45px;
  cursor: none;
  background-color: #d9d9d9;
}
.Submit {
  background-color: #153c64;
}
.Warning {
  border: 2px solid #f00;
}
.Warning:hover {
  border: 2px solid #fc0;
  transition: border linear 0.25s;
}
input[type='button'].Cancel,
.Cancel {
  background-color: #999;
}
input[type='button'].Cancel:hover,
.Cancel:hover {
  background-color: #333;
  transition: background-color linear 0.25s;
}
#Footer {
  position: relative;
  width: 100%;
  max-width: 2000px;
  min-height: 470px;
  background-image: url(/images/background-footer.jpg?v=1.1);
  background-size: cover;
}
#AddressWrapper {
  position: absolute;
  width: 100%;
  top: 375px;
  left: 0px;
}
#Wrapper {
  display: none;
  z-index: 20;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 128, 128, 0.75);
}
#ForegroundFocus {
  display: none;
  z-index: 25;
  text-align: left;
  width: 20px;
  color: #036;
  overflow: hidden;
  background-color: #fff;
  padding: 10px;
  margin-right: auto;
  margin-left: auto;
  -moz-box-shadow: 5px 5px 15px #000;
  -webkit-box-shadow: 5px 5px 15px #000;
  box-shadow: 5px 5px 15px #000;
  /* For IE 8 */
  -ms-filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#666666');
  /* For IE 5.5 - 7 */
  filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#666666');
}
#LoadingAnimation {
  display: none;
  z-index: 50;
  width: 144px;
  height: 144px;
  overflow: hidden;
  background: transparent url(/images/animate.sun.png) no-repeat;
}