/*  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("https://earlblackart.com/css/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, .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;
  *zoom: 1;
  width: auto;
  max-width: 700px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  margin: 1em auto;
  position: relative;
  z-index: 0;
  width: 100%;
}
div.cycle-slide-show-wrapper:before, div.cycle-slide-show-wrapper:after {
  content: '';
  display: table;
}
div.cycle-slide-show-wrapper:after {
  clear: both;
}
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%;
  }
}

div.slide-show {
  margin: 0 auto;
}
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: "ITC Franklin Gothic W01";
  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: #666;
  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: #a39589;
}

.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: #595353;
  background-image: url(../img-png/iron-grip-70.png);
}

div#header-wrap {
  *zoom: 1;
  width: 100%;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 10;
  padding: 0 0 0 0;
  background-color: #595353;
  background-image: url(../img-png/iron-grip-50.png);
}
div#header-wrap:before, div#header-wrap:after {
  content: '';
  display: table;
}
div#header-wrap:after {
  clear: both;
}
div#header-wrap div#header {
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 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: 1200px;
    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: 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: 1em;
    padding-right: 1em;
  }
  div#header-wrap div#header:before, div#header-wrap div#header:after {
    content: '';
    display: table;
  }
  div#header-wrap div#header:after {
    clear: both;
  }
}
div#header-wrap div#header div#logo {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 30.99%;
  margin-left: 0%;
  margin-right: 3%;
  padding: 0 0 .3em 0;
}
div#header-wrap div#header div#logo:before, div#header-wrap div#header div#logo:after {
  content: '';
  display: table;
}
div#header-wrap div#header div#logo:after {
  clear: both;
}
div#header-wrap div#header div#logo:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 800px) {
  div#header-wrap div#header div#logo {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 38.2%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div#header-wrap div#header div#logo:before, div#header-wrap div#header div#logo:after {
    content: '';
    display: table;
  }
  div#header-wrap div#header div#logo:after {
    clear: both;
  }
  div#header-wrap div#header div#logo:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 700px) {
  div#header-wrap div#header div#logo {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
  }
  div#header-wrap div#header div#logo:first-child {
    margin-left: auto;
  }
  div#header-wrap div#header div#logo:last-child {
    margin-right: auto;
  }
}
div#header-wrap div#header div#logo h1 {
  font-family: "Gideon W00";
  font-size: 5.5em;
  font-weight: 400;
  color: #8c7b6d;
  text-shadow: 1px 0px 0px rgba(255, 222, 153, 0.74);
  line-height: 1.1;
  margin: 10px 0 0 0;
  padding: 0;
}
@media only screen and (max-width: 1050px) {
  div#header-wrap div#header div#logo h1 {
    font-size: 4.5em;
  }
}
@media only screen and (max-width: 800px) {
  div#header-wrap div#header div#logo h1 {
    font-size: 3.8em;
  }
}
@media only screen and (max-width: 700px) {
  div#header-wrap div#header div#logo h1 {
    font-size: 3.8em;
  }
}
@media only screen and (max-width: 600px) {
  div#header-wrap div#header div#logo h1 {
    font-size: 3em;
    line-height: 1;
  }
}
div#header-wrap div#header div#logo h1 a {
  color: #8c7b6d;
  border: none;
  text-decoration: none;
}
div#header-wrap div#header div#tagline {
  min-height: 2em;
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 66.01%;
  margin-left: 0%;
  margin-right: 3%;
}
div#header-wrap div#header div#tagline:before, div#header-wrap div#header div#tagline:after {
  content: '';
  display: table;
}
div#header-wrap div#header div#tagline:after {
  clear: both;
}
div#header-wrap div#header div#tagline:last-child {
  margin-right: 0%;
}
@media only screen and (max-width: 800px) {
  div#header-wrap div#header div#tagline {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 58.8%;
    margin-left: 0%;
    margin-right: 3%;
  }
  div#header-wrap div#header div#tagline:before, div#header-wrap div#header div#tagline:after {
    content: '';
    display: table;
  }
  div#header-wrap div#header div#tagline:after {
    clear: both;
  }
  div#header-wrap div#header div#tagline:last-child {
    margin-right: 0%;
  }
}
@media only screen and (max-width: 700px) {
  div#header-wrap div#header div#tagline {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1em;
    padding-right: 1em;
    text-align: center;
  }
  div#header-wrap div#header div#tagline:first-child {
    margin-left: auto;
  }
  div#header-wrap div#header div#tagline:last-child {
    margin-right: auto;
  }
}
div#header-wrap div#header div#tagline h2 {
  font-family: "Gideon W00";
  font-size: 1.8em;
  line-height: 1.2;
  margin: 15px 0 10px 0;
  font-weight: 400;
  color: #707f71;
}
@media only screen and (max-width: 1050px) {
  div#header-wrap div#header div#tagline h2 {
    font-size: 1.5em;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 800px) {
  div#header-wrap div#header div#tagline h2 {
    font-size: 1.2em;
  }
}
@media only screen and (max-width: 600px) {
  div#header-wrap div#header div#tagline h2 {
    font-size: 1.1em;
  }
}
@media only screen and (max-width: 460px) {
  div#header-wrap div#header div#tagline h2 {
    margin: 5px 0 10px 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.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%;
  margin: 1em auto;
}
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: 2.5%;
    padding-right: 2.5%;
  }
  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: 2.5%;
    padding-right: 2.5%;
  }
  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: 7.5%;
    padding-right: 7.5%;
  }
  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: "Clarendon Text W01";
  font-size: 18px;
  line-height: 1.5;
  color: #A89D83;
  margin: 0 20% 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: 18px;
    margin: 0 0 1em 0;
  }
}
div.content-wrap ul, div.content-wrap ol {
  margin-left: 2em;
}
div.content-wrap li {
  font-size: 21px;
  margin: 0;
  padding: 0;
}
div.content-wrap p.intro, div.content-wrap ul.intro, div.content-wrap ol.intro, div.content-wrap li.intro {
  font-family: "Clarendon Text W01";
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.5;
  color: #89806b;
  margin-bottom: 1em;
}
@media only screen and (max-width: 700px) {
  div.content-wrap p.intro, div.content-wrap ul.intro, div.content-wrap ol.intro, div.content-wrap li.intro {
    font-size: 1em;
  }
}
div.content-wrap h3 {
  font-family: "ITC Franklin Gothic W01";
  font-size: 1.6em;
  color: #8e7c54;
  margin: 2em 0 1em 0;
  letter-spacing: 2px;
}
@media only screen and (max-width: 600px) {
  div.content-wrap h3 {
    font-size: 1.4em;
  }
}
div.content-wrap h4 {
  font-family: "ITC Franklin Gothic W01";
  font-size: 1.4em;
  font-weight: 400;
  color: #8e7c54;
  margin: 1.5em 0 .3em 0;
  letter-spacing: 2px;
}
div.content-wrap img {
  max-width: 100%;
}
div.content-wrap div.left {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 30.99%;
  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: 38.2%;
    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: 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: center;
  }
  div.content-wrap div.left:first-child {
    margin-left: auto;
  }
  div.content-wrap div.left:last-child {
    margin-right: auto;
  }
}
div.content-wrap div.right {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 66.01%;
  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: 800px) {
  div.content-wrap div.right {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 58.8%;
    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: center;
  }
  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: #707f71;
  border: none;
}
div.content-wrap div.right a:hover {
  color: #8c7b6d;
}
div.content-wrap div.right h1 {
  font-size: 3em;
  font-family: "Gideon W00";
  color: rgba(155, 141, 93, 0.9);
  letter-spacing: 4px;
  margin: 1em 0 0 0;
  padding: 0;
  text-shadow: 1px 1px 0px #000;
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.right h1 {
    font-size: 2.5em;
  }
}
div.content-wrap div.right h2 {
  font-family: "ITC Franklin Gothic W01";
  font-size: 2.2em;
  font-weight: 400;
  color: #8c7b6d;
  line-height: 1.2;
  margin: 10px 0 3em 0;
  padding: 0;
}
@media only screen and (max-width: 1050px) {
  div.content-wrap div.right h2 {
    font-size: 2.2em;
  }
}
@media only screen and (max-width: 800px) {
  div.content-wrap div.right h2 {
    font-size: 2em;
  }
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.right h2 {
    font-size: 1.8em;
  }
}
@media only screen and (max-width: 600px) {
  div.content-wrap div.right h2 {
    font-size: 1.5;
    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: 3em;
  font-family: "Gideon W00";
  color: rgba(155, 141, 93, 0.9);
  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: 2.5em;
  }
}
div.content-wrap div.portfolio-opener h2 {
  font-family: "ITC Franklin Gothic W01";
  font-size: 2.1em;
  font-weight: 400;
  color: #8c7b6d;
  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: 2em;
  }
}
@media only screen and (max-width: 700px) {
  div.content-wrap div.portfolio-opener h2 {
    font-size: 1.8em;
  }
}
@media only screen and (max-width: 600px) {
  div.content-wrap div.portfolio-opener h2 {
    font-size: 1.5em;
    line-height: 1.2;
  }
}

div#footer {
  z-index: 20;
  width: 100%;
  margin: 0;
  padding: 5px 0;
  background-color: #595353;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
  background-image: url(../img-png/iron-grip-50.png);
}
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: 1.2em;
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.6;
  font-family: "ITC Franklin Gothic W01";
  letter-spacing: 2px;
}
@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: 1em;
    line-height: 1;
    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: .9em;
    line-height: 1;
  }
}

div#nav {
  position: relative;
  z-index: 20;
  width: 100%;
  background-color: rgba(155, 141, 93, 0.7);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  padding: 5px 0 5px 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;
  }
}
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: 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: 700px) {
  div#nav-wrap {
    *zoom: 1;
    width: auto;
    max-width: 1410px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 7.5%;
    padding-right: 7.5%;
  }
  div#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: 5%;
    padding-right: 5%;
  }
  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: 3%;
    padding-right: 3%;
  }
  div#nav-wrap:before, div#nav-wrap:after {
    content: '';
    display: table;
  }
  div#nav-wrap:after {
    clear: both;
  }
}

div#nav-wrap ul li {
  font-family: "ITC Franklin Gothic W01";
  color: #ccc0a7;
  margin: 0;
  padding: 0;
  text-shadow: 1px 1px 0px #000;
}

div#nav-wrap ul.dropdown {
  font-family: "ITC Franklin Gothic W01";
  font-size: 18px;
  font-weight: 400;
  color: #ccc0a7;
  color: #999;
  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: 18px;
    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 {
  padding: 2px 4px;
  border-bottom: none;
  text-decoration: none;
  color: #ccc0a7;
  letter-spacing: 4px;
  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 {
    padding: 0 3px;
    letter-spacing: 2px;
  }
}
@media only screen and (max-width: 700px) {
  div#nav-wrap ul.dropdown li a:link {
    padding: 0 3px;
  }
}

div#nav-wrap ul.dropdown li a:visited {
  padding: 2px 4px;
  border-bottom: none;
  text-decoration: none;
  color: #ccc0a7;
  letter-spacing: 4px;
  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:visited {
    padding: 0 3px;
    letter-spacing: 2px;
  }
}
@media only screen and (max-width: 700px) {
  div#nav-wrap ul.dropdown li a:visited {
    padding: 0 3px;
  }
}

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

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

div.row-gallery {
  background: #333;
  /* Idea from: http://stackoverflow.com/questions/7273338/how-to-vertically-align-an-image-inside-div */
}
div.row-gallery ul {
  text-align: center;
  padding: 10px 0 0 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 #555;
  background-image: url(../img-png/iron-grip-70.png);
  display: block;
  padding: 10px;
  margin: 5px 5px 10px 5px;
  border-radius: 5px;
}
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: "Gideon W00";
  font-size: 3em;
  font-weight: 400;
  color: #8c7b6d;
  color: #707f71;
  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: "ITC Franklin Gothic W01";
  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: "ITC Franklin Gothic W01";
    font-size: 1.2em;
    line-height: 1;
    margin: 0;
    text-align: center;
    font-weight: 400;
    letter-spacing: 1px;
  }
}
