
* {
  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: #d54031;
}
* 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: #fcf6f0;
  color: #333333;
  font-family: 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 */
  font-size: 200%; /* of body size */
  margin: 0; /* 'cos normalize and bootstrap screw with h1 */
  font-family: permanent-marker, sans-serif;
}
h2 { /* title text */
  font-size: 175%; /* of body size */
  margin: 0; /* 'cos bootstrap screws with h2 */
  font-family: permanent-marker, sans-serif;
}
h3 { /* sub title text */
  font-size: 150%; /* of body size */
  margin: 0; /* 'cos bootstrap screws with h3 */
}
h4 { /* sub sub title text */
  font-size: 125%; /* of body size */
  margin: 0; /* to be sure */
}
h5 { /* emphasised text */
  font-size: 100%; /* of body size */
  margin: 0; /* to be sure */
}
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;
}
#contactFormPage input, #contactFormPage select, #contactFormPage textarea {
  width: 100%;
  border-width: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
}
#contactFormPage input[type='text'], #contactFormPage input[type='button'], #contactFormPage select, #contactFormPage textarea[type='text'] {
  color: #d54031;
  background-color: #333333;
}

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

.myButton {
  background-color: transparent;
  background-image: -webkit-linear-gradient(top, cyan, blue);
  background-image: -moz-linear-gradient(top, cyan, blue);
  background-image: -ms-linear-gradient(top, cyan, blue);
  background-image: -o-linear-gradient(top, cyan, blue);
  background-image: linear-gradient(to bottom, cyan, blue);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
/*  text-shadow: 1px 1px 3px black; */
  color: white;
  border-style: solid; border-color: #fcf6f0; border-width: 1px;
  text-decoration: none;
  height: 91%;
  text-align: center;
  font-size: 90%;
  margin-top: 2px; margin-bottom: 2px;
}

.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: black;
  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: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-topleft: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

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

#headerA {
  color: #333333;
  font-family: permanent-marker, sans-serif;
  background-color: transparent;
  background-image: url("/images/background-header.jpg");
  background-repeat: no-repeat;
  background-position: left top;
}
.header {
  width: 100%;
  height: 120px; /* Must be >= logo height. Refer to header module to reposition desktop menu */
}

#footerA {min-height: 40px;}
#footerB {min-height: 0px;}
#footerC {min-height: 0px;}

.footer {
  color: #fcf6f0;
  background-color: #d54031;
  font-family: sans-serif;
  font-size: 18px;
  font-weight: 300;
}
.footer * {
  box-sizing: content-box;
}
.footer a:hover {
  color: #333333;
}
.footer input, .footer textarea {
  width: 92%;
}
#footerSelect {
  width: 100%;
  margin-bottom: 10px;
  color: #d54031;
}
.footer input, .footer textarea {
  border-width: 0;
  margin-top: 0px;
  margin-bottom: 10px;
}
.footer input[type='text'], .footer input[type='button'], .footer select, .footer textarea[type='text'] {
  font-family: sans-serif;
  color: #d54031;
  background-color: #333333;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 4%;
  padding-right: 4%;
}
.footer select {
  padding-left: 3%;
}
.footer h4 {
  padding-bottom: 5px;
  font-size: 100%;
}
.footer h5 {
  margin: 0px;
  padding-top: 0;
  padding-bottom: 10px;
}
.categoryLink {
  text-decoration: none;
}

.moreButton { /* place on the a tag */
  margin: 0; padding: 0;
}
.moreButton:link { /* Anchor:link */
  color: #fcf6f0;
}
.moreButton:visited { /* Anchor:visited */
  color: #fcf6f0;
}
.moreButton:hover { /* Anchor:hover */
  color: #333333;
}
.moreButton:active { /* Anchor:active */
  color: #fcf6f0;
}
.moreButton button { /* Button */
  background-color: #d54031;
  color: inherit;
}
.moreButton button div { /* a button div */
  margin-top: 4px; margin-bottom: 1px; margin-left: 10px; margin-right: 10px;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
  color: inherit;
}


