/*  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: #914237;
  background: url(../img-png/bg-mdd-gray-v2.jpg);
}

img {
  max-width: 100%;
}

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

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

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

div#header, div.content-wrap, div#footer {
  position: relative;
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 1400px;
  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, row-wrap-1, row-wrap-2 {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

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

div#menu a:link, a:visited {
  color: #cccccc;
  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: #cccccc;
  color: #742D27;
  border-radius: 5px;
  text-decoration: none;
  text-shadow: none;
  letter-spacing: 1px;
}

div#nav-side {
  display: none;
}
@media only screen and (min-width: 768px) {
  div#nav-side {
    display: block;
  }
}
div#nav-side p {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 700;
  color: #cccccc;
  font-size: 14px;
  line-height: 3;
  letter-spacing: 2px;
  margin-left: 30px;
}
div#nav-side p a:link, div#nav-side p a:visited {
  color: #cccccc;
  padding: 5px 10px;
  border: none;
}
div#nav-side p a:hover {
  color: #808080;
  padding: 5px 10px;
  border-radius: 3px;
  background: #cccccc;
  border: none;
}
div#nav-side p.current {
  color: #808080;
  padding: 0 10px;
  background: #E2E1E2;
  background: url(../img-png/bg-gray-flannel-v2.jpg);
  border: none;
}

div.row-wrap-1 {
  display: none;
}
@media only screen and (min-width: 768px) {
  div.row-wrap-1 {
    display: block;
    height: 30px;
    background: url(../img-png/maroon-v4.png);
  }
}

div.row-wrap-2 div.content-wrap {
  position: relative;
  *zoom: 1;
  *zoom: 1;
  width: auto;
  max-width: 1000px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}
div.row-wrap-2 div.content-wrap:before, div.row-wrap-2 div.content-wrap:after {
  content: '';
  display: table;
}
div.row-wrap-2 div.content-wrap:after {
  clear: both;
}
div.row-wrap-2 div.content-wrap:before, div.row-wrap-2 div.content-wrap:after {
  content: '';
  display: table;
}
div.row-wrap-2 div.content-wrap:after {
  clear: both;
}
div.row-wrap-2 div.content-wrap a:link, div.row-wrap-2 div.content-wrap a:visited {
  color: #914237;
  text-decoration: none;
  border-bottom: 1px dotted #914237;
  padding-bottom: 3px;
}
div.row-wrap-2 div.content-wrap a:hover {
  color: #424242;
  text-decoration: none;
  border-bottom: 1px solid #424242;
  padding-bottom: 3px;
}
div.row-wrap-2 div.content-wrap a:link, div.row-wrap-2 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-2 div.content-wrap {
    overflow: hidden;
  }
}
div.row-wrap-2 div.content-wrap div.col-1 {
  font-size: 14px;
  text-align: center;
  min-height: 1px;
  line-height: 1.5;
  background: #808080;
}
@media only screen and (min-width: 768px) {
  div.row-wrap-2 div.content-wrap div.col-1 {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 30%;
    margin-left: 0%;
    margin-right: 0%;
    margin-bottom: -99999px;
    padding-bottom: 99999px;
  }
  div.row-wrap-2 div.content-wrap div.col-1:before, div.row-wrap-2 div.content-wrap div.col-1:after {
    content: '';
    display: table;
  }
  div.row-wrap-2 div.content-wrap div.col-1:after {
    clear: both;
  }
}
div.row-wrap-2 div.content-wrap div.col-1 img {
  margin-bottom: 0;
  display: none;
}
@media only screen and (min-width: 768px) {
  div.row-wrap-2 div.content-wrap div.col-1 img {
    display: block;
    margin-bottom: 20px;
  }
}
div.row-wrap-2 div.content-wrap div.col-2 {
  min-height: 1px;
  padding-bottom: 10px;
  background: url(../img-png/bg-gray-flannel-v2.jpg);
}
@media only screen and (min-width: 768px) {
  div.row-wrap-2 div.content-wrap div.col-2 {
    text-align: left;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 70%;
    margin-left: 0%;
    margin-right: 0%;
    margin-bottom: -99999px;
    padding-bottom: 99999px;
  }
  div.row-wrap-2 div.content-wrap div.col-2:before, div.row-wrap-2 div.content-wrap div.col-2:after {
    content: '';
    display: table;
  }
  div.row-wrap-2 div.content-wrap div.col-2:after {
    clear: both;
  }
}
div.row-wrap-2 div.content-wrap div.col-2 p, div.row-wrap-2 div.content-wrap div.col-2 ul, div.row-wrap-2 div.content-wrap div.col-2 li {
  font-family: "Merriweather", serif;
  font-size: 15px;
  font-weight: 400;
  color: #555555;
  line-height: 1.7;
}
@media only screen and (min-width: 768px) {
  div.row-wrap-2 div.content-wrap div.col-2 p, div.row-wrap-2 div.content-wrap div.col-2 ul, div.row-wrap-2 div.content-wrap div.col-2 li {
    font-size: 16px;
    line-height: 1.8;
  }
}
div.row-wrap-2 div.content-wrap div.col-2 p {
  margin: 0 5px 15px 15px;
}
@media only screen and (min-width: 768px) {
  div.row-wrap-2 div.content-wrap div.col-2 p {
    margin: 15px 15px 15px 50px;
  }
}
div.row-wrap-2 div.content-wrap div.col-2 p.top {
  font-family: "Merriweather Sans", sans-serif;
  color: #742D27;
  font-weight: 300;
  font-size: 12px;
}
div.row-wrap-2 div.content-wrap div.col-2 ul {
  margin-left: 25px;
}
div.row-wrap-2 div.content-wrap div.col-2 li {
  margin-bottom: 5px;
}
div.row-wrap-2 div.content-wrap div.col-2 h1.firm {
  font-family: "Merriweather", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  padding-top: 10px;
  margin-left: 10px;
  color: #742D27;
}
div.row-wrap-2 div.content-wrap div.col-2 h1.firm span {
  font-size: 18px;
  padding: 0;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  div.row-wrap-2 div.content-wrap div.col-2 h1.firm span {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) {
  div.row-wrap-2 div.content-wrap div.col-2 h1.firm {
    font-size: 40px;
    margin: 0 15px 15px 30px;
  }
}
div.row-wrap-2 div.content-wrap div.col-2 h1.lars {
  font-family: "Merriweather Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  padding: 5px 10px;
  color: #666666;
  background: #bababa;
  display: inline-block;
}
div.row-wrap-2 div.content-wrap div.col-2 h1.lars span {
  font-weight: 400;
}
@media only screen and (min-width: 768px) {
  div.row-wrap-2 div.content-wrap div.col-2 h1.lars {
    font-size: 18px;
    margin: 0 15px 15px 45px;
  }
}
div.row-wrap-2 div.content-wrap div.col-2 h1.title {
  font-family: "Merriweather Sans", sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  margin: 15px;
  padding-top: 10px;
  color: #742D27;
}
@media only screen and (min-width: 768px) {
  div.row-wrap-2 div.content-wrap div.col-2 h1.title {
    font-size: 21px;
    margin: 0 15px 15px 50px;
  }
}
div.row-wrap-2 div.content-wrap div.col-2 h2 {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  padding-top: 10px;
  padding-left: 15px;
  color: #742D27;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  div.row-wrap-2 div.content-wrap div.col-2 h2 {
    font-size: 18px;
    margin: 0 15px 15px 30px;
  }
}
div.row-wrap-2 div.content-wrap div.col-2 img.mobile-image {
  max-width: 200px;
}
@media only screen and (min-width: 768px) {
  div.row-wrap-2 div.content-wrap div.col-2 img.mobile-image {
    display: none;
  }
}

div#footer-wrap {
  background: url(../img-png/maroon-v4.png);
  position: relative;
  *zoom: 1;
}
div#footer-wrap:before, div#footer-wrap:after {
  content: '';
  display: table;
}
div#footer-wrap:after {
  clear: both;
}
div#footer-wrap div#footer {
  padding: 15px;
  position: relative;
  *zoom: 1;
}
div#footer-wrap div#footer:before, div#footer-wrap div#footer:after {
  content: '';
  display: table;
}
div#footer-wrap div#footer:after {
  clear: both;
}
div#footer-wrap div#footer p {
  text-align: center;
  font-family: "Merriweather Sans", sans-serif;
  font-size: 14px;
  color: #cccccc;
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: 1px;
  padding: 0 3px;
}
div#footer-wrap div#footer p a:link, div#footer-wrap div#footer p a:visited {
  border-bottom: none;
  text-decoration: none;
  color: #eeeeee;
  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;
  color: #742D27;
  background: #eeeeee;
  border-radius: 5px;
  border-bottom: none;
  text-decoration: none;
}
div#footer-wrap div#footer p.disclaimer {
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  color: #999;
  margin-top: 20px;
  padding-bottom: 20px;
}
div#footer-wrap div#footer div.footer-logos {
  position: relative;
  *zoom: 1;
  text-align: center;
  margin-top: 10px;
}
div#footer-wrap div#footer div.footer-logos:before, div#footer-wrap div#footer div.footer-logos:after {
  content: '';
  display: table;
}
div#footer-wrap div#footer div.footer-logos:after {
  clear: both;
}
div#footer-wrap div#footer div.footer-logos img {
  display: block;
  margin: 10px auto;
}
@media only screen and (min-width: 640px) {
  div#footer-wrap div#footer div.footer-logos img {
    display: inline-block;
    margin: 10px;
  }
}
