/*
 * Convert font-size from px to rem with px fallback
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {@include fontSize(12px);}
 * 
 */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  background: transparent url('../img/bg-pattern.png') repeat;
}
body {
  min-height: 100%;
  background: transparent url('../img/bg.png') repeat-x;
}
body:before {
  display: none;
  content: "xs";
}
@media (min-width: 768px) {
  body:before {
    content: "sm";
  }
}
@media (min-width: 992px) {
  body:before {
    content: "md";
  }
}
@media (min-width: 1200px) {
  body:before {
    content: "lg";
  }
}
body:after {
  display: none;
  content: "max";
}
@media (min-width: 768px) {
  body:after {
    content: "min";
  }
}
.global-header {
  position: relative;
  z-index: 1000;
  min-height: 60px;
  /* Force Hardware Acceleration */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  transition: transform 0.3s;
}
@media (min-width: 768px) {
  .global-header {
    min-height: 100px;
  }
}
.global-header.nav-is-visible {
  -webkit-transform: translate(-260px, 0);
  -ms-transform: translate(-260px, 0);
  -o-transform: translate(-260px, 0);
  transform: translate(-260px, 0);
}
@media (min-width: 992px) {
  .global-header.nav-is-visible {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.footer-wrapper {
  padding: 10px 30px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background-image: -webkit-linear-gradient(top, #e7ca84 0%, #c8a861 100%);
  background-image: -o-linear-gradient(top, #e7ca84 0%, #c8a861 100%);
  background-image: linear-gradient(to bottom, #e7ca84 0%, #c8a861 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFE7CA84', endColorstr='#FFC8A861', GradientType=0);
  -webkit-background-clip: padding-box;
  -mox-background-clip: padding-box;
  -o-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  font-size: 13px;
}
.footer-wrapper:before, .footer-wrapper:after {
  content: " ";
  display: table;
}
.footer-wrapper:after {
  clear: both;
}
@media (min-width: 768px) {
  .footer-wrapper .copyright {
    float: left;
    margin-bottom: 0;
  }
}
.logo {
  position: absolute;
  left: 2px;
  top: 0;
  margin: 0;
}
.logo a {
  display: block;
  width: 129px;
  height: 77px;
  background: url('../img/logo.png');
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -1000em;
}
@media (min-width: 768px) {
  .logo a {
    width: 258px;
    height: 153px;
  }
}
.search {
  display: none;
  position: absolute;
  right: 25px;
  top: 72px;
  max-width: 150px;
}
@media (min-width: 768px) {
  .search {
    display: block;
    right: 100px;
    top: 32px;
    max-width: 200px;
  }
}
@media (min-width: 992px) {
  .search {
    top: 22px;
    right: 18px;
    max-width: 254px;
  }
}
.stage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 222px;
  margin-bottom: -50px;
  /* Force Hardware Acceleration */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  transition: transform 0.3s;
}
@media (min-width: 768px) {
  .stage {
    height: 442px;
    margin-bottom: -100px;
  }
}
@media (min-width: 992px) {
  .stage {
    margin-bottom: -150px;
  }
}
.stage.nav-is-visible {
  -webkit-transform: translate(-260px, 0);
  -ms-transform: translate(-260px, 0);
  -o-transform: translate(-260px, 0);
  transform: translate(-260px, 0);
}
@media (min-width: 992px) {
  .stage.nav-is-visible {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.stage #sbi {
  position: relative;
  width: 100%;
  height: 100%;
}
.main {
  position: relative;
  z-index: 2;
  /* Force Hardware Acceleration */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  transition: transform 0.3s;
}
.main.nav-is-visible {
  -webkit-transform: translate(-260px, 0);
  -ms-transform: translate(-260px, 0);
  -o-transform: translate(-260px, 0);
  transform: translate(-260px, 0);
}
@media (min-width: 992px) {
  .main.nav-is-visible {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@media (max-width: 991px) {
  .main .main-content > h1:first-child {
    margin-left: -10px;
    margin-right: -10px;
    padding: 15px 10px;
    background-image: -webkit-linear-gradient(top, #6d1616 0%, #560505 100%);
    background-image: -o-linear-gradient(top, #6d1616 0%, #560505 100%);
    background-image: linear-gradient(to bottom, #6d1616 0%, #560505 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF6D1616', endColorstr='#FF560505', GradientType=0);
    -webkit-background-clip: padding-box;
    -mox-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  }
}
@media (min-width: 992px) {
  .main:before {
    content: '';
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background-image: -webkit-linear-gradient(top, #6d1616 0%, #560505 100%);
    background-image: -o-linear-gradient(top, #6d1616 0%, #560505 100%);
    background-image: linear-gradient(to bottom, #6d1616 0%, #560505 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF6D1616', endColorstr='#FF560505', GradientType=0);
    -webkit-background-clip: padding-box;
    -mox-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  }
}
.main-wrapper {
  position: relative;
  background-color: #efe8d2;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}
@media (min-width: 992px) {
  .main-wrapper {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  .main-wrapper .main-content, .main-wrapper .sidebar {
    display: table-cell;
    vertical-align: top;
  }
  .main-wrapper .main-content {
    width: 66.6666666667%;
  }
  .main-wrapper .sidebar {
    width: 33.3333333333%;
    border-left: 1px solid #e3dccd;
  }
}
.main-wrapper .main-content, .main-wrapper .sidebar {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 992px) {
  .main-wrapper .main-content, .main-wrapper .sidebar {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.main-wrapper .main-content {
  position: relative;
  top: -60px;
}
.main-wrapper .sidebar {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #f6f2e6;
}
@media (max-width: 1199px) {
  .main-wrapper .main-content, .main-wrapper .sidebar {
    overflow: hidden;
  }
}
#gallery {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
#gallery > li {
  display: none;
}
#sbi-nav {
  position: absolute;
  top: 125px;
  left: 50%;
  height: 133px;
  margin: 0;
  z-index: 0;
  visibility: hidden;
}
@media (min-width: 768px) {
  #sbi-nav {
    width: 750px;
    margin-left: -375px;
  }
}
@media (min-width: 992px) {
  #sbi-nav {
    width: 970px;
    margin-left: -485px;
  }
}
@media (min-width: 1200px) {
  #sbi-nav {
    width: 1170px;
    margin-left: -585px;
  }
}
#sbi-nav #sbi-next a, #sbi-nav #sbi-prev a {
  display: block;
  background-color: transparent;
  border: 0;
  color: transparent;
  font: 0/0 a;
  text-shadow: none;
  width: 70px;
  height: 70px;
}
#sbi-nav #sbi-next a:before, #sbi-nav #sbi-prev a:before {
  display: block;
  content: '\edb9';
  background: #a48633;
  background: rgba(164, 134, 51, .8);
  border-radius: 50%;
  color: #004417;
  font-family: 'Icomoon-Ultimate';
  font-size: 30px;
  line-height: 70px;
  text-align: center;
}
#sbi-nav #sbi-next a:hover:before, #sbi-nav #sbi-prev a:hover:before {
  background: #004417;
  background: rgba(0, 68, 23, .8);
  color: #d0b167;
}
#sbi-nav #sbi-prev a {
  float: left;
  margin-left: 20px;
}
#sbi-nav #sbi-prev a:before {
  content: '\edc1';
}
#sbi-nav #sbi-next a {
  float: right;
  margin-right: 20px;
}
#fast-nav {
  position: fixed;
  top: 650px;
  left: 0;
  width: 100px;
  z-index: 10000;
  display: none;
  text-transform: uppercase;
}
#fast-nav a {
  display: block;
  height: 60px;
  width: 45px;
  background: transparent url('../img/fast-nav.png') no-repeat 0 0;
  text-indent: -5000px;
  overflow: hidden;
}
#fast-nav a:hover {
  background-position: -67px 0;
}
.btn-default {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 2px;
  padding-bottom: 2px;
  background-image: -webkit-linear-gradient(top, #e6c882 0%, #d0b167 100%);
  background-image: -o-linear-gradient(top, #e6c882 0%, #d0b167 100%);
  background-image: linear-gradient(to bottom, #e6c882 0%, #d0b167 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFE6C882', endColorstr='#FFD0B167', GradientType=0);
  border-width: 3px;
}
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default:active:hover, a:hover .btn-default, a:focus .btn-default, a:active .btn-default {
  background-image: -webkit-linear-gradient(top, #084c1d 0%, #004417 100%);
  background-image: -o-linear-gradient(top, #084c1d 0%, #004417 100%);
  background-image: linear-gradient(to bottom, #084c1d 0%, #004417 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF084C1D', endColorstr='#FF004417', GradientType=0);
  border-color: #a48633;
  color: #e6c882;
}
.input-group-btn .btn-default {
  padding: 4px 12px;
}
.btn-primary {
  background-image: -webkit-linear-gradient(top, #084c1d 0%, #004417 100%);
  background-image: -o-linear-gradient(top, #084c1d 0%, #004417 100%);
  background-image: linear-gradient(to bottom, #084c1d 0%, #004417 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF084C1D', endColorstr='#FF004417', GradientType=0);
  border-width: 3px;
  border-color: #a48633;
  color: #e6c882;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:hover, a:hover .btn-primary, a:focus .btn-primary, a:active .btn-primary {
  background-image: -webkit-linear-gradient(top, #e6c882 0%, #d0b167 100%);
  background-image: -o-linear-gradient(top, #e6c882 0%, #d0b167 100%);
  background-image: linear-gradient(to bottom, #e6c882 0%, #d0b167 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFE6C882', endColorstr='#FFD0B167', GradientType=0);
  border-color: #fff;
  color: #004417;
}
.btn-link:hover, .btn-link:focus, a:hover .btn-link, a:focus .btn-link {
  color: #004417;
  text-decoration: none;
}
.btn-block {
  margin-top: 10px;
  margin-bottom: 10px;
}
select[size="1"] {
  height: 35px;
}
.form-horizontal {
  padding: 15px;
  background-color: #e6c882;
  border: 3px solid #d0b167;
  color: #084c1d;
}
@media (min-width: 768px) {
  .form-horizontal {
    padding: 30px;
  }
}
.form-horizontal .control-label {
  text-align: left;
}
.form-horizontal fieldset {
  margin-bottom: 30px;
}
.form-horizontal hr {
  height: 1px;
  background: none;
  background-color: #084c1d;
}
.form-horizontal a:not[class*="btn"] {
  color: #360f0f;
  text-decoration: underline;
}
.form-horizontal a:not[class*="btn"]:hover {
  color: #084c1d;
}
legend {
  border-color: #084c1d;
  color: #084c1d;
  font-family: "Merriweather", Georgia, "Times New Roman", Times, serif;
  font-size: 22px;
}
.input-group-addon, .input-group > .form-control {
  border-color: #fff;
}
.form-captcha .input-group-addon {
  padding: 0;
}
.form-captcha .input-group-addon img {
  height: 100%;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.alert-danger {
  margin: 60px 0;
  color: #f6f2e6;
}
.alert-danger h3 {
  margin-top: 0;
  color: #f6f2e6;
}
.search .form-control {
  box-shadow: none;
}
.nav-trigger {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1000;
  height: 100%;
  width: 50px;
  /* hide text */
  overflow: hidden;
  white-space: nowrap;
  color: transparent;
  cursor: pointer;
}
@media (min-width: 992px) {
  .nav-trigger {
    display: none;
  }
}
.nav-trigger span {
  /* hamburger icon created in CSS */
  position: absolute;
  top: 50%;
  left: 50%;
  height: 4px;
  width: 30px;
  margin-top: -2px;
  margin-left: -15px;
  background-color: #f6f2e6;
  -webkit-transition: background-color 0.3s 0.3s;
  -o-transition: background-color 0.3s 0.3s;
  transition: background-color 0.3s 0.3s;
}
.nav-trigger span:before, .nav-trigger span:after {
  /* upper and lower lines of the menu icon */
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f6f2e6;
  /* Force Hardware Acceleration */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s 0.3s;
  -moz-transition: -moz-transform 0.3s 0.3s;
  -o-transition: -o-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
}
.nav-trigger span:before {
  -webkit-transform: translate(0, -8px);
  -ms-transform: translate(0, -8px);
  -o-transform: translate(0, -8px);
  transform: translate(0, -8px);
}
.nav-trigger span:after {
  -webkit-transform: translate(0, 8px);
  -ms-transform: translate(0, 8px);
  -o-transform: translate(0, 8px);
  transform: translate(0, 8px);
}
.nav-is-visible .nav-trigger span {
  background-color: rgba(255, 255, 255, 0);
}
.nav-is-visible .nav-trigger span:before {
  -webkit-transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}
.nav-is-visible .nav-trigger span:after {
  -webkit-transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
@media (min-width: 768px) {
  .nav-main-wrapper {
    margin-top: 82px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 3px solid rgba(83, 15, 0, .5);
    border-bottom: 0;
    font-family: "Merriweather", Georgia, "Times New Roman", Times, serif;
  }
}
@media (min-width: 992px) {
  .nav-main-wrapper {
    float: right;
  }
}
.nav-main {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.nav-main ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
@media (max-width: 991px) {
  .nav-main {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    overflow-x: hidden;
    width: 260px;
    margin-bottom: 0;
    padding-top: 14px;
    background-image: -webkit-linear-gradient(top, #e7ca84 0%, #c8a861 100%);
    background-image: -o-linear-gradient(top, #e7ca84 0%, #c8a861 100%);
    background-image: linear-gradient(to bottom, #e7ca84 0%, #c8a861 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFE7CA84', endColorstr='#FFC8A861', GradientType=0);
    -webkit-background-clip: padding-box;
    -mox-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    -o-transition: -o-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform: translate(260px, 0);
    -ms-transform: translate(260px, 0);
    -o-transform: translate(260px, 0);
    transform: translate(260px, 0);
  }
  .nav-main a {
    display: block;
    padding: 5px 10px 5px 20px;
    color: #004417;
    font-weight: 700;
    text-decoration: none;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    -moz-transition: -moz-transform 0.3s, opacity 0.3s;
    -o-transition: -o-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-main > li > a > .icon {
    float: right;
  }
  .nav-main > li > ul {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    padding-top: 14px;
    background-image: -webkit-linear-gradient(top, #e7ca84 0%, #c8a861 100%);
    background-image: -o-linear-gradient(top, #e7ca84 0%, #c8a861 100%);
    background-image: linear-gradient(to bottom, #e7ca84 0%, #c8a861 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFE7CA84', endColorstr='#FFC8A861', GradientType=0);
    -webkit-background-clip: padding-box;
    -mox-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-transition: -webkit-transform transform 0.3s;
    -moz-transition: -moz-transform transform 0.3s;
    -o-transition: -o-transform transform 0.3s;
    transition: transform transform 0.3s;
    -webkit-transform: translate(260px, 0);
    -ms-transform: translate(260px, 0);
    -o-transform: translate(260px, 0);
    transform: translate(260px, 0);
  }
  .nav-main > li > ul img {
    display: none;
  }
  .nav-main > li > a.subnav-active + ul {
    display: block;
  }
  .nav-main.nav-is-visible {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  .nav-main.moves-out > li > a {
    -webkit-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    -o-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    opacity: 0;
  }
  .nav-main.moves-out > li > ul {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@media (min-width: 992px) {
  .nav-main {
    position: relative;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    background-image: -webkit-linear-gradient(top, #e7ca84 0%, #c8a861 100%);
    background-image: -o-linear-gradient(top, #e7ca84 0%, #c8a861 100%);
    background-image: linear-gradient(to bottom, #e7ca84 0%, #c8a861 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFE7CA84', endColorstr='#FFC8A861', GradientType=0);
    -webkit-background-clip: padding-box;
    -mox-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    text-align: left;
  }
  .nav-main li {
    display: inline-block;
    height: 100%;
  }
  .nav-main > li > a {
    display: block;
    padding: 14px 14px 12px 14px;
    background-image: -webkit-linear-gradient(top, #e7ca84 0%, #c8a861 100%);
    background-image: -o-linear-gradient(top, #e7ca84 0%, #c8a861 100%);
    background-image: linear-gradient(to bottom, #e7ca84 0%, #c8a861 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFE7CA84', endColorstr='#FFC8A861', GradientType=0);
    -webkit-background-clip: padding-box;
    -mox-background-clip: padding-box;
    -o-background-clip: padding-box;
    background-clip: padding-box;
    color: #004417;
    font-weight: 700;
    text-decoration: none;
  }
  .nav-main > li:first-child, .nav-main > li:first-child > a {
    border-top-left-radius: 6px;
  }
  .nav-main > li:hover, .nav-main > li.active > a, .nav-main > li > a:hover {
    background-image: -webkit-linear-gradient(top, #205925 0%, #163c15 100%);
    background-image: -o-linear-gradient(top, #205925 0%, #163c15 100%);
    background-image: linear-gradient(to bottom, #205925 0%, #163c15 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF205925', endColorstr='#FF163C15', GradientType=0);
    color: #e6c882;
  }
  .nav-main > li:first-child > a {
    position: relative;
    min-width: 58px;
    text-align: left;
    text-indent: -1000em;
  }
  .nav-main > li:first-child > a:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background-image: url('../img/home.png');
    background-position: 50% 0;
    background-repeat: no-repeat;
  }
  .nav-main > li:first-child > a:hover:after {
    background-position: 50% -50px;
  }
  .nav-main > li.active:first-child > a:after {
    background-position: 50% -50px;
  }
  .nav-main .go-back, .nav-main .go-page, .nav-main .icon, .nav-main > li > ul {
    display: none;
  }
  .nav-main > li > ul {
    position: absolute;
    right: 0;
    left: 0;
    top: 100%;
    padding: 20px 5px 10px 5px;
    background-color: rgba(239, 232, 210, .9);
    border-bottom: 2px solid #a48633;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
  }
  .nav-main > li > ul > li {
    width: 25%;
    padding: 0 5px;
  }
  .nav-main > li > ul > li > a {
    display: block;
  }
  .nav-main > li > ul > li img {
    margin-bottom: 1px;
    opacity: 0.5;
    filter: alpha(opacity=50);
  }
  .nav-main > li:hover > ul {
    display: block;
  }
  .nav-main > li > ul > li > a:hover img {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
@media (min-width: 992px) {
  .nav-main {
    text-align: right;
  }
  .nav-main > li.last, .nav-main > li.last > a {
    border-top-right-radius: 6px;
  }
}
.nav-main .title {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding: 5px 2px;
  border-top: 8px solid #a48633;
}
.nav-main .title:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 0;
  border-color: #a48633 transparent transparent transparent;
}
.nav-main > li > ul > li > a:hover .title {
  border-top-color: #004417;
}
.nav-main > li > ul > li > a:hover .title:after {
  border-top-color: #004417;
}
.nav-meta {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .nav-meta {
    float: right;
    text-align: right;
  }
}
.nav-meta li {
  display: inline-block;
}
.nav-meta li:after {
  content: '\2022';
  padding: 0 15px;
}
.nav-meta li:last-child:after {
  content: '';
  padding: 0;
}
.nav-meta li a {
  color: #004417;
}
.nav-meta li a:hover {
  text-decoration: underline;
}
.nav-sub ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
.nav-sub ul a {
  position: relative;
  display: block;
  margin-bottom: 1px;
  padding: 7px 12px 3px 12px;
  background: #d0b167;
  color: #004417;
  font-family: "Merriweather", Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  text-decoration: none;
}
.nav-sub ul a:hover, .nav-sub ul a.active, .nav-sub ul a.current {
  background: #004417;
  color: #d0b167;
}
.nav-sub ul li:last-child a:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  border-color: #d0b167 transparent transparent #d0b167;
  border-style: solid;
  border-width: 5px;
}
.nav-sub ul li:last-child a:hover:after, .nav-sub ul li:last-child a.active:after, .nav-sub ul li:last-child a.current:after {
  border-color: #004417 transparent transparent #004417;
}
.nav-tab {
  overflow: hidden;
  padding-top: 16px;
}
@media (max-width: 767px) {
  .nav-tab {
    margin-left: -10px;
    margin-right: -10px;
    padding-top: 36px;
  }
}
.nav-tab ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.nav-tab ul:before, .nav-tab ul:after {
  content: " ";
  display: table;
}
.nav-tab ul:after {
  clear: both;
}
.nav-tab li {
  float: left;
  margin-bottom: -3px;
}
.nav-tab li > a {
  position: relative;
  display: block;
  padding: 5px 5px;
  margin-right: 1px;
  line-height: 1.428571429;
  background: #d0b167;
  border: 0 solid #d0b167;
  border-radius: 4px 4px 0 0;
  color: #004417;
  font-family: "Merriweather", Georgia, "Times New Roman", Times, serif;
  font-size: 80%;
  font-weight: 400;
}
.nav-tab li > a:hover, .nav-tab li > a.active {
  background: #efe8d2;
}
@media (min-width: 768px) {
  .nav-tab li > a {
    margin-right: 2px;
    padding: 10px 15px;
    border-width: 3px;
    font-size: 15px;
    font-weight: 700;
  }
}
/* -------------------------------- 
 Basic Style
 -------------------------------- */
.multi-steps {
  width: 100%;
  margin: 1em auto;
  padding: 0.5em 1em;
  background-color: #6c1411;
  border-radius: 0.25em;
}
.multi-steps:after {
  clear: both;
  content: "";
  display: table;
}
.multi-steps li {
  display: inline-block;
  float: left;
  margin: 0.5em 0;
}
.multi-steps li:after {
  /* this is the separator between items */
  display: inline-block;
  content: '\00bb';
  margin: 0 0.6em;
  color: #d0b167;
}
.multi-steps li:last-of-type:after {
  /* hide separator after the last item */
  display: none;
}
.multi-steps li > * {
  /* single step */
  display: inline-block;
  color: #a48633;
}
.multi-steps li.current > * {
  /* selected step */
  color: #f6f2e6;
}
/* -------------------------------- 
 Triangle style
 -------------------------------- */
@media (min-width: 768px) {
  .multi-steps.triangle {
    /* reset basic style */
    background-color: transparent;
    padding: 0;
  }
  .multi-steps.triangle li {
    position: relative;
    padding: 0;
    margin: 4px 4px 4px 0;
  }
  .multi-steps.triangle li:last-of-type {
    margin-right: 0;
  }
  .multi-steps.triangle li > * {
    position: relative;
    height: 32px;
    padding: 0 30px 0 60px;
    background-color: #8f2229;
    /* the border color is used to style its ::after pseudo-element */
    border-color: #8f2229;
    color: #d0b167;
    line-height: 32px;
  }
  .multi-steps.triangle li.current > * {
    /* selected step */
    color: #e6c882;
    background-color: #004417;
    border-color: #004417;
  }
  .multi-steps.triangle li:first-of-type > * {
    padding-left: 45px;
    border-radius: 0.25em 0 0 0.25em;
  }
  .multi-steps.triangle li:last-of-type > * {
    padding-right: 45px;
    border-radius: 0 0.25em 0.25em 0;
  }
  .multi-steps.triangle a:hover {
    /* steps already visited */
    color: #d0b167;
    background-color: #084c1d;
    border-color: #084c1d;
  }
  .multi-steps.triangle li:after, .multi-steps.triangle li > *:after {
    /* 
     li > *::after is the colored triangle after each item
     li::after is the white separator between two items
     */
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    content: '';
    height: 0;
    width: 0;
    /* $step-item-height is the height of the <a> element */
    border: 16px solid transparent;
    border-right-width: 0;
    border-left-width: 16px;
  }
  .multi-steps.triangle li:after {
    /* this is the white separator between two items */
    z-index: 1;
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
    border-left-color: #efe8d2;
    /* reset style */
    margin: 0;
  }
  .multi-steps.triangle li > *:after {
    /* this is the colored triangle after each element */
    z-index: 2;
    border-left-color: inherit;
  }
  .multi-steps.triangle li:last-of-type:after, .multi-steps.triangle li:last-of-type > *:after {
    /* hide the triangle after the last step */
    display: none;
  }
  @-moz-document url-prefix() {
    /* fix a bug on Firefix - tooth edge on css triangle */
    .multi-steps.triangle li:after, .multi-steps.triangle li > *:after {
      border-left-style: dashed;
    }
  }
}
.slideshow {
  clear: both;
  position: relative;
}
.slideshow > a {
  display: none;
}
.slideshow > a.btn-play {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
}
.slideshow > a.btn-play:before {
  content: '\ed7b';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  color: #f3eedd;
  font-family: 'Icomoon-Ultimate';
  font-size: 60px;
  text-shadow: 0 0 6px #000;
}
.slideshow > a.btn-play:hover:before {
  color: #d0b167;
}
table.jou {
  width: 100%;
  font-weight: 400;
}
table.jou thead th {
  background-color: #004417;
  color: #fff;
  font-weight: 400;
  text-align: left;
}
table.jou th {
  padding: 5px;
}
table.jou tbody > tr {
  background-color: #f6f2e6;
}
table.jou tbody > tr.odd {
  background-color: #f3eedd;
}
table.jou tbody > tr > th, table.jou tbody > tr > th a {
  background-color: #dcc37c;
  color: #004417;
  font-weight: 400;
  text-align: left;
}
table.jou tbody > tr > th {
  border-bottom: 1px #f6f2e6 solid;
  font-weight: 400;
}
table.jou tbody > tr > th a {
  display: block;
  width: 100%;
}
table.jou tbody > tr > th a:hover {
  text-decoration: underline;
}
table.jou tbody > tr > th a span {
  float: right;
  text-decoration: underline;
}
table.jou tbody > tr > td {
  padding: 3px;
}
table.jou .surcharge, table.jou .price {
  text-align: right;
}
/*
 table.jou td.desc {
 width: 400px;
 }
 table.jou .date-desc {
 width: 150px;
 }
 */
@media (min-width: 992px) {
  .teasers {
    margin-bottom: 30px;
  }
}
.teaser {
  position: relative;
  display: block;
  background: #f3eedd;
  color: #360f0f;
}
.teaser:before, .teaser:after {
  content: " ";
  display: table;
}
.teaser:after {
  clear: both;
}
@media (max-width: 991px) {
  .teaser {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .teaser {
    height: 100%;
  }
}
.teaser:hover {
  background: #f6f2e6;
  text-decoration: none;
}
.teaser figure {
  position: relative;
  display: inline-block;
  margin: 0 0 20px -15px;
  margin-left: 0;
}
@media (min-width: 992px) {
  .teaser figure {
    margin-right: -15px;
    margin-right: 0;
  }
}
.teaser figcaption {
  position: absolute;
  right: 15px;
  bottom: 0;
  padding: 12px 14px 7px 10px;
  background-color: #8f2229;
  color: #fff;
  font-family: "Merriweather", Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
}
.teaser figcaption:after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 0;
  height: 0;
  border-color: #8f2229 #8f2229 transparent transparent;
  border-style: solid;
  border-width: 5px;
}
.teaser figcaption .title {
  font-size: 13px;
}
.teaser figcaption .price {
  font-size: 30px;
}
.teaser figcaption .title + .price {
  margin-left: 5px;
}
.teaser .text {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 40px;
}
.teaser .more {
  position: absolute;
  bottom: 15px;
  right: 20px;
}
.teaser-box {
  display: block;
  margin-bottom: 20px;
  color: #360f0f;
}
@media (min-width: 992px) {
  .teaser-box {
    margin-bottom: 0;
  }
}
.teaser-box-large {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 50px;
  background: #f3eedd url("../img/hr.png") 0 100% repeat-x;
}
@media (min-width: 768px) {
  .teaser-box-large {
    margin-left: 0;
    margin-right: 0;
  }
}
.teaser-box-large figure {
  margin-bottom: 20px;
}
.teaser-box-large h4:first-child {
  margin-top: 0;
}
.teaser-box-large .btn {
  position: absolute;
  bottom: 15px;
  right: 20px;
}
.teaser-box-small {
  margin-bottom: 20px;
}
.teaser-box-small figure .img {
  position: relative;
  display: inline-block;
  border-bottom: 6px solid #a48633;
}
.teaser-box-small figure .img:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px;
  border-color: #a48633 transparent transparent #a48633;
}
.teaser-box-small figure .img img {
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.teaser-box-small:hover figure .img {
  border-bottom-color: #004417;
}
.teaser-box-small:hover figure .img:after {
  border-color: #004417 transparent transparent #004417;
}
.teaser-box-small:hover figure .img img {
  opacity: 1;
  filter: alpha(opacity=100);
}
.teaser-aside {
  position: relative;
  display: block;
  color: #360f0f;
}
.teaser-aside:before, .teaser-aside:after {
  content: " ";
  display: table;
}
.teaser-aside:after {
  clear: both;
}
.teaser-aside:hover {
  text-decoration: none;
}
.teaser-aside figure {
  margin-bottom: 20px;
  text-align: center;
}
h1, .h1 {
  margin-bottom: 40px;
  color: #d0b167;
}
@media (max-width: 991px) {
  h1, .h1 {
    font-size: 18px;
  }
}
.finder-travel h1, .finder-travel .h1 {
  margin-top: 40px;
}
h2, .h2 {
  color: #004417;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 991px) {
  h2, .h2 {
    font-size: 24px;
  }
}
h2 > b, .h2 > b {
  display: block;
  font-size: 1.23em;
}
h3, .h3 {
  color: #004417;
  line-height: 1.3;
}
h4, .h4 {
  color: #a48633;
  line-height: 1.3;
}
h4.dark, .h4.dark {
  color: #360f0f;
}
a:hover h4, a:hover .h4 {
  color: #004417;
}
.travel-formatted h4 {
  padding-top: 1em;
}
hr {
  clear: both;
  display: block;
  height: 3px;
  margin: 20px 0;
  border: 0;
  background: url('../img/hr.png') repeat-x;
  background-color: transparent;
  border: 0;
  color: transparent;
  font: 0/0 a;
  text-shadow: none;
}
.li {
  padding-left: 20px;
}
.intro {
  color: #004417;
  font-size: 19px;
}
.visible-gfb {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-gfb {
    display: block !important;
  }
  table.visible-gfb {
    display: table !important;
  }
  tr.visible-gfb {
    display: table-row !important;
  }
  th.visible-gfb, td.visible-gfb {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .hidden-gfb {
    display: none !important;
  }
}
.text-xs-left {
  text-align: left;
}
.text-xs-right {
  text-align: right;
}
.text-xs-center {
  text-align: center;
}
.text-xs-justify {
  text-align: justify;
}
@media (min-width: 768px) {
  .text-sm-left {
    text-align: left;
  }
  .text-sm-right {
    text-align: right;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-justify {
    text-align: justify;
  }
}
@media (min-width: 992px) {
  .text-md-left {
    text-align: left;
  }
  .text-md-right {
    text-align: right;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-justify {
    text-align: justify;
  }
}
@media (min-width: 1200px) {
  .text-lg-left {
    text-align: left;
  }
  .text-lg-right {
    text-align: right;
  }
  .text-lg-center {
    text-align: center;
  }
  .text-lg-justify {
    text-align: justify;
  }
}
.pull-xs-left {
  float: left !important;
}
.pull-xs-right {
  float: right !important;
}
@media (min-width: 768px) {
  .pull-sm-left {
    float: left !important;
  }
  .pull-sm-right {
    float: right !important;
  }
}
@media (min-width: 992px) {
  .pull-md-left {
    float: left !important;
  }
  .pull-md-right {
    float: right !important;
  }
}
@media (min-width: 1200px) {
  .pull-lg-left {
    float: left !important;
  }
  .pull-lg-right {
    float: right !important;
  }
}
.equal-height-xs > .row {
  display: table;
  float: none !important;
  height: 100%;
}
.equal-height-xs > .row > * {
  display: table-cell;
  float: none;
  height: 100%;
  vertical-align: top;
}
@media (min-width: 768px) {
  .equal-height-sm > .row {
    display: table;
    float: none !important;
    height: 100%;
  }
  .equal-height-sm > .row > * {
    display: table-cell;
    float: none;
    height: 100%;
    vertical-align: top;
  }
}
@media (min-width: 992px) {
  .equal-height-md > .row {
    display: table;
    float: none !important;
    height: 100%;
  }
  .equal-height-md > .row > * {
    display: table-cell;
    float: none;
    height: 100%;
    vertical-align: top;
  }
}
@media (min-width: 1200px) {
  .equal-height-lg > .row {
    display: table;
    float: none !important;
    height: 100%;
  }
  .equal-height-lg > .row > * {
    display: table-cell;
    float: none;
    height: 100%;
    vertical-align: top;
  }
}
.piped > *:after {
  position: relative;
  display: inline-block;
  content: ' | ';
  margin-left: 2px;
  margin-right: 2px;
}
@media (min-width: 768px) {
  .piped > *:after {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.piped > *:last-child:after {
  display: none;
  content: '';
  margin-left: 0;
  margin-right: 0;
}
.vcard {
  min-height: 276px;
  margin: 0 -30px 30px -30px;
  padding: 0 30px;
  font-family: "Merriweather", Georgia, "Times New Roman", Times, serif;
}
.vcard.cnt-1 {
  background: transparent url("../img/vcard_russia.png") no-repeat 100% 0;
}
.vcard span {
  display: block;
}
.vcard img {
  margin-bottom: 10px;
}
.vcard .fn {
  color: #004417;
  font-size: 22px;
  font-weight: bold;
}
.vcard .email, .vcard .operating-hours, .vcard .tel {
  font-size: 13px;
}
.vcard .email, .vcard .tel {
  font-weight: 700;
}
.vcard .email {
  margin-top: 6px;
}
.vcard .email:before {
  margin-right: 5px;
  content: '\ea30';
  color: #a48633;
  font-family: 'Icomoon-Ultimate';
  vertical-align: -1px;
}
