@charset "UTF-8";
/* 0.import
-------------------------------------------------------------- */
@import url(grid.min.css);
/****

  MAIN STYLESHEET for [* Site Name Here *]

---------------------------------------------------------

  BUILT WITH SKYLINE: EVOLVING CSS ARCHITECTURE

  See README.md for info and credits


  TABLE OF CONTENTS
  @toc

  - Base ............ foundations, mixins, functions, vars
  - Elements ........ single elements
  - Layout .......... layout objects like grids, containers
  - Modules ......... objects created by combining elements
   - Grobal modules....... modules of grobal area
   - Contents modules......... modules of contents area
   - Utility......... clearfix/display/margin 

---------------------------------------------------------  */
/***

  @base

-----------------------------------------------------  */
/**

  @variables
---------------------------------------------------------
  base/_vars.scss
--------------------------------------------------------
--  */
/* @colors */
/* @breakpoints */
/* @global spacing unit  */
/**

  @reset
---------------------------------------------------------
  base/_reset.scss
--------------------------------------------------------

  Credit goes to Normalize
  http://normalize.css v2.1.0 http://git.io/normalize

--------------------------------------------------------- */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

audio,
canvas,
video {
  display: block;
}

/**

  @breakpoints mixin
-----------------------------------------------------
  base/_mixin-breakpoints.scss
-----------------------------------------------------
---  */
/**

  @clearfix mixin
---------------------------------------------------------
  base/_clearfix.scss
--------------------------------------------------------
----- */
/**

  @font-face importer mixin
-----------------------------------------------------------
  _base/_mixin-font-face-importer.scss
-----------------------------------------------------------
-- */
/**

  @gradual media queries mixin
--------------------------------------------------------
  base/_mixin-gradual-media-queries.scss
--------------------------------------------------------
------ */
/**

  @fonts
--------------------------------------------------------
  base/_fonts.scss
--------------------------------------------------------
-- */
/* @sans */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* @serif */
input::-webkit-input-placeholder, input:-moz-placeholder, textarea {
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", "Hiragino Mincho Pro", "HGS明朝B", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 300;
  font-style: normal;
}

.ff-serif {
  font-family: "Times New Roman", "游明朝体", "Yu Mincho", "Hiragino Mincho Pro", "HGS明朝B", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 700;
  font-style: normal;
}

/**

  @print
--------------------------------------------------------
  base/_print.scss
--------------------------------------------------------
----  */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: none;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
/***

  @elements
---------------------------------------------------------

  Global styling of elements.

---------------------------------------------------------  */
/**

  @body
--------------------------------------------------------
  elements/_body.scss
--------------------------------------------------------
---- */
body {
  line-height: 1.5;
  color: #111;
  background: #fff;
}

/**

  @buttons
--------------------------------------------------------
  elements/_buttons.scss
--------------------------------------------------------
---- */
button,
.btn {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: normal;
  display: inline-block;
  border: none;
  vertical-align: middle;
  border: 1px solid #6A3906;
  background: #6A3906;
  color: #fff;
  padding: 1em;
  font-size: .85rem;
  border-radius: .125rem;
  font-weight: normal;
  text-transform: none;
  -moz-transition: color 0.2s, background-color 0.2s;
  -o-transition: color 0.2s, background-color 0.2s;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
}

button:hover,
button:focus,
.btn:hover,
.btn:focus {
  color: #6A3906;
  background: #fff;
}

.btn--secondary {
  background: none;
  border: 1px solid #fff;
  color: #fff;
}

@media screen and (min-width: 34.375em) {
  .btn--large {
    font-size: 1.25em;
    padding: 1.25em 2.75em;
  }
}

.btn--inline {
  font-size: 1em;
}

.btn--block {
  display: block;
  width: 100%;
  text-align: center;
  padding-right: 0;
  padding-left: 0;
}

.btn--icon {
  -webkit-appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 1em;
}

.btn-row {
  margin: 0.75em auto 0;
}

.btn-row .btn {
  display: inline-block;
  margin: 0 0.5em 1em;
}

.btn-row--centered {
  text-align: center;
}

.icon {
  color: inherit;
  display: inline-block;
  font-style: normal;
  vertical-align: middle;
}

.icon--before {
  font-size: 1.25em;
  margin-right: 0.25em;
}

.icon--after {
  font-size: 1.25em;
  margin-left: 0.25em;
}

/**

  @code
--------------------------------------------------------
  elements/_code.scss
--------------------------------------------------------
---  */
code {
  background-color: #333;
  color: #eee;
}

pre {
  background-color: #333;
  color: #eee;
  font-family: Consolas, 'Courier New', monospace;
  font-size: 87.5%;
  line-height: 1.4;
  margin: 0 0 1.8em;
  max-width: 100%;
  padding: 1.6em;
  word-wrap: normal;
}

blockquote {
  color: #888;
  font-style: italic;
  margin: 0 0 2.4em;
  padding: 12px 0 0 44px;
  position: relative;
}

blockquote:before {
  color: #ddd;
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 84px;
  left: -5px;
  line-height: 1;
  position: absolute;
  top: -5px;
}

/**

  @forms
---------------------------------------------------------
  elements/_forms.scss
--------------------------------------------------------
---- */
/* @text inputs
--------------------------------------------------------
--- */
input {
  padding: .5em;
}
input:focus {
  outline: none;
}
input.input--s {
  font-size: .5rem;
}
input.input--l {
  font-size: 1.5rem;
}

input::-webkit-input-placeholder {
  color: #515554;
}
input:-moz-placeholder {
  color: #515554;
}
input::-moz-placeholder {
  color: #515554;
}
input:-ms-input-placeholder {
  color: #515554;
}

input:focus::-webkit-input-placeholder {
  opacity: .3;
}
input:focus:-moz-placeholder {
  opacity: .3;
}
input:focus::-moz-placeholder {
  opacity: .3;
}
input:focus:-ms-input-placeholder {
  opacity: .3;
}

/* @select inputs */
select {
  font-size: 1rem;
}
select.select--sm {
  font-size: .5rem;
}
select.select--lg {
  font-size: 1.5rem;
}

/* @textareas */
textarea {
  width: 100%;
  min-height: 6em;
  padding: 1em;
  border: solid 1px #515554;
}
textarea:focus {
  outline: none;
}
textarea.textarea--s {
  font-size: .5rem;
}
textarea.textarea--l {
  font-size: 1.5rem;
}

/* @radio inputs */
.label--radio {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 1em;
}
.label--radio input {
  position: absolute;
  top: .2em;
  left: 0;
}

/* @checkbox inputs */
.label--checkbox {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 1em;
}
.label--checkbox input {
  position: absolute;
  top: .7em;
  left: 0;
}

/* @textareas */
textarea {
  width: 100%;
}

/* @labels */
label {
  font-size: 1em;
}

/* @form */
.form {
  display: block;
  padding: 2em;
  border: 1px solid #888;
  background: #eee;
}

/* @form-header */
.form__header {
  padding-bottom: 1em;
  margin-bottom: 2em;
}

/* @fieldsets */
fieldset {
  border: none;
}

/* @fields */
.field {
  position: relative;
  margin-bottom: 2em;
}

.field__label {
  display: block;
}

.field__hint {
  color: #888;
  font-size: .75em;
  padding: .25em 0;
  font-style: italic;
}

.field__feedback {
  display: none;
  font-size: .75em;
  padding: .25em .75em;
  background: rgba(218, 35, 0, 0.3);
  color: white;
}

.field.is-error .field__feedback {
  display: block;
}
.field.is-error input {
  border: 1px solid rgba(218, 35, 0, 0.3);
}

/* @input group */
.field__input-group {
  display: block;
}
.field__input-group > * {
  display: inline-block;
  margin-right: .5em;
}
.field__input-group > *:last-child {
  margin-right: 0;
}

.field__input-group--list {
  display: block;
}
.field__input-group--list > * {
  display: block;
  margin: .5em 0;
}
.field__input-group--list > *:last-child {
  margin-bottom: 0;
}

/* @form action */
.form__actions {
  margin-left: auto;
  margin-right: auto;
  width: 200px;
  padding-top: 1em;
  margin-top: 2em;
}

/**

  @headings
--------------------------------------------------------
  elements/_headings.scss
--------------------------------------------------------
--- */
h1, h2, h3, h4, h5, h6 {
  clear: both;
  color: #111;
  font-weight: 700;
  line-height: 1.4;
}

h1, .h1 {
  margin-bottom: 1em;
}

h2, .h2 {
  margin-bottom: 1em;
}

h3, .h3 {
  margin-bottom: 1em;
}

h4, .h4 {
  margin-bottom: 1em;
}

h5, .h5 {
  margin-bottom: 0.5em;
}

/**

   @hr
--------------------------------------------------------
  elements/_hr.scss
--------------------------------------------------------
--- */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
  clear: both;
}

/**

   @html
--------------------------------------------------------
  elements/_html.scss
--------------------------------------------------------
--- */
html {
  font-size: 72%;
}
@media (min-width: 50em) {
  html {
    font-size: 90%;
  }
}
@media (min-width: 60em) {
  html {
    font-size: 93.33333%;
  }
}
@media (min-width: 70em) {
  html {
    font-size: 96.66667%;
  }
}
@media (min-width: 80em) {
  html {
    font-size: 100%;
  }
}

* {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**

  @images
---------------------------------------------------------
  elements/_images.scss
--------------------------------------------------------
---- */
/* @images */
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* @img--natural */
.img--natural {
  width: auto;
}

/* @img--title */
.img--title {
  height: 1em;
  width: auto;
  vertical-align: top;
}

/* @image placement */
.img--right {
  width: auto;
  float: right;
  margin-bottom: 1.125em;
  margin-left: 1.125em;
}

.img--left {
  width: auto;
  float: left;
  margin-right: 1.125em;
  margin-bottom: 1.125em;
}

.img--center {
  width: auto;
  display: block;
  margin-right: auto;
  margin-bottom: 1.125em;
  margin-left: auto;
}

.img--right img,
.img--left img,
.img--center img {
  width: auto;
}

/* @img--circle */
.img--circle {
  border-radius: 50%;
}

/* @img--rounded */
.img--rounded {
  border-radius: 8px;
}

/* @img--thumbnail (bootstrap) */
.img--thumbnail {
  display: inline-block;
  max-width: 100%;
  height: auto;
  padding: 4px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* @img--shadow (bootstrap) */
.img--shadow {
  background-color: #fff;
  box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid #dbdbdb;
}

/**

  @icons
---------------------------------------------------------
  elements/_icons.scss
--------------------------------------------------------
------ */
/* @icon
 */
.icon {
  color: inherit;
  display: inline-block;
  font-style: normal;
  vertical-align: middle;
  font-size: 1em;
}

/**

  @links
--------------------------------------------------------
  elements/_links.scss
--------------------------------------------------------
------ */
/* @anchors */
a {
  color: inherit;
  text-decoration: none;
}
a:hover, a:focus {
  opacity: .75;
}

/* @webkit-tap-highlight  */
body {
  -webkit-tap-highlight-color: rba(0, 0, 0, 0.35);
}

/**

  @lists
--------------------------------------------------------
  elements/_lists.scss
--------------------------------------------------------
----- */
ul,
ol {
  padding-left: 0;
  margin-left: 1.125em;
  margin-bottom: 1.125em;
}
ul li,
ol li {
  line-height: 2;
}

/* Inline */
.list-inline {
  padding-left: 0;
  margin-left: -5px;
  list-style: none;
}

.list-inline > li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px;
}

dl {
  margin: 0;
}

dt {
  font-weight: 600;
  margin-bottom: 0.4em;
}

dd {
  margin: 0 0 1.5em 1.5em;
}

/**

  @tables
---------------------------------------------------------
  elements/_tables.scss
--------------------------------------------------------
  Base styling for tables
----- */
/* @table */
table {
  border-top: solid 1px #e6e6e6;
  font-size: 93.8%;
  margin: 0 0 1.6em;
  width: 100%;
}

caption {
  margin-bottom: 0.6em;
}

table th,
table td {
  border-bottom: solid 1px #e6e6e6;
  padding: 0.8em;
}

th {
  font-weight: 600;
  text-align: left;
}

.table--bordered td,
.table--bordered th {
  border: 1px solid #eee;
}

.table--simple td,
.table--simple th,
.table--simple caption {
  border: none;
  padding-left: 0;
  border-top: none !important;
}

.table--simple {
  border-top: none;
}

/* @table--striped */
.table--striped tbody tr:nth-of-type(odd) {
  background-color: #eee;
}

/**

  @quotes
--------------------------------------------------------
  elements/_quotes.scss
--------------------------------------------------------
------  */
/* @blockquote */
/* @pull-quote */
/**

  @text
--------------------------------------------------------
  elements/_text.scss
--------------------------------------------------------
-  */
/* @paragraphs  */
p {
  margin-bottom: 1em;
}

/* @inline */
b,
strong {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

/**

  @text
--------------------------------------------------------
  elements/_labels.scss
--------------------------------------------------------
-  */
/* @labels&Badges  */
.label, .badge {
  background: #e0e3e5;
  font-size: 12.75px;
  display: inline-block;
  line-height: 1;
  padding: 4px 7px 3px 7px;
  color: #0f0f0f;
  text-align: center;
  font-weight: normal;
  text-transform: uppercase;
}

.label-outline {
  background: none;
  border: 1px solid #0f0f0f;
  padding: 3px 6px 2px 6px;
}

.badge {
  border-radius: 15px;
}

.badge-small {
  font-size: 11.25px;
  padding: 3px 5px;
}

.label--alert {
  background-color: #c60f13;
  color: #fff;
}

/***

  @layout

---------------------------------------------------------  */
/**

  @container
--------------------------------------------------------
  layout/_container.scss
--------------------------------------------------------
----- */
.container {
  zoom: 1;
  margin-left: auto;
  margin-right: auto;
  max-width: 70em;
  padding: 0 1.6875em;
}
.container:before, .container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
@media screen and (min-width: 34.375em) {
  .container {
    padding: 1em 3.375em;
  }
}

/***

  @modules

---------------------------------------------------------  */
/**

   @site
--------------------------------------------------------
  modules/_site.scss
--------------------------------------------------------
------ */
/**

  @site-header
--------------------------------------------------------
  modules/_site-header.scss
--------------------------------------------------------
  Site-wide header
------- */
.site-header {
  zoom: 1;
}
.site-header:before, .site-header:after {
  content: " ";
  display: table;
}
.site-header:after {
  clear: both;
}

/* @branding */
.branding {
  margin: 0 auto 1.125em;
  text-decoration: none;
  display: block;
  text-align: center;
}
@media screen and (min-width: 48em) {
  .branding {
    margin: 0;
    float: left;
    text-align: left;
  }
}

.branding__logo {
  height: 5em;
  width: 15.625em;
}
@media screen and (min-width: 48em) {
  .branding__logo {
    float: left;
    margin-right: 1.125em;
  }
}

.branding__wordmark {
  font-size: 1.6875em;
  white-space: nowrap;
  margin: 0;
}

/*

  @site-nav  */
.site-nav {
  text-align: center;
  font-size: 0.86em;
}
@media screen and (min-width: 48em) {
  .site-nav {
    float: right;
  }
}
.site-nav a {
  display: inline-block;
  height: 3.375em;
  line-height: 3.375em;
  padding: 0 .5em;
  margin-left: 0.5625em;
}
.site-nav a:first-child {
  margin-left: 0;
}

.site-bar {
  margin-bottom: 1.125em;
  clear: both;
}

.site-bar,
.main-navigation ul ul {
  background-color: #6A3906;
}

.site-bar,
.menu-toggle,
.main-navigation a {
  line-height: 60px;
}

.main-navigation {
  position: relative;
}

.menu-toggle {
  cursor: pointer;
  /* text-transform: uppercase; */
}

.menu-toggle:before {
  content: '\f419';
  display: inline-block;
  font: normal 14px/1 Genericons;
  -webkit-font-smoothing: antialiased;
  margin-right: 10px;
  position: relative;
  top: -1px;
  vertical-align: middle;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
}

.main-navigation.toggled ul {
  display: block;
}

.menu-toggle,
.main-navigation a {
  color: #fff;
  padding: 0 20px;
}

.menu-toggle:hover,
.main-navigation a:hover {
  background-color: #444;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.main-navigation a {
  border-top: solid 1px #555;
  border-color: rgba(255, 255, 255, 0.2);
  display: block;
}

.main-navigation .current > a {
  color: #fff;
}

.main-navigation ul ul a {
  padding-left: 30px;
}

.main-navigation ul ul ul a {
  padding-left: 45px;
}

.main-navigation ul ul ul ul a {
  padding-left: 60px;
}

@media screen and (min-width: 48em) {
  .menu-gloval-nav {
    zoom: 1;
    margin-left: auto;
    margin-right: auto;
    max-width: 1024px;
    padding: 0;
  }

  .menu-toggle {
    display: none;
  }

  .main-navigation ul {
    display: block;
  }

  .main-navigation a {
    border-top: none;
    padding: 0 22px;
    font-weight: bold;
  }

  .main-navigation a:hover {
    background-color: #935B20;
    color: #fff;
    opacity: 1;
  }

  .main-navigation ul ul a,
  .main-navigation ul ul ul a,
  .main-navigation ul ul ul ul a {
    padding-left: 18px;
  }

  .main-navigation li {
    position: relative;
  }

  .main-navigation div.menu > ul,
  .main-navigation ul.menu {
    text-align: center;
    /* text-transform: uppercase; */
  }

  .header-side .main-navigation div.menu > ul,
  .header-side .main-navigation ul.menu {
    text-align: left;
  }

  .main-navigation div.menu > ul > li,
  .main-navigation ul.menu > li {
    display: inline-block;
    letter-spacing: normal;
    white-space: nowrap;
    text-align: left;
  }

  .main-navigation ul ul {
    left: -9999px;
    opacity: 0;
    position: absolute;
    text-transform: none;
    top: 100%;
    transition: opacity .2s ease-in-out;
    white-space: normal;
    width: 180px;
    z-index: 99999;
  }

  .main-navigation ul ul ul {
    top: 0;
  }

  .main-navigation ul li:hover > ul {
    left: 0;
    opacity: 1;
  }

  .main-navigation div.menu > ul > li:first-child:hover > ul,
  .main-navigation ul.menu > li:first-child:hover > ul {
    left: -18px;
  }

  .main-navigation ul ul li:hover > ul {
    left: 100%;
    opacity: 1;
  }

  .main-navigation ul ul li a {
    border-top: 1px solid #555;
    border-color: rgba(255, 255, 255, 0.2);
    line-height: 1.5;
    padding-bottom: 14px;
    padding-top: 14px;
  }
}
/* main-navigation--equalize
.main-navigation add class
*/
@media screen and (min-width: 48em) {
  .main-navigation--equalize a {
    border-left: solid 1px #ccc;
  }

  .main-navigation--equalize div.menu > ul > li,
  .main-navigation--equalize ul.menu > li {
    text-align: center;
    width: 16.66%;
  }

  .main-navigation--equalize ul.menu > li:last-child a {
    border-right: solid 1px #ccc;
  }
}
/**

  @site-main
--------------------------------------------------------
  modules/_site-main.scss
--------------------------------------------------------
  The site's main content
------- */
.site-main {
  display: block;
}

/**

  @site-footer
--------------------------------------------------------
  modules/_site-footer.scss
--------------------------------------------------------
--- */
.site-footer {
  padding: 1.125em 0;
  border-top: 1px solid #cfd2d2;
}

.site-credits {
  display: block;
  clear: both;
  text-align: center;
  padding-top: 1.125em;
  color: #999;
}

/**

  @pages
--------------------------------------------------------
  modules/_pages.scss
--------------------------------------------------------
-------  */
.page__title {
  text-align: center;
  color: white;
}

.page__section {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
  border-bottom: 1px solid rgba(39, 39, 39, 0.3);
}

.page__sub-section {
  zoom: 1;
  margin-top: 1.125em;
  margin-bottom: 1.125em;
  padding-bottom: 2em;
}

.page__sub-section:before,
.page__sub-section:after {
  content: " ";
  display: table;
}

.page__sub-section:after {
  clear: both;
}

/**

   @site
--------------------------------------------------------
  modules/_sidebar.scss
--------------------------------------------------------
------ */
.sidebar-area {
  line-height: 1.6;
  color: #555;
  font-size: 93.8%;
  margin-bottom: 48px;
}
.sidebar-area ul {
  list-style: none;
  margin-bottom: 0;
  margin-left: 0;
}
.sidebar-area ul li {
  border-bottom: solid 1px #eee;
  line-height: 1.4;
  padding-bottom: 12px;
  padding-top: 12px;
}
.sidebar-area > ul > li:first-child {
  border-top: none;
  padding-top: 8px;
}

@media screen and (min-width: 48em) {
  .main-area {
    float: left;
    width: 68%;
  }

  .sidebar-area {
    float: right;
    width: 30%;
  }
}
/**

  @alerts
---------------------------------------------------------
  modules/_alerts.scss
--------------------------------------------------------
-------- */
.alert {
  position: relative;
  border-width: 1px;
  border-style: solid;
  margin-bottom: 2.25em;
  padding: .5rem 4rem .5rem .5rem;
  line-height: 1.25;
}
.alert p {
  margin: 0;
}
.alert .btn__close {
  position: absolute;
  top: 50%;
  margin-top: -.75em;
  right: 1em;
  opacity: .5;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
}
.alert .btn__close:hover {
  opacity: 1;
}

.alert--error {
  color: #e04646;
  border-color: #e04646;
  background: #ffe6e6;
}
.alert--error .btn__close {
  color: #e04646;
}
.alert--error:after {
  border-color: #e04646;
}

.alert--warning {
  color: #b29804;
  border-color: #b29804;
  background: #fcf7d8;
}
.alert--warning .btn__close {
  color: #b29804;
}
.alert--warning:after {
  border-color: #b29804;
}

.alert--info {
  color: #537df6;
  border-color: #537df6;
  background: #e8f3ff;
}
.alert--info .btn__close {
  color: #537df6;
}
.alert--info:after {
  border-color: #537df6;
}

.alert--success {
  color: #0ca129;
  border-color: #0ca129;
  background: #dafce1;
}
.alert--success .btn__close {
  color: #0ca129;
}
.alert--success:after {
  border-color: #0ca129;
}

/**

  @blocks
--------------------------------------------------------
  modules/_blocks.scss
--------------------------------------------------------
-----  */
.block {
  margin-bottom: 2.25em;
}

.block--ends {
  margin-top: 2.25em;
  margin-bottom: 2.25em;
}

/**

  @callouts
--------------------------------------------------------
  modules/_callouts.scss
--------------------------------------------------------
-------  */
.callout__media {
  display: block;
  margin: 0 auto 1.125em;
  max-height: 14em;
  width: auto;
}

.callout__title {
  font-size: 1.1em;
  text-align: center;
  color: #6A3906;
}

/**

  @heroes
--------------------------------------------------------
  modules/_heroes.scss
--------------------------------------------------------
------- */
.hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 2.25em;
}

.hero__media {
  position: relative;
  z-index: 200;
}

.hero__main {
  position: absolute;
  z-index: 210;
  width: 100%;
  top: 50%;
  text-align: center;
  color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: .75em;
}
@media screen and (min-width: 34.375em) {
  .hero__main {
    font-size: 1em;
  }
}
@media screen and (min-width: 64em) {
  .hero__main {
    font-size: 1.25em;
  }
}

/* =Accordion
-----------------------------------------------------------------------------*/
.accordion-title {
  position: relative;
  display: block;
  margin: 0;
  margin-bottom: 2px;
  padding: 12px 50px 12px 18px;
  color: #000;
  text-decoration: none;
  font-weight: normal;
  font-size: 0.9375em;
  line-height: 1,4em;
  background: #f7f8f8;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.accordion-title.accordion-title-opened {
  margin-bottom: 0;
  font-weight: bold;
  background: #f0f1f2;
}
.accordion-title a, .accordion-title:hover {
  color: #000;
  text-decoration: none;
}

.accordion-panel {
  padding: 1.65em;
  margin-bottom: 10px;
}

.accordion-toggle {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 20px;
  padding: 0;
  font-size: 0;
  line-height: 1;
}

.accordion-toggle-closed {
  background: #000;
  width: 1px;
  height: 15px;
  margin-left: 1px;
}
.accordion-toggle-closed:before {
  position: absolute;
  top: 7px;
  left: -7px;
  content: "";
  width: 15px;
  height: 1px;
  background: #000;
}

.accordion-toggle-opened:before {
  position: absolute;
  top: 7px;
  left: -8px;
  content: "";
  width: 15px;
  height: 1px;
  background: #000;
}

/**

  @modals
---------------------------------------------------------
  modules/_tabs.scss
--------------------------------------------------------
------ */
.nav-tabs {
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 1.65em;
}
.nav-tabs:after {
  content: "";
  display: table;
  clear: both;
}
.nav-tabs ul {
  list-style: none;
  margin: 0;
}
.nav-tabs li {
  float: left;
  margin-right: 2px;
}
.nav-tabs a, .nav-tabs span {
  display: block;
  line-height: 1;
  padding: 0.825em 1.65em;
  border: 1px solid transparent;
}
.nav-tabs a {
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}
.nav-tabs a:focus, .nav-tabs a:hover {
  color: #0f0f0f;
  text-decoration: underline;
  background-color: #eee;
}
.nav-tabs li.active a, .nav-tabs span {
  color: #0f0f0f;
  background: #fff;
  position: relative;
  border: 1px solid #ddd;
  border-bottom: 1px solid #fff;
  bottom: -1px;
  cursor: default;
  text-decoration: none;
}

/**

  @thumbnails
--------------------------------------------------------
  modules/_thumbnails.scss
--------------------------------------------------------
------  */
.thumbnail {
  display: block;
  padding: 0.5625em;
  border: 1px solid rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.thumbnail__media {
  margin-bottom: 0.5625em;
}

.thumbnail__caption {
  font-size: 85%;
}
.thumbnail__caption h1, .thumbnail__caption h2, .thumbnail__caption h3, .thumbnail__caption h4, .thumbnail__caption h5, .thumbnail__caption h5 {
  margin-bottom: 0.28125em;
}

/**

  @table forms
--------------------------------------------------------
  modules/_table-forms.scss
--------------------------------------------------------
------- */
.table-form th {
  width: 30%;
  text-align: left;
  background: #f4f4f4;
  font-weight: normal;
}
.table-form input[type="text"] {
  font-weight: normal;
  padding-right: 5px;
  width: auto;
}

@media only screen and (max-width: 480px) {
  .table-form th, .table-form td {
    width: 100%;
    display: block;
    border-top: none;
  }
  .table-form tr:first-child th {
    border-top: 1px solid #ddd;
  }
}
/**

  @video
--------------------------------------------------------
  modules/_video-embeds.scss
--------------------------------------------------------
 -----  */
.video-embed {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 66.666%;
}
.video-embed iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100% !important;
  width: 100% !important;
}

/**

   @site
--------------------------------------------------------
  modules/_bxslider.scss
--------------------------------------------------------
 3.BxSlider
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
-------------------------------------------*/
/** RESET AND LAYOUT  */
.bx-wrapper {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
  *zoom: 1;
}

.bx-wrapper img {
  max-width: 100%;
  display: block;
}

/** THEME
===================================*/
.bx-wrapper .bx-viewport {
  -moz-box-shadow: 0 0 5px #ccc;
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
  border: 5px solid #fff;
  left: -5px;
  background: #fff;
  /*fix other elements on the page moving (on Chrome)*/
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0);
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%;
}

/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url(../images/bx_loader.gif) center center no-repeat #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}

/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: 10px;
  background: url(../images/controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
  right: 10px;
  background: url(../images/controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
  background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
  background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url(../images/controls.png) -86px -11px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
  background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url(../images/controls.png) -86px -44px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
  background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}

/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666 \9;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}

.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}

/**

   @site
--------------------------------------------------------
  modules/_lity.scss
--------------------------------------------------------
------ */
/*! Lity - v1.3.0 - 2015-07-01
* http://sorgalla.com/lity/
* Copyright (c) 2015 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity .2s ease;
  -o-transition: opacity .2s ease;
  transition: opacity .2s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial,Helvetica,sans-serif;
  opacity: 0;
  -webkit-transition: opacity .2s ease;
  -o-transition: opacity .2s ease;
  transition: opacity .2s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
  opacity: 1;
  -webkit-transition: opacity .2s ease;
  -o-transition: opacity .2s ease;
  transition: opacity .2s ease;
}

.lity-loading .lity-container {
  opacity: 0;
}

.lity-container:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-content {
  z-index: 9993;
  width: 100%;
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial,Baskerville,monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover, .lity-close:focus, .lity-close:active, .lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial,Baskerville,monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

.lity-iframe .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/**

   @site
--------------------------------------------------------
  modules/_project.scss
--------------------------------------------------------
------ */
pre {
  max-height: 25em;
}

/**

   @site
--------------------------------------------------------
  modules/_utility.scss
--------------------------------------------------------
------ */
/* Title elements */
.ff-serif {
  color: #6A3906;
}

.title--centered {
  text-align: center;
  margin-bottom: 0.75em;
}

.title--block-bottom {
  margin-bottom: 0.75em;
}

/* foundation panel */
.panel {
  border-style: solid;
  border-width: 1px;
  border-color: #d8d8d8;
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  background: #f2f2f2;
}

.panel.radius {
  border-radius: 3px;
}

.panel.bgNone {
  background: #fff !important;
}

/* center block */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.center-block--w30 {
  max-width: 30em;
}

.center-block--w40 {
  max-width: 40em;
}

.center-block--w45 {
  max-width: 45em;
}

/*  #Spacing */
.u-ma {
  margin: auto;
}

.u-mtn {
  margin-top: 0;
}

.u-mts {
  margin-top: .4rem;
}

.u-mtm {
  margin-top: 1.6rem;
}

.u-mtl {
  margin-top: 3.2rem;
}

.u-mtx {
  margin-top: 4.8rem;
}

.u-mbn {
  margin-bottom: 0;
}

.u-mbs {
  margin-bottom: .4rem;
}

.u-mbm {
  margin-bottom: 1.6rem;
}

.u-mbl {
  margin-bottom: 3.2rem;
}

.u-mbx {
  margin-bottom: 4.8rem;
}

.u-mn {
  margin: 0;
}

.u-ptn {
  padding-top: 0;
}

.u-pts {
  padding-top: .4rem;
}

.u-ptm {
  padding-top: 1.6rem;
}

.u-ptl {
  padding-top: 3.2rem;
}

.u-ptx {
  padding-top: 4.8rem;
}

.u-pbn {
  padding-bottom: 0;
}

.u-pbs {
  padding-bottom: .4rem;
}

.u-pbm {
  padding-bottom: 1.6rem;
}

.u-pbl {
  padding-bottom: 3.2rem;
}

.u-pbx {
  padding-bottom: 4.8rem;
}

.u-pn {
  padding: 0;
}

/*  #Utilities */
.u-cf {
  display: table;
  clear: both;
  content: "";
}

.u-tov {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.u-dn {
  display: none;
}

.u-di {
  display: inline;
}

.u-db {
  display: block;
}

.u-vh {
  visibility: hidden;
}

.u-fln {
  float: none;
}

.u-fll {
  float: left;
}

.u-flr {
  float: right;
}

.u-posr {
  position: relative;
}

.u-posa {
  position: absolute;
}

.u-tac {
  text-align: center;
}

.u-tal {
  text-align: left;
}

.u-tar {
  text-align: right;
}

.u-ttc {
  text-transform: capitalize;
}

.u-ttu {
  text-transform: uppercase;
}

.u-ttl {
  text-transform: lowercase;
}

.u-w10 {
  width: 10%;
}

.u-w20 {
  width: 20%;
}

.u-w25 {
  width: 25%;
}

.u-w30 {
  width: 30%;
}

.u-w33 {
  width: 33%;
}

.u-w35 {
  width: 35%;
}

.u-w40 {
  width: 40%;
}

.u-w50 {
  width: 50%;
}

.u-w60 {
  width: 60%;
}

.u-w65 {
  width: 65%;
}

.u-w66 {
  width: 66%;
}

.u-w70 {
  width: 70%;
}

.u-w75 {
  width: 75%;
}

.u-w80 {
  width: 80%;
}

.u-w90 {
  width: 90%;
}

.u-w100 {
  width: 100%;
}

/* @text-color */
.text-muted {
  color: #777;
}

.text-primary {
  color: #337ab7;
}

.text-success {
  color: #3c763d;
}

.text-info {
  color: #31708f;
}

.text-warning {
  color: #8a6d3b;
}

.text-error {
  color: #a94442;
}

/**

   @site
--------------------------------------------------------
  modules/_prototype.scss
--------------------------------------------------------
------ */
