body {
  margin: 0;
  /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
  padding: 0;
  text-align: center;
  /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
  color: #666;
  background-color: #37472e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .8em; }

.hideonmobile {
  display: inline; }

.showonmobile {
  display: none; }

.slideshow img {
  width: 100%;
  max-width: 800px; }

.heading {
  font-size: 14px; }

#container {
  max-width: 800px;
  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
  width: 100%;
  background: #FFFFFF;
  margin: 0 auto 0 auto;
  /* the auto margins (in conjunction with a width) center the page */
  border: 1px solid #000000;
  text-align: left;
  /* this overrides the text-align: center on the body element. */ }

#sidebar1wrap {
  margin: 0;
  background-image: url(images/sidebar1_bg.gif);
  background-repeat: repeat-y;
  background-position: left top; }

#sidebar1Wrap {
  background-image: url(sidebar1_bg.gif) repeat-y left top; }

#header {
  max-width: 800px;
  width: 100%;
  background-color: #688758;
  padding: 0;
  margin-top: 0px;
  margin-right: 0px;
  margin-left: 0px; }

#bbdescription {
  width: 94%;
  margin: auto; }

h1 {
  color: #E9CA56;
  text-transform: uppercase;
  font-weight: normal;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-style: italic;
  text-align: center;
  vertical-align: middle;
  padding: 10px 0 10px 10px;
  margin: 0; }

h2 {
  font-size: large;
  color: #37472E;
  display: block;
  font-weight: bold;
  text-align: center; }

#sidebar1 {
  float: left;
  /* since this element is floated, a width must be given */
  width: 160px;
  /* padding keeps the content of the div away from the edges */
  background-color: #5d91a6;
  color: #FFF;
  padding: 0px 10px 15px 10px; }
  #sidebar1 .title {
    background-color: #FF9;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin: 0;
    padding: 5px;
    text-align: center;
    border-bottom-style: solid;
    border-bottom-color: #37472E;
    border-bottom-width: thin; }

#paybox {
  background-color: #FFF;
  color: #333;
  border-style: solid;
  border-width: thin;
  border-color: #37472E;
  margin-bottom: 15px;
  margin-top: 15px;
  text-align: center; }
  #paybox p {
    padding: 5px; }
  #paybox h2 {
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    color: #F00; }
  #paybox ul {
    text-align: left; }

ul.mainnav {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0; }

ul.mainnav a {
  display: block;
  width: 140px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: .9em;
  color: #FFF;
  padding: 5px; }

ul.mainnav a:hover {
  background-color: #6FF; }

#sidebar2 {
  float: right;
  /* since this element is floated, a width must be given */
  width: 160px;
  /* the background color will be displayed for the length of the content in the column, but no further */
  padding: 15px 10px 15px 10px;
  /* padding keeps the content of the div away from the edges */
  background-color: #FFF;
  text-align: center; }
  #sidebar2 .title {
    background-color: #688758;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    color: #E9CA56;
    margin: 0;
    padding: 5px;
    text-align: center; }

.thrColFixHdr #container #sidebar2 #box p {
  font-size: .8em;
  font-weight: lighter;
  padding: 0 5px 5px 5px; }

.thrColFixHdr #container #sidebar2 #box p a {
  display: inline-block; }

.thrColFixHdr #container #sidebar2 #box ul li {
  text-align: left;
  text-indent: -30px;
  list-style-position: inside; }

#box {
  border-style: solid;
  border-width: thin;
  border-color: #37472E;
  background-color: #FF9;
  margin-bottom: 15px;
  text-align: center; }

#mainContent {
  float: left;
  width: 52%;
  /*	margin: 0 200px;  the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
  padding: 0 10px;
  /* remember that padding is the space inside the div box and margin is the space outside the div box */ }

#mainimage {
  text-align: center;
  margin: 0;
  font-style: italic; }

.mainimage img {
  border: 2px solid blue;
  padding: 10px;
  text-align: center; }

.thrColFixHdr #container #sidebar1wrap #mainContent a:link {
  color: #5D91A6; }

.thrColFixHdr #container #sidebar1wrap #mainContent a:visited {
  color: #906; }

.thrColFixHdr #footer {
  padding: 0 10px 0 20px;
  /* this padding matches the left alignment of the elements in the divs that appear above it. */
  background: #DDDDDD;
  text-align: center;
  line-height: 8px; }

.thrColFixHdr #footer p {
  margin: 0;
  /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
  padding: 10px 0;
  /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
  font-size: .8em; }

ul.footnav li {
  display: inline; }

ul.footnav a {
  text-decoration: none;
  color: #666;
  font-size: 0.8em; }

ul.footnav a:hover {
  color: #00F; }

.fltrt {
  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
  float: right;
  margin-left: 8px; }

.fltlft {
  /* this class can be used to float an element left in your page */
  float: left;
  margin-right: 8px; }

.imgwhite {
  /* this class can be used to add white border to top of image */
  border-top: solid #FFF medium; }

.imglargeportrait {
  border-left: solid white 40px;
  border-right: solid white 40px; }

.imglargelandscape {
  border-left: solid white 20px;
  border-right: solid white 20px; }

.centre {
  text-align: center; }

.clearfloat {
  /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0px; }

.address {
  text-align: center; }
  .address .heading {
    display: block;
    margin-before: 0.67em;
    margin-after: 0.67em;
    margin-start: 0px;
    margin-end: 0px;
    font-size: 18px;
    font-weight: bold;
    color: #000; }

.breadcrumb {
  font-size: 10px;
  text-align: left; }

/*  SECTIONS  */
.section {
  clear: both;
  padding: 0px;
  margin: 0px; }

/*  COLUMN SETUP  */
.col {
  display: block;
  float: left;
  margin: 1% 0 1% 1.6%; }

.col:first-child {
  margin-left: 0; }

/*  GROUPING  */
.group:before,
.group:after {
  content: "";
  display: table; }

.group:after {
  clear: both; }

.group {
  zoom: 1;
  /* For IE 6/7 */ }

/*  GRID OF TWELVE  */
.span_12_of_12 {
  width: 100%; }

.span_11_of_12 {
  width: 91.53%; }

.span_10_of_12 {
  width: 83.06%; }

.span_9_of_12 {
  width: 74.6%; }

.span_8_of_12 {
  width: 66.13%; }

.span_7_of_12 {
  width: 57.66%; }

.span_6_of_12 {
  width: 49.2%; }

.span_5_of_12 {
  width: 40.73%; }

.span_4_of_12 {
  width: 32.26%; }

.span_3_of_12 {
  width: 23.8%; }

.span_2_of_12 {
  width: 15.33%; }

.span_1_of_12 {
  width: 6.866%; }

/* This rule is read by Galleria to define the gallery height: */
.galleria {
  height: 320px;
  width: 100%; }
  .galleria img {
    width: 100%;
    height: auto; }

/**
 * Galleria Classic Theme 2017-02-13
 * http://galleria.io
 *
 * Copyright (c) 2010 - 2017 worse is better UG
 * Licensed under the MIT license
 * https://raw.github.com/worseisbetter/galleria/master/LICENSE
 *
 */
#galleria-loader {
  height: 1px !important; }

.galleria-theme-classic {
  position: relative;
  overflow: hidden;
  background: #fff; }

.galleria-theme-classic img {
  -moz-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none; }

.galleria-theme-classic .galleria-stage {
  position: absolute;
  top: 10px;
  bottom: 60px;
  left: 10px;
  right: 10px;
  overflow: hidden; }

.galleria-theme-classic .galleria-thumbnails-container {
  height: 50px;
  bottom: 0;
  position: absolute;
  left: 10px;
  right: 10px;
  z-index: 2; }

.galleria-theme-classic .galleria-carousel .galleria-thumbnails-list {
  margin-left: 30px;
  margin-right: 30px; }

.galleria-theme-classic .galleria-thumbnails .galleria-image {
  height: 40px;
  width: 60px;
  background: #000;
  margin: 0 5px 0 0;
  border: 1px solid #000;
  float: left;
  cursor: pointer; }

.galleria-theme-classic .galleria-counter {
  position: absolute;
  bottom: 10px;
  left: 10px;
  text-align: right;
  color: #fff;
  font: normal 11px/1 arial,sans-serif;
  z-index: 1; }

.galleria-theme-classic .galleria-loader {
  background: #000;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: none;
  background: url(classic-loader.gif) no-repeat 2px 2px; }

.galleria-theme-classic .galleria-info {
  width: 50%;
  top: 15px;
  left: 15px;
  z-index: 2;
  position: absolute; }

.galleria-theme-classic .galleria-info-text {
  background-color: #000;
  padding: 12px;
  display: none;
  /* IE7 */
  zoom: 1; }

.galleria-theme-classic .galleria-info-title {
  font: bold 12px/1.1 arial,sans-serif;
  margin: 0;
  color: #fff;
  margin-bottom: 7px; }

.galleria-theme-classic .galleria-info-description {
  font: italic 12px/1.4 georgia,serif;
  margin: 0;
  color: #bbb; }

.galleria-theme-classic .galleria-info-close {
  width: 9px;
  height: 9px;
  position: absolute;
  top: 5px;
  right: 5px;
  background-position: -753px -11px;
  opacity: .5;
  filter: alpha(opacity=50);
  cursor: pointer;
  display: none; }

.galleria-theme-classic .notouch .galleria-info-close:hover {
  opacity: 1;
  filter: alpha(opacity=100); }

.galleria-theme-classic .touch .galleria-info-close:active {
  opacity: 1;
  filter: alpha(opacity=100); }

.galleria-theme-classic .galleria-info-link {
  background-position: -669px -5px;
  opacity: .7;
  filter: alpha(opacity=70);
  position: absolute;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: #000; }

.galleria-theme-classic.notouch .galleria-info-link:hover {
  opacity: 1;
  filter: alpha(opacity=100); }

.galleria-theme-classic.touch .galleria-info-link:active {
  opacity: 1;
  filter: alpha(opacity=100); }

.galleria-theme-classic .galleria-image-nav {
  position: absolute;
  top: 50%;
  margin-top: -62px;
  width: 100%;
  height: 62px;
  left: 0; }

.galleria-theme-classic .galleria-image-nav-left,
.galleria-theme-classic .galleria-image-nav-right {
  opacity: .3;
  filter: alpha(opacity=30);
  cursor: pointer;
  width: 62px;
  height: 124px;
  position: absolute;
  left: 10px;
  z-index: 2;
  background-position: 0 46px; }

.galleria-theme-classic .galleria-image-nav-right {
  left: auto;
  right: 10px;
  background-position: -254px 46px;
  z-index: 2; }

.galleria-theme-classic.notouch .galleria-image-nav-left:hover,
.galleria-theme-classic.notouch .galleria-image-nav-right:hover {
  opacity: 1;
  filter: alpha(opacity=100); }

.galleria-theme-classic.touch .galleria-image-nav-left:active,
.galleria-theme-classic.touch .galleria-image-nav-right:active {
  opacity: 1;
  filter: alpha(opacity=100); }

.galleria-theme-classic .galleria-thumb-nav-left,
.galleria-theme-classic .galleria-thumb-nav-right {
  cursor: pointer;
  display: none;
  background-position: -495px 5px;
  position: absolute;
  left: 0;
  top: 0;
  height: 40px;
  width: 23px;
  z-index: 3;
  opacity: .8;
  filter: alpha(opacity=80); }

.galleria-theme-classic .galleria-thumb-nav-right {
  background-position: -578px 5px;
  border-right: none;
  right: 0;
  left: auto; }

.galleria-theme-classic .galleria-thumbnails-container .disabled {
  opacity: .2;
  filter: alpha(opacity=20);
  cursor: default; }

.galleria-theme-classic.notouch .galleria-thumb-nav-left:hover,
.galleria-theme-classic.notouch .galleria-thumb-nav-right:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  background-color: #111; }

.galleria-theme-classic.touch .galleria-thumb-nav-left:active,
.galleria-theme-classic.touch .galleria-thumb-nav-right:active {
  opacity: 1;
  filter: alpha(opacity=100);
  background-color: #111; }

.galleria-theme-classic.notouch .galleria-thumbnails-container .disabled:hover {
  opacity: .2;
  filter: alpha(opacity=20);
  background-color: transparent; }

.galleria-theme-classic .galleria-carousel .galleria-thumb-nav-left,
.galleria-theme-classic .galleria-carousel .galleria-thumb-nav-right {
  display: block; }

.galleria-theme-classic .galleria-thumb-nav-left,
.galleria-theme-classic .galleria-thumb-nav-right,
.galleria-theme-classic .galleria-info-link,
.galleria-theme-classic .galleria-info-close,
.galleria-theme-classic .galleria-image-nav-left,
.galleria-theme-classic .galleria-image-nav-right {
  background-image: url(classic-map.png);
  background-repeat: no-repeat; }

.galleria-theme-classic.galleria-container.videoplay .galleria-info,
.galleria-theme-classic.galleria-container.videoplay .galleria-counter {
  display: none !important; }

/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 480px) {
  .col {
    margin: 1% 0 1% 0%; }

  .span_1_of_12, .span_2_of_12, .span_3_of_12, .span_4_of_12, .span_5_of_12, .span_6_of_12, .span_7_of_12, .span_8_of_12, .span_9_of_12, .span_10_of_12, .span_11_of_12, .span_12_of_12 {
    width: 100%; } }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #mainContent {
    max-width: 370px; } }
@media only screen and (min-width: 481px) and (max-width: 767px) {
  h3 {
    font-size: 20px; }

  .hideonmobile {
    display: none; }

  .showonmobile {
    display: block; }

  #sidebar1wrap {
    background-image: none; }

  #sidebar2 {
    width: 80%;
    max-width: 200px;
    margin: auto;
    float: none; }

  #mainContent {
    width: 96%; } }
@media only screen and (min-width: 320px) and (max-width: 480px) {
  h3 {
    font-size: 20px; }

  .hideonmobile {
    display: none; }

  .showonmobile {
    display: block; }

  #sidebar2 {
    width: 80%;
    max-width: 200px;
    margin: auto;
    float: none; }

  #sidebar1wrap {
    background-image: none; }

  #mainContent {
    width: 96%; } }

/*# sourceMappingURL=default.css.map */
