h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
ul,
ol,
li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: normal; }

body {
  font-family: 'Open Sans', sans-serif;
  color: black;
  -webkit-font-smoothing: antialiased; }

div {
  box-sizing: content-box; }

a {
  color: black; }
  a:visited {
    color: black; }

ul {
  list-style-type: none; }

.button {
  background-color: #272b27;
  background-image: linear-gradient(bottom, #1f231f 23%, #272b27 51%, #313331 81%);
  background-image: -o-linear-gradient(bottom, #1f231f 23%, #272b27 51%, #313331 81%);
  background-image: -moz-linear-gradient(bottom, #1f231f 23%, #272b27 51%, #313331 81%);
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(23%, #1f231f), color-stop(51%, #272b27), color-stop(81%, #313331));
  background-image: -webkit-linear-gradient(bottom, #1f231f 23%, #272b27 51%, #313331 81%);
  background-image: -ms-linear-gradient(bottom, #1f231f 23%, #272b27 51%, #313331 81%);
  border: 1px solid #212121;
  border-width: 1px 1px 0 1px;
  border-radius: 3px;
  -moz-box-shadow: inset 0 1px 0 0 #566256;
  -webkit-box-shadow: inset 0 1px 0 0 #566256;
  box-shadow: inset 0 1px 0 0 #566256;
  color: white;
  text-shadow: 0 -1px 0 #191919;
  font: 300 12px/1.3 Helvetica, Arial, sans-serif;
  line-height: 30px;
  height: 30px;
  padding: 0 10px;
  text-align: center;
  min-width: 125px;
  display: inline-block;
  cursor: pointer;
  text-decoration: none; }
  .button:visited {
    color: white; }

[fade-in] {
  transition: opacity 0.4s; }

.faded {
  opacity: 0; }

.inner-body {
  overflow-x: hidden;
  position: relative; }

.main-content {
  transition-duration: 0.4s;
  background-color: white;
  position: relative; }

.slide-right {
  -moz-transform: translateX(270px);
  -o-transform: translateX(270px);
  -ms-transform: translateX(270px);
  -webkit-transform: translateX(270px);
  transform: translateX(270px); }

.slide-left {
  -moz-transform: translateX(-270px);
  -o-transform: translateX(-270px);
  -ms-transform: translateX(-270px);
  -webkit-transform: translateX(-270px);
  transform: translateX(-270px); }

.sidebar {
  width: 270px;
  position: absolute;
  top: 0;
  padding-top: 10px;
  transition-duration: 0.4s;
  box-sizing: border-box;
  display: none; }
  @media (max-width: 767px) {
    .sidebar {
      display: block; } }

.header {
  width: 100%;
  padding-top: 10px;
  height: 70px; }
  .header::after {
    content: "";
    clear: both;
    display: block; }
  .header .fa-bars {
    display: none;
    font-size: 22px;
    position: absolute;
    top: 30px;
    left: 20px; }
    @media (max-width: 767px) {
      .header .fa-bars {
        display: inline-block; } }
  .header .logo {
    float: left;
    margin: 0 20px;
    line-height: normal; }
    @media (max-width: 767px) {
      .header .logo {
        float: none;
        text-align: center;
        margin: 0; } }
    .header .logo a {
      text-decoration: none;
      color: #8f180b;
      font-family: 'Caudex', serif;
      font-size: 48px;
      font-weight: normal;
      font-style: italic; }
      @media (max-width: 767px) {
        .header .logo a {
          font-size: 40px; } }
  .header .main-nav {
    float: left;
    margin-top: 18px; }
    @media (max-width: 767px) {
      .header .main-nav {
        display: none; } }
  .header .menu {
    display: inline-block;
    border-left: 1px solid white;
    border-right: 1px solid white;
    position: relative; }
    .header .menu:hover .title {
      border-left-color: #ccc;
      border-right-color: #ccc;
      border-bottom: 1px solid white; }
    .header .menu:hover .sub-menu-outer {
      display: block; }
    .header .menu.inspire .sub-menu-inner {
      min-width: 240px; }
    @media (max-width: 859px) {
      .header .menu.read .sub-menu-outer {
        left: -30px; } }
    .header .menu.read .sub-menu-inner {
      min-width: 300px; }
    @media (max-width: 859px) {
      .header .menu.discuss .sub-menu-outer {
        left: -50px; } }
    .header .menu.discuss .sub-menu-inner {
      min-width: 230px; }
    .header .menu.shop .sub-menu-outer {
      left: -80px; }
      @media (max-width: 1023px) {
        .header .menu.shop .sub-menu-outer {
          left: -110px; } }
      @media (max-width: 859px) {
        .header .menu.shop .sub-menu-outer {
          left: -150px; } }
    .header .menu.shop .sub-menu-inner {
      min-width: 360px; }
      @media (max-width: 1023px) {
        .header .menu.shop .sub-menu-inner {
          min-width: 250px; } }
  .header .title {
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    padding: 0 30px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 45px;
    border-left: 1px solid white;
    border-right: 1px solid white;
    position: relative;
    z-index: 3; }
    @media (max-width: 859px) {
      .header .title {
        padding: 0 25px; } }
  .header .sub-menu-outer {
    display: none;
    position: absolute;
    z-index: 2;
    text-align: left; }
  .header .sub-menu-inner {
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px 30px;
    position: relative;
    top: -1px; }
    @media (max-width: 859px) {
      .header .sub-menu-inner {
        padding: 10px 20px; } }
    .header .sub-menu-inner ul {
      padding: 3px; }
      .header .sub-menu-inner ul li {
        padding: 4px 0; }
    .header .sub-menu-inner a {
      text-decoration: none; }
      .header .sub-menu-inner a:hover {
        text-decoration: underline; }
  .header .preview-panel-container::after {
    content: "";
    clear: both;
    display: block; }
  .header .preview-panel {
    float: left; }
    .header .preview-panel:first-child {
      margin-right: 30px; }
  .header .preview-label {
    display: block;
    margin-bottom: 5px; }
  .header .preview {
    display: block;
    max-height: 100px;
    max-width: 100px;
    background-color: #ccc; }
  .header .sub-section-container::after {
    content: "";
    clear: both;
    display: block; }
  .header .sub-section {
    float: left; }
    @media (max-width: 1023px) {
      .header .sub-section {
        float: none; } }
    .header .sub-section:first-child {
      padding-right: 20px; }
      @media (max-width: 1023px) {
        .header .sub-section:first-child {
          padding: 0 10px 5px;
          border-bottom: 1px solid #ccc; } }
    .header .sub-section:last-child {
      padding-left: 20px;
      border-left: 1px solid #ccc; }
      @media (max-width: 1023px) {
        .header .sub-section:last-child {
          padding: 5px 10px 0;
          border-left: none; } }
    .header .sub-section li:first-child {
      font-weight: bold; }
  .header .user-nav {
    float: right;
    margin: 28px 30px 0 0; }
    @media (max-width: 767px) {
      .header .user-nav {
        float: none;
        position: absolute;
        top: 30px;
        right: 20px;
        margin: 0; } }
  .header .fa-user {
    font-size: 22px; }

.footer {
  text-transform: uppercase;
  position: relative; }
  @media (max-width: 767px) {
    .footer {
      text-align: center; } }
  .footer .legal {
    margin: 30px 0 30px 15%; }
    @media (max-width: 767px) {
      .footer .legal {
        margin: 0;
        padding: 20px 20px 0; } }
  .footer .label {
    width: 470px;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: bold; }
    @media (max-width: 767px) {
      .footer .label {
        width: 270px;
        margin: 0 auto 10px; } }
  .footer .copyright {
    font-weight: bold;
    font-size: 16px; }
  .footer .links li {
    display: inline-block; }
    .footer .links li:first-child {
      margin-right: 8px; }
    .footer .links li a {
      text-decoration: underline; }
  .footer .contact {
    position: absolute;
    top: 10px;
    right: 10%; }
    @media (max-width: 767px) {
      .footer .contact {
        margin: 0;
        padding: 10px 0;
        position: static;
        top: auto;
        left: auto; } }
    .footer .contact li {
      padding-bottom: 5px; }
      @media (max-width: 767px) {
        .footer .contact li {
          display: inline-block;
          padding: 5px; } }
    .footer .contact a {
      text-decoration: none;
      font-weight: bold; }
      .footer .contact a:hover {
        color: #8f180b; }

.sidebar-menu {
  left: 0;
  border-right: 1px solid #ccc; }
  .sidebar-menu .section {
    padding: 10px 0 0 15px;
    border-bottom: 1px solid #ccc; }
  .sidebar-menu label {
    font-weight: bold;
    color: #b9b9b9; }
  .sidebar-menu li {
    margin: 15px 0 15px 10px; }
  .sidebar-menu a {
    text-decoration: none; }

.sidebar-user {
  right: 0;
  min-height: 600px;
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc; }

/*# sourceMappingURL=styleguise-shared.css.map */
