/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
@import url(normalize.css);
body,
.cf {
  *zoom: 1;
}

body:before,
.cf:before,
body:after,
.cf:after {
  content: '';
  display: table;
}

body:after,
.cf:after {
  clear: both;
}

*,
*:before,
*:after,
*::before,
*::after {
  *behavior: url("js/boxsizing.htc");
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  width: 100%;
}

img,
video,
audio,
embed,
object,
input,
iframe {
  max-width: 100%;
}

.browsehappy {
  width: 100%;
  padding: 15px;
  background: #222;
  color: #fff;
}

.browsehappy p {
  text-align: center;
}

.browsehappy a {
  color: #fff;
  font-weight: bold;
}

div#menu {
  font-size: 16px;
  font-weight: 400;
  display: none;
  z-index: 3;
  -webkit-transition: 1s;
  transition: 1s;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 2;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #cfe7ff;
  max-height: 30px;
  padding: 0 0 10px 10px;
}
@media only screen and (max-width: 600px) {
  div#menu {
    display: block;
  }
}
div#menu span {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding: 0 0 5px 0;
  color: #7181b6;
}
@media only screen and (max-width: 600px) {
  div#menu span {
    font-size: 15px;
  }
}
@media only screen and (max-width: 460px) {
  div#menu span {
    font-size: 13px;
  }
}
div#menu span img {
  margin-bottom: -2px;
  margin-right: 16px;
  width: 16px;
  height: 16xpx;
}

div#menu:active {
  max-height: 999px;
}

div#menu:hover {
  max-height: 999px;
}

div#menu a:link {
  margin-left: 30px;
  font-size: 14px;
  font-weight: 400;
}

div#menu a:link, a:visited {
  color: #7181b6;
  padding: 4px 8px;
  text-decoration: none;
  border-bottom: none;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

div#menu a:hover {
  color: #fffff7;
  background-color: #FF9933;
  padding: 4px 8px;
  border-radius: 5px;
  text-decoration: none;
}

div#nav {
  border-top: 4px dotted #FF9933;
  background: #4d89c6;
  margin: 0;
  background-image: -webkit-linear-gradient(#73a3d2, #4d89c6);
  background-image: linear-gradient(#73a3d2, #4d89c6);
  position: relative;
  z-index: 10;
  width: 100%;
  margin: 0;
  padding: 8px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 800px) {
  div#nav {
    padding: 6px 0 8px 0;
  }
}
@media only screen and (max-width: 700px) {
  div#nav {
    padding: 6px 0 8px 0;
  }
}
@media only screen and (max-width: 600px) {
  div#nav {
    display: none;
  }
}
div#nav a:link, div#nav a:visited {
  border-bottom: none;
  text-decoration: none;
}

div#nav ul.dropdown {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  margin: 0;
  letter-spacing: 2px;
  padding: 0;
}
@media only screen and (max-width: 1050px) {
  div#nav ul.dropdown {
    font-size: 13px;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 800px) {
  div#nav ul.dropdown {
    font-family: 'Open Sans Condensed', sans-serif;
    letter-spacing: 0;
    font-size: 12px;
  }
}
@media only screen and (max-width: 700px) {
  div#nav ul.dropdown {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0;
  }
}

div#nav ul.dropdown li {
  font-weight: 700;
  display: inline-block;
  zoom: 1;
}
@media only screen and (max-width: 800px) {
  div#nav ul.dropdown li {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 0;
  }
}

div#nav ul.dropdown li a:link {
  color: #fff;
  font-weight: 700;
  padding: 2px 4px;
  border-bottom: none;
  text-decoration: none;
  -webkit-transition: all 0.10s ease-in-out;
  transition: all 0.10s ease-in-out;
}
@media only screen and (max-width: 800px) {
  div#nav ul.dropdown li a:link {
    padding: 0 3px;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 700px) {
  div#nav ul.dropdown li a:link {
    padding: 0 3px;
    letter-spacing: 0;
  }
}

div#nav ul.dropdown li a:visited {
  color: #fff;
  font-weight: 400;
  padding: 2px 4px;
  border-bottom: none;
  text-decoration: none;
  -webkit-transition: all 0.10s ease-in-out;
  transition: all 0.10s ease-in-out;
}
@media only screen and (max-width: 800px) {
  div#nav ul.dropdown li a:visited {
    padding: 0 3px;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 700px) {
  div#nav ul.dropdown li a:visited {
    padding: 0 3px;
    letter-spacing: 0;
  }
}

div#nav ul.dropdown li a:hover {
  color: #fffff7;
  background-color: #FF9933;
  font-weight: 400;
  border-radius: 5px;
  padding: 2px 4px;
  border-bottom: none;
  text-decoration: none;
}
@media only screen and (max-width: 800px) {
  div#nav ul.dropdown li a:hover {
    padding: 0 3px;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 700px) {
  div#nav ul.dropdown li a:hover {
    padding: 0 3px;
    letter-spacing: 0;
  }
}

div#nav ul.dropdown li.hover,
div#nav ul.dropdown li:hover {
  position: relative;
}

@media only screen and (max-width: 600px) {
  div#nav-sticky-wrapper {
    display: none;
  }
}

div.cycle-slide-show-wrapper {
  *zoom: 1;
  position: relative;
  margin: 3em 0 0 0;
  max-width: 100%;
  z-index: 0;
}
div.cycle-slide-show-wrapper:before, div.cycle-slide-show-wrapper:after {
  content: '';
  display: table;
}
div.cycle-slide-show-wrapper:after {
  clear: both;
}

div.slide-show {
  *zoom: 1;
  position: relative;
  z-index: 0;
  margin: 0 auto;
}
div.slide-show:before, div.slide-show:after {
  content: '';
  display: table;
}
div.slide-show:after {
  clear: both;
}
div.slide-show img {
  margin-bottom: .65em;
}

div#slideshow-1 {
  max-width: 100%;
}

div.single-slide {
  margin: 0 auto 1.25em auto;
}

div.caption-pager-wrap {
  *zoom: 1;
  position: relative;
  max-width: 490px;
}
div.caption-pager-wrap:before, div.caption-pager-wrap:after {
  content: '';
  display: table;
}
div.caption-pager-wrap:after {
  clear: both;
}

div.cycle-slide-caption {
  float: left;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 1em;
  font-weight: 700;
  padding: 0;
  color: #3C9E3C;
}
@media only screen and (max-width: 700px) {
  div.cycle-slide-caption {
    float: none;
  }
}

div.cycle-slide-nav {
  *zoom: 1;
  float: right;
  padding: 0;
}
div.cycle-slide-nav:before, div.cycle-slide-nav:after {
  content: '';
  display: table;
}
div.cycle-slide-nav:after {
  clear: both;
}
@media only screen and (max-width: 700px) {
  div.cycle-slide-nav {
    float: none;
    margin: .5em 0 0 0;
  }
}

div.cycle-pager-1 {
  float: left;
  margin: 0;
}

div.cycle-prev-icon {
  float: left;
  margin: 0 1.2em 0 0;
  padding: .6em 0 0 0;
  cursor: pointer;
}
@media only screen and (max-width: 700px) {
  div.cycle-prev-icon {
    padding: .5em 0 0 0;
    margin: 0 1em 0 0;
  }
}
@media only screen and (max-width: 600px) {
  div.cycle-prev-icon {
    padding: .3em 0 0 0;
    margin: 0 1.1em 0 0;
  }
}
div.cycle-prev-icon img {
  border: none;
}

div.cycle-next-icon {
  float: left;
  margin: 0;
  padding: .6em 0 0 0;
  cursor: pointer;
}
@media only screen and (max-width: 700px) {
  div.cycle-next-icon {
    padding: .5em 0 0 0;
    margin: 0 0 0 .5em;
  }
}
@media only screen and (max-width: 600px) {
  div.cycle-next-icon {
    padding: .3em 0 0 0;
    margin: 0 0 0 .5em;
  }
}
div.cycle-next-icon img {
  border: none;
}

.cycle-pager-1 span {
  font-family: arial;
  font-size: 2.5em;
  width: .65em;
  line-height: .8;
  display: inline-block;
  color: #ddd;
  cursor: pointer;
}
@media only screen and (max-width: 700px) {
  .cycle-pager-1 span {
    font-size: 2.2em;
    width: .75em;
  }
}
@media only screen and (max-width: 460px) {
  .cycle-pager-1 span {
    font-size: 2em;
    width: .75em;
  }
}

.cycle-pager-1 span.cycle-pager-active {
  color: #4CE5C8;
}

.cycle-pager-1 > * {
  cursor: pointer;
}

.is-cms .slide-show img {
  display: none;
}

.is-cms .slide-show img:first-child {
  display: block;
}

a:link, a:visited {
  border-bottom: none;
  text-decoration: none;
}

h1 a:link, h1 a:visited, h2 a:link, h2 a:visited, h3 a:link, h3 a:visited, h4 a:link, h4 a:visited, h5 a:link, h5 a:visited, h6 a:link, h6 a:visited, p a:link, p a:visited, blockquote a:link, blockquote a:visited, li a:link, li a:visited {
  color: #7181b6;
  text-decoration: none;
  border-bottom: 1px dotted #7181b6;
  padding-bottom: 2px;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover, p a:hover, blockquote a:hover, li a:hover {
  color: #FF9933;
  text-decoration: none;
  border-bottom: 1px solid #FF9933;
  padding-bottom: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #3C9E3C;
}

p, blockquote, li {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #316598;
}

p {
  line-height: 1.6;
  margin: 0 0 1em 0;
}

.m {
  display: none;
}
@media only screen and (max-width: 700px) {
  .m {
    display: block;
  }
}

.d {
  display: block;
}
@media only screen and (max-width: 700px) {
  .d {
    display: none;
  }
}

div#header-wrap {
  *zoom: 1;
  width: 100%;
  position: relative;
  background: #fffff7;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 2;
}
div#header-wrap:before, div#header-wrap:after {
  content: '';
  display: table;
}
div#header-wrap:after {
  clear: both;
}
div#header-wrap div#header {
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
  font-size: 1em;
  background: #fffff7;
}
div#header-wrap div#header:before, div#header-wrap div#header:after {
  content: '';
  display: table;
}
div#header-wrap div#header:after {
  clear: both;
}
div#header-wrap div#header:before, div#header-wrap div#header:after {
  content: '';
  display: table;
}
div#header-wrap div#header:after {
  clear: both;
}
@media only screen and (max-width: 800px) {
  div#header-wrap div#header {
    font-size: .9em;
  }
}
@media only screen and (max-width: 1050px) {
  div#header-wrap div#header {
    *zoom: 1;
    width: auto;
    max-width: 1410px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 2em;
    padding-right: 2em;
  }
  div#header-wrap div#header:before, div#header-wrap div#header:after {
    content: '';
    display: table;
  }
  div#header-wrap div#header:after {
    clear: both;
  }
}
@media only screen and (max-width: 800px) {
  div#header-wrap div#header {
    *zoom: 1;
    width: auto;
    max-width: 1410px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 2em;
    padding-right: 2em;
  }
  div#header-wrap div#header:before, div#header-wrap div#header:after {
    content: '';
    display: table;
  }
  div#header-wrap div#header:after {
    clear: both;
  }
}
@media only screen and (max-width: 700px) {
  div#header-wrap div#header {
    *zoom: 1;
    width: auto;
    max-width: 1410px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 2em;
    padding-right: 2em;
  }
  div#header-wrap div#header:before, div#header-wrap div#header:after {
    content: '';
    display: table;
  }
  div#header-wrap div#header:after {
    clear: both;
  }
}
@media only screen and (max-width: 600px) {
  div#header-wrap div#header {
    *zoom: 1;
    width: auto;
    max-width: 1410px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 1em;
    padding-right: 1em;
  }
  div#header-wrap div#header:before, div#header-wrap div#header:after {
    content: '';
    display: table;
  }
  div#header-wrap div#header:after {
    clear: both;
  }
}
div#header-wrap div#header div#logo {
  min-height: 2em;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  padding: .2em 0 .3em 0;
  z-index: 0;
}
div#header-wrap div#header div#logo:before, div#header-wrap div#header div#logo:after {
  content: '';
  display: table;
}
div#header-wrap div#header div#logo:after {
  clear: both;
}
div#header-wrap div#header div#logo:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 800px) {
  div#header-wrap div#header div#logo {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 43.35%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div#header-wrap div#header div#logo:before, div#header-wrap div#header div#logo:after {
    content: '';
    display: table;
  }
  div#header-wrap div#header div#logo:after {
    clear: both;
  }
  div#header-wrap div#header div#logo:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 700px) {
  div#header-wrap div#header div#logo {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 8em;
    padding-right: 8em;
    text-align: center;
  }
  div#header-wrap div#header div#logo:first-child {
    margin-left: auto;
  }
  div#header-wrap div#header div#logo:last-child {
    margin-right: auto;
  }
}
@media only screen and (max-width: 600px) {
  div#header-wrap div#header div#logo {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 4em;
    padding-right: 4em;
    text-align: center;
  }
  div#header-wrap div#header div#logo:first-child {
    margin-left: auto;
  }
  div#header-wrap div#header div#logo:last-child {
    margin-right: auto;
  }
}
@media only screen and (max-width: 460px) {
  div#header-wrap div#header div#logo {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1em;
    padding-right: 1em;
    text-align: center;
  }
  div#header-wrap div#header div#logo:first-child {
    margin-left: auto;
  }
  div#header-wrap div#header div#logo:last-child {
    margin-right: auto;
  }
}
div#header-wrap div#header div#logo img {
  display: block;
  width: 100%;
}
div#header-wrap div#header div#tagline {
  min-height: 2em;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  text-align: right;
  margin: 1em 0 0 0;
}
div#header-wrap div#header div#tagline:before, div#header-wrap div#header div#tagline:after {
  content: '';
  display: table;
}
div#header-wrap div#header div#tagline:after {
  clear: both;
}
div#header-wrap div#header div#tagline:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 800px) {
  div#header-wrap div#header div#tagline {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 53.65%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div#header-wrap div#header div#tagline:before, div#header-wrap div#header div#tagline:after {
    content: '';
    display: table;
  }
  div#header-wrap div#header div#tagline:after {
    clear: both;
  }
  div#header-wrap div#header div#tagline:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 700px) {
  div#header-wrap div#header div#tagline {
    font-size: .8em;
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1em;
    padding-right: 1em;
    text-align: center;
    text-align: center;
    margin: 1em 0 0 0;
  }
  div#header-wrap div#header div#tagline:first-child {
    margin-left: auto;
  }
  div#header-wrap div#header div#tagline:last-child {
    margin-right: auto;
  }
}
@media only screen and (max-width: 460px) {
  div#header-wrap div#header div#tagline {
    font-size: .75em;
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1px;
    padding-right: 1px;
    text-align: center;
  }
  div#header-wrap div#header div#tagline:first-child {
    margin-left: auto;
  }
  div#header-wrap div#header div#tagline:last-child {
    margin-right: auto;
  }
}
div#header-wrap div#header div#tagline h1, div#header-wrap div#header div#tagline h2, div#header-wrap div#header div#tagline h3 {
  margin: 0 0 .25em 0;
  line-height: 1.2;
}
div#header-wrap div#header div#tagline h1 {
  font-size: 1.5em;
  padding: .5em;
  display: inline-block;
  line-height: 1.3;
}
div#header-wrap div#header div#tagline h2 {
  font-size: 1.2em;
  padding: .5em;
  font-family: Bitter, serif;
  display: inline-block;
  line-height: 1.5;
}
div#header-wrap div#header div#tagline h3 {
  font-size: 1em;
  font-family: Bitter, serif;
  color: #4CE5C8;
}
div#header-wrap div#header div#tagline div#tagline-line-one div#newsletter {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 100%;
  margin-left: 0%;
  margin-right: 3%;
}
div#header-wrap div#header div#tagline div#tagline-line-one div#newsletter:before, div#header-wrap div#header div#tagline div#tagline-line-one div#newsletter:after {
  content: '';
  display: table;
}
div#header-wrap div#header div#tagline div#tagline-line-one div#newsletter:after {
  clear: both;
}
div#header-wrap div#header div#tagline div#tagline-line-one div#newsletter:last-child {
  margin-right: 0%;
}
div#header-wrap div#header div#tagline div#tagline-line-one div#newsletter p {
  text-align: right;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 1.1em;
  font-weight: 700;
  padding: .75em;
  background: #ffc;
  display: inline-block;
  line-height: 1;
}
@media only screen and (max-width: 700px) {
  div#header-wrap div#header div#tagline div#tagline-line-one div#newsletter p {
    text-align: center;
    line-height: 1.4;
    margin: 0;
  }
}
div#header-wrap div#header div#tagline div#tagline-line-two p {
  text-align: right;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1;
  margin: 3em 0 0 0;
}
@media only screen and (max-width: 700px) {
  div#header-wrap div#header div#tagline div#tagline-line-two p {
    text-align: center;
    line-height: 1.3;
    margin: 1em 0 0 0;
  }
}
div#header-wrap div#header div#tagline div#tagline-line-three div#share p {
  text-align: right;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 1.1em;
  line-height: 1;
  margin: 1em 0 1em 0;
  font-weight: 700;
}
@media only screen and (max-width: 700px) {
  div#header-wrap div#header div#tagline div#tagline-line-three div#share p {
    text-align: center;
    line-height: 1.4;
    margin: .5em 0;
  }
}
div#header-wrap div#header div#tagline div#tagline-line-four img {
  max-width: 120px;
  margin: 1em 0;
}

div.row-wrap {
  *zoom: 1;
  position: relative;
  width: 100%;
  background-image: url("../img-png/bg-stripes-v2.png");
  background-repeat: repeat;
}
div.row-wrap:before, div.row-wrap:after {
  content: '';
  display: table;
}
div.row-wrap:after {
  clear: both;
}

div.content-wrap, div#footer div.footer-content-wrap {
  *zoom: 1;
  position: relative;
  background: #fdfdff;
  *zoom: 1;
  width: auto;
  max-width: 1000px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 1em;
  padding-right: 1em;
  border-left: 5px solid #c0d4ff;
  border-right: 5px solid #c0d4ff;
}
div.content-wrap:before, div#footer div.footer-content-wrap:before, div.content-wrap:after, div#footer div.footer-content-wrap:after {
  content: '';
  display: table;
}
div.content-wrap:after, div#footer div.footer-content-wrap:after {
  clear: both;
}
div.content-wrap:before, div#footer div.footer-content-wrap:before, div.content-wrap:after, div#footer div.footer-content-wrap:after {
  content: '';
  display: table;
}
div.content-wrap:after, div#footer div.footer-content-wrap:after {
  clear: both;
}
@media only screen and (max-width: 1050px) {
  div.content-wrap, div#footer div.footer-content-wrap {
    *zoom: 1;
    width: auto;
    max-width: 1410px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 1em;
    padding-right: 1em;
  }
  div.content-wrap:before, div#footer div.footer-content-wrap:before, div.content-wrap:after, div#footer div.footer-content-wrap:after {
    content: '';
    display: table;
  }
  div.content-wrap:after, div#footer div.footer-content-wrap:after {
    clear: both;
  }
}
@media only screen and (max-width: 800px) {
  div.content-wrap, div#footer div.footer-content-wrap {
    *zoom: 1;
    width: auto;
    max-width: 1410px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 1em;
    padding-right: 1em;
  }
  div.content-wrap:before, div#footer div.footer-content-wrap:before, div.content-wrap:after, div#footer div.footer-content-wrap:after {
    content: '';
    display: table;
  }
  div.content-wrap:after, div#footer div.footer-content-wrap:after {
    clear: both;
  }
}
@media only screen and (max-width: 700px) {
  div.content-wrap, div#footer div.footer-content-wrap {
    *zoom: 1;
    width: auto;
    max-width: 1410px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 7.5%;
    padding-right: 7.5%;
  }
  div.content-wrap:before, div#footer div.footer-content-wrap:before, div.content-wrap:after, div#footer div.footer-content-wrap:after {
    content: '';
    display: table;
  }
  div.content-wrap:after, div#footer div.footer-content-wrap:after {
    clear: both;
  }
}
@media only screen and (max-width: 600px) {
  div.content-wrap, div#footer div.footer-content-wrap {
    *zoom: 1;
    width: auto;
    max-width: 1410px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 5%;
    padding-right: 5%;
  }
  div.content-wrap:before, div#footer div.footer-content-wrap:before, div.content-wrap:after, div#footer div.footer-content-wrap:after {
    content: '';
    display: table;
  }
  div.content-wrap:after, div#footer div.footer-content-wrap:after {
    clear: both;
  }
}
@media only screen and (max-width: 460px) {
  div.content-wrap, div#footer div.footer-content-wrap {
    *zoom: 1;
    width: auto;
    max-width: 1410px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 3%;
    padding-right: 3%;
  }
  div.content-wrap:before, div#footer div.footer-content-wrap:before, div.content-wrap:after, div#footer div.footer-content-wrap:after {
    content: '';
    display: table;
  }
  div.content-wrap:after, div#footer div.footer-content-wrap:after {
    clear: both;
  }
}
div.content-wrap div.left-col, div#footer div.footer-content-wrap div.left-col, div.content-wrap div.left-col-cottages, div#footer div.footer-content-wrap div.left-col-cottages {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 5.24%;
  margin-left: 0%;
  margin-right: 3%;
}
div.content-wrap div.left-col:before, div#footer div.footer-content-wrap div.left-col:before, div.content-wrap div.left-col-cottages:before, div#footer div.footer-content-wrap div.left-col-cottages:before, div.content-wrap div.left-col:after, div#footer div.footer-content-wrap div.left-col:after, div.content-wrap div.left-col-cottages:after, div#footer div.footer-content-wrap div.left-col-cottages:after {
  content: '';
  display: table;
}
div.content-wrap div.left-col:after, div#footer div.footer-content-wrap div.left-col:after, div.content-wrap div.left-col-cottages:after, div#footer div.footer-content-wrap div.left-col-cottages:after {
  clear: both;
}
div.content-wrap div.left-col:last-child, div#footer div.footer-content-wrap div.left-col:last-child, div.content-wrap div.left-col-cottages:last-child, div#footer div.footer-content-wrap div.left-col-cottages:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 1050px) {
  div.content-wrap div.left-col, div#footer div.footer-content-wrap div.left-col, div.content-wrap div.left-col-cottages, div#footer div.footer-content-wrap div.left-col-cottages {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 2.15%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div.content-wrap div.left-col:before, div#footer div.footer-content-wrap div.left-col:before, div.content-wrap div.left-col-cottages:before, div#footer div.footer-content-wrap div.left-col-cottages:before, div.content-wrap div.left-col:after, div#footer div.footer-content-wrap div.left-col:after, div.content-wrap div.left-col-cottages:after, div#footer div.footer-content-wrap div.left-col-cottages:after {
    content: '';
    display: table;
  }
  div.content-wrap div.left-col:after, div#footer div.footer-content-wrap div.left-col:after, div.content-wrap div.left-col-cottages:after, div#footer div.footer-content-wrap div.left-col-cottages:after {
    clear: both;
  }
  div.content-wrap div.left-col:last-child, div#footer div.footer-content-wrap div.left-col:last-child, div.content-wrap div.left-col-cottages:last-child, div#footer div.footer-content-wrap div.left-col-cottages:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 800px) {
  div.content-wrap div.left-col, div#footer div.footer-content-wrap div.left-col, div.content-wrap div.left-col-cottages, div#footer div.footer-content-wrap div.left-col-cottages {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 2.15%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div.content-wrap div.left-col:before, div#footer div.footer-content-wrap div.left-col:before, div.content-wrap div.left-col-cottages:before, div#footer div.footer-content-wrap div.left-col-cottages:before, div.content-wrap div.left-col:after, div#footer div.footer-content-wrap div.left-col:after, div.content-wrap div.left-col-cottages:after, div#footer div.footer-content-wrap div.left-col-cottages:after {
    content: '';
    display: table;
  }
  div.content-wrap div.left-col:after, div#footer div.footer-content-wrap div.left-col:after, div.content-wrap div.left-col-cottages:after, div#footer div.footer-content-wrap div.left-col-cottages:after {
    clear: both;
  }
  div.content-wrap div.left-col:last-child, div#footer div.footer-content-wrap div.left-col:last-child, div.content-wrap div.left-col-cottages:last-child, div#footer div.footer-content-wrap div.left-col-cottages:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.left-col, div#footer div.footer-content-wrap div.left-col, div.content-wrap div.left-col-cottages, div#footer div.footer-content-wrap div.left-col-cottages {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 100%;
    margin-left: 0%;
    margin-right: 0%;
  }
  div.content-wrap div.left-col:first-child, div#footer div.footer-content-wrap div.left-col:first-child, div.content-wrap div.left-col-cottages:first-child, div#footer div.footer-content-wrap div.left-col-cottages:first-child {
    margin-left: auto;
  }
  div.content-wrap div.left-col:last-child, div#footer div.footer-content-wrap div.left-col:last-child, div.content-wrap div.left-col-cottages:last-child, div#footer div.footer-content-wrap div.left-col-cottages:last-child {
    margin-right: auto;
  }
  div.content-wrap div.left-col:before, div#footer div.footer-content-wrap div.left-col:before, div.content-wrap div.left-col-cottages:before, div#footer div.footer-content-wrap div.left-col-cottages:before, div.content-wrap div.left-col:after, div#footer div.footer-content-wrap div.left-col:after, div.content-wrap div.left-col-cottages:after, div#footer div.footer-content-wrap div.left-col-cottages:after {
    content: '';
    display: table;
  }
  div.content-wrap div.left-col:after, div#footer div.footer-content-wrap div.left-col:after, div.content-wrap div.left-col-cottages:after, div#footer div.footer-content-wrap div.left-col-cottages:after {
    clear: both;
  }
}
div.content-wrap div.left-col-cottages, div#footer div.footer-content-wrap div.left-col-cottages {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 17.6%;
  margin-left: 0%;
  margin-right: 3%;
  background: none;
}
div.content-wrap div.left-col-cottages:before, div#footer div.footer-content-wrap div.left-col-cottages:before, div.content-wrap div.left-col-cottages:after, div#footer div.footer-content-wrap div.left-col-cottages:after {
  content: '';
  display: table;
}
div.content-wrap div.left-col-cottages:after, div#footer div.footer-content-wrap div.left-col-cottages:after {
  clear: both;
}
div.content-wrap div.left-col-cottages:last-child, div#footer div.footer-content-wrap div.left-col-cottages:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 1050px) {
  div.content-wrap div.left-col-cottages, div#footer div.footer-content-wrap div.left-col-cottages {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 17.6%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div.content-wrap div.left-col-cottages:before, div#footer div.footer-content-wrap div.left-col-cottages:before, div.content-wrap div.left-col-cottages:after, div#footer div.footer-content-wrap div.left-col-cottages:after {
    content: '';
    display: table;
  }
  div.content-wrap div.left-col-cottages:after, div#footer div.footer-content-wrap div.left-col-cottages:after {
    clear: both;
  }
  div.content-wrap div.left-col-cottages:last-child, div#footer div.footer-content-wrap div.left-col-cottages:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 800px) {
  div.content-wrap div.left-col-cottages, div#footer div.footer-content-wrap div.left-col-cottages {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 17.6%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div.content-wrap div.left-col-cottages:before, div#footer div.footer-content-wrap div.left-col-cottages:before, div.content-wrap div.left-col-cottages:after, div#footer div.footer-content-wrap div.left-col-cottages:after {
    content: '';
    display: table;
  }
  div.content-wrap div.left-col-cottages:after, div#footer div.footer-content-wrap div.left-col-cottages:after {
    clear: both;
  }
  div.content-wrap div.left-col-cottages:last-child, div#footer div.footer-content-wrap div.left-col-cottages:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.left-col-cottages, div#footer div.footer-content-wrap div.left-col-cottages {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1px;
    padding-right: 1px;
    text-align: left;
  }
  div.content-wrap div.left-col-cottages:first-child, div#footer div.footer-content-wrap div.left-col-cottages:first-child {
    margin-left: auto;
  }
  div.content-wrap div.left-col-cottages:last-child, div#footer div.footer-content-wrap div.left-col-cottages:last-child {
    margin-right: auto;
  }
}
div.content-wrap div.left-col-cottages p.cottage-nav-list, div#footer div.footer-content-wrap div.left-col-cottages p.cottage-nav-list {
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: 700;
  font-size: .95em;
  line-height: 2.5;
  border-left: 1px dotted #FF9933;
  padding-left: .7em;
  margin: 2.5em 0 1em 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 800px) {
  div.content-wrap div.left-col-cottages p.cottage-nav-list, div#footer div.footer-content-wrap div.left-col-cottages p.cottage-nav-list {
    font-size: .9em;
  }
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.left-col-cottages p.cottage-nav-list, div#footer div.footer-content-wrap div.left-col-cottages p.cottage-nav-list {
    font-size: .8em;
  }
}
@media only screen and (max-width: 600px) {
  div.content-wrap div.left-col-cottages p.cottage-nav-list, div#footer div.footer-content-wrap div.left-col-cottages p.cottage-nav-list {
    font-size: .8em;
  }
}
div.content-wrap div.center-col, div#footer div.footer-content-wrap div.center-col, div.content-wrap div.center-col-cottages, div#footer div.footer-content-wrap div.center-col-cottages {
  *zoom: 1;
  position: relative;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 74.25%;
  margin-left: 0%;
  margin-right: 3%;
  font-size: 1em;
}
div.content-wrap div.center-col:before, div#footer div.footer-content-wrap div.center-col:before, div.content-wrap div.center-col-cottages:before, div#footer div.footer-content-wrap div.center-col-cottages:before, div.content-wrap div.center-col:after, div#footer div.footer-content-wrap div.center-col:after, div.content-wrap div.center-col-cottages:after, div#footer div.footer-content-wrap div.center-col-cottages:after {
  content: '';
  display: table;
}
div.content-wrap div.center-col:after, div#footer div.footer-content-wrap div.center-col:after, div.content-wrap div.center-col-cottages:after, div#footer div.footer-content-wrap div.center-col-cottages:after {
  clear: both;
}
div.content-wrap div.center-col:before, div#footer div.footer-content-wrap div.center-col:before, div.content-wrap div.center-col-cottages:before, div#footer div.footer-content-wrap div.center-col-cottages:before, div.content-wrap div.center-col:after, div#footer div.footer-content-wrap div.center-col:after, div.content-wrap div.center-col-cottages:after, div#footer div.footer-content-wrap div.center-col-cottages:after {
  content: '';
  display: table;
}
div.content-wrap div.center-col:after, div#footer div.footer-content-wrap div.center-col:after, div.content-wrap div.center-col-cottages:after, div#footer div.footer-content-wrap div.center-col-cottages:after {
  clear: both;
}
div.content-wrap div.center-col:last-child, div#footer div.footer-content-wrap div.center-col:last-child, div.content-wrap div.center-col-cottages:last-child, div#footer div.footer-content-wrap div.center-col-cottages:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 1050px) {
  div.content-wrap div.center-col, div#footer div.footer-content-wrap div.center-col, div.content-wrap div.center-col-cottages, div#footer div.footer-content-wrap div.center-col-cottages {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 79.4%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div.content-wrap div.center-col:before, div#footer div.footer-content-wrap div.center-col:before, div.content-wrap div.center-col-cottages:before, div#footer div.footer-content-wrap div.center-col-cottages:before, div.content-wrap div.center-col:after, div#footer div.footer-content-wrap div.center-col:after, div.content-wrap div.center-col-cottages:after, div#footer div.footer-content-wrap div.center-col-cottages:after {
    content: '';
    display: table;
  }
  div.content-wrap div.center-col:after, div#footer div.footer-content-wrap div.center-col:after, div.content-wrap div.center-col-cottages:after, div#footer div.footer-content-wrap div.center-col-cottages:after {
    clear: both;
  }
  div.content-wrap div.center-col:last-child, div#footer div.footer-content-wrap div.center-col:last-child, div.content-wrap div.center-col-cottages:last-child, div#footer div.footer-content-wrap div.center-col-cottages:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 800px) {
  div.content-wrap div.center-col, div#footer div.footer-content-wrap div.center-col, div.content-wrap div.center-col-cottages, div#footer div.footer-content-wrap div.center-col-cottages {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 74.25%;
    margin-left: 0%;
    margin-right: 3%;
    font-size: .95em;
  }
  div.content-wrap div.center-col:before, div#footer div.footer-content-wrap div.center-col:before, div.content-wrap div.center-col-cottages:before, div#footer div.footer-content-wrap div.center-col-cottages:before, div.content-wrap div.center-col:after, div#footer div.footer-content-wrap div.center-col:after, div.content-wrap div.center-col-cottages:after, div#footer div.footer-content-wrap div.center-col-cottages:after {
    content: '';
    display: table;
  }
  div.content-wrap div.center-col:after, div#footer div.footer-content-wrap div.center-col:after, div.content-wrap div.center-col-cottages:after, div#footer div.footer-content-wrap div.center-col-cottages:after {
    clear: both;
  }
  div.content-wrap div.center-col:last-child, div#footer div.footer-content-wrap div.center-col:last-child, div.content-wrap div.center-col-cottages:last-child, div#footer div.footer-content-wrap div.center-col-cottages:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.center-col, div#footer div.footer-content-wrap div.center-col, div.content-wrap div.center-col-cottages, div#footer div.footer-content-wrap div.center-col-cottages {
    font-size: .9em;
  }
}
@media only screen and (max-width: 460px) {
  div.content-wrap div.center-col, div#footer div.footer-content-wrap div.center-col, div.content-wrap div.center-col-cottages, div#footer div.footer-content-wrap div.center-col-cottages {
    font-size: .8em;
  }
}
div.content-wrap div.center-col h1, div#footer div.footer-content-wrap div.center-col h1, div.content-wrap div.center-col-cottages h1, div#footer div.footer-content-wrap div.center-col-cottages h1 {
  font-size: 2em;
  margin: 1em 0 .5em 0;
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.center-col h1, div#footer div.footer-content-wrap div.center-col h1, div.content-wrap div.center-col-cottages h1, div#footer div.footer-content-wrap div.center-col-cottages h1 {
    font-size: 1.7em;
    margin: 1em 0 1em 0;
  }
}
div.content-wrap div.center-col h2, div#footer div.footer-content-wrap div.center-col h2, div.content-wrap div.center-col-cottages h2, div#footer div.footer-content-wrap div.center-col-cottages h2 {
  font-size: 1.4em;
  margin: 1em 0 .5em 0;
}
div.content-wrap div.center-col h3, div#footer div.footer-content-wrap div.center-col h3, div.content-wrap div.center-col-cottages h3, div#footer div.footer-content-wrap div.center-col-cottages h3 {
  margin: 2em 0 1em 0;
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.center-col, div#footer div.footer-content-wrap div.center-col, div.content-wrap div.center-col-cottages, div#footer div.footer-content-wrap div.center-col-cottages {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  div.content-wrap div.center-col:first-child, div#footer div.footer-content-wrap div.center-col:first-child, div.content-wrap div.center-col-cottages:first-child, div#footer div.footer-content-wrap div.center-col-cottages:first-child {
    margin-left: auto;
  }
  div.content-wrap div.center-col:last-child, div#footer div.footer-content-wrap div.center-col:last-child, div.content-wrap div.center-col-cottages:last-child, div#footer div.footer-content-wrap div.center-col-cottages:last-child {
    margin-right: auto;
  }
}
div.content-wrap div.center-col div.float-left-wrap, div#footer div.footer-content-wrap div.center-col div.float-left-wrap, div.content-wrap div.center-col-cottages div.float-left-wrap, div#footer div.footer-content-wrap div.center-col-cottages div.float-left-wrap {
  *zoom: 1;
  margin-bottom: 1em;
}
div.content-wrap div.center-col div.float-left-wrap:before, div#footer div.footer-content-wrap div.center-col div.float-left-wrap:before, div.content-wrap div.center-col-cottages div.float-left-wrap:before, div#footer div.footer-content-wrap div.center-col-cottages div.float-left-wrap:before, div.content-wrap div.center-col div.float-left-wrap:after, div#footer div.footer-content-wrap div.center-col div.float-left-wrap:after, div.content-wrap div.center-col-cottages div.float-left-wrap:after, div#footer div.footer-content-wrap div.center-col-cottages div.float-left-wrap:after {
  content: '';
  display: table;
}
div.content-wrap div.center-col div.float-left-wrap:after, div#footer div.footer-content-wrap div.center-col div.float-left-wrap:after, div.content-wrap div.center-col-cottages div.float-left-wrap:after, div#footer div.footer-content-wrap div.center-col-cottages div.float-left-wrap:after {
  clear: both;
}
div.content-wrap div.center-col div.float-left, div#footer div.footer-content-wrap div.center-col div.float-left, div.content-wrap div.center-col-cottages div.float-left, div#footer div.footer-content-wrap div.center-col-cottages div.float-left {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 38.2%;
  margin-left: 0%;
  margin-right: 3%;
  max-width: 300px;
}
div.content-wrap div.center-col div.float-left:before, div#footer div.footer-content-wrap div.center-col div.float-left:before, div.content-wrap div.center-col-cottages div.float-left:before, div#footer div.footer-content-wrap div.center-col-cottages div.float-left:before, div.content-wrap div.center-col div.float-left:after, div#footer div.footer-content-wrap div.center-col div.float-left:after, div.content-wrap div.center-col-cottages div.float-left:after, div#footer div.footer-content-wrap div.center-col-cottages div.float-left:after {
  content: '';
  display: table;
}
div.content-wrap div.center-col div.float-left:after, div#footer div.footer-content-wrap div.center-col div.float-left:after, div.content-wrap div.center-col-cottages div.float-left:after, div#footer div.footer-content-wrap div.center-col-cottages div.float-left:after {
  clear: both;
}
div.content-wrap div.center-col div.float-left:last-child, div#footer div.footer-content-wrap div.center-col div.float-left:last-child, div.content-wrap div.center-col-cottages div.float-left:last-child, div#footer div.footer-content-wrap div.center-col-cottages div.float-left:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.center-col div.float-left, div#footer div.footer-content-wrap div.center-col div.float-left, div.content-wrap div.center-col-cottages div.float-left, div#footer div.footer-content-wrap div.center-col-cottages div.float-left {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1em;
    padding-right: 1em;
    text-align: left;
  }
  div.content-wrap div.center-col div.float-left:first-child, div#footer div.footer-content-wrap div.center-col div.float-left:first-child, div.content-wrap div.center-col-cottages div.float-left:first-child, div#footer div.footer-content-wrap div.center-col-cottages div.float-left:first-child {
    margin-left: auto;
  }
  div.content-wrap div.center-col div.float-left:last-child, div#footer div.footer-content-wrap div.center-col div.float-left:last-child, div.content-wrap div.center-col-cottages div.float-left:last-child, div#footer div.footer-content-wrap div.center-col-cottages div.float-left:last-child {
    margin-right: auto;
  }
}
div.content-wrap div.center-col div.float-left p, div#footer div.footer-content-wrap div.center-col div.float-left p, div.content-wrap div.center-col-cottages div.float-left p, div#footer div.footer-content-wrap div.center-col-cottages div.float-left p {
  font-family: "Open Sans Condensed", sans-serif;
  line-height: 1.3;
  font-size: .9em;
  color: #3C9E3C;
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.center-col div.float-left, div#footer div.footer-content-wrap div.center-col div.float-left, div.content-wrap div.center-col-cottages div.float-left, div#footer div.footer-content-wrap div.center-col-cottages div.float-left {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1em;
    padding-right: 1em;
    text-align: left;
  }
  div.content-wrap div.center-col div.float-left:first-child, div#footer div.footer-content-wrap div.center-col div.float-left:first-child, div.content-wrap div.center-col-cottages div.float-left:first-child, div#footer div.footer-content-wrap div.center-col-cottages div.float-left:first-child {
    margin-left: auto;
  }
  div.content-wrap div.center-col div.float-left:last-child, div#footer div.footer-content-wrap div.center-col div.float-left:last-child, div.content-wrap div.center-col-cottages div.float-left:last-child, div#footer div.footer-content-wrap div.center-col-cottages div.float-left:last-child {
    margin-right: auto;
  }
}
div.content-wrap div.center-col div.float-left-blurb, div#footer div.footer-content-wrap div.center-col div.float-left-blurb, div.content-wrap div.center-col-cottages div.float-left-blurb, div#footer div.footer-content-wrap div.center-col-cottages div.float-left-blurb {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 58.8%;
  margin-left: 0%;
  margin-right: 3%;
}
div.content-wrap div.center-col div.float-left-blurb:before, div#footer div.footer-content-wrap div.center-col div.float-left-blurb:before, div.content-wrap div.center-col-cottages div.float-left-blurb:before, div#footer div.footer-content-wrap div.center-col-cottages div.float-left-blurb:before, div.content-wrap div.center-col div.float-left-blurb:after, div#footer div.footer-content-wrap div.center-col div.float-left-blurb:after, div.content-wrap div.center-col-cottages div.float-left-blurb:after, div#footer div.footer-content-wrap div.center-col-cottages div.float-left-blurb:after {
  content: '';
  display: table;
}
div.content-wrap div.center-col div.float-left-blurb:after, div#footer div.footer-content-wrap div.center-col div.float-left-blurb:after, div.content-wrap div.center-col-cottages div.float-left-blurb:after, div#footer div.footer-content-wrap div.center-col-cottages div.float-left-blurb:after {
  clear: both;
}
div.content-wrap div.center-col div.float-left-blurb:last-child, div#footer div.footer-content-wrap div.center-col div.float-left-blurb:last-child, div.content-wrap div.center-col-cottages div.float-left-blurb:last-child, div#footer div.footer-content-wrap div.center-col-cottages div.float-left-blurb:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.center-col div.float-left-blurb, div#footer div.footer-content-wrap div.center-col div.float-left-blurb, div.content-wrap div.center-col-cottages div.float-left-blurb, div#footer div.footer-content-wrap div.center-col-cottages div.float-left-blurb {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1em;
    padding-right: 1em;
    text-align: left;
  }
  div.content-wrap div.center-col div.float-left-blurb:first-child, div#footer div.footer-content-wrap div.center-col div.float-left-blurb:first-child, div.content-wrap div.center-col-cottages div.float-left-blurb:first-child, div#footer div.footer-content-wrap div.center-col-cottages div.float-left-blurb:first-child {
    margin-left: auto;
  }
  div.content-wrap div.center-col div.float-left-blurb:last-child, div#footer div.footer-content-wrap div.center-col div.float-left-blurb:last-child, div.content-wrap div.center-col-cottages div.float-left-blurb:last-child, div#footer div.footer-content-wrap div.center-col-cottages div.float-left-blurb:last-child {
    margin-right: auto;
  }
}
div.content-wrap div.center-col div.sub-wrapper, div#footer div.footer-content-wrap div.center-col div.sub-wrapper, div.content-wrap div.center-col-cottages div.sub-wrapper, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper {
  *zoom: 1;
  position: relative;
  width: 100%;
  margin: 2em 0 1em 0;
}
div.content-wrap div.center-col div.sub-wrapper:before, div#footer div.footer-content-wrap div.center-col div.sub-wrapper:before, div.content-wrap div.center-col-cottages div.sub-wrapper:before, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper:before, div.content-wrap div.center-col div.sub-wrapper:after, div#footer div.footer-content-wrap div.center-col div.sub-wrapper:after, div.content-wrap div.center-col-cottages div.sub-wrapper:after, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper:after {
  content: '';
  display: table;
}
div.content-wrap div.center-col div.sub-wrapper:after, div#footer div.footer-content-wrap div.center-col div.sub-wrapper:after, div.content-wrap div.center-col-cottages div.sub-wrapper:after, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper:after {
  clear: both;
}
div.content-wrap div.center-col div.sub-wrapper div.sub-left, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-left, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-left, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-left {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  margin-bottom: 1em;
}
div.content-wrap div.center-col div.sub-wrapper div.sub-left:before, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-left:before, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-left:before, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-left:before, div.content-wrap div.center-col div.sub-wrapper div.sub-left:after, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-left:after, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-left:after, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-left:after {
  content: '';
  display: table;
}
div.content-wrap div.center-col div.sub-wrapper div.sub-left:after, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-left:after, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-left:after, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-left:after {
  clear: both;
}
div.content-wrap div.center-col div.sub-wrapper div.sub-left:last-child, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-left:last-child, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-left:last-child, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-left:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.center-col div.sub-wrapper div.sub-left, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-left, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-left, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-left {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1em;
    padding-right: 1em;
    text-align: left;
  }
  div.content-wrap div.center-col div.sub-wrapper div.sub-left:first-child, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-left:first-child, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-left:first-child, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-left:first-child {
    margin-left: auto;
  }
  div.content-wrap div.center-col div.sub-wrapper div.sub-left:last-child, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-left:last-child, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-left:last-child, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-left:last-child {
    margin-right: auto;
  }
}
div.content-wrap div.center-col div.sub-wrapper div.sub-left p, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-left p, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-left p, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-left p {
  font-family: "Open Sans Condensed", sans-serif;
  line-height: 1.3;
  margin-left: 1em;
  font-size: .9em;
  color: #3C9E3C;
}
div.content-wrap div.center-col div.sub-wrapper div.sub-right, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-right, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-right, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-right {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  margin-bottom: 1em;
}
div.content-wrap div.center-col div.sub-wrapper div.sub-right:before, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-right:before, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-right:before, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-right:before, div.content-wrap div.center-col div.sub-wrapper div.sub-right:after, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-right:after, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-right:after, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-right:after {
  content: '';
  display: table;
}
div.content-wrap div.center-col div.sub-wrapper div.sub-right:after, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-right:after, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-right:after, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-right:after {
  clear: both;
}
div.content-wrap div.center-col div.sub-wrapper div.sub-right:last-child, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-right:last-child, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-right:last-child, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-right:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.center-col div.sub-wrapper div.sub-right, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-right, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-right, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-right {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1em;
    padding-right: 1em;
    text-align: left;
  }
  div.content-wrap div.center-col div.sub-wrapper div.sub-right:first-child, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-right:first-child, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-right:first-child, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-right:first-child {
    margin-left: auto;
  }
  div.content-wrap div.center-col div.sub-wrapper div.sub-right:last-child, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-right:last-child, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-right:last-child, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-right:last-child {
    margin-right: auto;
  }
}
div.content-wrap div.center-col div.sub-wrapper div.sub-right p, div#footer div.footer-content-wrap div.center-col div.sub-wrapper div.sub-right p, div.content-wrap div.center-col-cottages div.sub-wrapper div.sub-right p, div#footer div.footer-content-wrap div.center-col-cottages div.sub-wrapper div.sub-right p {
  font-family: "Open Sans Condensed", sans-serif;
  line-height: 1.3;
  margin-left: 1em;
  font-size: .9em;
  color: #3C9E3C;
}
div.content-wrap div.center-col div.cottage-list-wrap, div#footer div.footer-content-wrap div.center-col div.cottage-list-wrap, div.content-wrap div.center-col-cottages div.cottage-list-wrap, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-list-wrap, div.content-wrap div.center-col div.rates, div#footer div.footer-content-wrap div.center-col div.rates, div.content-wrap div.center-col-cottages div.rates, div#footer div.footer-content-wrap div.center-col-cottages div.rates, div.content-wrap div.center-col div.cottage-rates, div#footer div.footer-content-wrap div.center-col div.cottage-rates, div.content-wrap div.center-col-cottages div.cottage-rates, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-rates {
  margin: 2em 0;
  padding: 0 2em 1em 2em;
  background: #fffff7;
  border: 1px solid #FF9933;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  display: inline-block;
  *zoom: 1;
  width: auto;
  max-width: 80%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 2em;
  padding-right: 2em;
}
div.content-wrap div.center-col div.cottage-list-wrap:before, div#footer div.footer-content-wrap div.center-col div.cottage-list-wrap:before, div.content-wrap div.center-col-cottages div.cottage-list-wrap:before, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-list-wrap:before, div.content-wrap div.center-col div.rates:before, div#footer div.footer-content-wrap div.center-col div.rates:before, div.content-wrap div.center-col-cottages div.rates:before, div#footer div.footer-content-wrap div.center-col-cottages div.rates:before, div.content-wrap div.center-col div.cottage-rates:before, div#footer div.footer-content-wrap div.center-col div.cottage-rates:before, div.content-wrap div.center-col-cottages div.cottage-rates:before, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-rates:before, div.content-wrap div.center-col div.cottage-list-wrap:after, div#footer div.footer-content-wrap div.center-col div.cottage-list-wrap:after, div.content-wrap div.center-col-cottages div.cottage-list-wrap:after, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-list-wrap:after, div.content-wrap div.center-col div.rates:after, div#footer div.footer-content-wrap div.center-col div.rates:after, div.content-wrap div.center-col-cottages div.rates:after, div#footer div.footer-content-wrap div.center-col-cottages div.rates:after, div.content-wrap div.center-col div.cottage-rates:after, div#footer div.footer-content-wrap div.center-col div.cottage-rates:after, div.content-wrap div.center-col-cottages div.cottage-rates:after, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-rates:after {
  content: '';
  display: table;
}
div.content-wrap div.center-col div.cottage-list-wrap:after, div#footer div.footer-content-wrap div.center-col div.cottage-list-wrap:after, div.content-wrap div.center-col-cottages div.cottage-list-wrap:after, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-list-wrap:after, div.content-wrap div.center-col div.rates:after, div#footer div.footer-content-wrap div.center-col div.rates:after, div.content-wrap div.center-col-cottages div.rates:after, div#footer div.footer-content-wrap div.center-col-cottages div.rates:after, div.content-wrap div.center-col div.cottage-rates:after, div#footer div.footer-content-wrap div.center-col div.cottage-rates:after, div.content-wrap div.center-col-cottages div.cottage-rates:after, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-rates:after {
  clear: both;
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.center-col div.cottage-list-wrap, div#footer div.footer-content-wrap div.center-col div.cottage-list-wrap, div.content-wrap div.center-col-cottages div.cottage-list-wrap, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-list-wrap, div.content-wrap div.center-col div.rates, div#footer div.footer-content-wrap div.center-col div.rates, div.content-wrap div.center-col-cottages div.rates, div#footer div.footer-content-wrap div.center-col-cottages div.rates, div.content-wrap div.center-col div.cottage-rates, div#footer div.footer-content-wrap div.center-col div.cottage-rates, div.content-wrap div.center-col-cottages div.cottage-rates, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-rates {
    *zoom: 1;
    width: auto;
    max-width: 90%;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 1em;
    padding-right: 1em;
  }
  div.content-wrap div.center-col div.cottage-list-wrap:before, div#footer div.footer-content-wrap div.center-col div.cottage-list-wrap:before, div.content-wrap div.center-col-cottages div.cottage-list-wrap:before, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-list-wrap:before, div.content-wrap div.center-col div.rates:before, div#footer div.footer-content-wrap div.center-col div.rates:before, div.content-wrap div.center-col-cottages div.rates:before, div#footer div.footer-content-wrap div.center-col-cottages div.rates:before, div.content-wrap div.center-col div.cottage-rates:before, div#footer div.footer-content-wrap div.center-col div.cottage-rates:before, div.content-wrap div.center-col-cottages div.cottage-rates:before, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-rates:before, div.content-wrap div.center-col div.cottage-list-wrap:after, div#footer div.footer-content-wrap div.center-col div.cottage-list-wrap:after, div.content-wrap div.center-col-cottages div.cottage-list-wrap:after, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-list-wrap:after, div.content-wrap div.center-col div.rates:after, div#footer div.footer-content-wrap div.center-col div.rates:after, div.content-wrap div.center-col-cottages div.rates:after, div#footer div.footer-content-wrap div.center-col-cottages div.rates:after, div.content-wrap div.center-col div.cottage-rates:after, div#footer div.footer-content-wrap div.center-col div.cottage-rates:after, div.content-wrap div.center-col-cottages div.cottage-rates:after, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-rates:after {
    content: '';
    display: table;
  }
  div.content-wrap div.center-col div.cottage-list-wrap:after, div#footer div.footer-content-wrap div.center-col div.cottage-list-wrap:after, div.content-wrap div.center-col-cottages div.cottage-list-wrap:after, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-list-wrap:after, div.content-wrap div.center-col div.rates:after, div#footer div.footer-content-wrap div.center-col div.rates:after, div.content-wrap div.center-col-cottages div.rates:after, div#footer div.footer-content-wrap div.center-col-cottages div.rates:after, div.content-wrap div.center-col div.cottage-rates:after, div#footer div.footer-content-wrap div.center-col div.cottage-rates:after, div.content-wrap div.center-col-cottages div.cottage-rates:after, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-rates:after {
    clear: both;
  }
}
@media only screen and (max-width: 460px) {
  div.content-wrap div.center-col div.cottage-list-wrap, div#footer div.footer-content-wrap div.center-col div.cottage-list-wrap, div.content-wrap div.center-col-cottages div.cottage-list-wrap, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-list-wrap, div.content-wrap div.center-col div.rates, div#footer div.footer-content-wrap div.center-col div.rates, div.content-wrap div.center-col-cottages div.rates, div#footer div.footer-content-wrap div.center-col-cottages div.rates, div.content-wrap div.center-col div.cottage-rates, div#footer div.footer-content-wrap div.center-col div.cottage-rates, div.content-wrap div.center-col-cottages div.cottage-rates, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-rates {
    *zoom: 1;
    width: auto;
    max-width: 95%;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  div.content-wrap div.center-col div.cottage-list-wrap:before, div#footer div.footer-content-wrap div.center-col div.cottage-list-wrap:before, div.content-wrap div.center-col-cottages div.cottage-list-wrap:before, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-list-wrap:before, div.content-wrap div.center-col div.rates:before, div#footer div.footer-content-wrap div.center-col div.rates:before, div.content-wrap div.center-col-cottages div.rates:before, div#footer div.footer-content-wrap div.center-col-cottages div.rates:before, div.content-wrap div.center-col div.cottage-rates:before, div#footer div.footer-content-wrap div.center-col div.cottage-rates:before, div.content-wrap div.center-col-cottages div.cottage-rates:before, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-rates:before, div.content-wrap div.center-col div.cottage-list-wrap:after, div#footer div.footer-content-wrap div.center-col div.cottage-list-wrap:after, div.content-wrap div.center-col-cottages div.cottage-list-wrap:after, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-list-wrap:after, div.content-wrap div.center-col div.rates:after, div#footer div.footer-content-wrap div.center-col div.rates:after, div.content-wrap div.center-col-cottages div.rates:after, div#footer div.footer-content-wrap div.center-col-cottages div.rates:after, div.content-wrap div.center-col div.cottage-rates:after, div#footer div.footer-content-wrap div.center-col div.cottage-rates:after, div.content-wrap div.center-col-cottages div.cottage-rates:after, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-rates:after {
    content: '';
    display: table;
  }
  div.content-wrap div.center-col div.cottage-list-wrap:after, div#footer div.footer-content-wrap div.center-col div.cottage-list-wrap:after, div.content-wrap div.center-col-cottages div.cottage-list-wrap:after, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-list-wrap:after, div.content-wrap div.center-col div.rates:after, div#footer div.footer-content-wrap div.center-col div.rates:after, div.content-wrap div.center-col-cottages div.rates:after, div#footer div.footer-content-wrap div.center-col-cottages div.rates:after, div.content-wrap div.center-col div.cottage-rates:after, div#footer div.footer-content-wrap div.center-col div.cottage-rates:after, div.content-wrap div.center-col-cottages div.cottage-rates:after, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-rates:after {
    clear: both;
  }
}
div.content-wrap div.center-col div.cottage-rates, div#footer div.footer-content-wrap div.center-col div.cottage-rates, div.content-wrap div.center-col-cottages div.cottage-rates, div#footer div.footer-content-wrap div.center-col-cottages div.cottage-rates {
  font-size: .9em;
}
div.content-wrap div.center-col ul, div#footer div.footer-content-wrap div.center-col ul, div.content-wrap div.center-col-cottages ul, div#footer div.footer-content-wrap div.center-col-cottages ul {
  margin: .5em 0 1em 2em;
}
div.content-wrap div.center-col li, div#footer div.footer-content-wrap div.center-col li, div.content-wrap div.center-col-cottages li, div#footer div.footer-content-wrap div.center-col-cottages li {
  margin: 0 0 .4em 0;
  line-height: 1.5;
}
div.content-wrap div.center-col p.caption, div#footer div.footer-content-wrap div.center-col p.caption, div.content-wrap div.center-col-cottages p.caption, div#footer div.footer-content-wrap div.center-col-cottages p.caption {
  font-family: "Open Sans Condensed", sans-serif;
  line-height: 1.3;
  font-size: .9em;
  margin: -1em 0 2em 1em;
  color: #3C9E3C;
}
div.content-wrap div.center-col-cottages, div#footer div.footer-content-wrap div.center-col-cottages {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 58.8%;
  margin-left: 0%;
  margin-right: 3%;
}
div.content-wrap div.center-col-cottages:before, div#footer div.footer-content-wrap div.center-col-cottages:before, div.content-wrap div.center-col-cottages:after, div#footer div.footer-content-wrap div.center-col-cottages:after {
  content: '';
  display: table;
}
div.content-wrap div.center-col-cottages:after, div#footer div.footer-content-wrap div.center-col-cottages:after {
  clear: both;
}
div.content-wrap div.center-col-cottages:last-child, div#footer div.footer-content-wrap div.center-col-cottages:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 1050px) {
  div.content-wrap div.center-col-cottages, div#footer div.footer-content-wrap div.center-col-cottages {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 58.8%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div.content-wrap div.center-col-cottages:before, div#footer div.footer-content-wrap div.center-col-cottages:before, div.content-wrap div.center-col-cottages:after, div#footer div.footer-content-wrap div.center-col-cottages:after {
    content: '';
    display: table;
  }
  div.content-wrap div.center-col-cottages:after, div#footer div.footer-content-wrap div.center-col-cottages:after {
    clear: both;
  }
  div.content-wrap div.center-col-cottages:last-child, div#footer div.footer-content-wrap div.center-col-cottages:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 800px) {
  div.content-wrap div.center-col-cottages, div#footer div.footer-content-wrap div.center-col-cottages {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 58.8%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div.content-wrap div.center-col-cottages:before, div#footer div.footer-content-wrap div.center-col-cottages:before, div.content-wrap div.center-col-cottages:after, div#footer div.footer-content-wrap div.center-col-cottages:after {
    content: '';
    display: table;
  }
  div.content-wrap div.center-col-cottages:after, div#footer div.footer-content-wrap div.center-col-cottages:after {
    clear: both;
  }
  div.content-wrap div.center-col-cottages:last-child, div#footer div.footer-content-wrap div.center-col-cottages:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.center-col-cottages, div#footer div.footer-content-wrap div.center-col-cottages {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1px;
    padding-right: 1px;
    text-align: left;
  }
  div.content-wrap div.center-col-cottages:first-child, div#footer div.footer-content-wrap div.center-col-cottages:first-child {
    margin-left: auto;
  }
  div.content-wrap div.center-col-cottages:last-child, div#footer div.footer-content-wrap div.center-col-cottages:last-child {
    margin-right: auto;
  }
}
div.content-wrap div.right-col, div#footer div.footer-content-wrap div.right-col, div.content-wrap div.right-col-cottages, div#footer div.footer-content-wrap div.right-col-cottages {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 14.51%;
  margin-left: 0%;
  margin-right: 3%;
}
div.content-wrap div.right-col:before, div#footer div.footer-content-wrap div.right-col:before, div.content-wrap div.right-col-cottages:before, div#footer div.footer-content-wrap div.right-col-cottages:before, div.content-wrap div.right-col:after, div#footer div.footer-content-wrap div.right-col:after, div.content-wrap div.right-col-cottages:after, div#footer div.footer-content-wrap div.right-col-cottages:after {
  content: '';
  display: table;
}
div.content-wrap div.right-col:after, div#footer div.footer-content-wrap div.right-col:after, div.content-wrap div.right-col-cottages:after, div#footer div.footer-content-wrap div.right-col-cottages:after {
  clear: both;
}
div.content-wrap div.right-col:last-child, div#footer div.footer-content-wrap div.right-col:last-child, div.content-wrap div.right-col-cottages:last-child, div#footer div.footer-content-wrap div.right-col-cottages:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 1050px) {
  div.content-wrap div.right-col, div#footer div.footer-content-wrap div.right-col, div.content-wrap div.right-col-cottages, div#footer div.footer-content-wrap div.right-col-cottages {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 12.45%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div.content-wrap div.right-col:before, div#footer div.footer-content-wrap div.right-col:before, div.content-wrap div.right-col-cottages:before, div#footer div.footer-content-wrap div.right-col-cottages:before, div.content-wrap div.right-col:after, div#footer div.footer-content-wrap div.right-col:after, div.content-wrap div.right-col-cottages:after, div#footer div.footer-content-wrap div.right-col-cottages:after {
    content: '';
    display: table;
  }
  div.content-wrap div.right-col:after, div#footer div.footer-content-wrap div.right-col:after, div.content-wrap div.right-col-cottages:after, div#footer div.footer-content-wrap div.right-col-cottages:after {
    clear: both;
  }
  div.content-wrap div.right-col:last-child, div#footer div.footer-content-wrap div.right-col:last-child, div.content-wrap div.right-col-cottages:last-child, div#footer div.footer-content-wrap div.right-col-cottages:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 800px) {
  div.content-wrap div.right-col, div#footer div.footer-content-wrap div.right-col, div.content-wrap div.right-col-cottages, div#footer div.footer-content-wrap div.right-col-cottages {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 17.6%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div.content-wrap div.right-col:before, div#footer div.footer-content-wrap div.right-col:before, div.content-wrap div.right-col-cottages:before, div#footer div.footer-content-wrap div.right-col-cottages:before, div.content-wrap div.right-col:after, div#footer div.footer-content-wrap div.right-col:after, div.content-wrap div.right-col-cottages:after, div#footer div.footer-content-wrap div.right-col-cottages:after {
    content: '';
    display: table;
  }
  div.content-wrap div.right-col:after, div#footer div.footer-content-wrap div.right-col:after, div.content-wrap div.right-col-cottages:after, div#footer div.footer-content-wrap div.right-col-cottages:after {
    clear: both;
  }
  div.content-wrap div.right-col:last-child, div#footer div.footer-content-wrap div.right-col:last-child, div.content-wrap div.right-col-cottages:last-child, div#footer div.footer-content-wrap div.right-col-cottages:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.right-col, div#footer div.footer-content-wrap div.right-col, div.content-wrap div.right-col-cottages, div#footer div.footer-content-wrap div.right-col-cottages {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1px;
    padding-right: 1px;
    text-align: left;
  }
  div.content-wrap div.right-col:first-child, div#footer div.footer-content-wrap div.right-col:first-child, div.content-wrap div.right-col-cottages:first-child, div#footer div.footer-content-wrap div.right-col-cottages:first-child {
    margin-left: auto;
  }
  div.content-wrap div.right-col:last-child, div#footer div.footer-content-wrap div.right-col:last-child, div.content-wrap div.right-col-cottages:last-child, div#footer div.footer-content-wrap div.right-col-cottages:last-child {
    margin-right: auto;
  }
}
div.content-wrap div.right-col div.book-online, div#footer div.footer-content-wrap div.right-col div.book-online, div.content-wrap div.right-col-cottages div.book-online, div#footer div.footer-content-wrap div.right-col-cottages div.book-online {
  margin: 1em 0 0 0;
  text-align: right;
}
div.content-wrap div.right-col div.book-online img, div#footer div.footer-content-wrap div.right-col div.book-online img, div.content-wrap div.right-col-cottages div.book-online img, div#footer div.footer-content-wrap div.right-col-cottages div.book-online img {
  margin: 1em 0 0 0;
  max-width: 100%;
}
@media only screen and (max-width: 1050px) {
  div.content-wrap div.right-col div.book-online, div#footer div.footer-content-wrap div.right-col div.book-online, div.content-wrap div.right-col-cottages div.book-online, div#footer div.footer-content-wrap div.right-col-cottages div.book-online {
    margin: 1.7em 0 1em 0;
  }
}
@media only screen and (max-width: 800px) {
  div.content-wrap div.right-col div.book-online, div#footer div.footer-content-wrap div.right-col div.book-online, div.content-wrap div.right-col-cottages div.book-online, div#footer div.footer-content-wrap div.right-col-cottages div.book-online {
    margin: 1.7em 0 1em 0;
  }
}
@media only screen and (max-width: 1050px) {
  div.content-wrap div.right-col-cottages, div#footer div.footer-content-wrap div.right-col-cottages {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 17.6%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div.content-wrap div.right-col-cottages:before, div#footer div.footer-content-wrap div.right-col-cottages:before, div.content-wrap div.right-col-cottages:after, div#footer div.footer-content-wrap div.right-col-cottages:after {
    content: '';
    display: table;
  }
  div.content-wrap div.right-col-cottages:after, div#footer div.footer-content-wrap div.right-col-cottages:after {
    clear: both;
  }
  div.content-wrap div.right-col-cottages:last-child, div#footer div.footer-content-wrap div.right-col-cottages:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 800px) {
  div.content-wrap div.right-col-cottages, div#footer div.footer-content-wrap div.right-col-cottages {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 17.6%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div.content-wrap div.right-col-cottages:before, div#footer div.footer-content-wrap div.right-col-cottages:before, div.content-wrap div.right-col-cottages:after, div#footer div.footer-content-wrap div.right-col-cottages:after {
    content: '';
    display: table;
  }
  div.content-wrap div.right-col-cottages:after, div#footer div.footer-content-wrap div.right-col-cottages:after {
    clear: both;
  }
  div.content-wrap div.right-col-cottages:last-child, div#footer div.footer-content-wrap div.right-col-cottages:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.right-col-cottages, div#footer div.footer-content-wrap div.right-col-cottages {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1px;
    padding-right: 1px;
    text-align: left;
  }
  div.content-wrap div.right-col-cottages:first-child, div#footer div.footer-content-wrap div.right-col-cottages:first-child {
    margin-left: auto;
  }
  div.content-wrap div.right-col-cottages:last-child, div#footer div.footer-content-wrap div.right-col-cottages:last-child {
    margin-right: auto;
  }
}

div#footer {
  font-size: 1em;
  *zoom: 1;
  position: relative;
  width: 100%;
  background: #fffff7;
  border-top: 4px dotted #FF9933;
  z-index: 8;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
  margin: 0;
}
@media only screen and (max-width: 700px) {
  div#footer {
    font-size: .9em;
  }
}
div#footer:before, div#footer:after {
  content: '';
  display: table;
}
div#footer:after {
  clear: both;
}
div#footer div.footer-content-wrap {
  border: none;
  background: #fffff7;
}
div#footer div.footer-content-wrap h1 {
  margin: 0 0 .3em 0;
}
div#footer div.footer-content-wrap h2 {
  margin: 0 0 .3em 0;
}
div#footer div.footer-content-wrap p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  font-family: "Montserrat", sans-serif;
}
div#footer div.footer-content-wrap div#footer-address-block {
  padding: 1em 0;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 50%;
  margin-left: 0%;
  margin-right: 0%;
}
div#footer div.footer-content-wrap div#footer-address-block:before, div#footer div.footer-content-wrap div#footer-address-block:after {
  content: '';
  display: table;
}
div#footer div.footer-content-wrap div#footer-address-block:after {
  clear: both;
}
@media only screen and (max-width: 700px) {
  div#footer div.footer-content-wrap div#footer-address-block {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1em;
    padding-right: 1em;
    text-align: center;
  }
  div#footer div.footer-content-wrap div#footer-address-block:first-child {
    margin-left: auto;
  }
  div#footer div.footer-content-wrap div#footer-address-block:last-child {
    margin-right: auto;
  }
}
div#footer div.footer-content-wrap div#footer-nav-block {
  padding: 1em 0;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 50%;
  margin-left: 0%;
  margin-right: 0%;
}
div#footer div.footer-content-wrap div#footer-nav-block:before, div#footer div.footer-content-wrap div#footer-nav-block:after {
  content: '';
  display: table;
}
div#footer div.footer-content-wrap div#footer-nav-block:after {
  clear: both;
}
@media only screen and (max-width: 700px) {
  div#footer div.footer-content-wrap div#footer-nav-block {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1em;
    padding-right: 1em;
    text-align: center;
  }
  div#footer div.footer-content-wrap div#footer-nav-block:first-child {
    margin-left: auto;
  }
  div#footer div.footer-content-wrap div#footer-nav-block:last-child {
    margin-right: auto;
  }
}
div#footer div.footer-content-wrap div#footer-trip-advisor-block {
  max-width: 100%;
  *zoom: 1;
  width: auto;
  max-width: 90%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 1em;
  padding-right: 1em;
}
div#footer div.footer-content-wrap div#footer-trip-advisor-block:before, div#footer div.footer-content-wrap div#footer-trip-advisor-block:after {
  content: '';
  display: table;
}
div#footer div.footer-content-wrap div#footer-trip-advisor-block:after {
  clear: both;
}
@media only screen and (max-width: 1050px) {
  div#footer div.footer-content-wrap div#footer-trip-advisor-block {
    *zoom: 1;
    width: auto;
    max-width: 90%;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0em;
    padding-right: 0em;
  }
  div#footer div.footer-content-wrap div#footer-trip-advisor-block:before, div#footer div.footer-content-wrap div#footer-trip-advisor-block:after {
    content: '';
    display: table;
  }
  div#footer div.footer-content-wrap div#footer-trip-advisor-block:after {
    clear: both;
  }
}
@media only screen and (max-width: 800px) {
  div#footer div.footer-content-wrap div#footer-trip-advisor-block {
    *zoom: 1;
    width: auto;
    max-width: 95%;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
  div#footer div.footer-content-wrap div#footer-trip-advisor-block:before, div#footer div.footer-content-wrap div#footer-trip-advisor-block:after {
    content: '';
    display: table;
  }
  div#footer div.footer-content-wrap div#footer-trip-advisor-block:after {
    clear: both;
  }
}
@media only screen and (max-width: 700px) {
  div#footer div.footer-content-wrap div#footer-trip-advisor-block {
    *zoom: 1;
    width: auto;
    max-width: 50%;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 3em;
    padding-right: 3em;
  }
  div#footer div.footer-content-wrap div#footer-trip-advisor-block:before, div#footer div.footer-content-wrap div#footer-trip-advisor-block:after {
    content: '';
    display: table;
  }
  div#footer div.footer-content-wrap div#footer-trip-advisor-block:after {
    clear: both;
  }
}
@media only screen and (max-width: 600px) {
  div#footer div.footer-content-wrap div#footer-trip-advisor-block {
    *zoom: 1;
    width: auto;
    max-width: 60%;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 2.5em;
    padding-right: 2.5em;
  }
  div#footer div.footer-content-wrap div#footer-trip-advisor-block:before, div#footer div.footer-content-wrap div#footer-trip-advisor-block:after {
    content: '';
    display: table;
  }
  div#footer div.footer-content-wrap div#footer-trip-advisor-block:after {
    clear: both;
  }
}
@media only screen and (max-width: 460px) {
  div#footer div.footer-content-wrap div#footer-trip-advisor-block {
    *zoom: 1;
    width: auto;
    max-width: 70%;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 2em;
    padding-right: 2em;
  }
  div#footer div.footer-content-wrap div#footer-trip-advisor-block:before, div#footer div.footer-content-wrap div#footer-trip-advisor-block:after {
    content: '';
    display: table;
  }
  div#footer div.footer-content-wrap div#footer-trip-advisor-block:after {
    clear: both;
  }
}

div#nav-sticky-wrapper {
  margin-bottom: -10px;
}
@media only screen and (max-width: 600px) {
  div#nav-sticky-wrapper {
    display: none;
  }
}

#rotate-one .turn {
  display: none;
}

#rotate-two .turn {
  display: none;
}

div.turn {
  *zoom: 1;
}
div.turn:before, div.turn:after {
  content: '';
  display: table;
}
div.turn:after {
  clear: both;
}

/* 
div.packages {
	margin: 1em 0;
	padding: 0 2em 2.5em 2em;
	background: #fffff7;
	border: 1px solid $hover;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
	@include rounded (5px);

	img {
		float: left;
		padding: 1.5em 1em 0 0;
	}

	h3 {
		margin: 1em 0 .5em 0 !important;
		padding: 0;
		}

}
 */
div.package-wrap {
  *zoom: 1;
  width: 100%;
  position: relative;
  background: #fffff7;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  padding: 1em;
  margin: 2em 0;
  border: 1px solid #FF9933;
  border-radius: 4px;
}
div.package-wrap:before, div.package-wrap:after {
  content: '';
  display: table;
}
div.package-wrap:after {
  clear: both;
}
div.package-wrap div.package-img {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 27.9%;
  margin-left: 0%;
  margin-right: 3%;
  max-width: 168px;
}
div.package-wrap div.package-img:before, div.package-wrap div.package-img:after {
  content: '';
  display: table;
}
div.package-wrap div.package-img:after {
  clear: both;
}
div.package-wrap div.package-img:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 800px) {
  div.package-wrap div.package-img {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 38.2%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div.package-wrap div.package-img:before, div.package-wrap div.package-img:after {
    content: '';
    display: table;
  }
  div.package-wrap div.package-img:after {
    clear: both;
  }
  div.package-wrap div.package-img:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 700px) {
  div.package-wrap div.package-img {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1em;
    padding-right: 1em;
    text-align: center;
  }
  div.package-wrap div.package-img:first-child {
    margin-left: auto;
  }
  div.package-wrap div.package-img:last-child {
    margin-right: auto;
  }
}
div.package-wrap div.package-txt {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 69.1%;
  margin-left: 0%;
  margin-right: 3%;
}
div.package-wrap div.package-txt:before, div.package-wrap div.package-txt:after {
  content: '';
  display: table;
}
div.package-wrap div.package-txt:after {
  clear: both;
}
div.package-wrap div.package-txt:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 800px) {
  div.package-wrap div.package-txt {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 58.8%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div.package-wrap div.package-txt:before, div.package-wrap div.package-txt:after {
    content: '';
    display: table;
  }
  div.package-wrap div.package-txt:after {
    clear: both;
  }
  div.package-wrap div.package-txt:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 700px) {
  div.package-wrap div.package-txt {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1em;
    padding-right: 1em;
    text-align: center;
  }
  div.package-wrap div.package-txt:first-child {
    margin-left: auto;
  }
  div.package-wrap div.package-txt:last-child {
    margin-right: auto;
  }
}
div.package-wrap div.package-txt h3 {
  margin-top: 0;
}
div.package-wrap div.package-txt p {
  margin: 0;
}

div.row-gallery {
  background: #fdfdff;
  border-left: 5px solid #c0d4ff;
  border-right: 5px solid #c0d4ff;
  border-top: 5px solid #c0d4ff;
  padding-bottom: 1em;
  padding-top: 20px;
  /* Idea from: http://stackoverflow.com/questions/7273338/how-to-vertically-align-an-image-inside-div */
}
div.row-gallery ul {
  text-align: center;
  padding: 0;
  margin: 0;
}
div.row-gallery li {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}
div.row-gallery a {
  width: 300px;
  height: 210px;
  padding: 10px;
  border: solid 1px #ccc;
  background: url(../img-png/paper-65-cream-web.png);
  display: block;
  margin: 10px;
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}
div.row-gallery a.smaller {
  width: 200px;
  height: 200px;
  border: solid 1px #ccc;
  background: url(../img-png/paper-65-cream-web.png);
  display: block;
  margin: 10px;
  border-radius: 5px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}
div.row-gallery a:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
div.row-gallery img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}

div.gallery-text {
  margin-bottom: 20px;
}
@media only screen and (max-width: 600px) {
  div.gallery-text {
    margin-bottom: 10px;
  }
}
div.gallery-text h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2em;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}
@media only screen and (max-width: 700px) {
  div.gallery-text h1 {
    font-size: 1.8em;
  }
}
@media only screen and (max-width: 600px) {
  div.gallery-text h1 {
    font-size: 1.6em;
  }
}
@media only screen and (max-width: 460px) {
  div.gallery-text h1 {
    font-size: 1.5em;
  }
}
div.gallery-text p {
  *zoom: 1;
  width: auto;
  max-width: 800px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
}
div.gallery-text p:before, div.gallery-text p:after {
  content: '';
  display: table;
}
div.gallery-text p:after {
  clear: both;
}
@media only screen and (max-width: 600px) {
  div.gallery-text p {
    font-size: .95em;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 460px) {
  div.gallery-text p {
    font-size: .9em;
  }
}
div.gallery-text p.gallery-click {
  color: #6ba5a0;
  font-family: "Montserrat", sans-serif;
  font-size: .9em;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 20px;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  div.gallery-text p.gallery-click {
    margin-top: 10px;
    font-size: .85em;
  }
}
