
* {
  position: relative;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
/* Can't use this because it screws up google maps
  background-color: inherit;
*/
  padding: 0px;
  margin: 0px;
/* Not sure why this is commented out
  -moz-appearance: none; -moz-border-radius: 0; -moz-box-shadow: none;
  -webkit-appearance: none; -webkit-border-radius: 0; -webkit-box-shadow: none;
  appearance: none; border-radius: 0; box-shadow: none;
*/
}
select::-ms-expand { /* Hide select box arrow on IE10 */
  display: none;
}
* a:link {
  color: inherit;
  text-decoration: underline;
}
* a:visited {
  color: inherit;
  text-decoration: underline;
}
* a:hover {
  color: inherit;
  text-decoration: underline;
  color: #838383;
}
* a:active {
  color: inherit;
  text-decoration: underline;
}
html {
  background-repeat: repeat;
/* Can't use this because it screws up tawk.to
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
*/
}
body {
  background-color: white;
  color: #651718;
  font-family: "futura-pt",sans-serif;
  font-size: 16px;
  line-height: 1.25; /* 1.25 times font height */
  font-weight: 300;
  overflow-x: hidden;
  margin-bottom: 10px;
}
#canvas {
}
img {
  border: none;
}
h1 { /* logo text where necessary and main titles */
  color: #651718;
  line-height: 1;
  font-size: 300%; /* of body size */
  margin: 0; /* 'cos normalize and bootstrap screw with h1 */
  margin-bottom: 10px;
  font-family: "nimbus-sans",sans-serif;
  font-weight: bold;
}
h2 { /* title text */
  color: #cd69eb;
  line-height: 1;
  font-size: 200%; /* of body size */
  margin: 0; /* 'cos bootstrap screws with h2 */
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: "nimbus-sans",sans-serif;
  font-weight: bold;
}
h3 { /* sub title text */
  color: #cd69eb;
  line-height: 1;
  font-size: 150%; /* of body size */
  margin: 0; /* 'cos bootstrap screws with h3 */
  margin-bottom: 10px;
  font-family: "nimbus-sans",sans-serif;
  font-weight: normal;
}
h4 { /* sub sub title text */
  color: #cd69eb;
  line-height: 1;
  font-size: 120%; /* of body size */
  margin: 0; /* to be sure */
  margin-bottom: 10px;
  font-family: "nimbus-sans",sans-serif;
  font-weight: normal;
}
h5 { /* emphasised text */
  color: #cd69eb;
  line-height: 1;
  font-size: 100%; /* of body size */
  margin: 0; /* to be sure */
  margin-bottom: 10px;
  font-family: "futura-pt",sans-serif;
  font-weight: normal;
}
p { /* normal text */
  font-size: 100%; /* of body size */
  margin: 0; /* to be sure */
  margin-bottom: 10px;
  line-height: 1.5; /* 1.5 times font height */
}
ul {
  text-align: left;
  font-size: 100%; /* of body size */
  margin: 0; /* to be sure */
  line-height: 1.5; /* 1.5 times font height */
  margin-left: 15px;
  margin-bottom: 10px;
}
ol {
  text-align: left;
  font-size: 100%; /* of body size */
  margin: 0; /* to be sure */
  line-height: 1.5; /* 1.5 times font height */
  margin-left: 20px;
}

.myButton { /* Start Jquery Theme */
  background-color: transparent;
  background-image: -webkit-linear-gradient(top, #777777, #777777);
  background-image: -moz-linear-gradient(top, #777777, #777777);
  background-image: -ms-linear-gradient(top, #777777, #777777);
  background-image: -o-linear-gradient(top, #777777, #777777);
  background-image: linear-gradient(to bottom, #777777, #777777);
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
/*  text-shadow: 1px 1px 3px black; */
  border-style: solid; border-color: #8c8c8c; border-width: 1px;
  height: 34px;
  text-align: center;
  font-family: Sans-Serif;
  margin: 0px;
  padding-top: 6px; padding-bottom: 6px;
  padding-left: 16px; padding-right: 16px;
  font-size: 100%;
  font-weight: 600;
}
a:link.myButton {
  text-decoration: none;
  color: black;
}
a:visited.myButton {
  text-decoration: none;
  color: black;
}
a:hover.myButton {
  text-decoration: none;
  color: black;
  background-image: -webkit-linear-gradient(top, #838383, #838383);
  background-image: -moz-linear-gradient(top, #838383, #838383);
  background-image: -ms-linear-gradient(top, #838383, #838383);
  background-image: -o-linear-gradient(top, #838383, #838383);
  background-image: linear-gradient(to bottom, #838383, #838383);
}
a:active.myButton {
  text-decoration: none;
  color: black;
}

.outlined {
  text-shadow: 2px 0 0 #000, 0 -2px 0 #000, 0 2px 0 #000, -2px 0 0 #000;
}

.bordered { /* Remember: the border takes up additional space */
  height: inherit;
  border-style: solid;
  border-color: #343434;
  border-width: 2px;
}

.centered  { /* Center horizontally */
  height: inherit;
  text-align: center; /* text */
  margin: 0 auto; /* divs */
}

.middled { /* Center vertically */
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.rounded { /* Make corners rounded */
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-topleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.faded { /* Make element opaque */
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.uppercase {
  text-transform: uppercase;
}
.fullWidth {
  width: 100%;
}
.clearFix {
  overflow: auto;
  clear: both;
}

#pageForm input, #pageForm select, #pageForm textarea {
  width: 100%;
  border-width: 0px;
  margin-top: 5px;
  margin-bottom: 5px;
}
#pageForm input[type='button'] {
  color: white;
  background-color: #8c8c8c;
  width: 100px;
  border-style: solid;
  border-width: 1px;
  border-color: #777777;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 4%;
  padding-right: 4%;
}
#pageForm input[type='text'], #pageForm select, #pageForm textarea[type='text'] {
  color: #181818;
  background-color: #8c8c8c;
  border-style: solid;
  border-width: 1px;
  border-color: #777777;
  padding-top: 5px;
  padding-bottom: 10px;
  padding-left: 4%;
  padding-right: 4%;
}
#footerForm input[type='text'], #footerForm select, #footerForm textarea[type='text'] {
  width: 100%;
  border-style: solid;
  border-width: 1px;
  border-color: #777777;
  margin-top: 5px;
  margin-bottom: 5px;
}
#footerForm input[type='text'], #footerForm select, #footerForm textarea[type='text'] {
  color: #651718;
  background-color: white;
  border-style: solid;
  border-width: 1px;
  border-color: #777777;
  padding-top: 5px;
  padding-bottom: 10px;
  padding-left: 4%;
  padding-right: 4%;
}

.responsiveIMG { /* Responsive images. See resizeImages() function which is executed on body resize */
  max-width: 100%; 
  display: block; 
  height: auto;
}

#headerA {
  color: white;
  font-family: "futura-pt",sans-serif;
  background-color: #cd69eb;
}
.header {
  width: 100%;
  height: 80px; /* Must be >= logo height. Refer to header module to reposition desktop menu */
}

.footer {
  color: white;
  background-color: black;
}
.footer p {
  font-size: 80%;
  font-weight: bold;
}
.footer a {
  text-decoration: none;
}
.footer a:link {
  color: white;
}
.footer a:hover {
  color: black;
}
.footer h3 {
  font-weight: bold;
}
.credits {
}
.credits p {
  font-weight: bold;
  font-size: 70%;
}
.credits a {
  text-decoration: none;
}
.credits a:link {
  color: #cd69eb;
}
.credits a:hover {
  color: black;
}
.credits h3 {
  font-weight: bold;
}

