/*
 * Override bootstrap and make
 * the maximum width 970px
 */
/*
.container {
  max-width: 970px;
}
*/

:root {
  --sans: futura-pt, -apple-system, system-ui, blinkmacsystemfont, "Helvetica", "Arial", sans-serif;
  --serif: schoolbook, georgia, serif;
  --mono: courier-std, SFMono-Regular, Consolas, Liberation Mono, Menlo, monospace;
  --text-color: rgba(0, 0, 0, 1);
  --warm-black: rgba(34, 34, 34, 1);
  --gray: rgba(0,0,0,0.5);
  --light-gray: rgba(0,0,0,0.2);
}

* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 62.5%;
  background-color: #000;
}

body {
  color: var(--text-color);
  font: 400 1.8rem/1.5 var(--serif);
  font-feature-settings: "liga" 0, ;
  font-variant-ligatures: none;
  font-optical-sizing: auto; 
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sans);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  margin-top: 0;
  font-weight: 700;
  color: var(--warm-black);
  text-transform: uppercase;
  /*letter-spacing: -1px;*/
}

h1, h2, h3 {
  margin-top: 5.0rem;
}

h1 {
  font-size: 4.0rem;
  margin-top: 0;
  margin-bottom: 2.0rem;
}

h1.page-title {
  font-size: 4.8rem;
  line-height: 1.1;
  margin-bottom: 5rem;
  margin-top: 0;
}

@media (max-width: 991px) {
  h1.page-title {
    margin-right: auto;
    margin-left: auto;
  }
}

h1 a,
h1 a:hover,
h1 a:focus,
h1 a:active {
  color: #000;
  text-decoration: none;
}

h1.page-title small {
  font-size: 2.4rem;
  position: relative;
}

h2 {
  font-size: 3.6rem;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 3.2rem;
}

p {
  margin-top: 0;
  margin-bottom: 2.0rem;
}

div.subtitle {
  font-family: var(--sans);
  font-size: 1.8rem;
  color: var(--gray);
  margin-bottom: 6.0rem;
  line-height: 1.4;
  font-weight: 400;
}

b, strong {
  font-weight: 700;
}

sup {
  margin-left: 0.2rem;
  margin-right: 0.2rem;
  font-size: 70%;
}

a,
a:focus,
a:hover,
a:active {
  color: #9a0018;
}

p a, dt a {
  text-decoration: none;
  color: #9a0018;
  border-bottom: 1px solid #dedede;
}

p a:hover, dt a:hover {
  border-bottom: 1px solid #9a0018;
  text-decoration: none;
  color: #9a0018;
}

ul, ol {
  margin-bottom: 2.0rem;
  padding-left: 2.0rem;
}

blockquote {
  font-family: var(--sans);
  padding: 0 0 0 1.5rem;
  border-left: 2px solid #999;
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 2.0rem;
  color: #666;
}

blockquote p {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

a.icon {
  color: #444;
}

a.icon:hover {
  /*color: #af181b;*/
  color: #9a0018;
}

pre {
  margin-bottom: 2.0rem;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.center {
  float: none;
  margin-left: auto;
  margin-right: auto;
}

figure {
  margin: 0.7rem auto 4.0rem auto;
  text-align: center;
  max-width: max-content;
}

figure.full-width, figure.ultra-wide {
  padding-top: 2.0rem;
  padding-bottom: 2.0rem;
  margin-bottom: 1.0rem;
}

figure img {
  border: 1px solid #444;
  max-width: 100%;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  figure.full-width,
  figure.ultra-wide {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  figure.full-width,
  figure.ultra-wide {
    margin-right: -7.7rem;
    margin-left: -7.7rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  figure.full-width {
    margin-right: -8.1rem;
    margin-left: -8.1rem;
  }
  figure.ultra-wide {
    margin-right: -9.5rem;
    margin-left: -9.5rem;
  }
}

@media (min-width: 1200px) {
  figure.full-width {
    margin-right: -9.5rem;
    margin-left: -9.5rem;
  }
  figure.ultra-wide {
    margin-right: -20.8rem;
    margin-left: -20.8rem;
  }
}

/*
figure.embiggen img {
  width: 100%;
}

figure.left {
  text-align: left;
}
*/
figcaption {
  font-family: var(--sans);
  font-size: 1.4rem;
  text-align: left;
  line-height: 1.2;
  margin-top: 0.5rem;
}

.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; }
}

hr {
  border-top: 1px solid #ccc;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}

table.standard {
  border-width: 0;
  border-spacing: 1px;
  border-style: solid;
  background-color: #666;
  border-collapse: separate;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 2.0rem;
  font-family: var(--mono);
  font-size: 1.6rem;
}

table.standard th {
  background-color: #e9e9e9;
  text-align: center;
  vertical-align: bottom;
  padding: 4px;
  color: #000;
  font-weight: 600;
  font-style: normal;
  font-size: 1.8rem;
  font-family: var(--sans);
}

table.standard td {
  padding: 2px 5px;
  background-color: #fff;
  vertical-align: middle;
}

table.mms-pack>tbody>tr>td {
  text-align: center;
}

.lede-special-date {
  font-family: var(--sans);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.8rem;
  color: var(--gray);
  font-weight: 400;
}

.lede-special-date em {
  font-style: italic;
}

.updated-date {
  font-size: 1.4rem;
  white-space: pre-wrap;
}

div#header_tagline {
  font-family: var(--sans);
  font-size: 1.6rem;
  color: var(--text-color);
  margin-bottom: 10.0rem;
  padding-left: 3.0rem;
  padding-right: 3.0rem;
}

div.hero-title-image {
  height: 370px;
  background-position: center;
  background-size: cover;
}

h1.hero-title {
  font-size: 6.4rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  margin-top: -4.7rem;
  margin-bottom: 3.0rem;
}

span.hero-title {
  background-color: #fff;
  box-shadow: 7px 0 0 #fff, -7px 0 0 #fff;
}

.dialog { margin: 2.0rem 11.0rem 2.0rem 8.0rem; }

.dialog p { margin-bottom: 1.0rem; }

.dialog .name {
  left: -2.0rem;
  letter-spacing: 0.1rem;
  margin-right: -1.0rem;
  position: relative;
  text-transform: uppercase;
  font-weight: 500;
}

/* @group #footer */

#footer {
  margin-top: 5.0rem;
  margin-bottom: 5.0rem;
  color: #555;
  padding-top: 2.5rem;
  border-top: 1px solid #ccc;
  font-style: normal;
  line-height: 1.5;
  font-size: 1.5rem;
  font-family: var(--sans);
}

#footer .copyright {
  /*margin-top: 25px;*/
}

#footer form {
  margin-top: 2.0rem;
}

#footer .search-title {
  margin-top: 1.0rem;
}

#footer ul.social-icons {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

#footer ul.social-icons span.fa {
  margin-right: 0.3rem;
}

#footer ul.social-icons span.fa-envelope {
  margin-right: 0.4rem;
}

#footer ul.social-icons span.fa-twitter {
  margin-right: 0.1rem;
}

#footer .social-icons>li {
  /*float: left;
  width: 50%;*/
  display: inline-block;
  padding-left: 1.0rem;
}

#footer .social-icons a.twitter:hover {
  color: #00ace4;
}

#footer .social-icons a.instagram:hover {
  color: #125688;
}

#footer .social-icons a.rss:hover {
  color: #f60;
}

#footer .version {
  margin-right: 1.1rem;
  margin-top: -1.4rem;
  position: relative;
  z-index: -1;
  line-height: 1;
  font-size: 1.2rem;
  font-style: normal;
}

@media (min-width: 768px) {
  #footer .version {
    margin-right: 1.7rem;
  }
}

#footer #footer-bottom {
  /*background: url(http://i.sixfoot6.org/images/bg-border-h.gif) transparent 0 0 repeat-x;*/
  border-top: 1px solid #ccc;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}

#footer ul.links {
  list-style: none;
  padding: 0;
}

#footer ul.links li {
  float: left;
  width: 50%;
}
/* @end */

/* @group .navbar */

.navbar {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 0;
  min-height: 0;
  margin-top: 1.0rem;
  margin-bottom: 0.5rem;
  margin-left: 0;
  margin-right: 0;
  border-top: none;
  /*border-bottom: 1px solid #ccc;*/
  border-bottom: 0;
  border-right: none;
  border-left: none;
  background-color: #fff;
}

.navbar-default .navbar-brand {
  font-weight: 600;
  font-size: 2.6rem;
  color: #000;
  padding: 17px 15px 0 15px;
  letter-spacing: 1px;
}

.navbar-default .navbar-nav>li>a {
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--text-color);
  padding-top: 1.7rem;
  padding-bottom: 1.3rem;
  letter-spacing: 0.25px;
}

.navbar-default a.navbar-brand:hover {
  color: var(--text-color);
}

.navbar-default .navbar-nav>li>a:hover {
  color: #9a0018;
}

/* @end */

#sidebar {
  font-size: 1.6rem;
}

#sidebar h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: .5rem;
}

#sidebar .item {
  margin-bottom: 5.0rem;
  font-family: var(--sans);
}

.lede-photo {
  border: 1px solid #666;
}

#page-index .post {
  margin-bottom: 5.0rem;
}

#page-index .post-hr {
  margin-top: 0;
  margin-bottom: 5.0rem;
  border-top: 1px dashed #bbb;
}

#page-single .post-footer {
  margin-top: 6.0rem;
}

#page-single .large-photo {
  margin-bottom: 4.0rem;
  border: 1px solid #666;
  max-width: 945px;
}

#page-single .photo-1170 {
  margin-bottom: 4.0rem;
  border: 1px solid #666;
}

#page-single .footer {
  margin-top: 7.0rem;
  margin-bottom: 7.0rem;
}

#page-index .standard .meta,
#page-index .quote .meta,
#page-single .meta {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 2.0rem;
  margin-top: 2.0rem;
  line-height: 1.4;
  color: var(--gray);
  letter-spacing: normal;
}

#page-single .sharing {
  text-align: center;
}

#page-index .standard .meta a,
#page-index .standard .meta a:hover,
#page-index .quote .meta a,
#page-index .quote .meta a:hover {
  color: #777;
  text-decoration: none;
}

#page-index .standard .meta em,
#page-single .meta em {
  font-style: normal;
  text-transform: lowercase;
}

.meta .date {
  float: left;
  margin-top: 0.8rem;
  margin-right: 5.0rem;
  margin-left: 0.1rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#page-index .navigation a {
  /*padding: 8px 20px;
  background: #e5e5e5;
  border-radius: 5px;*/
  color: #444;
  display: inline-block;
}

#page-index .navigation a:hover {
  border: none;
  text-decoration: none;
}

#page-index .navigation a i {
  /*padding-left: 7px;*/
  font-size: 1.4rem;
  position: relative;
  top: -0.1rem;
}

#page-index .navigation .previous {
  margin-right: 4.0rem;
}

#page-single .bw-title-photo {
  height: 300px;
  padding-top: 7.0rem;
  text-align: center;
  margin-bottom: 4.0rem;
  padding-left: 2.0rem;
  padding-right: 2.0rem;
}

#page-single .bw-title-photo>h1 {
  color: #fff;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.80);
}

#page-featured, #page-photo {
  max-width: 970px;
  margin-right: auto;
  margin-left: auto;
}


/* @group .toc */

.toc {
  border: 1px solid #999;
  float: right;
  margin: 0.5rem 0 0.2rem 4.0rem;
  width: 25.0rem;
  padding: 1.0rem;
  text-align: center;
  font-size: 1.6rem;
  font-family: var(--sans);
}

.toc p {
  margin-bottom: 0.5rem;
}

.toc ol {
  margin: 1.0rem 0;
  padding-left: 3.0rem;
}

.toc ul {
  padding-left: 1.5rem;
  margin: 0 0.5rem 1.0rem 0.5rem;
  text-align: left;
}

.toc ul li {
  margin-bottom: -0.2rem;
}

.toc strong {
  font-size: 1.8rem;
  font-weight: 600;
}

/* @end */

.alignright {
  float: right;
  margin: 0.5rem 0 0.5rem 2.0rem;
}

.alignleft {
  float: left;
  margin: 0.5rem 2.0rem 0.5rem 0;
}

.cattags {
  font-size: 1.3rem;
  margin-bottom: 0;
}

.posted-date {
  font-style: italic;
}

/* @group .pagination3 */
.pagination3 {
  margin: 2.0rem 0 4.0rem;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.pagination3 span, .pagination3 a {
  display: block;
  float: left;
  margin: 0.2rem 0.2rem 0.2rem 0;
  padding: 0.6rem 0.9rem 0.5rem 0.9rem;
  text-decoration: none;
  width: auto;
  color: #fff;
  background: #555;
  border-radius: 3px;
}

.pagination3 a:hover{
  color: #fff;
  background-color: #af181b;
  border-bottom: none;
}

.pagination3 .current{
  padding: 0.6rem 0.9rem 0.5rem 0.9rem;
  background: #999;
  color: #fff;
}
/* @end */

/* @group #download */
#download {
  text-align: center;
  margin: 3.0rem auto;
  font-size: 1.4rem;
}

#download a.download-button {
  border-radius: 3px;
  background: #ffc435;
  border: none;
  color: #000;
  display: inline-block;
  padding: 1.0rem 3.0rem;
  letter-spacing: 1px;
  width: 395px;
  font-size: 1.4rem;
  font-family: var(--sans);
}

#download a.download-button:hover {
  background: #9a0018;
  text-decoration: none;
  border: none;
  color: #fff;
}

#download span.onum {
  font-feature-settings: normal;
}

/* @end */

.footnote {
  font-size: 1.5rem;
}

.footnote ol li {
  margin-bottom: 1.0rem;
}

/* @group .quote */

.quote-text {
  font-style: normal;
  line-height: 4.2rem;
  font-size: 3.6rem;
  font-weight: 400;
  margin-left: 6.0rem;
  margin-right: 4.0rem;
}

.quote-big {
  font-size: 9.6rem;
  font-style: normal;
  float: left;
  margin-top: 2.2rem;
  margin-left: -6.5rem;
}

.quote-source {
  font-family: var(--sans);
  font-size: 1.7rem;
  font-weight: normal;
  font-style: normal;
  line-height: 1.4;
  margin: 1.5rem 0 5.0rem 5.0rem;
}

/* @end */

/* @group .share-button-mini2 */

.share-buttons-mini2 {
  overflow: hidden;
  margin-top: 3.0rem;
  margin-bottom: 3.0rem;
}

.share-button-mini2 {
  margin-right: 0.5rem;
  display: inline-block;
}

.share-button-mini2 a {
  font-family: var(--sans);
  font-size: 1.6rem;
  color: #fff;
  padding: 1.0rem 1.4rem 0.8rem;
  line-height: 3;
}

.share-button-mini2 a:hover {
  text-decoration: none;
}

.share-button-mini2 a i {
  padding-right: 0.7rem;
  font-size: 1.8rem;
  vertical-align: -1px;
}

.share-button-mini2 a.twitter {
  background-color: #4099ff;
}

.share-button-mini2 a.twitter:hover {
  background-color: #0d7eff;
}

.share-button-mini2 a.facebook {
  background-color: #3b5998;
}

.share-button-mini2 a.facebook:hover {
  background-color: #2d4373;
}

/* @end */

.byline {
  font-size: 1.4rem;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 2.0rem;
  margin-top: -1.0rem;
  color: #666;
}

.byline a {
  color: #666;
  text-decoration: none;
  border-bottom: 1px dotted #ccc;
}

.byline a:hover {
  border-bottom: 1px solid #9a0018;
  color: #9a0018;
}

img.desaturate {
  filter: grayscale(90%);
  -webkit-filter: grayscale(90%);
}

code {
  font-size: 1.2rem;
}

.btt {
  font-size: 1.3rem;
}

/*
.dropcap {
  color: #9a0018;
  float: left;
  font-family: Georgia;
  font-size: 75px;
  line-height: 60px;
  padding-top: 4px;
  padding-right: 8px;
  padding-left: 3px;
}
*/

.scrollup {
  border-radius: 5px 0 0;
  color: #fff;
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0.8rem 1.0rem;
  position: fixed;
  bottom: 0;
  right: 0;
  display: none;
  background-color: #666;
  cursor: pointer;
}

.scrollup b,
.scrollup strong {
  font-weight: 400;
}

.clear {
  clear: both;
}

.calendar-icon {
  margin-right: 0.5rem;
  font-size: 85%;
  position: relative;
  top: -1px;
}

#page-photo .thumbnail {
  background-color: inherit;
}

::selection { background-color: #e7e7e7; }