@font-face {
  font-family: SourceHanSerifCN;
  src: url(../fonts/SourceHanSerifCN-Regular.otf);
}
@font-face {
  font-family: SourceHanSerifCN-Bold;
  src: url(../fonts/SourceHanSerifCN-Bold.otf);
}
@font-face {
  font-family: SourceHanSerifCN-Light;
  src: url(../fonts/SourceHanSerifCN-Light.otf);
}
:root {
  --primary: #63513d;
  --secondary: #004765;
  --third: #dcc6b6;
  --forth: #f5f3ef;
}
body {
  font: normal normal 18px 'SourceHanSerifCN', Tahoma, Arial, Helvetica, sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.75em;
  background: #fff;
  color: #333;
}
.container {
  width: 100%;
  max-width: 1170px;
  position: relative;
}
h1, h2, h3 {
  color: var(--primary);
  line-height: 1.3;
  font-family: 'SourceHanSerifCN-Bold', Tahoma, Arial, Helvetica, sans-serif;
  font-weight: 700;
}
h4, h5, h6 {
  line-height: 1.65;
}
h1 {
  font-size: 6rem;
}
h2 {
  font-size: 3rem;
}
p {
  margin: 1.5em 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.img-full {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
div, button {
  outline: none;
}
.py-7 {
  padding-top: 7em;
  padding-bottom: 7em;
}
.my-7 {
  margin-top: 7em;
  margin-bottom: 7em;
}
.blue {
  color: var(--secondary);
}
.bg-primary {
  background: var(--primary) !important;
}
.bg-secondary {
  background: var(--secondary) !important;
}
.bg-third {
  background: var(--third) !important;
}
.bg-forth {
  background: var(--forth) !important;
}
/* ---------------------------------------------
					Button
---------------------------------------------- */
a {
  color: var(--primary);
}
a:hover, a:focus {
  text-decoration: none;
  -webkit-filter: brightness(1.15);
  filter: brightness(1.15);
}
.thumbs {
  overflow: hidden;
  position: relative;
}
.thumbs p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
a:hover .thumbs img {
  transition: transform 500ms linear 0s;
  transform: scale(1.05, 1.05);
}
.btn {
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  padding: 1.2em 3.5em;
  margin: 1em auto;
  font-family: 'SourceHanSerifCN-Bold', Tahoma, Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.btn.center-block {
  display: table;
}
.btn-back {
  position: absolute;
  top: 0;
  right: 15px;
}
.btn-primary {
  background: var(--primary) !important;
  color: white !important;
}
.btn-secondary {
  background: var(--secondary) !important;
  color: white !important;
}
.btn-third {
  background: var(--third) !important;
  color: var(--primary) !important;
}
/* ---------------------------------------------
					Nav
---------------------------------------------- */
.navbar {
  width: 100%;
  padding: 0;
  background: var(--primary);
  z-index: 99;
}
.navbar.affix {
  position: fixed;
  top: 0;
  -webkit-animation-duration: 400ms;
  animation-duration: 400ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: move-in-up;
  animation-name: move-in-up;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, .15);
}
.navbar-brand {
  max-width: 200px;
  padding: 15px 20px;
  padding-left: 0;
  margin: 0;
}
.affix .navbar-brand {
  max-width: 160px;
}
.navbar-nav > li {
  margin: 0;
}
.navbar-nav > li.active > a {
  color: var(--third);
}
.navbar-nav > li > a {
  color: white;
}
.navbar-nav > li.language > a {
  background: var(--third);
  color: var(--primary) !important;
  display: inline-grid !important;
  align-items: center;
  border-radius: 50%;
  font-size: 0.8em;
  padding: 0 !important;
  margin: 5px 0;
  width: 55px;
  height: 55px;
  text-align: center;
}
.dropdown-menu > li > a {
  padding: 10px 15px;
}
.dropdown-toggle-mobile {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 999;
  background: none;
  border: none;
}
/* ---------------------------------------------
					Banner
---------------------------------------------- */
#banner .banner {
  height: calc(100vh - 99px);
}
/*#inner #banner:before {
  content: '';
  width: 100%;
  display: block;
  padding-top: calc((2 / 18) * 100%);
}*/
#inner #banner {
  display: table;
  width: 100%;
}
#inner #banner h1 {
  font-size: 5rem;
  color: white;
  text-align: center;
  margin: 2.5em 0 0.5em;
}
.banner {
  background-size: cover !important;
  background-position: center center !important;
  position: relative;
}
.carousel-control-next, .carousel-control-prev {
  width: auto;
  top: 50%;
  bottom: inherit;
  transform: translate(0, -50%);
  opacity: 1;
  padding: 20px;
  font-size: 20px;
}
.carousel-caption {
  top: inherit;
  bottom: 4em;
}
.carousel-caption h1 {
  color: white;
  font-size: 4rem;
}
.carousel-caption h3 {
  color: white;
}
.carousel .carousel-item {
  -webkit-transition: opacity 0.1s ease;
  -moz-transition: opacity 0.1s ease;
  -ms-transition: opacity 0.1s ease;
  -o-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
  opacity: 0.5;
}
.carousel .active.carousel-item {
  opacity: 1;
}
.carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  opacity: 1;
  border: none !Important;
  margin: 3px 5px;
}
.carousel-indicators li.active {
  background: var(--third);
  border: 3px solid var(--third) !important;
  margin-top: 0;
  margin-bottom: 0;
}
/*.carousel .active.carousel-item .bg {
    animation: zooooom 7s ease-in-out;
   -webkit-animation: zooooom 7s ease-in-out;
}
@keyframes zooooom {
0%   {
	transform: scale(1);
}
100% {
	transform: scale(1.05);
}
}*/
/* ---------------------------------------------
					List
---------------------------------------------- */
section ul {
  padding: 0;
  margin: 10px 0;
}
section ul li {
  list-style: none;
  padding-left: 1em;
  margin: 5px 0;
  position: relative;
}
section ul li:before {
  content: '\00B7';
  left: 0px;
  top: 0px;
  position: absolute;
  display: block;
  color: var(--primary);
  font-size: 30px;
}
.list-unstyled li, .pagination li {
  padding-left: 0;
}
.list-unstyled li:before, .pagination li:before {
  display: none;
}
.collum-list-2 li {
  width: calc(50% - 3px);
  display: inline-block;
  vertical-align: top;
}
.list-tick li {
  list-style: none;
  padding-left: 2em;
  position: relative;
}
.list-tick li:before {
  font-family: 'Glyphicons Halflings';
  content: "\e013";
  color: var(--primary);
  left: 0;
  position: absolute;
}
.list-number {
  counter-reset: my-badass-counter;
}
.list-number li {
  list-style: none;
  padding: 5px 0;
  padding-left: 3em;
  position: relative;
  width: 100%;
  display: inline-block;
  vertical-align: top;
  line-height: 20px;
}
.list-number li:before {
  content: counter(my-badass-counter);
  counter-increment: my-badass-counter;
  background-color: #b6966a;
  color: var(--primary);
  display: inline-block;
  text-align: center;
  top: 0;
  left: 0;
  position: absolute;
}
/* ---------------------------------------------
					Form
---------------------------------------------- */
.form-group {
  position: relative;
}
.form-control {
  height: auto;
  background-color: transparent;
  border: none !important;
  border-bottom: 2px solid var(--secondary) !important;
  border-radius: 0;
  box-shadow: none;
  padding: 10px 12px;
}
form p {
  margin: 0;
}
/*.form-control::-webkit-input-placeholder {
 	color:#333;
}
.form-control:-ms-input-placeholder {
 	color:#333;
}
.form-control:-moz-placeholder {
 	color:#333;
}*/
.form-control.error {
  border-color: #c33;
}
select {
  outline: none !important;
}
select.no-radius {
  border: none;
  width: 100%;
  background: none;
  color: #777;
}
.select-wrapper.form-control {
  padding-left: 8px;
  padding-right: 8px;
}
label.error {
  position: absolute;
  top: 11px;
  right: 10px;
  color: #c33;
  font-weight: 400;
  font-size: 11px;
}
.gj-datepicker .input-group-append, .gj-timepicker .input-group-append {
  width: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
.gj-datepicker .input-group-append button, .gj-timepicker .input-group-append button {
  border: none !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  text-indent: -9999px;
}
.gj-picker {
  font-size: 0.65em !important;
  text-align: center !important;
}
.gj-picker-bootstrap {
  border: none !important;
}
.gj-picker-bootstrap > div:nth-child(2) {
  display: table;
  margin: 10px auto;
}
.gj-modal .modal-footer {
  padding: 0;
}
.gj-modal .modal-footer button {
  margin: 0;
  background: var(--secondary);
  color: white;
}
/* ---------------------------------------------
					Panel
---------------------------------------------- */
.accordion .card {
  border: none;
  border-bottom: 1px solid #ddd !important;
}
.accordion .card .card-header {
  padding: 0;
  background: none;
  border: none;
  margin-bottom: 0;
}
.accordion .card .card-header .btn {
  margin: 0;
  display: block;
  padding: 15px 0;
  width: 100%;
  text-align: left;
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
.accordion .card .card-header .btn.collapsed {
  color: #333;
}
.accordion .card .card-header .btn:after {
  content: "\e252";
  font-family: "Glyphicons Halflings";
  font-size: 10px;
  color: var(--primary);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}
.accordion .card .card-header .btn.collapsed:after {
  content: "\e250";
}
.accordion .card .card-body {
  padding: 0;
}
/* ---------------------------------------------
					Modal
---------------------------------------------- */
.modal-full .modal-dialog {
  width: 100%;
  height: 100%;
  background: #f9f9f9;
  margin: 0;
}
.modal-full .modal-content {
  border: none;
  box-shadow: none;
}
.modal-full .modal-content img {
  margin: 15px auto;
}
.modal-full .close {
  color: var(--primary);
  font-size: 14px;
  opacity: 1;
  z-index: 999;
  position: absolute;
  right: 15px;
}
.modal-full .close span {
  font-size: 21px;
  top: 1px;
  position: relative;
}
.modal.modal-center.in {
  position: absolute;
  transform: translate(0, -50%);
}
.modal {
  background: rgba(0, 0, 0, .65);
}
.modal .close {
  color: var(--primary);
  font-size: 30px;
  opacity: 1;
}
.modal-dialog {
  top: 50%;
  bottom: auto;
  transform: translate(0, -50%) !important;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
}
.modal-content {
  background: #f9f9f9;
  border: none;
  border-radius: 0;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, .2);
}
/* ---------------------------------------------
					Row
---------------------------------------------- */
.row.row-grid > [class^="col-"]:after {
  content: '';
  position: absolute;
  top: 5%;
  right: 0;
  height: 100%;
  width: 1px;
  background: #eee;
}
.row.row-grid > [class^="col-"]:last-child:after, .row.row-grid > .col:last-child:after {
  display: none;
}
@media (min-width: 769px) {
  .row.row-grid > .col-lg-4:nth-child(3n):after {
    display: none;
  }
}
@media (max-width: 768px) {
  .row.row-grid > .col-sm-6:nth-child(2n):after {
    display: none;
  }
}
@media (max-width: 767px) {
  .row.row-grid > div:after {
    display: none;
  }
}
/* ---------------------------------------------
					Footer
---------------------------------------------- */
footer {
  background: var(--primary);
}
footer ul {
  margin: 0;
  padding: 0;
}
footer li {
  display: inline-block;
  margin: 10px 20px;
  position: relative;
}
footer li:before {
  content: '';
  width: 2px;
  height: calc(100% - 10px);
  transform: translate(0, -50%);
  position: absolute;
  top: 50%;
  right: -22px;
  background: var(--third);
}
footer li:last-child:before {
  display: none;
}
footer p, footer a {
  color: #fff;
}
footer a:hover {
  color: var(--third);
}
/* ---------------------------------------------
					Ratio
---------------------------------------------- */
.ratio {
  position: relative;
}
.ratio:before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: calc((6 / 9) * 100%);
}
.ratio.ratio-square:before {
  padding-top: calc((1 / 1) * 100%);
}
.ratio.ratio-vertical:before {
  padding-top: calc((9 / 6) * 100%);
}
.ratio.ratio-wide:before {
  padding-top: calc((4 / 10) * 100%);
}
.ratio iframe {
  position: absolute;
  top: 0;
}
.ratio img {
  position: absolute;
  top: 0;
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
/* ---------------------------------------------
					Slicks
---------------------------------------------- */
.slick-list {
  padding-top: 1em !important;
  padding-bottom: 1em !important;
  margin-bottom: 3em !important;
}
.slick-dots li:before {
  display: none;
}
.slick-dots li button:before {
  color: white !important;
  opacity: 1 !important;
}
.slick-dots li.slick-active button:before {
  color: var(--third) !important;
  font-size: 12px;
}
.slick-prev:before, .slick-next:before {
  content: "\e257" !important;
  font-family: "Glyphicons Halflings" !important;
}
.slick-next:before {
  content: "\e258" !important;
}
.slick-prev {
  left: -5rem !important;
}
.slick-next {
  right: -5rem !important;
}
.items-products .slick-slide {
  transform: scale(1, 0.8);
  transition: transform 500ms linear 0s;
}
.items-products .slick-slide.slick-current.slick-active {
  transform: scale(1, 1);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.5);
}
.items-single .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
}
.items-single .slick-prev:before, .items-single .slick-next:before {
  color: var(--third);
}
/* ---------------------------------------------
					Others
---------------------------------------------- */
.timeline {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline:before {
  content: '';
  position: absolute;
  height: calc(100% - 105px);
  width: 3px;
  background: var(--primary);
  top: 35px;
  left: 50%;
}
.timeline li {
  clear: both;
  display: inline-block;
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  padding-left: 0;
}
.timeline li:before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--third);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  position: absolute;
}
.timeline li > div {
  width: calc(50% - 3em);
  margin: 0 20px;
  display: inline-block;
  vertical-align: top;
}
.timeline li:nth-child(even), .timeline li:nth-child(odd) > div {
  text-align: left;
}
.timeline li:nth-child(odd), .timeline li:nth-child(even) > div {
  text-align: right;
}
.timeline .place {
  font: normal normal 48px 'SourceHanSerifCN-Bold', Tahoma, Arial, Helvetica, sans-serif;
  color: var(--secondary);
  margin: 0;
}
.timeline li:nth-child(odd) .place {
  float: left;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid var(--primary);
}
.timeline li:nth-child(even) .place {
  float: right;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid var(--primary);
}
.timeline .date {
  color: var(--primary);
  display: flow-root;
}
.iframe {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.iframe iframe {
  display: block;
  background: #000;
  border: none;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply
}
.meat-list li > div {
  width: calc(50% - 3em);
  margin: 0 20px;
  display: inline-block;
  vertical-align: top;
}
.meat-list li:nth-child(even), .meat-list li:nth-child(odd) > div {
  text-align: left;
}
.meat-list li:nth-child(odd), .meat-list li:nth-child(even) > div {
  text-align: right;
}
.meat-list h3, .meat-list p {
  margin: 0;
}
.meats {
  background: rgb(246, 246, 248);
  background: linear-gradient(0deg, rgba(246, 246, 248, 1) 55%, rgba(226, 226, 226, 1) 85%);
}
.quote {
  position: relative;
}
.quote:before, .quote:after {
  content: '“';
  position: absolute;
  top: -.2em;
  left: -1em;
  font-size: 10em;
  color: var(--secondary);
  display: block;
}
.quote:after {
  content: '”';
  top: inherit;
  left: inherit;
  bottom: -0.8em;
  right: -1em;
}
.maps {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.maps iframe {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  width: 200%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.maps:before {
  content: '';
  background: url(../images/droppin.png) no-repeat;
  background-size: contain;
  width: 60px;
  height: 48px;
  position: absolute;
  top: calc(50% - 24px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.maps:after {
  content: '';
  background: url(../images/spacer.gif) repeat;
  display: block;
  width: 100%;
  padding-top: calc((2.5 / 8) * 100%);
  position: relative;
  z-index: 2;
}
.alert-mobile {
  display: none;
}
/* ---------------------------------------------
					Social Media
---------------------------------------------- */
.fa {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin: 15px 5px;
  text-align: center;
  font-size: 22px !important;
  display: inline-grid !important;
  align-items: center;
  background: var(--third) !important;
  color: var(--primary) !important;
}
/* ---------------------------------------------
					Media Queries
---------------------------------------------- */
@media (min-width: 1170px) {
  .container {
    width: 80%;
    max-width: inherit;
  }
}
@media (min-width: 769px) {
  .banner-fixed {
    background-attachment: fixed !important;
  }
  .navbar-nav > li {
    margin: 0 10px;
    position: relative;
  }
  .navbar-nav > li:before {
    content: '';
    display: block;
    width: 2px;
    height: calc(100% - 40px);
    transform: translate(0, -50%);
    background: var(--secondary);
    position: absolute;
    top: 50%;
    right: -10px;
  }
  .navbar-nav > li:last-child:before, .navbar-nav > li:nth-last-child(2):before {
    display: none;
  }
  .navbar-nav > li > a {
    padding: 15px 10px !important;
  }
  .navbar-nav > li.dropdown > a {
    padding-right: 0 !important;
    display: inline-block;
  }
  .navbar-nav .dropdown-toggle {
    background: none;
    border: none;
  }
  .navbar-nav > li.dropdown:hover > .dropdown-menu {
    display: block;
  }
  .quick-link .navbar-nav > li.dropdown:hover > .dropdown-menu {
    display: none;
  }
  .dropdown-menu {
    margin: 0;
    padding: 0;
    left: auto;
    right: 0;
    background: var(--third);
    min-width: 2rem;
  }
  .dropdown-item {
    margin: 10px 0;
    background: none !important;
  }
  .dropdown-item:hover {
    opacity: 0.5;
  }
  .dropdown-toggle-mobile {
    display: none;
  }
}
@media (max-width: 768px) {
  html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    overscroll-behavior-x: none;
  }
  .container, .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid {
    max-width: 100%;
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .navbar-toggler {
    width: 22px;
    height: 32px;
    position: relative;
    padding: 0;
  }
  .navbar-toggler .icon-bar {
    position: absolute;
    transition: all 250ms linear;
    background: white;
    width: 100%;
    height: 2px;
    border-radius: 30px;
    right: 0;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0)
  }
  .navbar-toggler.collapsed .icon-bar {
    position: absolute;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0)
  }
  .navbar-toggler .line1 {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    top: 15px;
  }
  .navbar-toggler .line2 {
    opacity: 0;
  }
  .navbar-toggler .line3 {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    top: 15px;
  }
  .navbar-toggler.collapsed .line1 {
    top: 9px;
  }
  .navbar-toggler.collapsed .line2 {
    opacity: 1;
    top: 15px;
  }
  .navbar-toggler.collapsed .line3 {
    top: 21px;
  }
  .navbar-nav > li {
    margin: 0;
  }
  .navbar-nav > li > .dropdown-menu {
    background: none;
    border: none;
    margin: 0 0 10px;
    padding: 0;
  }
  .navbar-nav > li.show > .dropdown-menu {
    display: block;
  }
  .dropdown-item {
    padding: 5px 0;
    opacity: 0.5;
  }
  h1 {
    font-size: 5rem;
  }
  .navbar-nav > li.language .dropdown-menu .dropdown-item {
    color: white;
  }
  .meats {
    background: rgb(246, 246, 248);
    background: linear-gradient(360deg, rgba(246, 246, 248, 1) 0%, rgba(226, 226, 226, 1) 65%);
  }
  .quote:before {
    top: 0;
  }
  .quote:after {
    bottom: -.5em;
  }
}
@media (max-width: 767px) {
  .py-7 {
    padding-top: 3em;
    padding-bottom: 3em;
  }
  .py-7 {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  .btn-back {
    position: relative;
    top: inherit;
    right: inherit;
  }
  #banner .banner {
    height: calc(80vh - 0px);
  }
  .navbar-brand {
    max-width: 150px;
  }
  .carousel-caption {
    left: 15px;
    right: 15px;
  }
  .carousel-caption h1 {
    font-size: 9vw;
  }
  #main section.banner:nth-child(odd) {
    background-image: none !important;
    background-color: var(--forth) !important;
  }
  #main section.banner:nth-child(even) {
    background-image: none !important;
    background-color: white !important;
  }
  .timeline:before {
    left: 10px;
  }
  .timeline li:before {
    left: 10px;
  }
  .timeline li > div {
    width: calc(100% - 2em);
    margin: 0;
    margin-left: 2em;
  }
  .timeline li .place {
    font-size: 36px;
  }
  .timeline li:nth-child(even) .place {
    float: left;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid var(--primary);
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
  .timeline li:nth-child(odd), .timeline li:nth-child(even) > div {
    text-align: left;
  }
    .quote:before {
    top: 0;
        left: -0.5em;
  }
  .quote:after {
    bottom: -.5em;
      right: -0.5em;
  }
}
/*--------  Lock Screen --------  */
@media only screen and (max-height: 420px) and (orientation:landscape) {
  .alert-mobile {
    display: block;
    position: fixed;
    top: 50%;
    z-index: 999;
    margin: auto;
    transform: translate(0, -50%);
    padding: 3% 10%;
    text-align: center;
  }
  .alert-mobile h4 {
    line-height: 24px;
    margin-bottom: 20px;
  }
}
/* ---------------------------------------------
					IE 10
---------------------------------------------- */
@media all and (-ms-high-contrast:none) {}
/* ---------------------------------------------
					Firefox
---------------------------------------------- */
@-moz-document url-prefix() {}