/*  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} [$g=$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} [g=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; }

body {
  background: #2e2c29; }

img {
  max-width: 100%; }

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

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

div#header-wrap, div#nav-wrap, div.row-wrap, div#footer-wrap {
  width: 100%;
  position: relative;
  *zoom: 1; }
  div#header-wrap:before, div#header-wrap:after, div#nav-wrap:before, div#nav-wrap:after, div.row-wrap:before, div.row-wrap:after, div#footer-wrap:before, div#footer-wrap:after {
    content: '';
    display: table; }
  div#header-wrap:after, div#nav-wrap:after, div.row-wrap:after, div#footer-wrap:after {
    clear: both; }

div#header, div.content-wrap, div#footer {
  position: relative;
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0; }
  div#header:before, div#header:after, div.content-wrap:before, div.content-wrap:after, div#footer:before, div#footer:after {
    content: '';
    display: table; }
  div#header:after, div.content-wrap:after, div#footer:after {
    clear: both; }
  div#header:before, div#header:after, div.content-wrap:before, div.content-wrap:after, div#footer:before, div#footer:after {
    content: '';
    display: table; }
  div#header:after, div.content-wrap:after, div#footer:after {
    clear: both; }

@media only screen and (min-width: 768px) {
  div.row-wrap {
    padding-top: 15px;
    padding-bottom: 15px; } }

div#menu {
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  display: block;
  z-index: 3;
  transition: 1s;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #4c3432;
  max-height: 30px;
  padding: 0 0 10px 5px; }
  @media only screen and (min-width: 768px) {
    div#menu {
      display: none; } }
  div#menu span {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #afaa9c;
    padding: 0 0 5px 0; }
    div#menu span img {
      margin-bottom: -2px;
      margin-right: 15px;
      width: 15px;
      height: 15px; }

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

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

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

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

div#menu a:hover {
  background: #afaa9c;
  color: #4c3432;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none;
  letter-spacing: 1px; }

div#nav-wrap-sticky-wrapper.sticky-wrapper {
  max-height: 5px;
  display: none; }
  @media only screen and (min-width: 768px) {
    div#nav-wrap-sticky-wrapper.sticky-wrapper {
      display: block; } }

div#nav-wrap {
  display: none; }
  @media only screen and (min-width: 768px) {
    div#nav-wrap {
      display: block;
      z-index: 20;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      margin: 0;
      padding: 5px 0 10px 0;
      background: #2E2C29; } }
  div#nav-wrap div#nav {
    position: relative;
    z-index: 900;
    margin: 15px 0 0 0; }
  div#nav-wrap div#nav ul.dropdown {
    font-family: "Josefin Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    color: #afaa9c;
    line-height: 1;
    letter-spacing: 3px; }
  div#nav-wrap div#nav ul.dropdown li {
    float: none;
    display: inline-block;
    zoom: 1; }
  div#nav-wrap div#nav ul.dropdown li a:link, div#nav-wrap a:visited {
    color: #afaa9c;
    padding: 0 10px;
    text-decoration: none;
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out; }
  div#nav-wrap div#nav ul.dropdown li a:hover {
    color: #4c3432;
    background: #afaa9c;
    padding: 0 10px; }
  div#nav-wrap div#nav ul.dropdown li.cart a:hover {
    background: transparent; }
  div#nav-wrap div#nav ul.dropdown li.hover,
  div#nav-wrap div#nav ul.dropdown li:hover {
    position: relative; }
  div#nav-wrap div#nav ul.dropdown li ul.sub-menu {
    width: 150px;
    font-size: 12px;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    letter-spacing: 1px; }
  div#nav-wrap div#nav ul.dropdown li ul.sub-menu li {
    float: none;
    width: 100%;
    display: inline-block;
    line-height: 2.2;
    text-align: left; }
  div#nav-wrap div#nav ul.dropdown li ul.sub-menu li a:link {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none; }
  div#nav-wrap div#nav ul.dropdown li ul.sub-menu li a:visited {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none; }

div#header-wrap {
  background: #111;
  border-bottom: 6px dotted #BE5E03;
  z-index: 10; }
  div#header-wrap div#header {
    position: relative;
    *zoom: 1;
    margin-top: 30px; }
    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 p {
      text-align: center; }
    div#header-wrap div#header div#tagline {
      *zoom: 1;
      width: auto;
      max-width: 960px;
      float: none;
      display: block;
      margin-right: auto;
      margin-left: auto;
      padding-left: 15px;
      padding-right: 15px;
      display: block;
      clear: both;
      float: none;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      padding-left: 15px;
      padding-right: 15px;
      text-align: center;
      padding-bottom: 15px; }
      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:first-child {
        margin-left: auto; }
      div#header-wrap div#header div#tagline:last-child {
        margin-right: auto; }
      @media only screen and (min-width: 768px) {
        div#header-wrap div#header div#tagline {
          *zoom: 1;
          float: left;
          clear: none;
          text-align: inherit;
          width: 50%;
          margin-left: 0%;
          margin-right: 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; } }
      @media only screen and (min-width: 1025px) {
        div#header-wrap div#header div#tagline {
          *zoom: 1;
          float: left;
          clear: none;
          text-align: inherit;
          width: 60%;
          margin-left: 0%;
          margin-right: 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 h2 {
        text-align: center;
        font-family: "Josefin Sans", sans-serif;
        font-weight: 300;
        text-align: center;
        color: #afaa9c;
        font-size: 18px; }
        @media only screen and (min-width: 768px) {
          div#header-wrap div#header div#tagline h2 {
            padding-top: 30px;
            font-size: 18px;
            text-align: right; } }

div.row-wrap {
  background: #2e2c29; }
  @media only screen and (min-width: 768px) {
    div.row-wrap {
      padding-top: 15px;
      padding-bottom: 15px; } }
  div.row-wrap div.content-wrap {
    position: relative;
    *zoom: 1;
    *zoom: 1;
    width: auto;
    max-width: 1400px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    background: #555753; }
    div.row-wrap div.content-wrap:before, div.row-wrap div.content-wrap:after {
      content: '';
      display: table; }
    div.row-wrap div.content-wrap:after {
      clear: both; }
    div.row-wrap div.content-wrap:before, div.row-wrap div.content-wrap:after {
      content: '';
      display: table; }
    div.row-wrap div.content-wrap:after {
      clear: both; }
    div.row-wrap div.content-wrap a:link, div.row-wrap div.content-wrap a:visited {
      color: #d9d7d2;
      text-decoration: none;
      border-bottom: 1px dotted #d9d7d2;
      padding-bottom: 3px; }
    div.row-wrap div.content-wrap a:hover {
      color: #BE5E03;
      text-decoration: none;
      border-bottom: 1px solid #BE5E03;
      padding-bottom: 3px; }
    div.row-wrap div.content-wrap a:link, div.row-wrap div.content-wrap a:visited {
      text-decoration: none;
      -webkit-transition: all 0.15s ease-in-out;
      -moz-transition: all 0.15s ease-in-out;
      transition: all 0.15s ease-in-out; }
    @media only screen and (min-width: 768px) {
      div.row-wrap div.content-wrap {
        overflow: hidden; } }
    div.row-wrap div.content-wrap div.col-1 {
      background: #2e2c29;
      min-height: 1px;
      padding: 15px;
      border-left: 3px solid #BE5E03;
      border-right: 3px solid #BE5E03; }
      div.row-wrap div.content-wrap div.col-1 p, div.row-wrap div.content-wrap div.col-1 h1, div.row-wrap div.content-wrap div.col-1 h2 {
        font-size: 14px;
        text-align: center;
        margin-bottom: 15px;
        line-height: 1.5; }
      @media only screen and (min-width: 768px) {
        div.row-wrap div.content-wrap div.col-1 {
          *zoom: 1;
          float: left;
          clear: none;
          text-align: inherit;
          width: 20%;
          margin-left: 0%;
          margin-right: 0%;
          margin-bottom: -99999px;
          padding-bottom: 99999px; }
          div.row-wrap div.content-wrap div.col-1:before, div.row-wrap div.content-wrap div.col-1:after {
            content: '';
            display: table; }
          div.row-wrap div.content-wrap div.col-1:after {
            clear: both; }
          div.row-wrap div.content-wrap div.col-1 p, div.row-wrap div.content-wrap div.col-1 h1, div.row-wrap div.content-wrap div.col-1 h2 {
            text-align: left; } }
    div.row-wrap div.content-wrap div.col-2 {
      min-height: 1px;
      padding: 15px;
      background: #555753; }
      @media only screen and (min-width: 768px) {
        div.row-wrap div.content-wrap div.col-2 {
          text-align: center;
          *zoom: 1;
          float: left;
          clear: none;
          text-align: inherit;
          width: 60%;
          margin-left: 0%;
          margin-right: 0%;
          margin-bottom: -99999px;
          padding-bottom: 99999px; }
          div.row-wrap div.content-wrap div.col-2:before, div.row-wrap div.content-wrap div.col-2:after {
            content: '';
            display: table; }
          div.row-wrap div.content-wrap div.col-2:after {
            clear: both; } }
      div.row-wrap div.content-wrap div.col-2 p {
        margin-bottom: 12px; }
      div.row-wrap div.content-wrap div.col-2 p, div.row-wrap div.content-wrap div.col-2 ul, div.row-wrap div.content-wrap div.col-2 li {
        text-align: center;
        font-family: "Josefin Sans", sans-serif;
        font-size: 18px;
        font-weight: 400;
        color: #afaa9c;
        line-height: 1.6; }
        @media only screen and (min-width: 768px) {
          div.row-wrap div.content-wrap div.col-2 p, div.row-wrap div.content-wrap div.col-2 ul, div.row-wrap div.content-wrap div.col-2 li {
            font-size: 21px;
            line-height: 1.8;
            margin: 15px 15px 15px 30px; } }
      div.row-wrap div.content-wrap div.col-2 ul {
        margin-left: 25px; }
      div.row-wrap div.content-wrap div.col-2 li {
        margin-bottom: 5px; }
      div.row-wrap div.content-wrap div.col-2 h1 {
        font-size: 24px;
        text-align: center;
        font-family: "Josefin Sans", sans-serif;
        font-weight: 100;
        color: #dbc09b;
        line-height: 1.2;
        margin-bottom: 15px;
        padding-top: 10px; }
        @media only screen and (min-width: 768px) {
          div.row-wrap div.content-wrap div.col-2 h1 {
            font-size: 42px;
            margin: 0 15px 15px 0; } }
      div.row-wrap div.content-wrap div.col-2 h2 {
        font-family: "Josefin Sans", sans-serif;
        font-size: 18px;
        font-weight: 100;
        color: #dbc09b;
        line-height: 1.2;
        padding-top: 10px;
        padding-left: 15px; }
        @media only screen and (min-width: 768px) {
          div.row-wrap div.content-wrap div.col-2 h2 {
            font-size: 21px;
            margin: 0 15px 15px 30px; } }
    div.row-wrap div.content-wrap div.col-3 {
      min-height: 1px;
      margin-top: 15px;
      background: #2e2c29;
      border-left: 3px solid #BE5E03;
      border-right: 3px solid #BE5E03; }
      div.row-wrap div.content-wrap div.col-3 p, div.row-wrap div.content-wrap div.col-3 h1, div.row-wrap div.content-wrap div.col-3 h2 {
        text-align: center;
        line-height: 1.5; }
      @media only screen and (min-width: 768px) {
        div.row-wrap div.content-wrap div.col-3 {
          *zoom: 1;
          float: left;
          clear: none;
          text-align: inherit;
          width: 20%;
          margin-left: 0%;
          margin-right: 0%;
          margin-top: 0;
          padding-top: 30px;
          margin-bottom: -99999px;
          padding-bottom: 99999px; }
          div.row-wrap div.content-wrap div.col-3:before, div.row-wrap div.content-wrap div.col-3:after {
            content: '';
            display: table; }
          div.row-wrap div.content-wrap div.col-3:after {
            clear: both; }
          div.row-wrap div.content-wrap div.col-3 p, div.row-wrap div.content-wrap div.col-3 h1, div.row-wrap div.content-wrap div.col-3 h2 {
            text-align: left; } }

div#footer-wrap {
  background: #4c3432;
  border-top: 6px dotted #BE5E03; }
  div#footer-wrap div#footer {
    padding: 15px; }
    div#footer-wrap div#footer p {
      font-family: "Josefin Sans", sans-serif;
      font-size: 13px;
      font-weight: 700;
      text-align: center;
      color: #afaa9c;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 0 3px; }
      div#footer-wrap div#footer p a:link, div#footer-wrap div#footer p a:visited {
        border-bottom: none;
        text-decoration: none;
        color: #afaa9c;
        padding: 0 3px;
        -webkit-transition: all 0.10s ease-in-out;
        -moz-transition: all 0.10s ease-in-out;
        transition: all 0.10s ease-in-out; }
      div#footer-wrap div#footer p a:hover {
        padding: 0 3px;
        color: #4c3432;
        background: #afaa9c;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        border-bottom: none;
        text-decoration: none; }
      @media only screen and (min-width: 768px) {
        div#footer-wrap div#footer p {
          font-size: 15px; } }

div.row-gallery {
  /* 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: 300px;
    border: solid 1px #ccc;
    display: block;
    margin: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15); }
  div.row-gallery a:before {
    position: absolute;
    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 h1 {
  font-size: 24px;
  text-align: center;
  margin: 15px 0 15px 0;
  color: #dbc09b; }
  @media only screen and (min-width: 768px) {
    div.gallery-text h1 {
      margin: 10px 0;
      font-size: 30px; } }

div.gallery-text p {
  text-align: center;
  color: #afaa9c;
  margin-bottom: 15px; }
  @media only screen and (min-width: 768px) {
    div.gallery-text p {
      margin-bottom: 10px; } }

div.gallery-text p.gallery-click {
  color: #dbc09b; }

div.cycle-slide-show-wrapper, div.cycle-slide-show-wrapper-2, div.cycle-slide-show-wrapper-3, div.cycle-slide-show-wrapper-4 {
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 800px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  padding-top: 10px;
  z-index: 0; }
  div.cycle-slide-show-wrapper:before, div.cycle-slide-show-wrapper:after, div.cycle-slide-show-wrapper-2:before, div.cycle-slide-show-wrapper-2:after, div.cycle-slide-show-wrapper-3:before, div.cycle-slide-show-wrapper-3:after, div.cycle-slide-show-wrapper-4:before, div.cycle-slide-show-wrapper-4:after {
    content: '';
    display: table; }
  div.cycle-slide-show-wrapper:after, div.cycle-slide-show-wrapper-2:after, div.cycle-slide-show-wrapper-3:after, div.cycle-slide-show-wrapper-4:after {
    clear: both; }
  div.cycle-slide-show-wrapper:before, div.cycle-slide-show-wrapper:after, div.cycle-slide-show-wrapper-2:before, div.cycle-slide-show-wrapper-2:after, div.cycle-slide-show-wrapper-3:before, div.cycle-slide-show-wrapper-3:after, div.cycle-slide-show-wrapper-4:before, div.cycle-slide-show-wrapper-4:after {
    content: '';
    display: table; }
  div.cycle-slide-show-wrapper:after, div.cycle-slide-show-wrapper-2:after, div.cycle-slide-show-wrapper-3:after, div.cycle-slide-show-wrapper-4:after {
    clear: both; }
  @media only screen and (min-width: 641px) {
    div.cycle-slide-show-wrapper, div.cycle-slide-show-wrapper-2, div.cycle-slide-show-wrapper-3, div.cycle-slide-show-wrapper-4 {
      padding-top: 20px; } }
  @media only screen and (min-width: 1025px) {
    div.cycle-slide-show-wrapper, div.cycle-slide-show-wrapper-2, div.cycle-slide-show-wrapper-3, div.cycle-slide-show-wrapper-4 {
      padding-top: 20px; } }
  div.cycle-slide-show-wrapper div.slide-show img, div.cycle-slide-show-wrapper div.slide-show-2 img, div.cycle-slide-show-wrapper div.slide-show-3 img, div.cycle-slide-show-wrapper div.slide-show-4 img, div.cycle-slide-show-wrapper-2 div.slide-show img, div.cycle-slide-show-wrapper-2 div.slide-show-2 img, div.cycle-slide-show-wrapper-2 div.slide-show-3 img, div.cycle-slide-show-wrapper-2 div.slide-show-4 img, div.cycle-slide-show-wrapper-3 div.slide-show img, div.cycle-slide-show-wrapper-3 div.slide-show-2 img, div.cycle-slide-show-wrapper-3 div.slide-show-3 img, div.cycle-slide-show-wrapper-3 div.slide-show-4 img, div.cycle-slide-show-wrapper-4 div.slide-show img, div.cycle-slide-show-wrapper-4 div.slide-show-2 img, div.cycle-slide-show-wrapper-4 div.slide-show-3 img, div.cycle-slide-show-wrapper-4 div.slide-show-4 img {
    margin-bottom: 10px;
    width: 100%; }
  div.cycle-slide-show-wrapper div#slideshow, div.cycle-slide-show-wrapper-2 div#slideshow, div.cycle-slide-show-wrapper-3 div#slideshow, div.cycle-slide-show-wrapper-4 div#slideshow {
    width: 100%; }
  div.cycle-slide-show-wrapper div.single-slide, div.cycle-slide-show-wrapper-2 div.single-slide, div.cycle-slide-show-wrapper-3 div.single-slide, div.cycle-slide-show-wrapper-4 div.single-slide {
    margin: 0 auto 1.25em auto; }
  div.cycle-slide-show-wrapper div.caption-pager-wrap, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap {
    *zoom: 1;
    position: relative;
    width: 100%; }
    div.cycle-slide-show-wrapper div.caption-pager-wrap:before, div.cycle-slide-show-wrapper div.caption-pager-wrap:after, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap:before, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap:after, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap:before, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap:after, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap:before, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap:after {
      content: '';
      display: table; }
    div.cycle-slide-show-wrapper div.caption-pager-wrap:after, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap:after, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap:after, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap:after {
      clear: both; }
    div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-caption, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-caption, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-caption, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-caption {
      width: 100%;
      padding: 0; }
    div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap {
      *zoom: 1;
      position: relative;
      margin: .25em 0 0 0;
      padding: 0; }
      div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap:before, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap:after, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap:before, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap:after, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap:before, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap:after, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap:before, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap:after {
        content: '';
        display: table; }
      div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap:after, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap:after, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap:after, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap:after {
        clear: both; }
      div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-2, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-3, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-4, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-2, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-3, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-4, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-2, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-3, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-4, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-2, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-3, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-4 {
        text-align: center;
        cursor: pointer; }
        div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager span, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-2 span, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-3 span, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-4 span, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager span, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-2 span, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-3 span, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-4 span, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager span, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-2 span, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-3 span, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-4 span, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager span, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-2 span, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-3 span, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-4 span {
          font-size: 1.8em;
          width: .6em;
          font-family: arial;
          line-height: .8;
          display: inline-block;
          color: #ccc;
          cursor: pointer; }
          @media only screen and (min-width: 768px) {
            div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager span, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-2 span, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-3 span, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-4 span, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager span, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-2 span, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-3 span, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-4 span, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager span, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-2 span, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-3 span, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-4 span, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager span, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-2 span, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-3 span, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-4 span {
              font-size: 2em;
              width: .6em; } }
        div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager span.cycle-pager-active, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-2 span.cycle-pager-active, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-3 span.cycle-pager-active, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-4 span.cycle-pager-active, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager span.cycle-pager-active, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-2 span.cycle-pager-active, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-3 span.cycle-pager-active, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-4 span.cycle-pager-active, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager span.cycle-pager-active, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-2 span.cycle-pager-active, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-3 span.cycle-pager-active, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-4 span.cycle-pager-active, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager span.cycle-pager-active, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-2 span.cycle-pager-active, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-3 span.cycle-pager-active, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-pager-4 span.cycle-pager-active {
          color: #983E2C; }
      div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon {
        padding: .3em 0 0 0;
        margin: 0 1.1em 0 0;
        float: left;
        cursor: pointer; }
        @media only screen and (min-width: 768px) {
          div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon {
            padding: .5em 0 0 0;
            margin: 0 1em 0 0; } }
        div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon img, div.cycle-slide-show-wrapper div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon img, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon img, div.cycle-slide-show-wrapper-2 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon img, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon img, div.cycle-slide-show-wrapper-3 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon img, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-prev-icon img, div.cycle-slide-show-wrapper-4 div.caption-pager-wrap div.cycle-slide-nav-wrap div.cycle-next-icon img {
          border: none; }

.is-cms .editable-gallery img {
  /* hide all images in editable galleries... */
  display: none !important; }

.is-cms .editable-gallery img:first-child {
  /* ...except the first one */
  display: block !important; }
