/*  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;
}

body {
  background: #FFEFA6;
}

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#page-wrap, div#header-wrap, div#nav-wrap, div.row-wrap, div#footer-wrap {
  width: 100%;
  position: relative;
  *zoom: 1;
}
div#page-wrap:before, div#page-wrap:after, 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#page-wrap:after, div#header-wrap:after, div#nav-wrap:after, div.row-wrap:after, div#footer-wrap:after {
  clear: both;
}

div#page-wrap {
  height: 100vh;
  background: #67A0E6;
}
@media only screen and (min-width: 768px) {
  div#page-wrap {
    background: -webkit-linear-gradient(top, #67A0E6 0%, #FFEFA6 100%);
    background: linear-gradient(-180deg, #67A0E6 0%, #FFEFA6 100%);
  }
}

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: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  display: block;
  z-index: 3;
  -webkit-transition: 1s;
  transition: 1s;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #FFEFA6;
  max-height: 30px;
  padding: 0 0 10px 5px;
}
@media only screen and (min-width: 768px) {
  div#menu {
    display: none;
  }
}
div#menu span {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #67A0E6;
  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: 14px;
}

div#menu a:link, a:visited {
  color: #67A0E6;
  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 {
  background: #67A0E6;
  color: #FFEFA6;
  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;
    background: #FFEFA6;
  }
}

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: #FFEFA6;
  }
}
div#nav-wrap div#nav {
  position: relative;
  z-index: 900;
  margin: 15px 0 0 0;
}
div#nav-wrap div#nav ul.dropdown {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  color: #597394;
  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: #597394;
  padding: 0 10px;
  text-decoration: none;
  -webkit-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: #FFEFA6;
  background: #597394;
  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;
  transition: none;
}
div#nav-wrap div#nav ul.dropdown li ul.sub-menu li a:visited {
  -webkit-transition: none;
  transition: none;
}

div#header-wrap {
  background: #8CC0FF;
}
@media only screen and (min-width: 768px) {
  div#header-wrap {
    background: none;
  }
}
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 {
  *zoom: 1;
  width: auto;
  max-width: 100%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
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;
}
@media only screen and (min-width: 560px) {
  div#header-wrap div#header div#logo {
    *zoom: 1;
    width: auto;
    max-width: 100%;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
  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;
  }
}
@media only screen and (min-width: 600px) {
  div#header-wrap div#header div#logo {
    *zoom: 1;
    width: auto;
    max-width: 100%;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 50px;
    padding-right: 50px;
  }
  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;
  }
}
@media only screen and (min-width: 768px) {
  div#header-wrap div#header div#logo {
    padding-top: 30px;
    padding-left: 20px;
  }
}
div#header-wrap div#header div#logo h1 {
  font-family: Alegreya SC;
  font-weight: 400;
  color: #FFEFA6;
  font-size: 33px;
  line-height: 1.2;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  div#header-wrap div#header div#logo h1 {
    font-size: 64px;
    line-height: 1.2;
  }
}
div#header-wrap div#header div#logo h2 {
  font-family: Alegreya;
  font-weight: 400;
  color: #6380A6;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  font-style: italic;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  div#header-wrap div#header div#logo h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}

div.row-wrap {
  background: #8CC0FF;
}
@media only screen and (min-width: 768px) {
  div.row-wrap {
    padding-top: 15px;
    padding-bottom: 15px;
    background: none;
  }
}
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;
}
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 {
  text-decoration: none;
  padding-bottom: 3px;
}
div.row-wrap div.content-wrap a:hover {
  text-decoration: none;
  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;
  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 {
  min-height: 1px;
}
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 {
    padding: 15px;
    *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;
}
@media only screen and (min-width: 768px) {
  div.row-wrap div.content-wrap div.col-2 {
    text-align: left;
    *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 {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #597394;
  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: 16px;
    line-height: 1.8;
    margin: 15px;
  }
}
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;
  font-family: Alegreya SC;
  font-weight: 400;
  color: #FFEFA6;
  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: 33px;
    margin: 0 15px 15px 15px;
  }
}
div.row-wrap div.content-wrap div.col-2 h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #6380A6;
  line-height: 1.2;
  padding-top: 10px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  div.row-wrap div.content-wrap div.col-2 h2 {
    font-size: 21px;
    margin-top: 50px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    letter-spacing: 5px;
    font-weight: 300;
  }
}
div.row-wrap div.content-wrap div.col-2 div.portfolio-opener {
  padding: 0 20px;
}
@media only screen and (min-width: 768px) {
  div.row-wrap div.content-wrap div.col-2 div.portfolio-opener {
    padding: 0 40px;
  }
}
div.row-wrap div.content-wrap div.col-2 div.portfolio-opener h1 {
  text-align: center;
}
div.row-wrap div.content-wrap div.col-2 div.portfolio-opener h2 {
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  letter-spacing: 3px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
}
div.row-wrap div.content-wrap div.col-2 div.portfolio-opener h2 a {
  color: #558;
}
@media only screen and (min-width: 768px) {
  div.row-wrap div.content-wrap div.col-2 div.portfolio-opener h2 {
    font-size: 18px;
    letter-spacing: 5px;
  }
}
div.row-wrap div.content-wrap div.col-2 div.portfolio-opener img {
  padding-top: 10px;
}
div.row-wrap div.content-wrap div.col-2 a {
  color: #67A0E6;
}
div.row-wrap div.content-wrap div.col-3 {
  min-height: 1px;
  margin-top: 15px;
}
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: #67A0E6;
}
div#footer-wrap div#footer {
  padding: 15px;
}
div#footer-wrap div#footer p {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 300;
  text-align: center;
  color: #FFEFA6;
  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;
  padding: 0 3px;
  -webkit-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;
  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;
  background: #B2C5D9;
  display: block;
  padding: 20px;
  margin: 5px 5px 10px 5px;
  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 h1 {
  font-family: Alegreya SC;
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  margin: 15px 0 15px 0;
  color: #FFEFA6;
}
@media only screen and (min-width: 768px) {
  div.gallery-text h1 {
    margin: 10px 0;
    font-size: 30px;
  }
}
div.gallery-text p {
  font-family: "Open Sans", sans-serif;
  text-align: center;
  color: #597394;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) {
  div.gallery-text p {
    margin-bottom: 10px;
  }
}
div.gallery-text p.gallery-click {
  color: #6380A6;
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  div.gallery-text p.gallery-click {
    font-size: 16px;
  }
}

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;
  display: block;
}
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: #67A0E6;
}
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;
}
