/*  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");
  -moz-box-sizing: border-box;
       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, .browsehappy div.content-wrap ul, div.content-wrap .browsehappy ul, .browsehappy div.content-wrap ol, div.content-wrap .browsehappy ol, .browsehappy div.content-wrap li, div.content-wrap .browsehappy li {
  text-align: center; }

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

div.cycle-slide-show-wrapper {
  *zoom: 1;
  background: #D9D9AD;
  margin-top: 2em;
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 500px; }
  div.cycle-slide-show-wrapper:before, div.cycle-slide-show-wrapper:after {
    content: '';
    display: table; }
  div.cycle-slide-show-wrapper:after {
    clear: both; }
  @media only screen and (max-width: 1050px) {
    div.cycle-slide-show-wrapper {
      width: 75%; } }
  @media only screen and (max-width: 800px) {
    div.cycle-slide-show-wrapper {
      width: 85%; } }
  @media only screen and (max-width: 700px) {
    div.cycle-slide-show-wrapper {
      margin-top: 10px; } }
  @media only screen and (max-width: 600px) {
    div.cycle-slide-show-wrapper {
      margin-top: 0;
      width: 100%; } }
  @media only screen and (max-width: 460px) {
    div.cycle-slide-show-wrapper {
      margin-top: 0; } }

div.slide-show img {
  margin-bottom: .65em;
  border: 1px solid #444;
  width: 100%;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }

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

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

div.caption-pager-wrap {
  *zoom: 1;
  position: relative;
  width: 100%; }
  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: "Francois One", sans-serif;
  font-size: 1em;
  font-weight: 400;
  padding: 0;
  color: #937A51; }
  @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: #b9afa6;
  cursor: pointer; }
  @media only screen and (max-width: 700px) {
    .cycle-pager-1 span {
      font-size: 2em;
      width: .6em; } }
  @media only screen and (max-width: 460px) {
    .cycle-pager-1 span {
      font-size: 1.8em;
      width: .6em; } }

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

.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, div.content-wrap ul a:link, div.content-wrap ol a:link, div.content-wrap li a:link, p a:visited, div.content-wrap ul a:visited, div.content-wrap ol a:visited, div.content-wrap li 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, div.content-wrap ul a:hover, div.content-wrap ol a:hover, div.content-wrap li a:hover, blockquote a:hover, li a:hover {
  color: #cc6f31;
  text-decoration: none;
  border-bottom: 1px solid #cc6f31;
  padding-bottom: 2px; }

body {
  background-color: #608060; }

div#header-wrap {
  *zoom: 1;
  width: 100%;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 10;
  padding: 20px 0 0 0;
  background: #CC6633; }
  div#header-wrap:before, div#header-wrap:after {
    content: '';
    display: table; }
  div#header-wrap:after {
    clear: both; }
  @media only screen and (max-width: 460px) {
    div#header-wrap {
      padding: 5px 0 0 0; } }
  div#header-wrap div#header {
    *zoom: 1;
    *zoom: 1;
    width: auto;
    max-width: 1000px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
    position: relative; }
    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: 1050px) {
      div#header-wrap div#header {
        *zoom: 1;
        width: auto;
        max-width: 1000px;
        float: none;
        display: block;
        margin-right: auto;
        margin-left: auto;
        padding-left: 40px;
        padding-right: 40px; }
        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: 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; } }
    @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: 0;
        padding-right: 0; }
        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 img {
      margin: 1em 0 0 0; }
      @media only screen and (max-width: 460px) {
        div#header-wrap div#header img {
          margin: 5px 0 0 0; } }

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

div.tan {
  background: #D9D9AD; }

div.content-wrap {
  *zoom: 1;
  position: relative;
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0%;
  padding-right: 0%;
  background: #D9D9AD;
  margin: 0 auto;
  padding: 0; }
  div.content-wrap:before, div.content-wrap:after {
    content: '';
    display: table; }
  div.content-wrap:after {
    clear: both; }
  div.content-wrap:before, div.content-wrap:after {
    content: '';
    display: table; }
  div.content-wrap:after {
    clear: both; }
  @media only screen and (max-width: 1050px) {
    div.content-wrap {
      *zoom: 1;
      width: auto;
      max-width: 1410px;
      float: none;
      display: block;
      margin-right: auto;
      margin-left: auto;
      padding-left: 0.1em;
      padding-right: 0.1em; }
      div.content-wrap:before, div.content-wrap:after {
        content: '';
        display: table; }
      div.content-wrap:after {
        clear: both; } }
  @media only screen and (max-width: 800px) {
    div.content-wrap {
      *zoom: 1;
      width: auto;
      max-width: 1410px;
      float: none;
      display: block;
      margin-right: auto;
      margin-left: auto;
      padding-left: 0.1em;
      padding-right: 0.1em; }
      div.content-wrap:before, div.content-wrap:after {
        content: '';
        display: table; }
      div.content-wrap:after {
        clear: both; } }
  @media only screen and (max-width: 700px) {
    div.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.content-wrap:after {
        content: '';
        display: table; }
      div.content-wrap:after {
        clear: both; } }
  @media only screen and (max-width: 600px) {
    div.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.content-wrap:after {
        content: '';
        display: table; }
      div.content-wrap:after {
        clear: both; } }
  @media only screen and (max-width: 460px) {
    div.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.content-wrap:after {
        content: '';
        display: table; }
      div.content-wrap:after {
        clear: both; } }
  div.content-wrap p, div.content-wrap ul, div.content-wrap ol, div.content-wrap li {
    font-family: "Bitter", serif;
    font-size: 18px;
    line-height: 1.5;
    color: #475947;
    margin: 0 20% 1em 0; }
    @media only screen and (max-width: 800px) {
      div.content-wrap p, div.content-wrap ul, div.content-wrap ol, div.content-wrap li {
        font-size: 17px;
        margin: 0 0 1em 0; } }
    @media only screen and (max-width: 700px) {
      div.content-wrap p, div.content-wrap ul, div.content-wrap ol, div.content-wrap li {
        font-size: 16px;
        margin: 0 0 1em 0; } }
    @media only screen and (max-width: 600px) {
      div.content-wrap p, div.content-wrap ul, div.content-wrap ol, div.content-wrap li {
        font-size: 15px;
        margin: 0 0 1em 0; } }
  div.content-wrap ul, div.content-wrap ol {
    margin-left: 2em; }
  div.content-wrap li {
    margin-bottom: 3px;
    padding: 0; }
  div.content-wrap h3 {
    font-family: "Francois One", sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #99522E;
    margin: 25px 0 15px 0;
    letter-spacing: 1px; }
    @media only screen and (max-width: 600px) {
      div.content-wrap h3 {
        font-size: 21px; } }
  div.content-wrap h4 {
    font-family: "Francois One", sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #99522E;
    margin: 1.5em 0 .3em 0;
    letter-spacing: 2px; }
  div.content-wrap img {
    max-width: 100%; }
  div.content-wrap div.left {
    min-height: 1px;
    padding: 30px;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 27.9%;
    margin-left: 0%;
    margin-right: 3%; }
    div.content-wrap div.left:before, div.content-wrap div.left:after {
      content: '';
      display: table; }
    div.content-wrap div.left:after {
      clear: both; }
    div.content-wrap div.left:last-child {
      margin-right: 0%; }
    @media only screen and (max-width: 800px) {
      div.content-wrap div.left {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 22.75%;
        margin-left: 0%;
        margin-right: 3%;
        padding: 30px 0 0 30px; }
        div.content-wrap div.left:before, div.content-wrap div.left:after {
          content: '';
          display: table; }
        div.content-wrap div.left:after {
          clear: both; }
        div.content-wrap div.left:last-child {
          margin-right: 0%; } }
    @media only screen and (max-width: 700px) {
      div.content-wrap div.left {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 10px;
        padding-right: 10px;
        text-align: left;
        padding-top: 15px;
        padding-bottom: 10px; }
        div.content-wrap div.left:first-child {
          margin-left: auto; }
        div.content-wrap div.left:last-child {
          margin-right: auto; } }
    @media only screen and (max-width: 460px) {
      div.content-wrap div.left {
        padding: 10px; } }
    div.content-wrap div.left a:link, div.content-wrap div.left a:visited, div.content-wrap div.left a:hover {
      border: none;
      padding: 0; }
    @media only screen and (max-width: 800px) {
      div.content-wrap div.left p, div.content-wrap div.left ul, div.content-wrap div.left ol, div.content-wrap div.left li {
        font-size: 16px;
        line-height: 1.4; } }
    @media only screen and (max-width: 700px) {
      div.content-wrap div.left p, div.content-wrap div.left ul, div.content-wrap div.left ol, div.content-wrap div.left li {
        font-size: 16px; } }
    @media only screen and (max-width: 460px) {
      div.content-wrap div.left p, div.content-wrap div.left ul, div.content-wrap div.left ol, div.content-wrap div.left li {
        font-size: 14px; } }
    div.content-wrap div.left img {
      max-width: 180px;
      display: block;
      margin-bottom: 10px; }
      @media only screen and (max-width: 800px) {
        div.content-wrap div.left img {
          max-width: 100%; } }
      @media only screen and (max-width: 700px) {
        div.content-wrap div.left img {
          max-height: 45px;
          display: inline;
          margin-left: 20px;
          margin-bottom: 0; } }
      @media only screen and (max-width: 460px) {
        div.content-wrap div.left img {
          max-height: 40px;
          margin-left: 5px; } }
  div.content-wrap div.right {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 69.1%;
    margin-left: 0%;
    margin-right: 3%;
    padding-right: 20px; }
    div.content-wrap div.right:before, div.content-wrap div.right:after {
      content: '';
      display: table; }
    div.content-wrap div.right:after {
      clear: both; }
    div.content-wrap div.right:last-child {
      margin-right: 0%; }
    @media only screen and (max-width: 800px) {
      div.content-wrap div.right {
        *zoom: 1;
        float: left;
        clear: none;
        text-align: inherit;
        width: 74.25%;
        margin-left: 0%;
        margin-right: 3%; }
        div.content-wrap div.right:before, div.content-wrap div.right:after {
          content: '';
          display: table; }
        div.content-wrap div.right:after {
          clear: both; }
        div.content-wrap div.right:last-child {
          margin-right: 0%; } }
    @media only screen and (max-width: 700px) {
      div.content-wrap div.right {
        display: block;
        clear: both;
        float: none;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 10px;
        padding-right: 10px;
        text-align: left; }
        div.content-wrap div.right:first-child {
          margin-left: auto; }
        div.content-wrap div.right:last-child {
          margin-right: auto; } }
    div.content-wrap div.right a:link, div.content-wrap div.right 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; }
    div.content-wrap div.right a:hover {
      color: #cc6f31;
      text-decoration: none;
      text-shadow: none;
      letter-spacing: 0;
      border-bottom: 1px solid #cc6f31;
      padding: 0 0 2px 0;
      margin: 0; }
    div.content-wrap div.right table {
      background: #CCCC99;
      border: 1px #608060 solid;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      font-family: "Francois One", sans-serif;
      font-weight: 400;
      font-size: 20px;
      color: #608060;
      line-height: 1.5;
      margin: 20px 0 30px 0; }
      @media only screen and (max-width: 1050px) {
        div.content-wrap div.right table {
          font-size: 18px; } }
      @media only screen and (max-width: 800px) {
        div.content-wrap div.right table {
          font-size: 17px; } }
      @media only screen and (max-width: 600px) {
        div.content-wrap div.right table {
          font-size: 16px; } }
    div.content-wrap div.right td {
      padding: 10px 20px;
      text-align: right; }
      @media only screen and (max-width: 800px) {
        div.content-wrap div.right td {
          padding: 10px 10px; } }
    div.content-wrap div.right h1 {
      font-size: 33px;
      line-height: 1.2;
      font-family: "Bevan", serif;
      font-weight: 400;
      color: #99522E;
      margin: 20px 20px 20px 0;
      padding: 0; }
      @media only screen and (max-width: 700px) {
        div.content-wrap div.right h1 {
          font-size: 30px; } }
      @media only screen and (max-width: 600px) {
        div.content-wrap div.right h1 {
          font-size: 27px;
          margin: 10px 0 10px 0; } }
    div.content-wrap div.right h2 {
      font-family: "Bevan", serif;
      font-size: 27px;
      font-weight: 400;
      color: #99522E;
      line-height: 1.2;
      margin: 30px 20px 10px 0;
      padding: 0; }
      @media only screen and (max-width: 700px) {
        div.content-wrap div.right h2 {
          font-size: 24px;
          margin: 30px 10px 10px 0; } }
      @media only screen and (max-width: 600px) {
        div.content-wrap div.right h2 {
          font-size: 21px;
          line-height: 1.2; } }
  div.content-wrap div.portfolio-opener {
    *zoom: 1;
    position: relative;
    *zoom: 1;
    width: auto;
    max-width: 500px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0%;
    padding-right: 0%;
    margin: 1em auto; }
    div.content-wrap div.portfolio-opener:before, div.content-wrap div.portfolio-opener:after {
      content: '';
      display: table; }
    div.content-wrap div.portfolio-opener:after {
      clear: both; }
    div.content-wrap div.portfolio-opener:before, div.content-wrap div.portfolio-opener:after {
      content: '';
      display: table; }
    div.content-wrap div.portfolio-opener:after {
      clear: both; }
    @media only screen and (max-width: 1050px) {
      div.content-wrap div.portfolio-opener {
        *zoom: 1;
        width: auto;
        max-width: 450px;
        float: none;
        display: block;
        margin-right: auto;
        margin-left: auto;
        padding-left: 0;
        padding-right: 0; }
        div.content-wrap div.portfolio-opener:before, div.content-wrap div.portfolio-opener:after {
          content: '';
          display: table; }
        div.content-wrap div.portfolio-opener:after {
          clear: both; } }
    @media only screen and (max-width: 800px) {
      div.content-wrap div.portfolio-opener {
        *zoom: 1;
        width: auto;
        max-width: 400px;
        float: none;
        display: block;
        margin-right: auto;
        margin-left: auto;
        padding-left: 0;
        padding-right: 0; }
        div.content-wrap div.portfolio-opener:before, div.content-wrap div.portfolio-opener:after {
          content: '';
          display: table; }
        div.content-wrap div.portfolio-opener:after {
          clear: both; } }
    @media only screen and (max-width: 700px) {
      div.content-wrap div.portfolio-opener {
        *zoom: 1;
        width: auto;
        max-width: 400px;
        float: none;
        display: block;
        margin-right: auto;
        margin-left: auto;
        padding-left: 0;
        padding-right: 0; }
        div.content-wrap div.portfolio-opener:before, div.content-wrap div.portfolio-opener:after {
          content: '';
          display: table; }
        div.content-wrap div.portfolio-opener:after {
          clear: both; } }
    @media only screen and (max-width: 600px) {
      div.content-wrap div.portfolio-opener {
        *zoom: 1;
        width: auto;
        max-width: 350px;
        float: none;
        display: block;
        margin-right: auto;
        margin-left: auto;
        padding-left: 0;
        padding-right: 0; }
        div.content-wrap div.portfolio-opener:before, div.content-wrap div.portfolio-opener:after {
          content: '';
          display: table; }
        div.content-wrap div.portfolio-opener:after {
          clear: both; } }
    @media only screen and (max-width: 460px) {
      div.content-wrap div.portfolio-opener {
        *zoom: 1;
        width: auto;
        max-width: 400px;
        float: none;
        display: block;
        margin-right: auto;
        margin-left: auto;
        padding-left: 0.5em;
        padding-right: 0.5em; }
        div.content-wrap div.portfolio-opener:before, div.content-wrap div.portfolio-opener:after {
          content: '';
          display: table; }
        div.content-wrap div.portfolio-opener:after {
          clear: both; } }
    div.content-wrap div.portfolio-opener a:link, div.content-wrap div.portfolio-opener a:visited {
      border-bottom: none;
      text-decoration: none;
      color: #707f71; }
    div.content-wrap div.portfolio-opener a:hover {
      border-bottom: none;
      text-decoration: none;
      color: rgba(155, 141, 93, 0.9); }
    div.content-wrap div.portfolio-opener h1 {
      font-size: 48px;
      font-family: "Bevan", serif;
      color: #99522E;
      letter-spacing: 4px;
      margin: 0;
      padding: 0;
      text-shadow: 1px 1px 0px #000; }
      @media only screen and (max-width: 700px) {
        div.content-wrap div.portfolio-opener h1 {
          font-size: 40px; } }
    div.content-wrap div.portfolio-opener h2 {
      font-family: "Bevan", serif;
      font-size: 26px;
      font-weight: 400;
      color: #99522E;
      line-height: 1.2;
      margin: 10px 0 0 0;
      padding: 0;
      letter-spacing: 1px; }
      @media only screen and (max-width: 800px) {
        div.content-wrap div.portfolio-opener h2 {
          font-size: 32px; } }
      @media only screen and (max-width: 700px) {
        div.content-wrap div.portfolio-opener h2 {
          font-size: 28px; } }
      @media only screen and (max-width: 600px) {
        div.content-wrap div.portfolio-opener h2 {
          font-size: 24px;
          line-height: 1.2; } }

div#footer {
  z-index: 20;
  width: 100%;
  margin: 0;
  padding: 15px 0;
  background: #CC6633;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3); }
  div#footer a:link, div#footer a:visited {
    color: #475947;
    letter-spacing: 1px;
    text-shadow: none;
    border: none;
    padding: 0; }
  div#footer a:hover {
    color: #E6BC5C;
    letter-spacing: 1px;
    text-shadow: none;
    border: none;
    padding: 0; }
  div#footer p, div#footer div.content-wrap ul, div.content-wrap div#footer ul, div#footer div.content-wrap ol, div.content-wrap div#footer ol, div#footer div.content-wrap li, div.content-wrap div#footer li {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "Francois One", sans-serif;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0;
    font-weight: 400;
    line-height: 1.6;
    font-family: #475947; }
    @media only screen and (max-width: 700px) {
      div#footer p, div#footer div.content-wrap ul, div.content-wrap div#footer ul, div#footer div.content-wrap ol, div.content-wrap div#footer ol, div#footer div.content-wrap li, div.content-wrap div#footer li {
        font-size: 16px;
        line-height: 1.2;
        text-align: center; } }
    @media only screen and (max-width: 460px) {
      div#footer p, div#footer div.content-wrap ul, div.content-wrap div#footer ul, div#footer div.content-wrap ol, div.content-wrap div#footer ol, div#footer div.content-wrap li, div.content-wrap div#footer li {
        font-size: 14px;
        line-height: 1.2; } }
  div#footer div.none {
    background: none; }
  div#footer img {
    margin-top: 20px; }

div#nav {
  position: relative;
  z-index: 20;
  width: 100%;
  background: #608060;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  padding: 8px 0 8px 0; }
  @media only screen and (max-width: 800px) {
    div#nav {
      padding: 5px 0 5px 0; } }
  @media only screen and (max-width: 700px) {
    div#nav {
      padding: 8px 0 10px 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-wrap {
  *zoom: 1;
  position: relative;
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0%;
  padding-right: 0%;
  margin: 1em auto;
  margin: 0 auto;
  padding: 0; }
  div#nav-wrap:before, div#nav-wrap:after {
    content: '';
    display: table; }
  div#nav-wrap:after {
    clear: both; }
  div#nav-wrap:before, div#nav-wrap:after {
    content: '';
    display: table; }
  div#nav-wrap:after {
    clear: both; }
  @media only screen and (max-width: 1050px) {
    div#nav-wrap {
      *zoom: 1;
      width: auto;
      max-width: 1410px;
      float: none;
      display: block;
      margin-right: auto;
      margin-left: auto;
      padding-left: 2.5%;
      padding-right: 2.5%; }
      div#nav-wrap:before, div#nav-wrap:after {
        content: '';
        display: table; }
      div#nav-wrap:after {
        clear: both; } }
  @media only screen and (max-width: 800px) {
    div#nav-wrap {
      *zoom: 1;
      width: auto;
      max-width: 1410px;
      float: none;
      display: block;
      margin-right: auto;
      margin-left: auto;
      padding-left: 10px;
      padding-right: 10px; }
      div#nav-wrap:before, div#nav-wrap:after {
        content: '';
        display: table; }
      div#nav-wrap:after {
        clear: both; } }
  @media only screen and (max-width: 700px) {
    div#nav-wrap {
      *zoom: 1;
      width: auto;
      max-width: 1410px;
      float: none;
      display: block;
      margin-right: auto;
      margin-left: auto;
      padding-left: 10px;
      padding-right: 10px; }
      div#nav-wrap:before, div#nav-wrap:after {
        content: '';
        display: table; }
      div#nav-wrap:after {
        clear: both; } }
  @media only screen and (max-width: 600px) {
    div#nav-wrap {
      *zoom: 1;
      width: auto;
      max-width: 1410px;
      float: none;
      display: block;
      margin-right: auto;
      margin-left: auto;
      padding-left: 10px;
      padding-right: 10px; }
      div#nav-wrap:before, div#nav-wrap:after {
        content: '';
        display: table; }
      div#nav-wrap:after {
        clear: both; } }
  @media only screen and (max-width: 460px) {
    div#nav-wrap {
      *zoom: 1;
      width: auto;
      max-width: 1410px;
      float: none;
      display: block;
      margin-right: auto;
      margin-left: auto;
      padding-left: 10px;
      padding-right: 10px; }
      div#nav-wrap:before, div#nav-wrap:after {
        content: '';
        display: table; }
      div#nav-wrap:after {
        clear: both; } }

div#nav-wrap ul li {
  font-family: "Francois One", sans-serif;
  color: #E6BC5C;
  margin: 0;
  padding: 0;
  text-shadow: 1px 1px 0px #000; }

div#nav-wrap ul.dropdown {
  font-family: "Francois One", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: #CC6633;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  letter-spacing: 0px;
  padding: 0; }
  @media only screen and (max-width: 800px) {
    div#nav-wrap ul.dropdown {
      font-size: 18px; } }
  @media only screen and (max-width: 700px) {
    div#nav-wrap ul.dropdown {
      font-size: 16px;
      text-align: center; } }
  @media only screen and (max-width: 460px) {
    div#nav-wrap ul.dropdown {
      font-size: 16px;
      text-align: center; } }

div#nav-wrap ul.dropdown li {
  display: inline-block;
  zoom: 1; }

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

div#nav-wrap ul.dropdown li a:visited {
  color: #E6BC5C; }

div#nav-wrap ul.dropdown li a:hover {
  color: #cc6f31; }

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

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

div#menu {
  font-size: 16px;
  font-weight: 400;
  display: none;
  z-index: 3;
  -webkit-transition: 1s;
          transition: 1s;
  font-family: "Francois One", sans-serif;
  font-weight: 400;
  line-height: 2;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #608060;
  max-height: 30px;
  padding: 0 0 10px 10px; }
  @media only screen and (max-width: 600px) {
    div#menu {
      display: block; } }
  div#menu span {
    font-family: "Francois One", sans-serif;
    font-weight: 400;
    font-size: 18px;
    padding: 0 0 5px 0;
    color: #E6BC5C; }
    @media only screen and (max-width: 600px) {
      div#menu span {
        font-size: 16px; } }
    @media only screen and (max-width: 460px) {
      div#menu span {
        font-size: 16px; } }
    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: #E6BC5C;
  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: #E6BC5C;
  background-color: #CC6633;
  border-radius: 5px;
  text-decoration: none;
  text-shadow: none;
  letter-spacing: 1px; }

div.row-gallery {
  *zoom: 1;
  position: relative;
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 2em;
  padding-right: 2em;
  background: #333;
  padding: 2em; }
  div.row-gallery:before, div.row-gallery:after {
    content: '';
    display: table; }
  div.row-gallery:after {
    clear: both; }
  div.row-gallery:before, div.row-gallery:after {
    content: '';
    display: table; }
  div.row-gallery:after {
    clear: both; }
  @media only screen and (max-width: 600px) {
    div.row-gallery {
      padding: .5em; } }

div.row-gallery ul.gallery li {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 22.75%;
  margin-left: 0%;
  margin-right: 3%;
  display: block;
  list-style-type: none; }
  div.row-gallery ul.gallery li:before, div.row-gallery ul.gallery li:after {
    content: '';
    display: table; }
  div.row-gallery ul.gallery li:after {
    clear: both; }
  div.row-gallery ul.gallery li:nth-child(4n) {
    margin-right: 0%;
    float: right; }
  div.row-gallery ul.gallery li:nth-child(4n + 1) {
    clear: both; }
  div.row-gallery ul.gallery li a:link, div.row-gallery ul.gallery li a:visited, div.row-gallery ul.gallery li a:hover {
    border: none;
    text-decoration: none; }
  @media only screen and (max-width: 1050px) {
    div.row-gallery ul.gallery li {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 31.3333333333%;
      margin-left: 0%;
      margin-right: 3%; }
      div.row-gallery ul.gallery li:before, div.row-gallery ul.gallery li:after {
        content: '';
        display: table; }
      div.row-gallery ul.gallery li:after {
        clear: both; }
      div.row-gallery ul.gallery li:nth-child(4n) {
        margin-right: 3%;
        float: left; }
      div.row-gallery ul.gallery li:nth-child(4n + 1) {
        clear: none; }
      div.row-gallery ul.gallery li:nth-child(3n) {
        margin-right: 0%;
        float: right; }
      div.row-gallery ul.gallery li:nth-child(3n + 1) {
        clear: both; } }
  @media only screen and (max-width: 800px) {
    div.row-gallery ul.gallery li {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 31.3333333333%;
      margin-left: 0%;
      margin-right: 3%; }
      div.row-gallery ul.gallery li:before, div.row-gallery ul.gallery li:after {
        content: '';
        display: table; }
      div.row-gallery ul.gallery li:after {
        clear: both; }
      div.row-gallery ul.gallery li:nth-child(4n) {
        margin-right: 3%;
        float: left; }
      div.row-gallery ul.gallery li:nth-child(4n + 1) {
        clear: none; }
      div.row-gallery ul.gallery li:nth-child(3n) {
        margin-right: 0%;
        float: right; }
      div.row-gallery ul.gallery li:nth-child(3n + 1) {
        clear: both; } }
  @media only screen and (max-width: 700px) {
    div.row-gallery ul.gallery li {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 48.5%;
      margin-left: 0%;
      margin-right: 3%; }
      div.row-gallery ul.gallery li:before, div.row-gallery ul.gallery li:after {
        content: '';
        display: table; }
      div.row-gallery ul.gallery li:after {
        clear: both; }
      div.row-gallery ul.gallery li:nth-child(3n) {
        margin-right: 3%;
        float: left; }
      div.row-gallery ul.gallery li:nth-child(3n + 1) {
        clear: none; }
      div.row-gallery ul.gallery li:nth-child(2n) {
        margin-right: 0%;
        float: right; }
      div.row-gallery ul.gallery li:nth-child(2n + 1) {
        clear: both; } }
  @media only screen and (max-width: 460px) {
    div.row-gallery ul.gallery li {
      *zoom: 1;
      float: left;
      clear: none;
      text-align: inherit;
      width: 100%;
      margin-left: 0%;
      margin-right: 3%; }
      div.row-gallery ul.gallery li:before, div.row-gallery ul.gallery li:after {
        content: '';
        display: table; }
      div.row-gallery ul.gallery li:after {
        clear: both; }
      div.row-gallery ul.gallery li:nth-child(2n) {
        margin-right: 3%;
        float: left; }
      div.row-gallery ul.gallery li:nth-child(2n + 1) {
        clear: none; }
      div.row-gallery ul.gallery li:nth-child(1n) {
        margin-right: 0%;
        float: right; }
      div.row-gallery ul.gallery li:nth-child(1n + 1) {
        clear: both; } }
  div.row-gallery ul.gallery li img {
    margin: 0 auto 40px auto;
    display: block;
    width: auto;
    max-height: 220px; }
    @media only screen and (max-width: 800px) {
      div.row-gallery ul.gallery li img {
        margin: 0 auto 20px auto;
        display: block;
        width: auto;
        max-height: 180px; } }
    @media only screen and (max-width: 700px) {
      div.row-gallery ul.gallery li img {
        margin: 0 auto 30px auto;
        display: block;
        width: auto;
        max-height: 220px; } }
    @media only screen and (max-width: 600px) {
      div.row-gallery ul.gallery li img {
        margin: 0 auto 20px auto;
        display: block;
        width: auto;
        max-height: 170px; } }
    @media only screen and (max-width: 460px) {
      div.row-gallery ul.gallery li img {
        margin: 0 auto 20px auto;
        display: block;
        width: auto;
        max-height: 220px; } }

div.gallery-text h1 {
  font-family: "Bevan", serif;
  font-size: 3em;
  font-weight: 400;
  color: #99522E;
  line-height: 1.1;
  margin: 5px 0 10px 0;
  padding: 0; }
  @media only screen and (max-width: 800px) {
    div.gallery-text h1 {
      font-size: 2.5em; } }
  @media only screen and (max-width: 700px) {
    div.gallery-text h1 {
      font-size: 2.3em;
      text-align: center;
      line-height: 1; } }
  @media only screen and (max-width: 600px) {
    div.gallery-text h1 {
      font-size: 2.2em;
      text-align: center;
      line-height: 1; } }
div.gallery-text p.gallery-click, div.gallery-text div.content-wrap ul.gallery-click, div.content-wrap div.gallery-text ul.gallery-click, div.gallery-text div.content-wrap ol.gallery-click, div.content-wrap div.gallery-text ol.gallery-click, div.gallery-text div.content-wrap li.gallery-click, div.content-wrap div.gallery-text li.gallery-click {
  font-family: "Francois One", sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1; }
  @media only screen and (max-width: 1050px) {
    div.gallery-text p.gallery-click, div.gallery-text div.content-wrap ul.gallery-click, div.content-wrap div.gallery-text ul.gallery-click, div.gallery-text div.content-wrap ol.gallery-click, div.content-wrap div.gallery-text ol.gallery-click, div.gallery-text div.content-wrap li.gallery-click, div.content-wrap div.gallery-text li.gallery-click {
      font-size: 1.2em; } }
  @media only screen and (max-width: 700px) {
    div.gallery-text p.gallery-click, div.gallery-text div.content-wrap ul.gallery-click, div.content-wrap div.gallery-text ul.gallery-click, div.gallery-text div.content-wrap ol.gallery-click, div.content-wrap div.gallery-text ol.gallery-click, div.gallery-text div.content-wrap li.gallery-click, div.content-wrap div.gallery-text li.gallery-click {
      text-align: center;
      font-size: 1.1em;
      margin: 0 30px; } }
  @media only screen and (max-width: 460px) {
    div.gallery-text p.gallery-click, div.gallery-text div.content-wrap ul.gallery-click, div.content-wrap div.gallery-text ul.gallery-click, div.gallery-text div.content-wrap ol.gallery-click, div.content-wrap div.gallery-text ol.gallery-click, div.gallery-text div.content-wrap li.gallery-click, div.content-wrap div.gallery-text li.gallery-click {
      font-family: "Francois One", sans-serif;
      font-size: 1.2em;
      line-height: 1;
      margin: 0;
      text-align: center;
      font-weight: 400;
      letter-spacing: 1px; } }
