.box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.stdForm {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border-radius: 0;
}
.stdForm .block {
  float: left;
  width: 100%;
  margin-bottom: 25px;
}
.stdForm .block:last-child {
  margin-bottom: 0;
}
.stdForm .block.toggle {
  display: none;
}
.stdForm div.error {
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: red;
}
.stdForm label {
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.stdForm input {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: thin solid #87a4aa;
  border-radius: 0;
  float: left;
  height: 35px;
  position: relative;
  width: 100%;
  color: #365359;
  padding: 0 5px;
  margin: 0 0 10px 0;
  font-size: 12px;
  line-height: 35px;
}
.stdForm input:focus {
  border: thin solid #808080;
}
.stdForm button {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  float: left;
  height: 40px;
  line-height: 40px;
  width: auto;
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  background-color: #cc0000;
  color: #FFFFFF;
  border: none;
  outline: none;
  padding: 0 10px;
  margin: 0;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.stdForm button:focus {
  outline: none;
}
.stdForm button:hover {
  background-color: #E00000;
}
.stdForm button.red {
  background: #ff0042;
  color: #fff;
}
.stdForm button.disabled {
  background-color: #808080;
  color: #FFFFFF;
  pointer-events: none;
}
.stdForm button.disabled:hover {
  background-color: #808080;
  color: #FFFFFF;
}
.stdForm button.toggleBtn {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  float: left;
  height: 30px;
  width: auto;
  background: none;
  font-family: 'PT Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #365359;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.stdForm button.toggleBtn:focus {
  outline: none;
}
.stdForm button.toggleBtn:hover {
  color: #808080;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
}
body {
  overflow: hidden;
  overflow-y: scroll;
  background: url("../../images/bg2.jpg") center center no-repeat fixed;
  -webkit-background-size: cover;
  background-size: cover;
}
body.beamerBody {
  background: #000000;
}
ol,
ul,
li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a,
ol,
ul,
li,
div,
h1,
h2,
h3 {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
h1 {
  font-family: 'PT Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  color: #19282d;
  margin: 0;
  padding: 0;
}
h2 {
  font-family: 'PT Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: #19282d;
  padding: 10px 0;
  margin: 0;
}
h3 {
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: #19282d;
  padding: 3px 0;
  margin: 0;
}
p {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3em;
  color: #365359;
}
p.nomargin {
  margin: 0;
}
p.textCenter {
  text-align: center;
}
p span.small {
  font-size: 0.8em;
}
p img {
  position: relative;
  width: 40%;
  height: auto;
}
p img.right {
  float: right;
  padding: 0 0 20px 20px;
}
p img.left {
  float: left;
  padding: 0 20px 20px 0;
}
.greyGradient {
  position: absolute;
  top: 0;
  width: 100%;
  height: 60px;
  background: rgba(128,128,128,0.2);
  background: -moz-linear-gradient(top,rgba(128,128,128,0.2) 0%,rgba(255,255,255,0.2) 100%);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,rgba(128,128,128,0.2)),color-stop(100%,rgba(255,255,255,0.2)));
  background: -webkit-linear-gradient(top,rgba(128,128,128,0.2) 0%,rgba(255,255,255,0.2) 100%);
  background: -o-linear-gradient(top,rgba(128,128,128,0.2) 0%,rgba(255,255,255,0.2) 100%);
  background: -ms-linear-gradient(top,rgba(128,128,128,0.2) 0%,rgba(255,255,255,0.2) 100%);
  background: linear-gradient(top,rgba(128,128,128,0.2) 0%,rgba(255,255,255,0.2) 100%);
}
.container {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  float: left;
}
.container.half {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 50%;
}
.container.third {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 33.33%;
}
.container.nofloat {
  float: none;
}
.container.bottomBorder {
  border-bottom: 4px solid #89674d;
}
.container.borderRight {
  border-right: thin solid #89674d;
}
.container.paddingRight {
  padding-right: 80px;
}
.container.paddingLeft {
  padding-left: 80px;
}
.container.paddingBottom {
  padding-bottom: 60px;
}
.container.paddingRightSmall {
  padding-right: 40px;
}
.container.paddingLeftSmall {
  padding-left: 40px;
}
.container.paddingBottomSmall {
  padding-bottom: 30px;
}
a {
  color: #87a4aa;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  color: #19282d;
}
a.readmore {
  color: #cc0000;
  text-decoration: none;
  font-style: italic;
}
a.readmore:hover {
  color: #19282d;
}
a.donateBtn {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  float: left;
  height: 40px;
  line-height: 40px;
  width: auto;
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  background-color: #cc0000;
  color: #FFFFFF;
  border: none;
  outline: none;
  padding: 0 10px;
  margin: 0;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  text-align: center;
}
a.donateBtn:focus {
  outline: none;
}
a.donateBtn:hover {
  background-color: #E00000;
}
a.donateBtn.red {
  background: #ff0042;
  color: #fff;
}
a.donateBtn.small {
  width: auto;
}
#debug {
  width: 100%;
  float: left;
  margin-top: 300px;
  background-color: #FFFFFF;
  padding: 40px 50px;
  color: #000000;
  font-size: 18px;
}
#mobileMenuWrapper {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(135,164,170,0.75);
  z-index: 5000;
}
#mobileMenuWrapper .icon-cancel {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 44px;
  line-height: 60px;
  color: #FFFFFF;
  cursor: pointer;
  z-index: 200;
}
#mobileMenuWrapper #mobilenav {
  z-index: 100;
}
#mobileMenuWrapper #mobilenav ul.navList {
  position: relative;
  width: 80%;
  list-style-type: none;
  top: 0;
  margin: 0 auto;
}
#mobileMenuWrapper #mobilenav ul.navList li {
  width: 100%;
  height: 50px;
  line-height: 50px;
  list-style: outside none none;
  text-align: center;
  border-bottom: thin solid #FFFFFF;
}
#mobileMenuWrapper #mobilenav ul.navList li:first-child {
  border-top: thin solid #FFFFFF;
}
#mobileMenuWrapper #mobilenav ul.navList li a {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#mobileMenuWrapper #mobilenav ul.navList li a:hover {
  color: #cc0000;
}
#headerWrapper {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
  background-color: #eaf5f9;
  border-top: 10px solid #000000;
  -moz-box-shadow: 0 1px 3px #ddd;
  -webkit-box-shadow: 0 1px 3px #ddd;
  box-shadow: 0 1px 3px #ddd;
}
#headerWrapper #headerContainer {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  top: -5px;
}
#headerWrapper #headerContainer #logo {
  float: left;
  top: 24px;
  width: 270px;
  height: 100%;
  left: 0;
  font-family: 'PT Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #cc0000;
  font-size: 24px;
  line-height: 24px;
}
#headerWrapper #headerContainer #logo a {
  color: #cc0000;
}
#headerWrapper #headerContainer #logo a:hover {
  color: #E00000;
}
#headerWrapper #headerContainer #logo span {
  font-family: 'PT Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 22px;
}
#headerWrapper #headerContainer #logo img {
  margin: 1px 6px 0 0;
}
#headerWrapper #headerContainer .openmobilemenu {
  display: none;
  position: relative;
  float: right;
  top: 20px;
  width: 60px;
  height: 60px;
  font-size: 44px;
  line-height: 60px;
  text-align: center;
  color: #808080;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#headerWrapper #headerContainer .openmobilemenu:hover {
  color: #cc0000;
}
#headerWrapper #headerContainer nav#mainnav {
  position: relative;
  float: right;
  top: 40px;
  width: auto;
  z-index: 500;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#headerWrapper #headerContainer nav#mainnav ul.navList {
  float: left;
  width: 100%;
}
#headerWrapper #headerContainer nav#mainnav ul.navList li {
  position: relative;
  float: left;
  width: auto;
  margin-right: 25px;
}
#headerWrapper #headerContainer nav#mainnav ul.navList li:last-child {
  margin-right: 0;
}
#headerWrapper #headerContainer nav#mainnav ul.navList li:last-child {
  border: none;
}
#headerWrapper #headerContainer nav#mainnav ul.navList li .topBorder {
  position: absolute;
  float: left;
  width: 1px;
  height: 2px;
  background-color: #eaf5f9;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#headerWrapper #headerContainer nav#mainnav ul.navList li a {
  width: 100%;
  float: left;
  padding-top: 2px;
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#headerWrapper #headerContainer nav#mainnav ul.navList li:hover .topBorder,
#headerWrapper #headerContainer nav#mainnav ul.navList li.active .topBorder {
  background-color: #cc0000;
  width: 100%;
}
#headerWrapper #headerContainer div.lang-nav {
  display: block;
  position: absolute;
  right: 0;
  width: 100px;
  height: 25px;
  margin-top: 10px;
  margin-bottom: -14px;
}
#headerWrapper #headerContainer div.lang-nav ul.languages li.lang {
  display: block;
  position: relative;
  float: right;
}
#headerWrapper #headerContainer div.lang-nav ul.languages li.lang.active div.text {
  color: #eaf5f9;
  background: #87a4aa;
  cursor: default;
}
#headerWrapper #headerContainer div.lang-nav ul.languages li.lang div.text {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 4px 1px 4px;
  font-size: 12px;
  font-weight: 600;
  color: #87a4aa;
  cursor: pointer;
}
.stage#imageStage img {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  float: left;
  width: 100%;
}
#contentWrapper {
  position: relative;
  float: left;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 150px;
  z-index: 500;
}
#contentWrapper #content {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  padding-top: 100px;
}
#contentWrapper #content.home {
  padding-top: 0;
}
#contentWrapper #content.padding {
  padding: 50px 100px 0 100px;
}
#contentWrapper #content .contentLeft {
  position: relative;
  float: left;
  width: 66.66%;
  padding-right: 30px;
}
#contentWrapper #content .contentRight {
  position: relative;
  float: left;
  width: 33.33%;
  padding-left: 30px;
}
#contentWrapper #content .contentBox {
  margin-top: 15px;
}
#contentWrapper #content .contentBox .title {
  padding: 15px 20px;
  background-color: #87a4aa;
}
#contentWrapper #content .contentBox .contentContainer {
  background-color: #eaf5f9;
  padding: 20px 20px;
}
#contentWrapper #content .contentBox .contentContainer.nopadding {
  padding: 0;
}
#contentWrapper #content .contentBox .contentContainer.nobg {
  background: none;
}
#contentWrapper #content .contentBox .contentContainer.beamer {
  padding: 10px 10px;
}
#contentWrapper.beamerWrapper {
  position: relative;
  float: left;
  width: 100%;
  padding: 0;
  z-index: 500;
}
#contentWrapper.beamerWrapper #content {
  position: relative;
  margin: 0 auto;
  width: 1024px;
  height: 650px;
  padding: 0;
  border: thin solid green;
  background: url("../../images/bg2.jpg") center center no-repeat fixed;
  -webkit-background-size: cover;
  background-size: cover;
}
#footerWrapper {
  position: relative;
  width: 100%;
  float: left;
  padding-bottom: 50px;
  background-color: #19282d;
}
#footerWrapper #footer {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  color: #e2e2e2;
  padding: 10px 40px 20px 40px;
}
#footerWrapper #footer .left,
#footerWrapper #footer .right {
  float: left;
}
#footerWrapper #footer .left.left,
#footerWrapper #footer .right.left {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 30%;
  padding-right: 20px;
}
#footerWrapper #footer .left.right,
#footerWrapper #footer .right.right {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 70%;
  padding-left: 20px;
}
#footerWrapper #footer .left .footerTitle,
#footerWrapper #footer .right .footerTitle {
  font-family: 'PT Sans', sans-serif;
  font-size: 20px;
  font-weight: 300;
  width: 100%;
  padding: 8px 10px 10px 0;
  margin-bottom: 10px;
  border-bottom: thin solid #e2e2e2;
}
#footerWrapper #footer ul.foo-block {
  display: block;
  width: 100%;
  position: relative;
  float: left;
}
#footerWrapper #footer ul.foo-block li {
  float: left;
  width: 50%;
  list-style-type: none;
}
#footerWrapper #footer ul.foo-block li:nth-child(2n +1) {
  clear: both;
  padding-right: 2.5%;
}
#footerWrapper #footer ul.foo-block li:nth-child(2n +2) {
  padding-left: 2.5%;
}
#footerWrapper #footer ul.foo-block li a {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #e2e2e2;
  width: 100%;
  float: left;
  line-height: 1.5em;
  text-decoration: none;
}
#footerWrapper #footer ul.foo-block li a:hover {
  color: #FFFFFF;
}
#footerWrapper #footer .socialLinks {
  margin-top: 15px;
}
#footerWrapper #footer .footerContact {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
}
#footerWrapper #footer .footerContact .footerContactLeft,
#footerWrapper #footer .footerContact .footerContactRight {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 50%;
  float: left;
}
#footerWrapper #footer .footerContact .footerContactLeft.left,
#footerWrapper #footer .footerContact .footerContactRight.left {
  padding-right: 20px;
}
#footerWrapper #footer .footerContact .footerContactLeft.right,
#footerWrapper #footer .footerContact .footerContactRight.right {
  padding-left: 0;
}
.telLink.greyLight,
.emailLink.greyLight {
  text-decoration: none;
  color: #e2e2e2;
}
.telLink.greyLight:hover,
.emailLink.greyLight:hover {
  color: #FFFFFF;
}
.telLink.grey,
.emailLink.grey {
  text-decoration: none;
  color: #888c8d;
  line-height: 2em;
}
.telLink.grey:hover,
.emailLink.grey:hover {
  color: #808080;
}
@media screen and (max-width: 1220px) {
  #headerWrapper #headerContainer {
    padding: 0 20px;
  }
  #contentWrapper {
    padding: 100px 20px 150px 20px;
  }
}
@media screen and (max-width: 1023px) {
  #contentWrapper #content .contentLeft {
    width: 100%;
    padding-right: 0;
  }
  #contentWrapper #content .contentRight {
    width: 100%;
    padding-left: 0;
  }
  #headerWrapper #headerContainer nav#mainnav {
    display: none;
  }
  #headerWrapper #headerContainer .openmobilemenu {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #footerWrapper #footer .left.left,
  #footerWrapper #footer .right.left {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    padding-right: 0;
  }
  #footerWrapper #footer .left.right,
  #footerWrapper #footer .right.right {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    margin-top: 20px;
    padding-left: 0px;
  }
  #footerWrapper #footer .footerContact .footerContactLeft,
  #footerWrapper #footer .footerContact .footerContactRight {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    width: 100%;
  }
  #footerWrapper #footer .footerContact .footerContactLeft.footerContactRight,
  #footerWrapper #footer .footerContact .footerContactRight.footerContactRight {
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  #headerWrapper #headerContainer #logo {
    display: none;
    top: 32px;
    width: 200px;
    font-size: 20px;
    line-height: 20px;
  }
  #headerWrapper #headerContainer #logo span {
    font-size: 24px;
    line-height: 24px;
  }
}
