@charset "utf-8";
/*****************
* @this - Styles for objects found throughout the whole site.
*****************/

/* CSS Document */

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Hind', sans-serif;
  font-size: 100%;
  margin: 0px;
  background-color: #2b63a0;
  display: flex;
  flex-direction: column;
}

h1 {
  margin: 10px 0;
  line-height: 1.3em;
}

h2 {
  font-size: 22px;
}

p {
  margin: 5px 0;
  line-height: 1.2;
}

a, a:visited {
  color: #0066C0;
  text-decoration: none;  
}

a:hover {
  color: #900;
  text-decoration: none;
}

legend {
  font-weight: bold;
}

input, select, option, textarea {
  background-color: #FFFFF8;
  border-radius: 5px;
}

input {
  padding-left: 5px;
  padding-right: 5px;
}

option {
  padding: 2px 8px;
}

#site_container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: url('../images/white-trans-gradient.png') repeat-x top;
}

#content_container {
  max-width: 480px;
  margin: auto;
  background-color: rgba(255,255,255,0.92);
  padding: 20px;
  border-radius: 10px;
}

.helpertext {
  font-size: 80%;
  font-style: italic;
}

.greenButton,
.greenButton_small {
  display: inline-block;
  margin: 5px 5px 5px 0px;
  padding: 4px 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  white-space: nowrap;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  cursor: pointer;
  text-decoration: none;

  /*Background*/
  background-color: #9AC63C;
  background-image: -moz-linear-gradient(top, #679010, #9AC63C);
  background-image: -ms-linear-gradient(top, #679010, #9AC63C);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#679010), to(#9AC63C));
  background-image: -webkit-linear-gradient(top, #679010, #9AC63C);
  background-image: -o-linear-gradient(top, #679010, #9AC63C);
  background-image: linear-gradient(top, #679010, #9AC63C);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#679010', endColorstr='#9AC63C', GradientType=0);

  /*Border*/
  border: 1px solid;
  border-color: #9AC63C #9AC63C #000000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.greenButton_small {
  font-size: 14px;
}

.greenButton:hover,
.greenButton_small:hover {
  color: #FFF;
  background-color: #9AC63C;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -ms-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}

.greenButton:visited,
.greenButton_small:visited {
  color: #FFF;
}

.redButton,
.redButton_small {
  display: inline-block;
  margin: 5px 5px 5px 0px;
  padding: 4px 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  white-space: nowrap;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  cursor: pointer;
  text-decoration: none;

  /*Background*/
  background-color: #f20a00;
  background-image: -moz-linear-gradient(top, #AA0300, #f20a00);
  background-image: -ms-linear-gradient(top, #AA0300, #f20a00);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#AA0300), to(#f20a00));
  background-image: -webkit-linear-gradient(top, #AA0300, #f20a00);
  background-image: -o-linear-gradient(top, #AA0300, #f20a00);
  background-image: linear-gradient(top, #AA0300, #f20a00);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AA0300', endColorstr='#f20a00', GradientType=0);
  
  /*Border*/
  border: 1px solid;
  border-color: #f20a00 #f20a00 #000000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.redButton_small {
  font-size: 14px;
}

.redButton:hover,
.redButton_small:hover {
  color: #FFF;
  background-color: #f20a00;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -ms-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}

.redButton:visited,
.redButton_small:visited {
  color: #FFF;
}

.blueBtnWhiteSt,
.blueBtnWhiteSt_small {
  display: inline-block;
  box-shadow: inset 0 1px 3px #DDD;
  text-shadow: 1px 1px 2px rgb(0 0 0 / 40%);
  border-radius: 5px;
  border: solid 2px;
  padding: 10px 15px;
  font-weight: bold;
  color: #FFF;
  text-decoration: none;
  cursor: pointer;

  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#63b6db+0,309dcf+100;Blue+3D+%234 */
  background: rgb(99,182,219); /* Old browsers */
  background: -moz-linear-gradient(top,  rgba(99,182,219,1) 0%, rgba(48,157,207,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(99,182,219,1) 0%,rgba(48,157,207,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(99,182,219,1) 0%,rgba(48,157,207,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#63b6db', endColorstr='#309dcf',GradientType=0 ); /* IE6-9 */
}

.blueBtnWhiteSt:hover,
.blueBtnWhiteSt_small:hover {
  color: #FFF;
  background: rgb(48,157,207); /* Old browsers */
  background: -moz-linear-gradient(top,  rgba(48,157,207,1) 0%, rgba(99,182,219,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(48,157,207,1) 0%,rgba(99,182,219,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(48,157,207,1) 0%,rgba(99,182,219,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#309dcf', endColorstr='#63b6db',GradientType=0 ); /* IE6-9 */
}

.blueBtnWhiteSt_small {
  font-size: 14px;
  padding: 5px 15px;
}

.blueBtnWhiteSt:visited,
.blueBtnWhiteSt_small:visited {
  color: #FFF;
}

.blueBtnWhiteSt.homebtn {
  width: 300px;
  font-size: 14.5px;
}
