/** Global styles overwritten **/
/*Flex grid variable*/
/*End Flex grid variable*/
/** Global Variables **/
/** Colors **/
/** leading and vertical variables **/
/** Local variables **/
/** Local variables **/
/**
 * Mixin for using "rem" units in a backwards-compatible way.
 *
 * `@include rem(font-size, 3.2);`
 */
/**
 * Mixin to supply basic font information for headings and titles.
 * The final `$use-serif` attribute is mostly for internal use, making
 * it possible to reuse code to easily apply heading and title styles.
 *
 * `@include ct-heading(1.3, 8, 1.5);`
 * - OUTPUTS -
 * font-weight: 8; 
 * line-height: 1.3;
 * font-size: 1.5 // plus the calculated pixels for browser
 * // that don't support rem units
 * 
 */
/**
 * Mixin to supply basic font information for titles. The only difference
 * between `ct-title` and `ct-heading` is that `ct-title` always uses
 * the current `$font-sans-serif`.
 *
 * `@include ct-title(1.3, 8, 1.5);`
 */
/**
 * Mixin to calculate the width of a grid item.
 *
 * `@include calc-width(3); // (60 * 3) + (20 * (3 - 1)) = 180 + 40 = 240`
 */
/** 
* Mixin for generating fonts
* @include font(c,400);
*	type: c,cs,g;
*	weight: font weight;
*/
body {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 400;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  text-decoration: underline;
}

.l-wrap {
  width: 100%;
  min-width: 1020px;
  clear: both;
  overflow: hidden;
}

.l-page {
  margin: 25px auto 0 auto;
  padding: 0 20px;
  width: 940px;
  background: #fff;
}

.l-outer {
  width: 100%;
  min-width: 1000px;
}

.l-content {
  width: 640px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 20px;
}

.box-sizing {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding-right: 20px;
}

.inner-content {
  margin: 0 auto;
  width: 940px;
}

.l-rightnav {
  width: 300px;
}

.l-rightnav li.arrow-links {
  float: left;
  width: 90%;
}

.l-grid_item {
  margin-right: 20px;
}

.l-content .l-grid_item.l-four:nth-child(even) {
  margin-right: 0;
}

.l-tbl_item {
  position: relative;
  padding-bottom: 80px;
  padding-right: 20px;
}

.l-tbl_item-first {
  margin: 0;
}

.l-tbl_item-last {
  margin-right: 0;
  padding-right: 0;
}

.l-two {
  width: 140px;
}

.l-three {
  width: 220px;
}

.l-four {
  width: 300px;
}

.l-five {
  width: 380px;
}

.l-six {
  width: 460px;
}

.l-eight {
  width: 620px;
}

.l-nine {
  width: 700px;
}

.l-full {
  width: 100%;
}

.body-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.article-body {
  max-width: 600px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 600px;
          flex: 0 0 600px;
}

.series-template .article-body {
  max-width: 690px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 690px;
          flex: 0 0 690px;
}

.aside-left + .article-body {
  max-width: 600px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 600px;
          flex: 0 0 600px;
}

.article-body.full {
  max-width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.aside-left, .aside-right {
  width: 140px;
  max-width: 140px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 140px;
          flex: 0 0 140px;
}

.series-template .aside-right {
  max-width: 220px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
}

.w-80 {
  max-width: 80px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
}

.w-220 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
  max-width: 220px !important;
}

.w-270 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 270px;
          flex: 0 0 270px;
  max-width: 270px !important;
}

.w-380 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 380px;
          flex: 0 0 380px;
  max-width: 380px !important;
}

.w-400 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
  max-width: 400px !important;
}

.waterfall-list {
  list-style: none;
}

#body .waterfall-list {
  padding-left: 0 !important;
}

#body .image {
  width: 100vw !important;
  margin-left: calc(-50vw + 52%);
}

.button_yellow {
  background: #f8e405;
}

.button_yellow > a {
  color: #000;
  display: block;
}

.button_yellow > a:hover {
  text-decoration: none;
}

a.color-blue {
  color: #0099d2;
}

/* Headings and Titles */
.heading,
.title,
.theme-black .title-white {
  display: block;
}

.heading > a,
.title > a,
.theme-black .title-white > a {
  color: #000;
  text-decoration: none;
}

.heading > a:hover,
.title > a:hover,
.theme-black .title-white > a:hover {
  text-decoration: underline;
}

.title-2 {
  line-height: 1;
}

.heading {
  text-transform: uppercase;
}

.heading-xs {
  color: #999;
  display: block;
  font-size: 0.7rem;
}

.heading-xs a {
  color: #999;
}

.heading-topic,
.heading-collection {
  font-weight: 400;
  line-height: inherit;
  font-size: 2.4rem;
  letter-spacing: -.03em;
}

.heading-collection {
  line-height: 1.1;
}

.heading-section-xl {
  letter-spacing: -.065rem;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  font-size: 2.25rem;
}

.section-heading-sm {
  font-size: 2rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 100;
  letter-spacing: -1.8px;
  line-height: 1;
}

/* End "Headings and Titles" */
#body a.title, #body .theme-black a.title-white, .theme-black #body a.title-white, a.title, .theme-black a.title-white {
  color: #000;
  text-decoration: none;
}

#body a.title:hover, #body .theme-black a.title-white:hover, .theme-black #body a.title-white:hover, a.title:hover, .theme-black a.title-white:hover {
  text-decoration: underline;
}

.article-deck {
  font-size: 0.9rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  line-height: 1.15;
  margin-top: 4px;
}

.article-deck a {
  color: #000;
}

.article-byline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.15;
  margin-top: 7px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.article-byline .author-image {
  border-radius: 30px;
  margin-right: 12px;
}

.article-byline a {
  color: #000;
}

.article-byline a:hover {
  text-decoration: underline;
}

.section-content-heading {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 400;
  color: #999;
  border-bottom: 2px solid #000;
  overflow: hidden;
  font-size: 1.6rem;
}

.text-sm {
  font-size: 0.7rem;
}

.tagline, .post-publication {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
}

.tagline {
  color: #9a9a9a;
}

.post-publication {
  color: #999;
}

.title-serif {
  font-size: 1.8rem;
}

.desc {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
}

.read-more {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: #d51b1e;
  text-transform: uppercase;
}

.txt {
  font-size: .8rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
}

.postdate span.seprator {
  font-weight: 100 !important;
}

.postdate span {
  padding: 0 5px;
  position: relative;
  margin: 0;
  font-weight: 100;
  font-size: 1rem;
}

.postdate .date-seprator {
  position: relative;
  font-size: 1rem;
  font-weight: 700;
}

.byAuthor {
  font-size: 0.7rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 10px;
  display: block;
  color: #999;
}

.heading-archives {
  font-size: 0.75rem;
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif;
  font-weight: 400;
  letter-spacing: -0.1px;
}

.heading-main {
  font-size: 3.6rem !important;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 400;
  letter-spacing: -0.1px;
  color: #d51b1e;
}

.sponsor-search_slug {
  color: #999;
  font-size: 0.75rem;
}

.text-break {
  word-break: break-word;
}

#sliding-carousel .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  cursor: default;
}

.headings-blue {
  color: #0099d2;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
}

.headings-black {
  font-weight: 700;
  font-size: 0.75rem;
}

.flag-news {
  background-position: 0 -598px;
}

.item_img {
  display: block;
  margin-bottom: 10px;
}

.more-right {
  padding-right: 10px;
  right: 0;
  bottom: 4px;
}

.more-leftside {
  padding-right: 10px;
}

.more-left {
  padding-left: 10px;
  padding-right: 0;
  right: 40px;
  bottom: 4px;
  background: url(/ct/channel/img/arrow_black_left.gif) left center no-repeat;
}

a.more-left {
  color: #000;
}

.more-rightView > a.more {
  bottom: 6px;
  right: 0;
  padding: 0 10px;
  color: #d51b1e !important;
}

.more-rightView a.no-image {
  padding-right: 0;
  background: #fff;
}

.section-issues .archives-user_text {
  font-size: 0.85rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

.item_commentCount {
  position: absolute;
  left: 10px;
  bottom: 0;
  text-transform: uppercase;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
}

.item_commentCount > a {
  color: #000;
  text-decoration: none;
}

.overlay-ajax {
  position: absolute !important;
  background: #fff url(/system/img/ajax-loader.svg) center center no-repeat !important;
  height: 100vh;
}

.sponsor-expand {
  background: #d51b20;
  height: 20px;
  text-align: center;
}

.articleImg {
  width: 620px;
  overflow: hidden;
}

.listed-links_bold {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
}

.l-three .l-grid {
  float: none;
}

h2 .js-selectExplore {
  margin: 18px 0 10px;
}

.firstContainerList .byline {
  font-weight: 500;
}

.limitBy {
  width: auto !important;
  padding-right: 10px;
}

.tabularData th {
  background: #000;
  padding: 3px 5px;
}

.tabularData th.first-column {
  text-align: left;
  padding-left: 10px;
  width: 210px;
}

th a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.75rem;
}

.tabularData td {
  padding: 16px 0 8px 10px;
  vertical-align: top;
  text-align: center;
  font-size: 0.8rem;
}

.tabularData td .reviewPagingRight a {
  color: #d51b1e;
}

.tabularData td.firstColumn {
  text-align: left;
  padding-left: 0;
  width: 250px;
}

#books .tabularData td.firstColumn {
  width: 290px;
}

td.topData {
  padding-bottom: 0;
  padding-left: 0;
}

td.topData .reviewPagingRight {
  padding-right: 0;
}

.imageWrapper {
  margin-bottom: 20px !important;
}

/* Needed for Topics Browse Page & Right side content */
.arrow-links {
  background: url(/ct/channel/img/bullet_arrow.gif) no-repeat left 8px;
  padding-left: 10px;
  margin-bottom: 5px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
}

.section-waterfall-item .arrow-links, .alpha .arrow-links {
  margin-bottom: 10px;
}

/* Needed for Newsfeed Browse Page */
.previousLink,
.nxtLink {
  position: absolute;
}

.previousLink {
  left: 0;
}

.nxtLink {
  right: 0;
}

.heading-section-xl .archive-cue {
  top: 10px;
  right: -30px;
}

/*use this class to display grid blocks for example homepage */
.applyBlock {
  display: block;
  vertical-align: top;
  float: none;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 15px !important;
}

.applyBlock span {
  float: none !important;
}

.l-grid .l-grid_item.applyBlock {
  display: inline-block;
}

.ft-35 .applyBlock {
  margin-bottom: 5px !important;
  display: inline-block;
}

.caption, .table-caption,
.image-caption, #body .image-caption, #body .caption, #body p.caption {
  color: #878787;
  font-size: 0.7rem;
}

.pagingSort {
  position: relative;
  top: -2px;
}

.pagingSort span {
  padding-right: 8px;
  padding-top: 2px;
}

.reviewsPaging {
  width: 100%;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 4px;
}

.reviewsPaging:first-child .custom-form-select_searchgoto {
  margin-top: -3px;
}

/*css for columnist page*/
.category-description-sm {
  margin-top: 3px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
}

.read-author-bio {
  line-height: 1;
  display: block;
  text-align: center;
  color: #0099d2;
  font-size: 0.75rem;
}

.read-author-bio:hover {
  text-decoration: underline;
  color: #0099d2;
}

.blockContent .headings-black {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
}

/*styles for Virtual Collection page*/
.headings-section_views {
  border-bottom: 1px solid #0099d2;
  font-weight: 700;
  margin-bottom: 4px;
  padding-bottom: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.headings-section_views a {
  color: #0099d2;
}

.author-name {
  width: 150px;
  line-height: 1;
  font-weight: 700;
  text-align: right;
  font-size: 0.9rem;
}

.author-name a {
  color: #0099d2;
}

.aboutAuthor {
  margin-top: -20px;
  background: #fff;
  padding-left: 10px;
}

.view-first_item {
  float: none;
}

/*styles for Virtual Collection page*/
.category-description-md {
  font-family: "Gotham A", "Gotham B", sans-serif;
  line-height: 1.4;
  font-size: 0.85rem;
}

.columnistListing {
  padding-left: 15px;
  overflow: hidden;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
}

.columnistListing a {
  font-size: 0.75rem;
}

.section-books_awards li {
  width: 100%;
  margin: 10px 0;
}

.blockContent {
  width: 100%;
  display: inline-block;
}

.l-tbl .slug, .l-tbl .theme-black .slug-white, .theme-black .l-tbl .slug-white {
  width: 100%;
}

.section-top > .nav-topics {
  margin-bottom: 20px;
}

.adjective {
  position: relative;
  bottom: 60px;
}

.purchaseLinks > a {
  text-transform: uppercase;
  color: #d51b1e;
  padding-right: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 0.75rem;
}

.listenLink {
  border-right: 1px solid #ccc;
}

.category-description-lg {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif;
  line-height: 1.7em;
  font-size: 1rem;
}

.category-description-lg a {
  color: #000;
  text-decoration: underline;
}

.category-description-lg a:hover {
  text-decoration: none;
}

.category-description-lg strong {
  font-weight: 600;
}

.shoptext {
  font-size: 0.92rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

.shoptext a {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  line-height: 1;
  font-size: 1.25rem;
}

#body.section-faq p {
  padding-right: 15px;
}

#body .inner-rightnav_item .unlockButton a:hover {
  text-decoration: none !important;
}

.section-readnext {
  height: 124px;
  font-size: 0;
}

.section-readnext img {
  vertical-align: top;
}

.section-readnext a img {
  width: 220px;
}

.section-flag .section-readnext {
  height: auto;
}

.section-flag .section-readnext a img {
  width: auto;
}

a.descending,
a.ascending:hover {
  background: url(/ct/channel/img/icon_arrow_sm.png) no-repeat right center;
  padding-right: 10px;
}

a.ascending,
a.descending:hover {
  background: url(/ct/channel/img/icon_arrow_sm_reverse.png) no-repeat right center;
  padding-right: 10px;
}

.author-bio > p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.buttons_link-item {
  text-transform: uppercase;
  padding: 2px 5px;
  display: inline-block;
  vertical-align: top;
  float: none;
  margin: 4px 0 6px 0;
  font-size: 0.75rem;
}

.buttons_link-item a {
  color: #d51b1e;
  text-decoration: none;
}

.buttons_link-item:hover {
  background: #fbff0a;
}

.section-vault_in .link-archives {
  font-size: 2.15rem;
}

.button_yellow-md {
  margin: 3px 0 0 10px;
  font-weight: bold;
  font-size: 0.7rem;
}

.section-vault {
  background: #ebeded url(/ct/channel/img/bg_stripes.gif);
  padding: 20px 12px 15px;
  overflow: hidden;
}

.section-vault p {
  font-size: 0.85rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  line-height: 1.4;
}

.link-archives {
  color: #d51b1e;
  font-weight: 100;
  display: block;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 2rem;
}

.link-archives_black {
  color: #000000;
}

/*styles added for Magazine and year pages*/
.archives-section_covers {
  text-align: center;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
}

.archives-section_covers .archives-section-links_sm a {
  color: #d51b1e !important;
}

.archives-dropdown_165 {
  width: 165px;
}

.archives-dropdown_125 {
  width: 125px;
}

.archives-intro_centered {
  border: none;
  font-size: 1.4rem;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 700;
}

.archives-intro_left {
  font-style: italic;
  border: none;
  letter-spacing: 0.7px;
  font-size: 1.125rem;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 700;
}

.sister-publication .more-right {
  left: 0px !important;
}

.archives-toc_heading {
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 12px 0;
  color: #000;
  letter-spacing: -0.03em;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 400;
  line-height: 1.05;
  font-size: 17px;
  letter-spacing: 0.1px;
  position: relative;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.archives-toc_heading .archive-cue {
  font-size: 1.6rem;
  line-height: 1;
  top: -20px;
  right: 20px;
}

.archives-toc_accessicon {
  vertical-align: baseline;
  margin-left: 5px;
}

.archives-toc_linedText {
  background: url("/ct/channel/img/bg_archives_italics.gif") no-repeat center;
  text-align: center;
  font-style: italic;
}

.archives-user_text span {
  font-size: 0.8125rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  float: left;
}

.archives-user_text .applyBlock {
  font-size: 0.75rem;
}

.archives-user_text a {
  text-decoration: underline;
}

.archives-user_text a:hover {
  text-decoration: none;
}

.issue-block-content .next,
.issue-block-content .previous {
  background: #000;
  display: inline-block;
  padding: 29px 8px;
  right: 0;
  top: 50%;
  position: fixed;
}

.issue-block-content .next img,
.issue-block-content .previous img {
  vertical-align: middle;
}

.issue-block-content .previous {
  right: inherit;
  left: 0;
}

.issue-block-content .previous img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.issue-block-content .content-inner {
  display: inline-block;
  background: #000;
  color: #fff;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 20px;
}

.issue-block-content .content-inner span {
  font-size: 20px;
  padding: 22px 10px 25px 40px;
  line-height: 18px;
  font-weight: 500;
  display: block;
}

.issue-block-content .content-inner .next-inner {
  padding: 22px 10px 25px 40px;
  text-align: right;
}

.issue-block-content .right-content {
  position: absolute;
  top: 0;
  right: 29px;
  width: 150px;
  left: 30px;
}

.issue-block-content .left-content {
  top: 0;
  position: absolute;
  left: 29px;
}

.issue-block-content .left-content:hover {
  text-decoration: none;
}

.previous .left-content {
  width: 150px;
  left: -147px;
}

.previous .left-content .shadow img {
  -webkit-transform: inherit;
          transform: inherit;
  margin-right: 10px;
}

.issues-filter {
  background: #ebeded;
  position: relative;
  left: auto;
  margin-bottom: 10px;
  height: 24px;
}

.issues-filter li {
  list-style: none;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}

.issues-filter li:last-child {
  float: right;
  margin: 2px;
}

.issues-filter li:last-child label {
  vertical-align: middle;
  font-weight: 600;
  font-size: 0.75rem;
  margin-right: 2px;
}

.issues-filter li a {
  padding: 5px 10px;
  display: inline-block;
}

.issues-filter li a:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}

.issues-filter li .current {
  background: #000;
  color: #fff;
  text-decoration: none;
}

.issues-filter li .current:after {
  content: "";
  background: url("/ct/channel/img/icon_triangle-lg-black.png") no-repeat center;
  position: absolute;
  height: 17px;
  width: 15px;
  margin: auto;
  top: 30px;
  right: 0;
  bottom: 0;
  left: 0;
}

@-moz-document url-prefix() {
  .issues-filter li .current:after {
    top: 28px;
  }
  .issues-filter li:last-child {
    float: right;
    margin: 3px 2px;
  }
}

/*styles end for year page*/
.media-rating, .book-rating {
  font-size: 0.75rem;
}

.media-rating img, .book-rating img {
  margin-top: 5px;
}

.section-books_awards a {
  font-weight: 800;
}

.tabularData .bottomData {
  padding-left: 0;
  padding-bottom: 0;
}

.media-title {
  text-decoration: none;
  color: #000;
  font-size: 0.9rem;
}

.media-title:hover {
  text-decoration: underline;
}

.reviewGridContainer {
  padding-top: 20px;
}

.archives-toc_sections .slug-category {
  font-weight: 100;
  line-height: 1.1;
  font-size: 2rem;
}

.section-elements .slug-category {
  font-weight: 500;
  font-size: 1.25rem;
}

.section-elements .author-name {
  font-weight: 400;
  font-size: 0.75rem;
}

.section-issues .custom-buttons {
  display: inline-block;
  vertical-align: top;
}

.author-bio .top-section-search {
  display: inline-block;
}

.content-full {
  width: 980px;
  margin-left: -20px;
  margin-bottom: 5px;
}

.section-article .limitBy {
  margin-top: 8px;
}

.subscribe-rss {
  font-size: 0.75rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
}

.subscribe-rss a {
  text-decoration: underline;
}

.rss-tabular-data {
  border: 0;
  vertical-align: middle;
}

.rss-tabular-data .rssFirstColumn {
  width: 22px;
  padding-top: 4px;
}

.rss-tabular-data .rssFirstColumn img {
  position: relative;
  top: 4px;
}

.rss-tabular-data .rssSecondColumn {
  width: 250px;
  font-family: verdana, arial, sans-serif;
  font-size: 0.7rem;
}

.rss-tabular-data .rssThirdColumn {
  font-family: arial, verdana, sans-serif;
  font-size: 0.7rem;
}

.moreRssLink .more {
  right: 20px;
}

.l-tbl-section-main .slug, .l-tbl-section-main .theme-black .slug-white, .theme-black .l-tbl-section-main .slug-white {
  height: auto;
  min-height: 20px;
}

#poll {
  width: 100%;
}

#poll iframe {
  width: 620px;
  margin-top: 20px;
}

.collection-links .more {
  position: relative;
}

.ct-studies .left {
  width: 145px;
  float: left;
  padding-left: 10px;
}

.ct-studies .right {
  width: 135px;
  float: left;
}

.viewMore {
  clear: left;
  padding-top: 10px;
}

.homepage-flag {
  display: none;
}

.article-byline img {
  margin: 0 5px;
  vertical-align: middle;
}

.moreIssue ul.l-grid {
  width: 100%;
}

.moreIssue ul.l-grid li {
  width: 202px;
  margin: 0 15px;
}

.moreIssue ul.l-grid .u-right {
  float: right !important;
  text-align: right;
}

.main-waterfall-section .title, .main-waterfall-section .theme-black .title-white, .theme-black .main-waterfall-section .title-white {
  display: inline;
}

.main-waterfall-section .subscriber-access-notifier {
  margin-left: 5px;
}

.main-waterfall-section .title-block {
  display: block;
}

.main-waterfall-section .byline-block {
  padding-left: 80px;
}

.book-rating {
  padding-left: 80px;
  font-size: 0.8rem;
}

.expandContent-sm {
  height: auto;
  padding-bottom: 20px;
}

.expandContent-sm .ctSocialShare span {
  color: #676a6b;
  font-size: 1em;
}

.nav-head-red {
  top: 5px;
  position: relative;
}

.featured_slug-red a {
  font-size: 1rem;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  color: #d51b1e;
}

.featured_lock {
  position: relative;
  top: 4px;
}

.social_icons {
  height: 45px;
}

.alignment_top {
  position: relative;
  bottom: 2px;
}

#beaconAdsDiv {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
}

.flag-sponsored {
  position: absolute;
  top: 0;
}

.excerpt {
  font-size: 0.75rem;
  line-height: 1.5;
  padding: 25px 0 0 30px;
}

/* Styles for Article Amazon section */
.review-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.short-desc {
  clear: both;
  font-size: 0.85rem;
}

.short-desc span a {
  text-decoration: underline;
}

.short-desc span a:hover {
  text-decoration: none;
}

.sticky-section {
  position: fixed;
  top: 0;
  width: 300px;
}

.nav-topics a.active {
  border-bottom: 3px solid #d51b1e;
  color: #d51b1e;
}

.main-waterfall-section {
  overflow: hidden;
}

.main-waterfall-section .title-4_bolded {
  font-weight: 600 !important;
  line-height: 0.9;
}

.main-waterfall-section .book-rating {
  padding: 0 !important;
}

.subscription-prompt {
  padding-bottom: 20px;
}

.purchase {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 0.75rem;
}

.purchase a {
  text-decoration: underline;
}

.seprator {
  color: #999;
}

.seprator:hover {
  text-decoration: none !important;
}

.slug:hover .seprator, .theme-black .slug-white:hover .seprator {
  text-decoration: none !important;
}

.heading-collection {
  font-size: 2.4rem !important;
}

.heading-collection .js-selectExplore {
  margin: 6px 0 10px !important;
}

.nav-topics span.seprator {
  margin: 0;
  font-size: 1rem;
}

.border-bottom-gray h2.page-heading, .border-bottom-gray .theme-black h2.page-heading-white, .theme-black .border-bottom-gray h2.page-heading-white {
  margin-top: -10px;
}

.subscriber-icon {
  margin-left: 8px;
}

.section-article .section .headings-small {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
}

.section-article .topic-head {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
}

.section-border-top div.headings-black {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
}

.section-moreFrom-Issue .more-rightView > a.more {
  bottom: 11px !important;
}

.l-rightnav span.spacer-bottom-15 {
  letter-spacing: 0px;
}

.description {
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

.description a.red-color {
  text-decoration: underline;
}

.description a.red-color:hover {
  color: #000;
}

.nav-topics {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

.collection-links .nav_label {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.1rem !important;
}

.slug-style-overwrite .slug, .slug-style-overwrite .theme-black .slug-white, .theme-black .slug-style-overwrite .slug-white {
  font-size: 0.75rem;
  color: #999 !important;
}

.section-news-reporting .news-reporting-item .blog-date {
  color: #d51b1e;
  -webkit-font-smoothing: antialiased;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
  position: relative;
}

.section-news-reporting .news-reporting-item .blog-date::after {
  content: "";
  position: absolute;
  top: 10px;
  height: 2px;
  width: 100%;
  display: block;
  background: #000;
  z-index: 0;
}

.section-news-reporting .news-reporting-item .blog-date span {
  padding-right: 10px;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.section-news-reporting .news-reporting-item:hover .blog-date:after {
  background: #d51b1e;
}

.section-news-reporting .news-reporting-item:hover a {
  color: #d51b1e;
  text-decoration: none;
}

.section-news-reporting .news-reporting-item:hover a:hover {
  text-decoration: none;
}

.promo-ad {
  width: 940px;
}

.promo-ad a {
  float: left;
}

.slug .minute, .theme-black .slug-white .minute {
  color: #d51b1e !important;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 0;
}

.follow-links {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  list-style: none;
}

.follow-links li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.follow-links a {
  color: #d51b1e;
  text-decoration: underline;
}

.follow-links a:hover {
  text-decoration: none;
}

.follow-links a img {
  vertical-align: middle !important;
}

.moreFrom-Issue {
  width: 700px !important;
}

.expand-content {
  width: 100%;
}

.cue {
  width: 97px;
  height: 97px;
  display: inline-block;
  padding: 48px 0 23px 0;
  text-align: center;
  color: #fff;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 200;
  font-style: italic;
  font-size: 22px;
  line-height: 1.1;
  background: url(/ct/channel/img/archivesbadge.svg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
}

.archive-blurb img {
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
}

.archive-blurb .cue {
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.blurb {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 0.85rem;
}

.blurb em {
  font-family: "Gotham A", "Gotham B", sans-serif;
}

.tooltip-container {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 0.75rem;
  background: #fff;
  color: #000;
  border: 1px solid #bfbfbf;
  width: 195px;
  display: block;
  font-weight: 400;
  word-wrap: break-word;
}

.article-divider {
  color: #999999;
  font-size: 0.6875rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

.backToTop {
  background-image: url(/ct/channel/img/img_sprite_backtotop.png);
  cursor: pointer;
  float: right;
  height: 51px;
  margin-top: 10px;
  width: 53px;
}

.theme-black .backToTop, .theme-dark .backToTop {
  background-image: url(/ct/channel/img/img_sprite_backtotop_reversed.png);
  background-size: cover;
}

.backToTop:hover {
  background-position: 0 -51px;
}

.article-fullwidth {
  width: 100%;
  text-align: center;
}

.article-fullwidth img {
  max-width: 100%;
}

.subscription-prompt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.subscription-prompt figure {
  margin-right: 20px;
}

.subscription-prompt .txt a {
  text-decoration: underline;
}

.subscription-prompt_content div#body ul {
  list-style: none;
  padding-left: 15px !important;
  margin-bottom: 28px !important;
  direction: ltr;
}

.subscription-prompt_content div#body ul li {
  padding: 0 !important;
  position: relative;
  font-family: "Gotham A", "Gotham B", sans-serif !important;
  font-size: 0.85rem;
  line-height: 1.3 !important;
  list-style: disc;
  direction: ltr;
}

.subscription-prompt_content div#body ul li a:hover {
  text-decoration: none;
}

.article-body .review-box {
  margin-top: 0;
}

.related-topics img {
  vertical-align: middle;
}

.browse-review .topics {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
}

.browse-review select {
  width: auto;
}

.slideshow .slideshow-caption .image-credit {
  text-align: right;
  padding-right: 10px;
}

.social-item + .social-item {
  margin-left: 20px;
}

#body .l-grid {
  padding-left: 0 !important;
}

#body .table-caption, #body .image-caption, #body .caption, #body p.caption {
  margin-top: 5px;
}

@media (min-width: 1166px) {
  .social-nav-item {
    display: none;
  }
}

/*Year Collection Page Web Exclusive*/
.links_txt,
.heading {
  font-size: 0.75rem;
}

.headings-small {
  font-weight: 700;
  font-family: "Gotham A", "Gotham B", sans-serif;
}

.heading-list {
  font-size: 0.75rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
}

.heading-list li {
  display: inline-block;
  margin: 0 18px 0 0;
  font-family: "Gotham A", "Gotham B", sans-serif;
}

.ft-35 a {
  font-size: 30px;
  line-height: 1;
}

/**** Topics Page CSS ***/
.top-hdg-search .heading-topic {
  display: inline-block;
}

.top-hdg-search .top-section-search {
  display: inline-block;
  float: right;
  padding-bottom: 0px;
  padding-top: 15px;
}

/**Topic-Page***/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ui-slider-handle {
    background-size: 56% !important;
    background-position: left 0 center, right 0 center !important;
  }
  .issue-block-content .next,
  .issue-block-content .previous {
    width: 15px;
  }
  .previous .content-inner span {
    padding: 22px 10px 25px 70px;
  }
  .issues-filter li:last-child {
    margin: 2px 2px;
  }
  .newsletterFields {
    display: block !important;
  }
}

.slug-spacer-bottom .slug, .slug-spacer-bottom .theme-black .slug-white, .theme-black .slug-spacer-bottom .slug-white {
  margin-bottom: 5px;
}

.slug-horizotal .slug, .slug-horizotal .theme-black .slug-white, .theme-black .slug-horizotal .slug-white {
  min-height: 15px;
}

.amazon-box .title, .amazon-box .theme-black .title-white, .theme-black .amazon-box .title-white {
  font-size: 1rem;
}

.amazon-box .byline {
  margin-top: 2px;
}

.amazon-box .article-promoSpot,
.amazon-box .article-promoSpot_item {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.3;
}

.amazon-box .article-promoSpot .article-promoSpot_content,
.amazon-box .article-promoSpot_item .article-promoSpot_content {
  padding-top: 20px;
}

.section-popular .slug, .section-popular .theme-black .slug-white, .theme-black .section-popular .slug-white {
  min-height: 15px;
  margin-bottom: 5px;
}

.widget-social {
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.widget-social .twitter-follow-button {
  margin-bottom: 10px;
  margin-right: 5px;
}

.last-item {
  margin: 0px;
}

.search-panel, .full-bg-grey {
  position: relative;
}

.search-panel::before, .search-panel::after, .full-bg-grey::before, .full-bg-grey::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  background: #ebeded;
}

.search-panel::after, .full-bg-grey::after {
  right: auto;
  left: 100%;
}

/**Arabic Language-Page**/
.arabic-text .waterfall-list, .arabic-text .arb-text, .arabic-text .card {
  direction: rtl;
}

.arabic-text .waterfall-list .waterfall, .arabic-text .arb-text .waterfall, .arabic-text .card .waterfall {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.arabic-text .waterfall-list .waterfall-body, .arabic-text .arb-text .waterfall-body, .arabic-text .card .waterfall-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.arabic-text .lang_search {
  direction: ltr;
  margin-right: auto;
}

.arabic-text .article-body-newsletter {
  direction: ltr;
}

/**Recent-blog-forum-our-latest**/
.blogForum h3 a {
  display: inline;
}

.section-main {
  margin-bottom: 40px;
  border-bottom: 6px solid #000;
}

.top-section-search {
  position: relative;
  padding-bottom: 25px;
  clear: both;
}

.top-section-search b {
  padding-top: 4px;
  display: block;
}

.columnistsDropDown > select {
  width: 280px;
}

.subscription-prompt_content #body ul li a, .subscription-prompt_content #body ol li a {
  font-family: "Gotham A", "Gotham B", sans-serif !important;
}

.container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 768px) {
  .container {
    width: 960px;
  }
}

.container-fluid {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
}

.row {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.no-gutter {
  margin-right: 0;
  margin-left: 0;
}

.no-gutter > [class^=col-] {
  padding-right: 0;
  padding-left: 0;
}

[class*=col-] {
  position: relative;
  padding-right: 10px;
  padding-left: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 768px) {
  .col-t {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col-t1 {
    -ms-flex: 0 0 8.33333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col-t2 {
    -ms-flex: 0 0 16.66667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-t3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-t4 {
    -ms-flex: 0 0 33.33333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-t5 {
    -ms-flex: 0 0 41.66667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-t6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-t7 {
    -ms-flex: 0 0 58.33333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col-t8 {
    -ms-flex: 0 0 66.66667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col-t9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-t10 {
    -ms-flex: 0 0 83.33333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col-t11 {
    -ms-flex: 0 0 91.66667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col-t12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-tfirst {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
            order: -1;
  }
  .order-tlast {
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
            order: 13;
  }
  .order-t0 {
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
            order: 0;
  }
  .order-t1 {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
            order: 1;
  }
  .order-t2 {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
            order: 2;
  }
  .order-t3 {
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
            order: 3;
  }
  .order-t4 {
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
            order: 4;
  }
  .order-t5 {
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
            order: 5;
  }
  .order-t6 {
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
            order: 6;
  }
  .order-t7 {
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
            order: 7;
  }
  .order-t8 {
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
            order: 8;
  }
  .order-t9 {
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
            order: 9;
  }
  .order-t10 {
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
            order: 10;
  }
  .order-t11 {
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
            order: 11;
  }
  .order-t12 {
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
            order: 12;
  }
  .offset-t0 {
    margin-left: 0%;
  }
  .offset-t1 {
    margin-left: 8.33333%;
  }
  .offset-t2 {
    margin-left: 16.66667%;
  }
  .offset-t3 {
    margin-left: 25%;
  }
  .offset-t4 {
    margin-left: 33.33333%;
  }
  .offset-t5 {
    margin-left: 41.66667%;
  }
  .offset-t6 {
    margin-left: 50%;
  }
  .offset-t7 {
    margin-left: 58.33333%;
  }
  .offset-t8 {
    margin-left: 66.66667%;
  }
  .offset-t9 {
    margin-left: 75%;
  }
  .offset-t10 {
    margin-left: 83.33333%;
  }
  .offset-t11 {
    margin-left: 91.66667%;
  }
  .offset-t12 {
    margin-left: 100%;
  }
}

.color-white {
  color: #fff;
}

.color-yellow {
  color: #f8e405;
}

.color-light_gray {
  color: #999 !important;
}

.color-magenta {
  color: #dc0083;
}

.color-gold {
  color: #c0b400;
}

.bg-red {
  background-color: #d51b1e;
}

.bg-yellow {
  background-color: #f8e405;
}

.bg-light_gray {
  background-color: #999;
}

.bg-light_black {
  background-color: #141414 !important;
}

.bg-magenta {
  background-color: #dc0083;
}

.bg-gold {
  background-color: #c0b400;
}

.no-border {
  border: none !important;
}

.border-bottom-gray {
  border-bottom: 1px solid #ebeded;
}

.borber-bottom-light-gray {
  border-bottom: 1px solid #ebeded;
}

.border-bottom-dark-gray {
  border-bottom: 1px solid #ccc;
}

.border-bottom-white {
  border-bottom: 1px solid #fff;
}

.border-bottom-black-6 {
  border-bottom: 6px solid #000;
}

.bg-gray {
  background: #ebeded !important;
}

.img-responsive {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}

.separator {
  color: #999999;
}

.cursor-pointer {
  cursor: pointer;
}

.pipe {
  width: 1px;
  height: 100%;
  background-color: #999;
  margin: 0 10px;
  position: relative;
  font-weight: 100;
  font-size: 1rem;
  line-height: 1;
  text-indent: -9999px;
  display: inline-block;
}

.section {
  position: relative;
}

.clear::before, .clear::after {
  content: "";
  display: table;
}

.clear::after {
  clear: both;
}

.clearfix {
  clear: both;
}

.bg-ad-gray figure img {
  margin: 0 auto;
}

.card-3:not(:nth-child(-n+3)) .g-top-5 {
  margin-top: 5px;
}

.card-3:not(:nth-child(-n+3)) .g-top-10 {
  margin-top: 10px;
}

.card-3:not(:nth-child(-n+3)) .g-top-15 {
  margin-top: 15px;
}

.card-3:not(:nth-child(-n+3)) .g-top-20 {
  margin-top: 20px;
}

.card-3:not(:nth-child(-n+3)) .g-top-25 {
  margin-top: 25px;
}

.card-3:not(:nth-child(-n+3)) .g-top-30 {
  margin-top: 30px;
}

.card-3:not(:nth-child(-n+3)) .g-top-35 {
  margin-top: 35px;
}

.card-3:not(:nth-child(-n+3)) .g-top-40 {
  margin-top: 40px;
}

.card-3:not(:nth-child(-n+3)) .g-top-45 {
  margin-top: 45px;
}

.card-4:not(:nth-child(-n+4)) .g-top-5 {
  margin-top: 5px;
}

.card-4:not(:nth-child(-n+4)) .g-top-10 {
  margin-top: 10px;
}

.card-4:not(:nth-child(-n+4)) .g-top-15 {
  margin-top: 15px;
}

.card-4:not(:nth-child(-n+4)) .g-top-20 {
  margin-top: 20px;
}

.card-4:not(:nth-child(-n+4)) .g-top-25 {
  margin-top: 25px;
}

.card-4:not(:nth-child(-n+4)) .g-top-30 {
  margin-top: 30px;
}

.card-4:not(:nth-child(-n+4)) .g-top-35 {
  margin-top: 35px;
}

.card-4:not(:nth-child(-n+4)) .g-top-40 {
  margin-top: 40px;
}

.card-4:not(:nth-child(-n+4)) .g-top-45 {
  margin-top: 45px;
}


.title,
.theme-black .title-white {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  color: #000;
  line-height: 1.2;
}

.title a, .theme-black .title-white a {
  color: #000;
}

.title-1 {
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.05;
}

.title-2 {
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1;
}

.title-3 {
  font-weight: 600;
  font-size: 1.25rem;
}

.title-4_normal {
  font-weight: 400;
  font-size: 1.1rem;
}

.title-4_bolded {
  font-weight: 700;
  font-size: 1.05rem;
}

.deck, .theme-black .deck-white, .short-desc {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  font-size: .9rem;
}

.article-new .deck, .article-new .theme-black .deck-white, .theme-black .article-new .deck-white, article-new .short-desc {
  font-size: 16px !important;
}

.byline {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.slug, .theme-black .slug-white {
  color: #d51b1e !important;
  text-transform: uppercase;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
}

.slug a, .theme-black .slug-white a {
  color: #d51b1e !important;
  text-transform: uppercase;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  text-decoration: none;
}

.slug a:hover, .theme-black .slug-white a:hover {
  text-decoration: underline;
}

.slug span, .theme-black .slug-white span {
  padding: 0 5px;
  color: #999;
  font-weight: 400;
}

.slug span.lowercase, .theme-black .slug-white span.lowercase {
  color: #d51b1e;
}

.more {
  color: #d51b1e;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 1.0625rem;
  text-transform: uppercase;
}

.more a {
  color: #d51b1e;
}

.section-heading-light, .section-heading, .theme-black .section-heading-white {
  color: #000;
  font-size: 2.25rem;
  font-weight: 100;
  font-family: "Gotham A", "Gotham B", sans-serif;
  letter-spacing: -.03rem;
  line-height: 1.15;
}

.section-heading-light a, .section-heading a, .theme-black .section-heading-white a {
  color: #000;
}

.sticky-leftnav .section-heading, .sticky-leftnav .theme-black .section-heading-white, .theme-black .sticky-leftnav .section-heading-white {
  font-size: 1.8125rem;
}

.page-heading, .theme-black .page-heading-white, .heading-lg {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  color: #000;
  font-size: 2.25rem;
}

.page-heading a, .theme-black .page-heading-white a, .heading-lg a {
  color: #000;
}

.nav-topics .nav-item, .nav-topics .nav-label {
  display: inline-block;
}

.nav-topics .nav-label {
  color: #000000;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  margin-right: 10px;
  text-transform: uppercase !important;
}

.nav-topics .nav-topics_list {
  color: #d51b1e;
  display: inline-block;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
}

.nav-topics .nav-topics_list a {
  color: #d51b1e;
  padding-bottom: 1px;
}

.nav-topics .nav-topics_list a:hover {
  border-bottom: 3px solid #000;
  color: #000 !important;
  text-decoration: none;
}

.nav-topics .nav-topics_list .active {
  color: #000 !important;
}

.nav-topics .nav-topics_list .active a {
  color: #000 !important;
  border-bottom: 3px solid #000 !important;
}

.nav-topics .nav-topics_list .active a:hover {
  color: #000 !important;
}

.nav-topics ul {
  margin: 0;
  display: inline;
  padding: 0;
}

.nav-topics .nav-item_first a {
  margin-left: 0px;
}

.nav-topics .nav-item_first::before {
  content: "" !important;
  padding: 0 !important;
}

.nav-topics .nav-item::before {
  color: #999999;
  content: "|";
  font-size: 0.75rem;
  padding: 0 6px;
  font-weight: 200;
}

.lang-switcher, .theme-black .lang-switcher-white {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  display: inline-block;
  text-transform: uppercase;
}

.lang-switcher a, .theme-black .lang-switcher-white a {
  color: #000 !important;
  border-bottom: 4px solid #f8e405;
  display: inline-block;
}

.lang-switcher a:hover, .theme-black .lang-switcher-white a:hover {
  text-decoration: none !important;
  border-bottom: 4px solid #000;
}

.lang-switcher:hover, .theme-black .lang-switcher-white:hover {
  text-decoration: none !important;
}

#body .lang-switcher a, #body .theme-black .lang-switcher-white a, .theme-black #body .lang-switcher-white a {
  text-decoration: none !important;
}

#body .lang-switcher a:hover, #body .theme-black .lang-switcher-white a:hover, .theme-black #body .lang-switcher-white a:hover {
  text-decoration: none !important;
}

.postdate {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 0.02em;
  font-size: 0.75rem;
  display: inline-block;
}

.w-140 {
  max-width: 140px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 140px;
          flex: 0 0 140px;
}

.w-150 {
  max-width: 150px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
}

.w-240 {
  max-width: 240px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 240px;
          flex: 0 0 240px;
}

.w-270 {
  max-width: 270px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 270px;
          flex: 0 0 270px;
}

.w-275 {
  max-width: 275px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 275px;
          flex: 0 0 275px;
}

.box-shadow {
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.06);
}

.shadow {
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.15);
}

.nav-explore .hamburger-icon {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  position: relative;
  background: url(/system/img/icon_hamburger.svg) center center/13px no-repeat;
  color: #000000;
  cursor: default;
  height: 26px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.nav-explore .hamburger-icon:not(.explore-icon) {
  background-position: center left 8px;
  padding: 2px 13px 2px 28px;
  border: 1px solid #cfcfcf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-explore .hamburger-icon:not(.explore-text) {
  padding: 2px 15px;
  margin: 0 5px;
  display: block;
}

.nav-explore .hamburger-icon:hover {
  background-color: #eaeae9;
}

.nav-explore .hamburger-icon::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 29px;
  top: 100%;
  left: -50%;
}

.nav-dropdown {
  background: #fff url(/ct/channel/img/bg_nav.png) repeat-x;
  min-width: 1000px;
  width: 100%;
  min-height: 360px;
  left: 0;
  position: absolute;
  color: #000;
  z-index: 9999;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
}

.nav-dropdown .inner-content {
  width: 940px !important;
}

.nav-dropdown * {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: none;
  line-height: 1;
}

.nav-dropdown .subnav-top {
  font-size: .75rem;
  padding: 9px 0;
  color: #fff;
  text-align: left;
}

.nav-dropdown .subnav-top .nav {
  list-style: none;
}

.nav-dropdown .subnav-top .nav li {
  display: inline-block;
  padding-right: 15px;
  font-size: .85rem;
  width: auto;
  margin: 0;
}

.nav-dropdown .subnav-top .nav li:not(:first-child) {
  padding: 0 15px;
  border-left: 3px solid #e3e3d5;
}

.nav-dropdown .subnav-top .nav li a {
  color: #fff;
}

.nav-dropdown .subnav-top .nav li a:hover {
  text-decoration: underline;
}

.nav-dropdown .heading-xs,
.nav-dropdown .heading-xs a {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #999 !important;
  font-weight: 400;
}

.nav-dropdown .heading-xs:hover,
.nav-dropdown .heading-xs a:hover {
  text-decoration: underline !important;
}

.nav-dropdown .list {
  list-style: none;
}

.nav-dropdown .list .list-item {
  text-align: left;
  margin: 5px 0;
  width: 100%;
  display: inline-block;
}

.nav-dropdown .list .list-item a {
  color: #000000;
}

.nav-dropdown .list .nav-item-tracking a:hover {
  color: #d51b1e;
  text-decoration: underline;
}

.nav-dropdown .follow-us {
  border-top: 1px solid #e3e6e6;
}

.nav-dropdown .seprator {
  margin: 0 3px;
  color: #999;
}

.nav-dropdown .caret {
  position: absolute;
  left: 198px;
  top: -2px;
}

.nav-dropdown .caret4mag {
  left: 515px;
}

.nav-dropdown .subnav-span-left {
  max-width: 58%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58%;
          flex: 0 0 58%;
  padding: 15px 30px 15px 0;
  border-right: 1px solid #000;
}

.nav-dropdown .subnav-span-right {
  max-width: 37%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 37%;
          flex: 0 0 37%;
  padding: 15px;
}

.currentissue-box {
  background: #ebeded;
  padding: 10px 6px 15px 10px;
}

.subnav-span-left, .subnav-span-right {
  text-align: left;
  text-transform: capitalize;
}

.themeCollection-sm {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  font-size: 1.85rem;
  line-height: 1;
}

.bg-gray {
  background: #ebeded !important;
}

.border-bottom-light-gray {
  border-bottom: 1px solid #ebeded;
}

.border-light-gray {
  border: 1px solid #ebeded;
}

.short-desc, .short-desc * {
  font-size: .85rem !important;
  line-height: 1.2 !important;
}

.text-sm, .text-sm * {
  font-size: .7rem !important;
}

.l-header {
  min-width: 1000px;
}

.l-pager {
  margin: 0 auto;
}

.header-content {
  width: 940px;
  margin: 0 auto;
}

.header-nav {
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
}

.header-nav a {
  color: #000;
}

/*
* user info (login, logout) in header Styles
********************************/
.user-info {
  position: absolute;
  right: 10px;
  top: 0;
}

.user-info span, .user-info a {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #000;
}

.user-info .icon {
  vertical-align: middle;
  padding-left: 5px;
}

.user-info .sep {
  font-size: 1.05rem;
  font-weight: 300;
  margin: 0 6px;
  position: relative;
  top: -1px;
}

.dropdown-alternate {
  border: 1px solid #ccc;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 2;
  position: absolute;
  top: 100%;
  list-style: none;
  right: 0;
  min-width: 140px;
  display: none;
}

.dropdown-alternate ul {
  background: #fff;
}

.dropdown-alternate ul a {
  font-size: 0.85rem;
}

.dropdown-alternate li {
  border-bottom: 1px solid #ccc;
  text-align: left;
  text-transform: capitalize;
}

.dropdown-alternate li a {
  padding: 5px 15px;
  color: #000;
  line-height: 1.3;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  display: block;
}

.dropdown-alternate li a:hover {
  background: #ebeded;
  color: #000;
  text-decoration: none;
}

.item-dropdown:hover .dropdown-alternate {
  display: block;
}

/*
* Ct main Navbar in header style
********************************/
.navbar {
  list-style-type: none;
}

.navbar > .nav-item {
  text-transform: uppercase;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0;
}

.navbar > .nav-item > a {
  text-decoration: none;
}

.navbar > .nav-item > a:hover {
  text-decoration: none;
}

.navbar > .nav-item > a.color-red:hover {
  color: #000 !important;
  text-decoration: none;
}

.navbar > .nav-item .nav-item-link {
  margin: 0;
  display: inline-block;
  padding: 12px 32px !important;
}

.navbar > .nav-item .nav-item-link:hover {
  color: #d51b1e;
}

.navbar > .nav-item.js-subscribe .nav-item-link:hover {
  color: #000;
}

.navbar-search .search-input {
  width: 0;
  height: 27px;
  padding: 0;
  background-color: #ebeded;
  border: none;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  color: #999;
}

.navbar-search .submit {
  margin-right: 5px;
}

/*
* vertical header style
********************************/
.vertical-header {
  background: #d51b1e;
  background: #000;
}

.vertical-header-nav > li {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  display: inline-block;
}

.vertical-header-nav > li > a {
  padding: 25px 15px;
  color: #fff;
  font-size: 0.8125rem;
  display: block;
}

.vertical-logo {
  font-size: 2.25rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 100;
  color: #fff;
  text-transform: uppercase;
}

.vertical-logo a {
  color: #fff;
}

.vertical-logo a:hover {
  text-decoration: none;
}

.vertical-logo .and {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 200;
  padding: 0 4px;
  font-size: 2.7rem;
}

/*Fixed Header CSS*/
.fix-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  display: none;
  z-index: 100;
  padding: 5px 0;
}

.fix-header .nav-dropdown {
  position: fixed;
  top: 36px;
}

.fix-header .nav-dropdown .caret {
  left: 35px;
}

.fix-header .articleHead-top {
  width: 500px;
}

.fix-header .articleHead-top .title-head {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
}

.fix-header .header-rightlinks {
  border-left: 1px solid #cfcfcf;
  list-style: none;
}

.fix-header .header-rightlinks li {
  border-right: 1px solid #cfcfcf;
  font-size: 0.55rem;
}

.fix-header .header-rightlinks img {
  vertical-align: middle;
}

.fix-header .header-rightlinks a {
  color: #6b6b6b;
  font-family: verdana,sans-serif;
  padding: 6px 10px 5px;
  display: inline-block;
}

.fix-header .header-rightlinks a:hover {
  background-color: #ededed;
}

.fix-header .header-rightlinks .subs-link {
  color: #d51b1e;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  padding: 5px 10px 3px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 17px;
  letter-spacing: .05em;
  font-size: 1.05rem;
  text-decoration: none;
}

.fix-header .header-rightlinks .subs-link:hover {
  text-decoration: none;
}

.fix-header .header-rightlinks .commentsCounter {
  background: url(/ct/channel/img/icon_comments_counter.png) no-repeat 10px center;
  padding-left: 34px;
  height: 14px;
}

.fix-header .header-rightlinks .share {
  background: url(/ct/channel/img/icon_share.png) no-repeat 10px 4px;
  padding-left: 35px;
  height: 14px;
}

.fix-header .header-rightlinks .share span {
  background: #fff;
  border: 1px solid #D8D8D8;
  display: inline-block;
  margin-left: 4px;
  min-width: 10px;
  padding: 0 2px 2px;
  text-align: center;
  vertical-align: top;
}

.fix-header .header-rightlinks .btn-close {
  background: url(/ct/channel/img/btn_close.gif) no-repeat 10px center;
  padding-left: 30px;
  height: 14px;
}

.fix-header .progress-bar-active {
  background: #d51b1e;
  height: 2px;
  width: 0%;
  display: block;
  position: relative;
  top: 3px;
  z-index: 2;
}

.fix-header .progress-bar {
  background: #cfcfcf;
  height: 2px;
  width: 500px;
  margin-top: 1px;
  display: block;
  position: absolute;
}

.section-fixed-header {
  position: fixed;
  top: 36px;
  border-top: 1px solid #dedede;
  padding: 15px 0;
  display: none;
  width: 100%;
  z-index: 4;
  background: #fff;
}

.search-box label {
  width: 80px;
  text-transform: uppercase;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: "Gotham A", "Gotham B", sans-serif;
}

.search-box .form-input {
  width: 450px;
}

.search-box .input-group .submit {
  background: url(/ct/channel/img/btn_go.gif) no-repeat center #000;
}

.js-share {
  background: #fff;
  padding: 20px 0 10px;
  overflow: hidden;
  border-top: 1px solid #dedede;
  top: 5px;
  top: 6px\9\0;
  width: 100%;
  position: relative;
}

.panel-current-issue .sub-link, .panel-current-issue .gift-link, .panel-current-issue .date-link, .panel-current-issue .more {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none !important;
}

.panel-current-issue .current-issue-title {
  font-family: "Gotham A","Gotham B",sans-serif;
  font-size: 2.2rem;
  font-weight: 100;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: #000;
}

.panel-current-issue .current-issue-date {
  background-color: #ebeded;
  padding: 5px 8px;
}

.panel-current-issue .sub-link, .panel-current-issue .gift-link, .panel-current-issue .more {
  color: #d51b1e !important;
}

.panel-current-issue .date-link {
  color: #000 !important;
}

.panel-current-issue .current-issue-articles, #body .panel-current-issue .current-issue-articles {
  list-style: none;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  direction: ltr;
}

#body .panel-current-issue .current-issue-articles li {
  padding-bottom: 0 !important;
}

.panel-current-issue .current-issue-articles li .current-issue-article-link, #body .panel-current-issue .current-issue-articles li .current-issue-article-link {
  color: #000000 !important;
  font-family: "Chronicle Display A", "Chronicle Display B", serif !important;
  font-size: 1.05rem !important;
  font-weight: 400;
  line-height: 1.05;
  text-decoration: none !important;
}

#body .section-bordered-both, .section-bordered-both {
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  padding: 15px 0;
  overflow: hidden;
}

#body .section-bordered-both .reviewDesc, .section-bordered-both .reviewDesc {
  font-weight: 400;
}

#body .section-bordered-both .section .related-topics, .section-bordered-both .section .related-topics {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  overflow: hidden;
  font-size: 0.75rem;
}

#body .section-bordered-both .section .related-topics .seperator, #body .section-bordered-both .section .related-topics .meta-divider, .section-bordered-both .section .related-topics .seperator, .section-bordered-both .section .related-topics .meta-divider {
  color: #999;
  margin: 0px 8px;
  position: relative;
  display: inline-block;
  vertical-align: top;
}

#body .section-bordered-both .section .related-topics .seperator:before, #body .section-bordered-both .section .related-topics .meta-divider:before, .section-bordered-both .section .related-topics .seperator:before, .section-bordered-both .section .related-topics .meta-divider:before {
  width: 1px;
  height: 14px;
  content: '';
  position: absolute;
  top: 1px;
  background: #999;
}

#body .section-bordered-both .section .related-topics a, .section-bordered-both .section .related-topics a {
  color: #000;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1px;
  text-decoration: underline;
}

#body .section-bordered-both .section .related-topics a:hover, .section-bordered-both .section .related-topics a:hover {
  text-decoration: none;
}

#body .section-bordered-both .section .related-topics .social-follow .social-item, .section-bordered-both .section .related-topics .social-follow .social-item {
  font-size: .7rem;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block !important;
}

#body .section-bordered-both .section .related-topics .social-follow .social-item a, .section-bordered-both .section .related-topics .social-follow .social-item a {
  color: #d51b1e;
  text-decoration: none;
}

#body .section-bordered-both .section .related-topics .social-follow .social-item a:hover, .section-bordered-both .section .related-topics .social-follow .social-item a:hover {
  text-decoration: underline;
}

#body .section-bordered-both .section .related-topics .social-follow .social-item img, .section-bordered-both .section .related-topics .social-follow .social-item img {
  margin-right: 1px;
  position: relative;
  top: 0;
}

#body .section-bordered-both .section .related-topics .item-date span, .section-bordered-both .section .related-topics .item-date span {
  margin-right: 8px;
}

#body .section-bordered-both .section .related-topics .item-date span:before, .section-bordered-both .section .related-topics .item-date span:before {
  width: 1px;
  height: 13px;
  content: '';
  position: absolute;
  top: 2px;
  background: #999;
}

#body .section-bordered-both .section .headings-small, .section-bordered-both .section .headings-small {
  font-size: 0.75rem;
  font-family: "Gotham A", "Gotham B", sans-serif !important;
  font-weight: 600;
  text-transform: uppercase;
}

#body .section-bordered-both .related-topics_item, .section-bordered-both .related-topics_item {
  font-family: "Gotham A", "Gotham B", sans-serif !important;
  font-weight: 400;
  color: #999;
  font-size: 0.8rem;
}

#body .section-bordered-both .related-topics_item a, .section-bordered-both .related-topics_item a {
  color: #999 !important;
  text-decoration: underline;
}

#body .section-bordered-both .related-topics_item a:hover, .section-bordered-both .related-topics_item a:hover {
  text-decoration: none;
}

.topics {
  width: 100px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

a.post-parent_left, a.post-parent_right {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  color: #d51b1e;
  display: block;
  margin-bottom: 10px;
}

a.post-parent_left {
  background: url(/history/channel/img/icon-prev.png) no-repeat center left;
  padding-left: 14px;
}

a.post-parent_right {
  background: url(/history/channel/img/icon-next.png) no-repeat center right;
  padding-right: 14px;
}

@media all and (-ms-high-contrast: none) {
  .social-follow social-item img {
    margin-right: 1px;
  }
}

/**
 * Mixin for using "rem" units in a backwards-compatible way.
 *
 * `@include rem(font-size, 3.2);`
 */
/**
 * Mixin to supply basic font information for headings and titles.
 * The final `$use-serif` attribute is mostly for internal use, making
 * it possible to reuse code to easily apply heading and title styles.
 *
 * `@include ct-heading(1.3, 8, 1.5);`
 * - OUTPUTS -
 * font-weight: 8; 
 * line-height: 1.3;
 * font-size: 1.5 // plus the calculated pixels for browser
 * // that don't support rem units
 * 
 */
/**
 * Mixin to supply basic font information for titles. The only difference
 * between `ct-title` and `ct-heading` is that `ct-title` always uses
 * the current `$font-sans-serif`.
 *
 * `@include ct-title(1.3, 8, 1.5);`
 */
/**
 * Mixin to calculate the width of a grid item.
 *
 * `@include calc-width(3); // (60 * 3) + (20 * (3 - 1)) = 180 + 40 = 240`
 */
/** 
* Mixin for generating fonts
* @include font(c,400);
*	type: c,cs,g;
*	weight: font weight;
*/
.button, #body .button {
  display: inline-block;
  font-family: "Gotham Cond A","Gotham Cond B",sans-serif !important;
  font-weight: 500;
  font-size: 1.25rem !important;
  line-height: 1.2;
  letter-spacing: 0.5px;
  font-style: normal;
  text-transform: uppercase !important;
  color: #696969;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  min-width: 110px;
  padding: 7px 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  text-decoration: none !important;
}

.button:hover, #body .button:hover {
  text-decoration: none !important;
}

.btn-condensed {
  font-size: 1.2rem !important;
  letter-spacing: 0.03em;
  min-width: 200px;
}

.modal-sub-button .btn-condensed {
  min-width: 140px !important;
}

.btn-primary, #body .btn-primary {
  background-color: #d51b1e !important;
  color: #fff !important;
}

.btn-primary:hover, #body .btn-primary:hover {
  background-color: #ed1317 !important;
  color: #fff !important;
}

.btn-outline-primary {
  border-color: #d51b1e !important;
  color: #d51b1e !important;
}

.btn-outline-primary:hover {
  background-color: #ed1317 !important;
  color: #fff !important;
}

.btn-outline-primary-white {
  border-color: #fff !important;
  color: #fff !important;
}

.btn-outline-primary-white:hover {
  background-color: #ebeded !important;
  color: #000 !important;
}

.pdf-buttons .button, .pdf-buttons #body .button, #body .pdf-buttons .button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 230px;
}

.pdf-buttons .button + .button, .pdf-buttons #body .button + .button, #body .pdf-buttons .button + .button {
  margin-left: 20px;
}

.more-link {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 500;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.button_yellow:hover {
  background: #fbff0a;
  text-decoration: underline;
}

.btn-red {
  color: #fff;
  font-size: 1.2rem;
  background: #d51b1e;
  display: inline-block;
}

/*Archive subscribe button*/
.subscribe-panel .button, .subscribe-panel #body .button, #body .subscribe-panel .button {
  min-width: 200px;
}

.subscribe-panel .button + .button, .subscribe-panel #body .button + .button, #body .subscribe-panel .button + .button {
  margin-left: 25px;
}

.subscribe-panel p {
  margin-bottom: 30px;
  margin-top: 15px;
  font-size: .8rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
}

.subscribe-panel .login {
  margin-left: 8px;
  text-decoration: underline;
}

.btn-podcast, .theme-black .btn-podcast-white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 10px;
  border: 1px solid #ebeded;
  height: calc(14px + 10px + 2px);
  border-radius: 3px;
  font-size: 0.75rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
}

.btn-podcast:hover, .theme-black .btn-podcast-white:hover {
  text-decoration: none;
}

.featured-media-img {
  margin-right: 20px;
}

.featured-media-content {
  position: relative;
}

.featured_deck {
  color: #3a3a3a;
  line-height: 1.35;
  font-size: 0.95rem;
  margin: 5px 0;
}

.featured_slug {
  color: #000;
  text-transform: uppercase;
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif;
  font-weight: 400;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.featured_slug div {
  display: inline;
}

.featured_slug .seprator {
  display: inline;
  color: #999;
  font-size: 0.95rem;
}

.featured-title {
  font-weight: 600;
  line-height: 1.05;
  font-size: 2.5rem;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  margin: 3px 0 5px;
}

.featured-title a:hover {
  text-decoration: none;
  color: #d51b1e;
}

.flag-content {
  letter-spacing: .05em;
}

#body .button {
  min-width: 200px;
}

.promo-ad a {
  float: left;
}

.promo-ad .ad-fullwidth {
  margin-bottom: 0 !important;
}

.bg-solid-gray, .bg-ad-gray {
  background-color: #ebeded;
}

.bg-ad-gray {
  padding: 10px 0px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

#slideout {
  position: fixed !important;
  bottom: 0;
  left: -550px;
  visibility: visible !important;
  opacity: 0;
  z-index: 999999;
  border: 3px solid #b6bbc1;
  background: white;
}

#slideout #closeSlideout {
  position: absolute;
  top: -18px;
  right: -3px;
}

.push-left-neg-20 {
  margin-left: -20px;
}

.pos-absolute {
  position: absolute;
  left: 0;
}

.flag-content {
  background: #d51b1e;
  padding: 5px 15px;
  color: #fff;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: .03rem;
  display: inline-block;
  line-height: 1;
}

.leftnav-list li {
  display: inline-block;
  position: relative;
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
  border-top: 1px solid transparent;
  padding: 15px 0;
  margin-top: -1px;
}

.leftnav-list li a {
  line-height: 1.1;
}

.leftnav-list li:hover {
  border-top-color: #d51b1e;
  border-bottom-color: #d51b1e;
}

.leftnav-list li:hover .byline, .leftnav-list li:hover .title, .leftnav-list li:hover .theme-black .title-white, .theme-black .leftnav-list li:hover .title-white, .leftnav-list li:hover .item-list, .leftnav-list li:hover .deck, .leftnav-list li:hover .theme-black .deck-white, .theme-black .leftnav-list li:hover .deck-white, .leftnav-list li:hover .section {
  color: #d51b1e;
  text-decoration: none;
}

.leftnav-list li:first-child {
  border-top: none;
}

.leftnav-list li:first-child:hover {
  border-top: none;
}

.list-arrow-featured li {
  position: relative;
  padding-left: 15px;
  list-style: none;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 1rem;
}

.list-arrow-featured li:last-child {
  margin-bottom: 0px;
}

.list-arrow-featured li:after {
  content: "";
  position: absolute;
  background-image: url(/ct/channel/img/btn_more.gif);
  height: 3px;
  width: 6px;
  background-repeat: no-repeat;
  top: 41%;
  left: 0;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

.list-arrow-featured li a {
  color: #000;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
}

.author-section .author-social-link img {
  vertical-align: middle;
}

.author-section .author-social-link a {
  vertical-align: middle !important;
}

/*Support our work*/
.support-work .shadow {
  -webkit-box-shadow: 0px 4px 10px -1px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 10px -1px rgba(0, 0, 0, 0.15);
}

.support-work .support-work-content {
  overflow: hidden;
  font-size: 12.8px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

.support-work .support-work-content a.red-color {
  text-decoration: underline !important;
}

.support-work .support-work-content a.red-color:hover {
  color: #000;
  text-decoration: none !important;
}

#body .image_left {
  margin-bottom: 20px;
}

#body .inner-rightnav_item {
  margin-left: 25px;
  line-height: 1.3 !important;
}

#body .inner-rightnav_item ul, #body .inner-rightnav_item ol {
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1.1;
}

#body .inner-rightnav_item a {
  color: #000;
  text-decoration: none;
}

#body .inner-rightnav_item a.more, #body .inner-rightnav_item a.more-link {
  line-height: .9;
}

#body .section-newsletters .nlListIsEmpty {
  padding: 0 !important;
}

#body .section-newsletters .nlListIsEmpty p {
  font-family: Verdana, Arial, sans-serif !important;
  margin-bottom: 0;
}

#body .inner-rightnav_item a.more, #body .inner-rightnav_item a.more-link {
  text-transform: uppercase;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #d51b1e;
  font-size: 1.0625rem !important;
}

.newsletters .description,
#body .section-newsletters .description {
  font-size: 0.8125rem;
  font-family: verdana,sans-serif;
}

.newsletters a.more, .newsletters a.more-link,
#body .section-newsletters a.more,
#body .section-newsletters a.more-link {
  color: #d51b1e;
  font-size: 1.0625rem !important;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  letter-spacing: .03em;
  font-weight: 500;
  text-decoration: none;
}

.newsletters a.more:hover, .newsletters a.more-link:hover,
#body .section-newsletters a.more:hover,
#body .section-newsletters a.more-link:hover {
  color: #d51b1e !important;
  text-decoration: underline;
}

.newsletters a.section-heading_sm, .section-newsletters a.section-heading_sm {
  font-size: 0.875rem;
  font-family: "Gotham A","Gotham B", sans-serif;
  color: #000 !important;
  text-decoration: none !important;
}

.newsletters a.section-heading_sm:hover, .section-newsletters a.section-heading_sm:hover {
  text-decoration: underline;
}

.l-rightnav .notification, #body .l-rightnav ul li.notification {
  width: auto !important;
  background: #d51b1e;
  color: #fff;
  position: static !important;
  padding: 4px 10px;
  float: left;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-family: "Gotham A", "Gotham B", sans-serif !important;
  font-size: 1rem;
}

/*
*  Override Login Page Style
******************************/
.login-title {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #000;
}

.login-body {
  font-family: "Gotham A","Gotham B",sans-serif;
}

.login-body * {
  font-family: "Gotham A","Gotham B",sans-serif;
}

.login-body .btn-login {
  background: #d51b1e;
}

.login-body .btn-login:hover {
  background-color: #ed1317;
}

.section-breaking-news {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.breaking-news-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000;
  height: 44px;
}

.breaking-news-bar:before {
  background: url(/ct/channel/img/img_breakingnews.gif);
  width: 221px;
  height: 44px;
  float: left;
  content: "";
}

.breaking-news-bar .title, .breaking-news-bar .theme-black .title-white, .theme-black .breaking-news-bar .title-white {
  font-size: 1.45rem;
  font-weight: 400;
  margin-left: 15px;
}

.breaking-news-bar .title a, .breaking-news-bar .theme-black .title-white a, .theme-black .breaking-news-bar .title-white a {
  color: #fff;
  background: url(/ct/channel/img/arrow_breakingnews.png) no-repeat center right;
  padding-right: 15px;
}

.waterfall-heading, .theme-black .waterfall-heading-white {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  position: relative;
}

.waterfall-heading.sm, .theme-black .sm.waterfall-heading-white {
  font-size: 1.0625rem;
}

.waterfall-heading span, .theme-black .waterfall-heading-white span {
  background: #fff;
  position: relative;
  padding-right: 4px;
  font-weight: 400;
  top: 1px;
}

.waterfall-heading:before, .theme-black .waterfall-heading-white:before {
  content: "";
  position: absolute;
  height: 2px;
  background: #000;
  width: 100%;
  top: 16px;
  left: 0;
}

.notification {
  width: auto !important;
  background: #d51b1e;
  color: #fff;
  position: static !important;
  padding: 4px 10px;
  display: inline-block;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  margin: 20px 0;
}

.section-read-these-next .bg-flag {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  background: #000000;
  color: #fff;
  padding: 2px 10px;
  line-height: 1;
  margin-bottom: 1px;
}

.load-more {
  color: #d51b1e;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.0625rem;
  letter-spacing: .03em;
  text-decoration: none;
  margin-top: 30px;
  text-align: center;
}

.load-more img {
  vertical-align: middle;
  margin-right: 10px;
}

.load-more > span {
  color: #d51b1e;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  position: relative;
  left: 15px;
  top: 4px;
  vertical-align: top;
}

.articleDirectionRTL .lang-switcher, .articleDirectionRTL .theme-black .lang-switcher-white, .theme-black .articleDirectionRTL .lang-switcher-white {
  padding-right: 8px;
  margin-left: 0px !important;
}

.articleDirectionRTL .lang-switcher:first-of-type, .articleDirectionRTL .theme-black .lang-switcher-white:first-of-type, .theme-black .articleDirectionRTL .lang-switcher-white:first-of-type {
  padding-right: 0px;
}

.articleDirectionRTL #body p.text,
.articleDirectionRTL #body p.bio,
.articleDirectionRTL #body p.intro,
.articleDirectionRTL #body .subhead,
.articleDirectionRTL #body .subhead2,
.articleDirectionRTL #body .subhead3,
.articleDirectionRTL #body .subhead4,
.articleDirectionRTL #body .sidebar_right,
.articleDirectionRTL #body .sidebar_left,
.articleDirectionRTL #body .sidebar_center,
.articleDirectionRTL #body blockquote,
.articleDirectionRTL #body span,
.articleDirectionRTL #body ul,
.articleDirectionRTL #body li {
  direction: rtl;
}

.articleDirectionRTL .meta-container .title, .articleDirectionRTL .meta-container .theme-black .title-white, .theme-black .articleDirectionRTL .meta-container .title-white,
.articleDirectionRTL .meta-container .deck,
.articleDirectionRTL .meta-container .theme-black .deck-white,
.theme-black .articleDirectionRTL .meta-container .deck-white,
.articleDirectionRTL .meta-container .article-languages,
.articleDirectionRTL .meta-container .article-byline,
.articleDirectionRTL .meta-container .author-info,
.articleDirectionRTL .meta-container .print-title,
.articleDirectionRTL .meta-container .slug,
.articleDirectionRTL .meta-container .theme-black .slug-white,
.theme-black .articleDirectionRTL .meta-container .slug-white {
  direction: rtl;
}

.articleDirectionRTL .meta-container .title span:first-child, .articleDirectionRTL .meta-container .theme-black .title-white span:first-child, .theme-black .articleDirectionRTL .meta-container .title-white span:first-child, .articleDirectionRTL .meta-container .title .byline, .articleDirectionRTL .meta-container .theme-black .title-white .byline, .theme-black .articleDirectionRTL .meta-container .title-white .byline,
.articleDirectionRTL .meta-container .deck span:first-child,
.articleDirectionRTL .meta-container .theme-black .deck-white span:first-child,
.theme-black .articleDirectionRTL .meta-container .deck-white span:first-child,
.articleDirectionRTL .meta-container .deck .byline,
.articleDirectionRTL .meta-container .theme-black .deck-white .byline,
.theme-black .articleDirectionRTL .meta-container .deck-white .byline,
.articleDirectionRTL .meta-container .article-languages span:first-child,
.articleDirectionRTL .meta-container .article-languages .byline,
.articleDirectionRTL .meta-container .article-byline span:first-child,
.articleDirectionRTL .meta-container .article-byline .byline,
.articleDirectionRTL .meta-container .author-info span:first-child,
.articleDirectionRTL .meta-container .author-info .byline,
.articleDirectionRTL .meta-container .print-title span:first-child,
.articleDirectionRTL .meta-container .print-title .byline,
.articleDirectionRTL .meta-container .slug span:first-child,
.articleDirectionRTL .meta-container .theme-black .slug-white span:first-child,
.theme-black .articleDirectionRTL .meta-container .slug-white span:first-child,
.articleDirectionRTL .meta-container .slug .byline,
.articleDirectionRTL .meta-container .theme-black .slug-white .byline,
.theme-black .articleDirectionRTL .meta-container .slug-white .byline {
  margin-right: 0px !important;
}

.articleDirectionRTL .waterfall .postdate {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.es-related-article {
  font-size: 0.8rem;
  font-style: italic;
}

.flag-empty {
  padding-left: 0 !important;
}

.flag-empty:after {
  content: "";
  display: none;
}

.flag-empty .notification {
  font-size: .75rem;
  margin: 0px;
}

.img-sponser-flag {
  left: 0;
}

.print-media {
  background: transparent;
}

.print-page {
  width: 860px;
  position: relative;
}

.print-page #headerPrint h1 {
  margin-bottom: 0;
}

.printerversionad {
  text-align: center;
  padding-top: 10px;
  padding-top: 5px;
  background-color: #ebeded;
  border-bottom: 1px solid #dedecc;
}

.printerversionad p {
  color: #767676;
  margin: 0 0 5px 0;
  font-size: 0.8rem;
}

.print-container {
  margin-left: 10px;
}

.print-container a {
  color: #000;
}

.print-content .image-credit, .print-content .credit {
  font-family: Verdana, Arial, sans-serif !important;
  color: #999 !important;
  font-size: 0.55rem;
}

.print-content .deck, .print-content .theme-black .deck-white, .theme-black .print-content .deck-white, .print-content .short-desc {
  font-size: 15px;
}

.print-content .article-img {
  margin: 0 0 0 20px;
  width: 460px;
}

.print-content .byline {
  margin: 5px 0 35px;
}

.print-content .copyright {
  color: #d51b1e;
  font-size: 0.8rem;
}

.print-content .slug, .print-content .theme-black .slug-white, .theme-black .print-content .slug-white {
  font-size: 0.75rem;
  margin-top: 30px;
  float: left;
  width: 100%;
}

.print-content .slug .slug, .print-content .theme-black .slug-white .slug, .theme-black .print-content .slug-white .slug, .print-content .slug .theme-black .slug-white, .theme-black .print-content .slug .slug-white, .print-content .theme-black .slug-white .slug-white, .theme-black .print-content .slug-white .slug-white {
  margin-top: 0;
}

.print-content .slug a, .print-content .theme-black .slug-white a, .theme-black .print-content .slug-white a {
  color: #000 !important;
  font-weight: 700;
}

.print-content .slug a:hover, .print-content .theme-black .slug-white a:hover, .theme-black .print-content .slug-white a:hover {
  text-decoration: none;
}

.print-content .image_left {
  margin-left: 0;
}

.print-content div#body {
  width: 860px;
}

.print-content .blockquote {
  margin-left: 20px;
  color: red;
}

.print-content .subhead {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-size: 1.6rem;
  font-weight: 600;
}

.print-issue-info {
  color: #d51b1e;
  font-weight: bold;
  font-size: 0.75rem;
  margin-top: 13px;
  text-align: right;
}

.utilities {
  width: 99%;
}

.utilities ul {
  margin: -115px 0 10px;
  float: right;
}

.utilities li {
  margin: 0 5px;
  display: inline;
  margin: 2px 3px;
  overflow: hidden;
}

.utilities li a {
  color: #d51b1e;
  padding: 0 2px;
  margin-left: 3px;
  font-size: 0.75rem;
}

.current-date {
  color: #d51b1e;
  margin: -20px 0 15px 0;
  font-size: 0.75rem;
}

.print-title {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.07;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  margin: 0;
}

.print-article-link {
  border-top: 1px solid #dedecc;
  border-bottom: 1px solid #dedecc;
  padding: 10px 0 10px 3px;
  margin-left: 0;
  font-size: 0.8rem;
}

.print-article-link a {
  text-decoration: none;
  color: #000;
}

.print-article-link a:hover {
  text-decoration: underline;
}

.post-date {
  font-weight: normal;
  color: #b8b8b8;
  font-size: 0.75rem;
}

@media print {
  body,
  .title,
  .theme-black .title-white,
  .title-2, .deck, .theme-black .deck-white,
  .byline,
  #printPage,
  .postdate,
  .printPresentUrl_section,
  .printChoice,
  .printTop,
  .printOptions_section,
  #body p {
    font-family: Georgia, "Times New Roman", serif !important;
    color: #000;
  }
}

.footer-print {
  margin-top: 20px;
  font-size: 0.7rem;
}

.footer-print p {
  text-align: right;
}

@media print {
  .printerversionad {
    display: none;
    visibility: hidden;
  }
}

.external-url {
  background: #ebeded;
  vertical-align: top;
  float: none;
  padding: 20px 10px;
}

@media only screen and (min-width: 767px) {
  .ct-header-mini {
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
    -ms-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 101;
  }
}

.ct-header-mini .container-fluid {
  max-width: 1280px;
  padding: 9px 30px 7px;
}

.ct-header-mini .navbar-right {
  list-style: none;
}

.ct-header-mini .navbar-right .nav-item {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 17px;
  text-transform: uppercase;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

.ct-header-mini .navbar-right .nav-item > a {
  padding: 5px 10px 3px;
  letter-spacing: .05em;
  display: block;
}

.ct-header-mini .navbar-right .nav-item > a.subs-link {
  color: #d51b1e;
}

.ct-header-mini .navbar-right .nav-item + .nav-item {
  border-left: 1px solid #cfcfcf;
}

.ct-header-mini .navbar-search {
  margin-left: 0;
  margin-right: 10px;
  position: absolute;
  right: 0;
  top: -1px;
}

.ct-header-mini .navbar-search .autocomplete-container {
  min-height: calc(15px + 10px + 2px);
}

@media only screen and (min-width: 767px) {
  .ct-header-mini .navbar-search .autocomplete-d .selectize-input {
    border: 1px solid #000;
    height: calc(15px + 10px + 2px);
  }
}

.ct-header-mini .navbar-search .submit {
  margin: 6px 5px 5px 0px;
  height: 12px;
}

.ct-header-mini .nav-dropdown {
  top: 74px;
}

.ct-header-mini .nav-dropdown .caret {
  display: none;
}

@media (min-width: 768px) and (max-width: 991px) {
  .ct-header-mini .nav-dropdown {
    min-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .ct-header-mini .nav-dropdown .inner-content {
    width: 100% !important;
  }
  .ct-header-mini .nav-dropdown .subnav-top {
    padding: 9px 10px;
  }
  .ct-header-mini .nav-dropdown .subnav {
    padding: 0 10px;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .ct-header-mini .nav-dropdown .currentissue-box img {
    max-width: 120px;
  }
  .ct-header-mini .nav-dropdown .w-275 {
    max-width: 260px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 260px;
            flex: 0 0 260px;
    margin-right: 20px;
  }
  .ct-header-mini .nav-dropdown .w-240 {
    max-width: 150px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
    margin-right: 10px;
  }
  .ct-header-mini .nav-dropdown .list .list-item a {
    display: inline-block;
    line-height: 1.2;
  }
}

@media only screen and (max-width: 767px) {
  .ct-header-mini .header-main {
    margin-bottom: 0;
  }
}

.dropdown {
  position: relative;
}

.dropdown .user-name {
  padding: 5px 0 3px;
  letter-spacing: .05em;
  display: block;
  cursor: default;
}

.dropdown .caret-icon {
  vertical-align: middle;
  padding-left: 5px;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 2;
  border: 1px solid #ccc;
  background-color: white;
  list-style: none;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate3d(0, 10px, 0);
          transform: translate3d(0, 10px, 0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.dropdown-list .dropdown-item {
  border-bottom: 1px solid #ccc;
}

.dropdown-list .dropdown-item a {
  color: #000;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.3;
  text-transform: capitalize;
  padding: 5px 15px;
  display: block;
}

.dropdown-list .dropdown-item a:hover {
  background: #ebeded;
  text-decoration: none;
}

.dropdown:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.theme-black {
  background-color: #1a1a1a;
}

.theme-black .btn-outline-primary-white {
  font-size: 12px !important;
  font-family: "Gotham A", "Gotham B", sans-serif !important;
  padding: 10px 15px;
  border-radius: 5px;
}

.theme-black .btn-podcast-white:hover {
  background-color: #ebeded !important;
  color: #000 !important;
}

.theme-black .section-heading-white {
  color: #fff;
}

.theme-black .title-white a {
  color: #fff;
}

.theme-black .slug-white {
  color: #fff !important;
}

.theme-black .slug-white a {
  color: #fff !important;
}

.theme-black .slug-white .minute {
  color: #fff !important;
}

.theme-black .deck-white {
  color: #fff;
}

.theme-black .byline-white {
  color: #fff;
}

.theme-black .waterfall-heading-white {
  color: #fff;
}

.theme-black .waterfall-heading-white:before {
  background: #fff;
}

.theme-black .lang-switcher-white a {
  color: #fff !important;
}

.theme-black .lang-switcher-white a:hover {
  color: #fff !important;
  border-bottom: 4px solid #fff;
}

.theme-black .podcast-heading-white {
  color: #fff;
}

.podcast-heading, .theme-black .podcast-heading-white {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  vertical-align: 10px;
}

.podcast-player iframe {
  vertical-align: middle;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeInHide {
  0% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeInHide {
  0% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.podcastModal {
  position: fixed;
  top: auto !important;
  right: 0;
  left: 0;
  bottom: 0 !important;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.podcastModal-body {
  min-height: 200px;
  background-color: #f5f6f7;
  /*background-image: url("/ct/channel/img/player-left-white.jpg"),url("/ct/channel/img/player-right-white.jpg");*/
  background-position: left top, right top;
  background-repeat: no-repeat;
}

.podcastModal-body:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 485px;
  right: 125px;
  z-index: 0;
  height: 26px;
  background-color: #e7e9ec;
}

.podcastModal .closeModal {
  right: 10px;
}

.podcastModal.is-invisible {
  -webkit-animation-name: fadeInHide;
  animation-name: fadeInHide;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: initial;
  visibility: initial;
}

.podcast-footer-padding {
  padding-top: 15px !important;
}

#comments h3 {
  border-bottom: 9px solid #000000;
  letter-spacing: -0.03rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: inherit;
  font-size: 1.5rem;
}

#commentListHead {
  float: right;
  margin-top: -32px;
}

#commentListHead p, #commentListFoot p {
  float: left;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
}

#commentListHead #allCommentsLink, #commentListFoot #allCommentsLink {
  border-left: 1px solid #000;
  padding-left: 10px;
  margin-left: 10px;
}

#commentList {
  clear: both;
  width: 100%;
  float: left;
  padding: 10px 0 15px;
}

#commentList .comment {
  padding: 10px 0 2px;
  font-family: arial,sans-serif;
  clear: both;
  line-height: 1.35;
  font-size: 0.7rem;
}

#commentList .commentName {
  float: left;
  font-weight: 600;
}

#commentList .commentTime {
  display: none;
}

#commentList .commentDateTime, #commentList .commentTools {
  float: right;
}

#commentList .commentBody {
  width: 100%;
  display: inline-block;
  margin: 10px 0;
}

#allReviewsLists p.commentPaging {
  float: right;
  position: relative;
}

#allReviewsLists p.commentPaging img {
  position: static;
}

#allReviewsLists p.commentPaging a {
  color: #000;
  font-size: 1.05rem;
}

#allReviewsLists p.commentPaging .nextLink, #allReviewsLists p.commentPaging .previousLink {
  background: #d51b1e;
}

#allReviewsLists p.commentPaging .nextLink:hover, #allReviewsLists p.commentPaging .previousLink:hover {
  background: #d51b1e;
  line-height: inherit;
}

#allReviewsLists p.commentPaging .previousLink {
  float: left;
}

#allReviewsLists #commentListHead {
  clear: left;
  width: 100%;
  margin: 0;
}

#body p a.more {
  color: #d51b1e;
  text-decoration: none;
}

#body p a.more:hover {
  text-decoration: underline;
}

.series #commentListHead,
.hasPaging {
  background: #ebeded;
  height: 51px;
  overflow: hidden;
  width: 100%;
  clear: both;
}

.series #commentListHead p,
.hasPaging p {
  vertical-align: middle;
  font-size: 0;
}

.series #commentListHead .commentTotal,
.hasPaging .commentTotal {
  border-right: 3px solid #fff;
  padding: 15px 10px;
  float: left;
  color: #d51b1e;
  font-size: 1.05rem;
}

.series #commentListHead .commentPaging a, .series #commentListHead .commentPaging strong,
.hasPaging .commentPaging a,
.hasPaging .commentPaging strong {
  border-left: 3px solid #fff;
  padding: 15px 10px;
  display: inline-block;
  position: static;
  letter-spacing: .05em;
  vertical-align: top;
  font-size: 1.05rem;
}

.series #commentListHead .commentPaging a:hover, .series #commentListHead .commentPaging strong:hover,
.hasPaging .commentPaging a:hover,
.hasPaging .commentPaging strong:hover {
  background: #DEDECC;
  text-decoration: none;
}

.series #commentListHead p {
  float: right;
  font-size: 1.05rem;
  border-left: none !important;
  padding: 15px 10px 0 0;
}

#allReviewsLists p a.showAllComments {
  background: #d51b1e;
  color: #fff;
  letter-spacing: .03em;
  line-height: 1;
  font-weight: 500;
  font-size: 1.3rem;
}

#allReviewsLists p a.showAllComments:hover {
  letter-spacing: .03em;
}

#commentsHead {
  padding: 15px 0;
}

#commentFormHeader {
  clear: left;
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid #ccc;
  font-weight: 600;
  font-size: 0.7rem;
}

#commentTextDiv textarea {
  clear: both;
  width: 614px;
  height: 100px;
}

#commentTextDiv p#limitText {
  float: right;
}

form#commentForm div {
  font-size: 0.75rem;
}

form#commentForm div label {
  font-weight: normal;
  font-size: 0.75rem;
}

#commentNameDiv {
  margin: 10px 0;
}

.section-comments-article {
  background: #d51b1e;
  padding: 8px 15px 8px 10px;
}

.section-comments-article .title-3 {
  color: #fff;
  font-size: 1.15rem;
}

.section-comments-article .deck, .section-comments-article .theme-black .deck-white, .theme-black .section-comments-article .deck-white {
  color: #fff;
}

.search-results_main {
  padding-top: 20px;
}

.search-results_result {
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}

.search-results_result .sponsor-search_slug {
  position: relative;
  bottom: 3px;
}

.search-results_excerpt {
  padding: 20px 0 0 30px;
  line-height: 1.5;
  font-size: 0.75rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

.search-results_lastResult {
  border-bottom: none;
  padding: 0;
}

.ais-Hits-item:last-child .search-results_result {
  border-bottom: none;
  padding-bottom: 0;
}

.search-panel form input {
  width: 620px;
  padding: 0 10px;
  height: 43px;
  font-size: 0.75rem;
  border: 1px solid #000;
  color: #696969;
  font-family: Verdana,Arial,sans-serif;
}

.search-panel form .input-addon-group {
  margin: 0 auto;
  width: 620px;
}

.search-panel form .input-addon-group .submit {
  position: absolute;
  right: 15px;
  width: 28px;
  height: 28px;
}

.search-panel label {
  display: block;
  font-size: 0.75rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.search-panel select {
  border-color: transparent;
  margin-right: 10px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
}

.nav {
  list-style: none;
}

.nav .nav_link-first {
  margin-left: 0 !important;
}

.nav_link {
  text-decoration: none;
}

.nav_link:hover {
  text-decoration: none;
}

/**
	* With the glow on the article pages, the border color on the
	* indidivual nav links goes from washed-out to bright.
	*
	* As the `.nav-main_item` elements are separated from each
	* other by one additional element, and since the first `.nav-main_item`
	* is the second child of its parent, the `:nth-child` selectors are
	* 2, 4, and 6.
	*/
.nav-main_item:nth-child(2) > .nav_link {
  border-color: #fa3c3f;
}

.nav-main_item:nth-child(4) > .nav_link {
  border-color: #ee3b3e;
}

.nav-main_item:nth-child(6) > .nav_link {
  border-color: #e2383c;
}

.nav-main_link {
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
}

.nav-main_link:hover {
  border-bottom: 4px solid #e2383c;
  padding-bottom: 3px;
}

.explore {
  cursor: default;
}

.nav-head {
  cursor: default;
}

.explore:hover {
  border: 0;
}

.nav-separator {
  color: #e66163;
  font-weight: 700;
  font-size: 1.05rem;
}

.nav-list_link {
  color: #000;
}

.nav-list_link:hover {
  text-decoration: underline;
}

.nav-list > .nav_item {
  margin-right: 8px;
}

.nav-list > .nav_item:before {
  content: '/';
  display: inline-block;
  padding-right: 8px;
}

.nav-list > .nav_label:before,
.nav-list > .nav_item-first:before {
  content: '';
  padding-right: 0;
}

.nav-topics {
  margin-bottom: 20px;
  margin-top: 6px;
  font-size: 0.8rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

.nav-topics > .nav_label {
  margin-right: 10px;
  /*// 7 + 8 = 15px between `.nav_label`
		// and the first `.nav_item`*/
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-topics .featured-links-separator {
  padding: 0 5px;
  color: #000;
  font-weight: inherit !important;
}

.nav-topics a {
  margin: 0 5px;
  color: #d51b1e;
  text-decoration: none;
  border-bottom: 3px solid #fff;
  padding-bottom: 2px;
}

.nav-topics a:hover {
  border-bottom: 3px solid #000;
  color: #000;
}

.nav-topics a.viewAll {
  color: #d51b1e;
}

.nav-topics a.active {
  border-bottom: 3px solid #000;
  color: #000;
}

.nav-head {
  font-size: 0.75rem;
  padding-left: 20px;
}

.nav-head a {
  padding: 5px 0 0 0 !important;
}

.nav-head a:hover {
  text-decoration: none;
}

.nav-footer {
  font-weight: 400;
  line-height: 1.4;
  font-size: 0.7rem;
}

.section-main .nav-topics {
  margin-bottom: 25px;
}

.nav-topics span {
  position: relative;
  top: 0px;
  font-weight: 200 !important;
  color: #999;
  font-size: 0.8rem;
}

.arrow-links a {
  color: #000;
}

.arrow-links a:hover {
  text-decoration: underline;
}

.fix-header .nav_item ul.nav-dropdown {
  top: 26px;
}

.nav-secondLevel {
  color: #878787;
  clear: left;
  padding: 10px 0 0 20px;
}

.nav-secondLevel .red-link-color {
  color: #d51b1e;
}

.nav-byline {
  color: #878787;
  text-transform: uppercase;
  padding-left: 15px;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
  font-size: 0.65rem;
}

.nav_item ul ul {
  display: block;
  margin: 0;
}

.subMenu {
  list-style: none;
}

.subMenu .nav_link {
  padding-left: 1.5em !important;
}

ul.section-opinion-nav a.nav_link {
  padding-left: 40px;
}

ul.lastList {
  width: 17em;
}

.color-blue {
  color: #0099d2;
  font-size: 0.75rem;
}

.subMenu span {
  padding-left: 20px;
}

.w-115 {
  width: 115px !important;
}

/*To adjust filter links style on Ourlatest page*/
.ourlatest .nav-topics .nav-label {
  margin-right: 0px;
}

.ourlatest .nav-topics .nav-item::before {
  padding: 0 2px;
}

.ourlatest .nav-topics .nav-item_first::before {
  padding: 0 !important;
}

.clear-link {
  float: right;
  color: #999 !important;
  font-weight: 400;
}

.clear-link:hover {
  text-decoration: underline;
  border-bottom: 0px !important;
}

.nav-browseTopics {
  display: inline;
  text-transform: uppercase;
  border-left: 1px solid #d2d2d2;
  padding: 3px 11.92px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
}

.nav-browseTopics::first-child {
  border: 0;
  padding-left: 0;
}

.nav-browseTopics a {
  color: #000;
}

.nav-browseTopics a:hover {
  border-bottom: 5px solid #d51b1e;
  text-decoration: none;
  color: #d51b1e;
}

.nav-browseTopics > .selected {
  border-bottom: 5px solid #d51b1e;
  color: #d51b1e;
}

.collection-links {
  text-transform: uppercase;
  font-weight: bold;
}

.collection-links .nav-topics {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-size: 1.05rem;
  letter-spacing: .03em;
  font-weight: 400;
}

.collection-links .nav-topics a {
  color: #d51b1e;
  padding: 0;
  margin: 0 2px;
}

.collection-links .nav-topics a::hover {
  border: none;
  text-decoration: underline;
}

.collection-links .nav-topics > .nav_label {
  margin-right: 2px;
}

.newsletterFields .nlField-email {
  font-size: 0.8125rem;
  margin: 0;
  color: #3d3d3d;
}

.newsletterFields .nl-signup {
  background-color: #d51b1e;
  color: #fff !important;
  border: none;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: "Gotham A", "Gotham B", sans-serif;
  cursor: pointer;
}

.modal-newsletter .newsletterList .nlList_item_link {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

.modal-newsletter .newsletterList .newsletterLogo {
  height: 17.6px;
}

.modal-newsletter .newsletterList .newsletterDescription {
  font-size: 0.8125rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
}

.modal-member {
  margin: -16px -15px;
  width: calc(100% + 31px);
  padding: 25px 20px;
  min-width: 625px;
  z-index: -1;
}

.article-body-newsletter .newsletterFields {
  max-width: 450px;
}

.article-body-newsletter .system-nl-form .nlField-email {
  width: calc(100% - 8px);
  margin-right: 8px;
}

.article-body-newsletter .nlField-email {
  width: calc(100% - 108px);
  margin-right: 8px;
  height: calc(30px + 8px + 2px);
}

.article-body-newsletter .nl-signup {
  height: 40px;
  width: 100px;
}

.nl-rightnav .nlField-email, .l-rightnav .system-nl-form .nlField-email {
  width: calc(100% - 5px);
  margin-right: 5px;
}

.icon-unlocked, .icon-unlocked-left {
  background: url(/ct/channel/img/icon_unlocked.gif) no-repeat;
}

.icon-unlocked-left {
  padding-left: 28px;
  background-position: left center;
}

.icon-unlocked-right {
  padding-right: 28px;
  background-position: right center;
}

.icons-social a {
  width: 36px;
  display: inline-block;
  vertical-align: top;
  margin-left: 27px;
  text-align: center;
  text-decoration: none;
}

.icons-social a span {
  display: block;
  color: #000;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.65rem;
}

.icons-social a:hover {
  text-decoration: underline;
}

.icons-social > .noSpace {
  margin: 0;
}

.iconMore {
  background-image: url(/ct/channel/img/arrow_red.gif);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 10px;
}

.section-notice.listed-links_bold {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1rem;
}

.section-notice.listed-links_bold > a {
  color: #000;
}

.listed-links_bold img, img.subscriber-access-lock {
  vertical-align: middle;
}

.feedback {
  background: #ebeded;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 0.8rem;
}

.feedback strong {
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 500;
}

.feedback span, .feedback b {
  padding: 10px 8px;
  vertical-align: middle;
  display: inline-block;
  font-weight: 400;
}

.feedback span img, .feedback b img {
  margin-right: 5px;
  vertical-align: middle;
}

.feedback span {
  border-left: 3px solid #fff;
}

.help-response {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif;
  font-weight: 400;
  color: #000;
  padding: 10px;
  width: 400px;
  margin: 0 auto;
  font-size: 0.85rem;
}

.help-response p {
  padding: 10px 10px 10px 0;
}

.registeredRight ul {
  padding-left: 10px;
}

.registeredRight ul li {
  list-style: none;
}

.register-form_content .display-block {
  font-weight: 500;
}

.article-body-newsletter .krnbtnWidth {
  width: 130px !important;
}

.passwordSpec, .unavailableZip, .recaptcha_only_if_image, .recaptcha_only_if_audio, #captchaCaption {
  font-size: 12.8px;
  font-weight: 500;
}

.contactUs-form, .register-form {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif;
  font-weight: 400;
}

.contactUs-form label, .register-form label {
  font-size: 0.875rem;
  font-weight: 600;
}

.register-form_content .text, #captchaInput .text {
  border: 1px solid #000;
  background: none;
}

span.limitText {
  padding: 0;
  font-size: 0.85rem;
}

/* For Contact Us Page */
.help-subhead {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif;
  font-weight: 400;
  font-size: 1.5rem;
}

.section-notice {
  border-bottom: 1px solid #dedecc;
  padding-bottom: 30px;
  font-size: 0.75rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

/*Site Map*/
.listed-links_normal {
  font-family: "Gotham A", "Gotham B", sans-serif;
  line-height: 1.6;
  list-style: none outside none;
  padding-left: 20px;
}

.listed-links_normal a {
  color: #000;
}

.listed-links_item {
  font-size: 0.8rem;
}

.expandContent {
  width: 100%;
  position: fixed;
  background: #fff;
  bottom: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 99;
  opacity: 1 !important;
  border-top: 15px solid #000;
}

#popupBoxClose {
  color: #999;
  right: 0;
  position: absolute;
  background: url(/ct/channel/img/icon_close.gif) no-repeat 0 1px;
  padding-left: 20px;
  font-family: verdana,arial,sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
}

.article-popup_section .content-inside {
  width: 500px;
}

.scrollContainer {
  overflow: hidden;
  font-weight: 400;
}

.scrollContainer h2 {
  font-size: 2.5rem;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
}

.scrollContainer h3 {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  font-size: 1.55rem;
}

.scrollContainer .subheading {
  color: #000;
  font-size: 1.3rem;
  line-height: 1.15;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
}

.section-bordered-top-15 {
  border-top: 15px solid #000;
}

.image_left {
  margin-top: 5px;
}

.imageWrapper > .credit {
  display: block;
}

.moreIssue {
  width: 75%;
  overflow: hidden;
}

.moreIssue .l-grid_item {
  width: 202px;
  margin: 0 15px;
  text-align: right;
}

.moreIssue .align-left {
  text-align: left;
}

.section-moreFrom-Issue {
  overflow: hidden;
}

.section-moreFrom-Issue .title, .section-moreFrom-Issue .theme-black .title-white, .theme-black .section-moreFrom-Issue .title-white {
  display: inline;
}

.section-moreFrom-Issue .subscriber-access-notifier {
  margin-left: 8px;
  float: none;
}

.section-moreFrom-Issue .moreIssue ul.l-grid li.l-three .slug, .section-moreFrom-Issue .moreIssue ul.l-grid li.l-three .theme-black .slug-white, .theme-black .section-moreFrom-Issue .moreIssue ul.l-grid li.l-three .slug-white {
  width: 100%;
}

.reviewDesc {
  overflow: hidden;
  font-size: 0.75rem;
}

.reviewDesc a {
  color: #000;
  text-decoration: underline;
}

.reviewDesc a:hover {
  text-decoration: none;
}

.heading-preview {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif;
  font-weight: 400;
  text-align: center;
  padding: 4px 5px;
  background: #000;
  color: #fff;
  font-size: 1.3rem;
}

.section-inner {
  padding: 20px 15px 15px;
  background: #ebeded;
  font-size: 1.2rem;
}

.section-inner .subscribe {
  font-size: 0.9rem;
}

.section-inner .subscribe .desc-text {
  margin: 0;
}

.subscribe .section-centered a.custom-buttons {
  width: 200px !important;
}

.section-popup > h2,
.section-popup > h3 {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.85rem;
}

.firstLink a {
  font-weight: 800;
}

.l-five div#body {
  width: 100%;
}

.image_center {
  margin-bottom: 20px;
}

#ratingHelp {
  float: left;
  margin-left: 4px;
}

#ratingHelp img {
  position: relative;
  top: 2px;
}

#recommendedResources {
  display: none;
}

.page-heading-en-espanol {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  font-size: 3rem;
}

#body p.copyright,
#body .copyright {
  clear: both;
}

#body .image_left {
  margin-bottom: 10px;
}

.review-box .review-box-content {
  overflow: hidden;
  font-family: "Gotham A", "Gotham B", sans-serif;
}

.review-box .review-box-content .headings-small {
  float: left;
  min-width: 130px;
}

#body .review-box ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}

.rightnav-article_adjustment .section-newsletters {
  border-bottom: 1px solid #000;
  padding: 13px 0;
}

.article-title {
  font-size: 3.375rem;
  font-weight: 400;
  line-height: 1;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .article-title {
    font-size: 50px;
  }
}

#shareUrlModal {
  width: 620px;
  padding: 22px 20px;
}

.more-from {
  width: 720px;
  display: inline-block;
}

.more-from .img-container img {
  display: inline-block;
  margin-bottom: 10px;
}

/* Recent Issue css*/
.aside-widget {
  border-top: 6px solid #000;
}

.aside-widget .js-header_img img {
  max-width: 100%;
}

.aside-widget .more {
  margin-top: 20px;
  margin-bottom: 20px;
  display: inline-block;
  font-size: 1.0625rem;
}

.aside-widget .section-heading-light {
  font-size: 30px;
}

.aside-widget ul {
  font-family: "Gotham A", "Gotham B", sans-serif;
  color: #000;
  padding-left: 0 !important;
}

.aside-widget ul li {
  line-height: 1.15;
  display: inline-block;
  text-align: center;
  font-size: 0.6875rem;
}

.aside-widget ul li .item-text {
  margin-top: 10px;
  margin-bottom: 15px;
  display: inline-block;
}

.aside-widget ul li a {
  color: #000000 !important;
  text-decoration: none !important;
}

/****/
/* badge CSS */
.article-featured-image .cue {
  top: -30px;
  right: -30px;
}

.article-featured-image .slideshow-caption {
  padding-left: 10px;
  padding-right: 10px;
}

.article-featured-image .slideshow-caption .image-credit {
  padding-right: 0px;
  text-align: right;
}

.article-featured-image .image-credit {
  padding-right: 15px;
}

.title-badge {
  padding-right: 100px;
  position: relative;
}

.title-cue {
  display: none;
}

.archive-cue {
  width: 97px;
  height: 97px;
  display: inline-block;
  padding: 48px 0 23px 0;
  text-align: center;
  color: #fff;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 200;
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.1;
  background: url(/ct/channel/img/archivesbadge.svg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  position: absolute;
  top: -15px;
  right: 0px;
}

.archive-cue:hover {
  text-decoration: none;
}

.article-featured-image .archive-cue {
  top: -30px;
  right: -30px;
  z-index: 9;
}

#body ul li,
#body ol li {
  font-style: inherit !important;
}

/****/
/*** Current Issue***/
.aside-widget .panel-current-issue .current-issue-date {
  color: #000;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.0625rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  background-color: transparent;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 4px 0px;
  line-height: 20px;
}

.aside-widget .panel-current-issue .current-issue-articles, .aside-widget #body .panel-current-issue .current-issue-articles, #body .aside-widget .panel-current-issue .current-issue-articles {
  margin-top: 20px;
}

.aside-widget .panel-current-issue .current-issue-articles li, .aside-widget #body .panel-current-issue .current-issue-articles li, #body .aside-widget .panel-current-issue .current-issue-articles li {
  text-align: left;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-size: 1rem;
}

.aside-widget .button, .aside-widget #body .button, #body .aside-widget .button {
  padding: 7px 20px;
  width: 100%;
}

.aside-widget a {
  text-decoration: none !important;
}

.aside-right .article-promoSpot .article-promoSpot_item {
  font-size: 0.6875rem;
}

/*** More in this series css***/
.series-template .aside-widget {
  border-bottom: 0px;
  float: left;
}

.series-template .aside-widget .section-waterfall_block {
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.series-template .aside-widget .title-3 {
  font-size: 1rem;
  margin: 8px 0px;
  line-height: 18px;
}

.disclosure {
  background-color: #ededed;
  padding: 10px 15px;
  text-align: center;
  border: 1px solid #e8e8e8;
}

.disclosure p {
  font-size: 0.8125rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

.section-articlePreview a {
  color: #d51b1e;
  text-decoration: underline;
}

.section-articlePreview a:hover {
  text-decoration: none;
}

.unlocked-popup .section-articlePreview a.color-white {
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.section-articlePreview .button, .section-articlePreview #body .button, #body .section-articlePreview .button {
  min-width: 200px;
}

.section-articlePreview,
#body .section-articlePreview {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  clear: left;
  margin-bottom: 20px;
}

.section-articlePreview p,
#body .section-articlePreview p {
  padding: 0;
  line-height: 1.15;
  font-family: "Gotham A", "Gotham B", sans-serif !important;
  font-weight: 400;
  font-size: 0.9rem;
}

.section-articlePreview span,
#body .section-articlePreview span {
  color: #d51b1e;
  font-size: 1.2rem;
}

.section-articlePreview .subscribe p.desc-text,
#body .section-articlePreview .subscribe p.desc-text {
  margin-bottom: 5px;
}

.ad-sponsored img {
  margin: 0 auto;
}

/** Browse by year dropdown css**/
.nav-dropdown .caret4byr {
  left: 640px;
}

.nav-dropdown .caret4Bbp {
  left: 765px;
}

/**----------------------**/
/** Browse by publication dropdown css**/
.archive-browsebypublication .nav-dropdown .subscription-include {
  width: 215px;
}

.archive-browsebypublication .nav-dropdown .subscription-include p {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 18px;
}

.archive-browsebypublication .nav-dropdown .list li {
  font-size: 0.8125rem;
}

/**----------------------**/
/*** subscription-panel ***/
.subscription-panel .subscription-panel--content {
  width: 300px;
  display: inline-block;
  float: left;
}

.subscription-panel .subscription-panel--content .title-3 {
  font-size: 1.25rem;
}

.subscription-panel .subscription-panel--content h1 {
  margin-bottom: 10px;
}

.subscription-panel .subscription-panel--content h2 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 0.75rem;
  font-family: "Gotham A", "Gotham B", sans-serif !important;
  font-weight: 600;
  text-transform: uppercase;
}

.subscription-panel .subscription-panel--content p {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
}

.subscription-panel .subscription-panel--content p a {
  text-decoration: underline;
}

.subscription-panel .subscription-panel--content ul li {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 0.75rem;
}

.subscription-panel .subscription-panel--content ul li a {
  font-size: 0.875rem;
  text-decoration: underline;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

.subscription-panel .subscription-panel--content .content {
  list-style: none !important;
}

.subscription-panel .subscription-panel--content .inner-body ul {
  padding-left: 15px;
}

.editors-pick .title-2 {
  margin-top: -3px;
}

.editors-pick h1 {
  margin-bottom: 5px;
}

.editors-pick h1 a {
  text-decoration: none;
}

.editors-pick .section-heading a, .editors-pick .theme-black .section-heading-white a, .theme-black .editors-pick .section-heading-white a {
  margin-bottom: 15px;
}

/**Archive curated editor's pick**/
.editors-pick .description, .editors-articles .description {
  font-size: 0.6875rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  color: #999999;
  text-transform: uppercase;
}

.editors-pick .link-txt, .editors-articles .link-txt {
  font-family: "Gotham Cond A", "Gotham Cond B",sans-serif;
  font-size: 1.0625rem;
}

.content-inside .flag-empty p {
  margin: 0px;
}

.editors-pick-curated .breadcrumbs a {
  color: #999 !important;
}

.editors-pick-curated h1 {
  margin-bottom: 5px;
  border-bottom: 1px solid #ebeded;
}

.editors-articles h2 {
  margin-top: 5px;
}

.editors-articles .article-item {
  margin-top: 30px;
}

.editors-articles .byline {
  margin-top: 10px;
}

.editors-articles p .spacer-top-15 {
  margin-top: 10;
}

.archive-menu .nav-dropdown {
  background-image: none;
}

.panel-inner .text a {
  color: #d51b1e;
  font-size: 0.75rem !important;
}

.list-arrow-featured .feature-head {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 12px;
}

.archive-badge {
  position: relative;
  display: block;
}

.archive-badge .badge-right {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
}

.archive-badge .badge-left {
  position: absolute;
  top: -10px;
  left: -10px;
}

/*
*	CSS	for	Carousel Start from	here
**************************/
.feature-panel .container {
  padding-left: 0;
  padding-right: 0;
}

.carousel {
  overflow: hidden;
  position: relative;
  /*@media (min-width:768px){margin:0	10px;}*/
}

.carousel-inner {
  position: relative;
  transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  clear: both;
}

@media (min-width: 768px) {
  .carousel-inner {
    height: 330px;
  }
}

.carousel-item {
  float: left;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  left: 0px;
}

.carousel-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.carousel-item img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}

.carousel-indicators {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  margin: 5px;
  font-size: 0;
  background: #d0d0d0;
  display: block;
  -webkit-transition: opacity	.4s	ease;
  transition: opacity	.4s	ease;
  border-radius: 50px;
}

@media (min-width: 1025px) {
  .carousel-dot:hover {
    background: #d51b1e;
  }
}

.carousel-dot.active {
  background: #d51b1e;
}

.showing {
  position: relative;
}

@media (min-width: 768px) {
  .showing {
    width: 940px;
    left: 940px;
  }
}

.fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both	ease-in-out;
  animation: fadeOut .7s both	ease-in-out;
  position: relative;
}

@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}

@keyframes empty {
  0% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.header-higher-education .vertical-header {
  background: #ebeded !important;
}

.header-higher-education .vertical-header * {
  color: #000 !important;
}

.header-higher-education .vertical-header .dropdown-alternate:before {
  content: "";
  position: absolute;
  top: -20px;
  right: 20px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #ccc transparent;
}

.articleFoot {
  height: 52px;
  clear: left;
  overflow: hidden;
}

.pagination {
  font-family: "Gotham A", "Gotham B", sans-serif;
}

.pagination .paging-item strong {
  color: #000;
}

.star-rating {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 75px;
  height: 14px;
  position: relative;
  background: url(/system/img/star-rating.gif) top left repeat-x;
}

.star-rating li {
  float: left;
}

.star-rating li a {
  display: block;
  width: 15px;
  height: 14px;
  text-decoration: none;
  text-indent: -9000px;
  z-index: 20;
  position: absolute;
  padding: 0;
  margin: 0;
}

.star-rating li a:hover {
  background: url(/system/img/star-rating.gif) left bottom;
  z-index: 1;
  left: 0;
  bottom: 0;
}

.star-rating li a.one-star {
  left: 0;
}

.star-rating li a.one-star:hover {
  width: 15px;
}

.star-rating li a.two-stars {
  left: 15px;
}

.star-rating li a.two-stars:hover {
  width: 30px;
}

.star-rating li a.three-stars {
  left: 30px;
}

.star-rating li a.three-stars:hover {
  width: 45px;
}

.star-rating li a.four-stars {
  left: 45px;
}

.star-rating li a.four-stars:hover {
  width: 60px;
}

.star-rating li a.five-stars {
  left: 60px;
}

.star-rating li a.five-stars:hover {
  width: 75px;
}

.yourRating {
  background: url(/ct/channel/img/stars_sprite.gif) no-repeat;
  height: 14px;
  list-style: none;
  padding: 0px !important;
  position: relative;
  top: 2px;
  width: 75px;
  margin-right: 4px;
}

.yourRating li {
  cursor: pointer;
  float: left;
  text-align: left;
  text-indent: -999em;
}

.yourRating li a {
  height: 14px;
  left: 0;
  position: absolute;
  text-decoration: none;
  top: 0;
  width: 15px;
  z-index: 3;
}

.yourRating li a:hover {
  background: url(/ct/channel/img/stars_sprite.gif) 0px 0px no-repeat;
  height: 14px;
  left: 0;
  overflow: hidden;
  width: 75px;
  z-index: 2;
}

.yourRating li.two a {
  left: 15px;
}

.yourRating li.three a {
  left: 30px;
}

.yourRating li.four a {
  left: 45px;
}

.yourRating li.five a {
  left: 60px;
}

strong.yourRating {
  float: left;
  padding: 10px 5px 10px 0;
}

#starvote p, .starvote p,
#starresult p, .starresult p {
  display: none;
}

#rateThisMovie,
#rateThisAlbum {
  clear: both;
  display: inline;
  float: left;
  padding: 10px 10px 0 0;
  width: 592px;
}

#rateThisMovie h3,
#rateThisAlbum h3 {
  clear: left;
  float: left;
  padding-right: 10px;
  color: #d51b1e;
  text-transform: capitalize;
  padding-top: 15px;
}

ul.movieRating,
#rateThisMovie ul.yourRating,
#rateThisAlbum ul.yourRating,
#rateThisItem ul.yourRating {
  float: left;
}

ul.movieRating {
  margin: 0;
  width: 60px;
}

ul.movieRating li a:hover {
  width: 60px;
}

ul.halfstar {
  background-position: 0 -14px;
}

ul.yourRating li.one a:hover,
ul.onestar {
  background-position: 0 -28px;
}

ul.oneandhalfstar {
  background-position: 0 -42px;
}

ul.yourRating li.two a:hover,
ul.twostar {
  background-position: 0 -56px;
}

ul.twoandhalfstar {
  background-position: 0 -70px;
}

ul.yourRating li.three a:hover,
ul.threestar {
  background-position: 0 -84px;
}

ul.threeandhalfstar {
  background-position: 0 -98px;
}

ul.yourRating li.four a:hover,
ul.fourstar {
  background-position: 0 -112px;
}

ul.fourandhalfstar {
  background-position: 0 -126px;
}

ul.yourRating li.five a:hover,
ul.fivestar {
  background-position: 0 -140px;
}

/*css for rating Movies/Books/Music*/
.ratingTxt {
  font-size: 0.8rem;
}

.rate-it {
  font-size: 0.7rem;
}

.reviewDesc > ul {
  list-style: none;
  display: inline-block;
}

.reviewDesc > ul > li {
  display: inline-block;
}

.ratingSmallTxt {
  font-size: 0.7rem;
  padding: 0 4px;
}

.addYours {
  color: #d51b1e;
  text-transform: uppercase;
  padding: 0 6px 0 8px;
  background: url(/ct/channel/img/icon_add_ur_rating.png) no-repeat left 2px;
  margin-left: 7px;
  font-size: 0.65rem;
}

/*css for rating Movies/Books/Music*/
/*featured box */
.featured-insertion {
  border-bottom: 7px solid #000;
  background: #ebeded;
}

.featured-insertion header {
  background: #000;
  color: #fff;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  height: 40px;
  text-transform: none;
  font-size: 1.5rem;
}

.featured-insertion header span:not(:first-child) {
  border-left: 1px solid #4d4d4d;
  padding-left: 10px;
  margin-left: 10px;
  color: #fff;
  text-transform: none;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
}

.featured-insertion_content {
  padding: 20px;
  overflow: hidden;
}

.featured-insertion_content .nav-topics {
  margin-bottom: 0px;
}

.featured-insertion_content .nav-topics a {
  color: #d51b1e;
  text-decoration: none;
  font-size: 0.8rem;
  display: inline-block;
}

.featured-insertion_description .deck a, .featured-insertion_description .theme-black .deck-white a, .theme-black .featured-insertion_description .deck-white a {
  color: #d51b1e;
}

a.featured-insertion_links {
  border-bottom: none;
  margin: 0 2px;
  padding: 0;
}

a.featured-insertion_links:hover {
  border: 0;
}

.featured-insertion_linklist {
  overflow: hidden;
}

.featured-insertion_linklist li {
  list-style: none;
}

.featured-insertion_linklist li a {
  display: inline;
}

.featured-insertion_linklist li .firstLink {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 3px;
}

.featured-insertion_linklist li .firstLock {
  position: relative;
  top: 7px;
  vertical-align: top;
}

.featured-insertion_linklist li .slug a, .featured-insertion_linklist li .theme-black .slug-white a, .theme-black .featured-insertion_linklist li .slug-white a {
  font-size: 0.85rem;
}

.issue-slider {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  background-color: #fff;
}

.issue-slider-title {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
  position: absolute;
  left: 13px;
  bottom: 0px;
}

.issue-slider_outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  margin: 0 70px;
  min-height: 195px;
}

.issue-slider_stage {
  position: relative;
  left: 0;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.issue-slider_magazines, .issue-slider_item {
  position: relative;
}

.issue-slider_item {
  padding-bottom: 25px;
}

.issue-slider_nav .prev,
.issue-slider_nav .next {
  position: absolute;
  top: 0;
  left: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  height: 100%;
  width: 30px;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  z-index: 3;
}

.issue-slider_nav .prev.disabled,
.issue-slider_nav .next.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.issue-slider_nav .prev img,
.issue-slider_nav .next img {
  max-width: 100%;
}

.issue-slider_nav .next {
  position: absolute;
  right: 10px;
  left: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.issue-slider_item:not(:first-of-type):before {
  content: "";
  width: 1px;
  height: 100%;
  display: inline-block;
  position: absolute;
  left: 0px;
  background: #333;
}

.issue-slider_item.jump-to-year:before {
  content: none;
}

.issue-slider_item .year-budge {
  padding: 10px 0 0;
  color: #ccc;
  display: inline-block;
  font-weight: 700;
}

.issue-slider_magazine {
  width: 80px;
  text-align: center;
}

.issue-slider_magazine .mag-cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 81px;
  padding: 0;
  background: none;
}

.issue-slider_magazine .mag-cover img {
  vertical-align: top;
}

.issue-slider_magazine .mag-month {
  font-size: 0.688rem;
  font-weight: 400;
  width: auto;
  white-space: pre-wrap;
  color: #fff;
  min-height: 20px;
  display: inline-block;
}

.issue-slider_magazine span.mag-month {
  padding: 0 5px;
}

.issue-slider_years {
  background-color: #333;
  position: relative;
}

.issue-slider_years-outer {
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  margin: 0 13px;
}

.issue-slider_years-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  list-style: none;
  margin-left: 0;
  left: 0px;
}

.issue-slider_years-stage li:last-child a {
  margin: 8px 0 8px 0;
}

.issue-slider_years-link {
  display: block;
  margin: 8px 29px 8px 0;
  font-size: 0.75rem;
  color: #ccc;
}

.issue-slider_yearly {
  margin-top: 0;
}

.year-active {
  position: fixed;
  left: 0;
  top: 0;
  margin-left: 10px !important;
}

.slider_item_active {
  top: 25px;
  padding-bottom: 50px;
}

@-moz-document url-prefix() {
  .slider_item_active {
    top: 26px;
    padding-bottom: 50px;
  }
}

.scrollbar {
  width: 100%;
  height: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #767777;
}

.scrollbar .scrollbar-btn {
  width: 7px;
  height: 9px;
  background-repeat: no-repeat;
  background-size: unset;
  background-position: center;
}

.scrollbar .scrollbar-btn.prev {
  background-image: url("/ct/channel/img/black-icon-prev.png");
  margin-right: 1px;
}

.scrollbar .scrollbar-btn.next {
  background-image: url("/ct/channel/img/black-icon-next.png");
  margin-left: 1px;
}

.scrollbar .scrollbar-track {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border: 0;
  border-radius: 0;
  background: none;
  height: 9px;
  margin: 0 30px;
}

.scrollbar .scrollbar-track:before, .scrollbar .scrollbar-track:after {
  content: "";
  width: 17px;
  height: 9px;
  position: absolute;
}

.scrollbar .scrollbar-track:before {
  left: -17px;
}

.scrollbar .scrollbar-track:after {
  right: -17px;
}

.scrollbar .ui-slider-horizontal .ui-slider-handle {
  border: none;
  border-radius: 0;
  background: #ebebeb;
  width: 34px;
  height: 9px;
  top: 0;
  left: 0;
  margin-left: -17px;
  background-image: url(/ct/channel/img/arrow_previous.svg), url(/ct/channel/img/arrow_next.svg);
  background-position: left 7px center, right 7px center;
  background-repeat: no-repeat,no-repeat;
  background-size: 10%;
}

.scrollbar-thumb {
  left: 7px;
  width: 35px;
  height: 9px;
  display: block;
  background-color: #d51b1e;
  position: absolute;
  display: none;
}

.issue-slider_publications ul {
  list-style: none;
  background-color: #333;
  color: #fff;
  padding-left: 80px;
}

.issue-slider_publications ul li {
  margin-right: 30px;
}

.issue-slider_publications ul li:last-child {
  margin-right: 0px;
}

.issue-slider_publications ul li a {
  display: block;
  padding: 10px 0px 8px;
  font-size: 0.75rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  color: #fff;
  border-bottom: 2px solid #333;
  margin: 0px;
}

.issue-slider_publications ul li a:hover {
  border-bottom: 2px solid #fff;
  text-decoration: none;
}

.issue-slider_publications ul li a.active {
  border-bottom: 2px solid #fff;
  text-decoration: none;
}

.issue-slider .issue-slider_nav .prev img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/**
* I'm including the `-ct` suffix in order to prevent system-wide
* modals from being affected.
*/
.modal-ct {
  padding: 30px;
  width: 560px;
  border: 3px solid #b6bbc1;
}

.modal-ct > p {
  margin: 20px 0;
  font-weight: 400;
  line-height: 1.2;
  font-size: 1.2rem;
}

.modal-ct > textarea {
  display: block;
  overflow: auto;
  padding: 5px;
  width: 100%;
  border: 1px solid #d9d9d9;
  resize: none;
  color: #676a6b;
  font-family: Verdana, Arial, sans-serif;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 0.7rem;
}

.modal-ct.is-centered {
  left: 50%;
  position: fixed;
  top: 100px;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.modal-ct a {
  text-decoration: underline;
}

.modal-ct a:hover {
  color: #d51b1e;
}

.title-modal {
  font-weight: 400;
  line-height: 1.05;
  font-size: 2.4rem;
}

*:focus {
  outline: none;
}

select optgroup.optGroup {
  margin-top: 10px;
  padding: 0 5px;
  font-family: Arial,Verdana,Helvetica,sans-serif;
  font-weight: bold;
  letter-spacing: 0.01em;
  font-size: 0.9rem;
}

.form-textarea {
  font: 0.8rem Verdana, Arial, Helvetica, sans-serif;
  color: #666666;
  padding: 10px;
  width: 100%;
  height: 215px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #000000;
}

.info-submit .form-textarea {
  height: 180px;
}

.error {
  color: #d51b1e;
}

.required {
  font-style: italic;
  font-size: 0.8rem;
}

#recaptcha_response_field {
  height: 20px;
  width: 250px;
  color: #666;
  background: url("/ct/channel/img/bg_input.gif") repeat-x;
  border: none;
}

#recaptcha_image {
  border: 1px solid #ccc;
}

#captchaButtons a {
  text-decoration: underline;
}

#captcha {
  font-size: 0.95rem;
}

.input-group .submit {
  background: url("/ct/channel/img/btn_go.gif") no-repeat center #000;
}

.featured-billygraham {
  min-height: 306px;
  background-color: #000;
  position: relative;
}

.featured-billygraham .featured-title_lg {
  color: #d51b1e;
  font-weight: 600;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-size: 4.75rem;
}

.featured-billygraham .featured-title_lg:hover {
  text-decoration: none;
}

.featured-billygraham .featured-billygraham_image {
  height: 306px;
  display: inline-block;
  vertical-align: top;
}

.featured-billygraham .featured-billygraham_credit {
  color: #999;
  position: absolute;
  bottom: 7px;
  font-size: 9px;
  font-weight: 500;
  font-family: verdana, sans-serif;
}

.featured-billygraham .featured-billygraham-content {
  color: #e0ce06;
  font-size: 73px;
  display: inline-block;
  padding: 79px 0 0 15px;
  text-decoration: none;
  text-transform: uppercase;
}

.featured-billygraham_left {
  width: 450px;
  position: relative;
  left: -40px;
}

.featured-billygraham_right {
  margin-left: 30px;
}

.featured-title_item {
  color: white;
  display: inline-block;
  font-size: 24px;
  padding: 4px 0 0 204px;
}

.featured-title_item span {
  padding: 0 20px;
}

/* For Breaking News Bar */
.billygraham-breaking-news:before {
  background: url("/ct/channel/img/bg_breakingnews.gif") repeat scroll 0 0 rgba(0, 0, 0, 0);
}

.special-section_item {
  background: url("/ct/channel/img/sm_billygraham.gif") no-repeat scroll 220px 0 #000;
}

/* For Billy Graham Special Issue */
.section-moreFrom-Issue {
  width: 620px;
}

.featured_more {
  color: white;
  position: absolute;
  bottom: 6px;
}

.more-item {
  padding-top: 20px;
}

.mag-desc {
  width: auto;
  overflow: hidden;
  padding-left: 10px;
}

.mag-desc p {
  margin-bottom: 15px;
  margin-top: 15px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  line-height: 1.2;
  font-size: 0.9rem;
}

.section-login a.button_yellow {
  background: #f8e405 !important;
}

.section-login a.button_yellow:hover {
  background: #fbff0a !important;
}

.deck a, .theme-black .deck-white a, .short-desc a {
  color: #d51b1e;
  text-decoration: underline;
}

.deck a:hover, .theme-black .deck-white a:hover, .short-desc a:hover {
  color: #000;
}

/*New Author Page*/
.topicContent .nav-topics {
  margin-top: 0;
}

.author-nav-w {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 79%;
          flex: 0 0 79%;
  width: 79%;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .author-nav-w {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 77.6%;
            flex: 0 0 77.6%;
    width: 77.6%;
  }
}

.top-section-search input.form-submit-image, .author-search input.form-submit-image {
  background: url(/ct/channel/img/btn_go.gif);
  border: 0;
  width: 36px;
  height: 27px;
}

.author-page .heading-topic {
  width: 99%;
}

.author-page .author-img {
  -webkit-transform: translate(0%, 5%);
          transform: translate(0%, 5%);
}

.author-page .author-img img {
  border-radius: 100%;
}

.author-info .social {
  font-size: 0.6875rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

.author-info .author-books {
  font-size: 0.75rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
}

.author-info .author-books .see-all {
  font-size: 0.6875rem;
}

.author-info .author-books span .strong {
  margin-left: 2px;
}

.author-info .social a + a {
  vertical-align: top;
}

/**Topic-people-page**/
.alpha .headings-small {
  font-size: 0.75rem;
}

.topic-people-nav .nav-topics a {
  margin: 0;
}

.topic_people {
  padding: 3px 11.80px;
}

/*algolia-button*/
.algolia-author .searchdiv {
  overflow: initial;
}

.ais-InfiniteHits .postdate span {
  padding: 1px;
}

.ais-InfiniteHits button {
  border-style: none;
  background: #fff;
  padding: 0;
  display: block;
  margin: auto;
  margin-top: 40px;
}

.ais-InfiniteHits .display-none {
  display: none !important;
}

.no-data {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
}

.ais-InfiniteHits-item {
  list-style: none;
}

.ais-InfiniteHits-item .subscriber-icon {
  margin-left: 5px;
}

/*for IE on builder*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .global-footer_logo a .logo_wide {
    width: 60%;
  }
}

.full-width {
  width: 100% !important;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .waterfall .fallback-img-svg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 220px;
            flex: 0 0 220px;
    max-width: 220px;
  }
  .fallback-img-ie .fallback-img-svg {
    width: 100%;
  }
}

.more-from-issue {
  position: relative;
}

.more-from-issue-head {
  border-top: 6px solid #000;
}

.more-from-issue-head .fl-badge {
  background: #000;
  font-size: 1.1rem;
  color: #fff;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 2px 10px;
  display: inline-block;
  margin: 0 auto 15px;
  min-width: 140px;
  min-height: 25px;
}

.more-issue-slider_item .content .byline {
  line-height: 14px;
}

.more-from-issue-arrow {
  cursor: pointer;
}

.more-issue-slider {
  position: relative;
}

.more-issue-slider_nav .prev, .more-issue-slider_nav .next {
  position: absolute;
  top: 0;
  left: -1px;
  width: 80px;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  width: 80px;
  max-height: 123px;
  line-height: 140px;
  z-index: 10;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.8)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  background-repeat: repeat-x;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.more-issue-slider_nav .prev img, .more-issue-slider_nav .next img {
  max-width: 25px;
}

.more-issue-slider_nav .prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.more-issue-slider_nav .next {
  right: 0;
  left: auto;
}

.more-issue-slider_outer {
  list-style: none;
}

.more-issue-slider_outer .slug, .more-issue-slider_outer .theme-black .slug-white, .theme-black .more-issue-slider_outer .slug-white {
  margin-bottom: 7px;
}

.more-issue-slider_item {
  width: 240px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
}

.more-issue-slider_item-in {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.more-issue-slider_item.current-slide {
  color: #999 !important;
  cursor: not-allowed;
}

.more-issue-slider_item.current-slide .content .slug, .more-issue-slider_item.current-slide .content .theme-black .slug-white, .theme-black .more-issue-slider_item.current-slide .content .slug-white {
  pointer-events: none;
}

.more-issue-slider_item.current-slide .content .slug a, .more-issue-slider_item.current-slide .content .theme-black .slug-white a, .theme-black .more-issue-slider_item.current-slide .content .slug-white a {
  color: #999 !important;
}

.more-issue-slider_item.current-slide .content .title, .more-issue-slider_item.current-slide .content .theme-black .title-white, .theme-black .more-issue-slider_item.current-slide .content .title-white {
  color: #999 !important;
}

.more-issue-slider_item.current-slide .content .byline {
  color: #999 !important;
}

.more-issue-slider_item.current-slide .img-wrap:before {
  content: "";
  background: rgba(153, 153, 153, 0.79);
  height: 100px;
  width: 220px;
  position: absolute;
  z-index: 0;
  left: 0;
}

.more-issue-slider .title-3 {
  font-size: 1rem;
}

.more-issue-slider .img-wrap {
  display: block;
  max-height: 123px;
  overflow: hidden;
  width: 220px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.more-issue-slider .content {
  overflow: hidden;
}

.more-issue-slider .article-solo {
  width: 0px;
  visibility: hidden;
}

.more-issue-slider .focused-article {
  background: #000;
  color: #fff;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 2px 0;
  display: block;
  font-size: 1.1rem;
  max-height: 25px;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.more-issue-slider-loader {
  min-height: 208px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media all and (-ms-high-contrast: none) {
  .more-issue-slider_outer {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .more-issue-slider_outer li {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .more-issue-slider .content {
    float: left;
  }
}

/*For common styles of different themes*/
.theme-dark .contenttype-video a, .theme-black .contenttype-video a {
  position: relative;
}

.theme-dark .contenttype-video a::before, .theme-black .contenttype-video a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  background: url(/system/img/videoplayoverlay.svg) no-repeat 100%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
}

.theme-black .slug-white, .theme-black .slug, .theme-black .slug-white {
  color: #fff !important;
}

.theme-black .slug-white div, .theme-black .slug-white a, .theme-black .slug div, .theme-black .slug-white div, .theme-black .slug a, .theme-black .slug-white a {
  color: #fff !important;
}

.theme-black .section-featuredvideoEpisode .title-white {
  line-height: 37px !important;
}

.theme-black .video-waterfall .title-white {
  line-height: 20px !important;
}

.theme-black .form-select {
  color: #fff;
  background-color: #575757;
  border: 1px solid #575757;
}

.clear::before, .clear::after {
  content: "";
  display: table;
}

.clear::after {
  clear: both;
}

.selectize-dropdown-content {
  position: relative;
}

.selectize-dropdown-content * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.selectize-dropdown-content .suggestion-list {
  position: absolute;
  top: 100%;
  right: -10px;
  z-index: 10;
  background: #fff;
  border: 1px solid #000000;
  padding: 15px 13px;
  min-width: 320px;
  max-width: 400px;
}

@media (max-width: 767px) {
  .selectize-dropdown-content .suggestion-list {
    right: 0px;
  }
}

@media (min-width: 480px) {
  .selectize-dropdown-content .suggestion-list {
    min-width: 400px;
  }
}

.selectize-dropdown-content .suggestion-item {
  padding-bottom: 15px;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 0.875rem;
}

.selectize-dropdown-content .suggestion-item + .suggestion-item {
  padding-top: 15px;
}

.selectize-dropdown-content .suggestion-item .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #ebeded;
  padding: 10px 0px;
}

.selectize-dropdown-content .suggestion-item:last-child .content {
  border-bottom: none;
}

.selectize-dropdown-content .suggestion-item .item-name,
.selectize-dropdown-content .suggestion-item .item-deck {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  font-family: "Gotham A", "Gotham B", sans-serif;
  padding: 0;
  margin-bottom: 5px;
  line-height: 1.1;
  text-align: left;
  text-transform: initial;
}

.selectize-dropdown-content .suggestion-item .item-name {
  font-size: 0.8125rem;
  font-weight: 700;
}

.selectize-dropdown-content .suggestion-item .item-deck {
  font-size: 0.6875rem;
}

.autocomplete-bttn {
  color: #fff;
  background-color: #000;
  font-size: 0.75rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  padding: 5px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}

.selectize-dropdown-content::-webkit-scrollbar {
  display: none;
}

.selectize-dropdown-content {
  scrollbar-width: none;
}

.selectize-dropdown {
  width: 400px !important;
  left: -201px !important;
  cursor: pointer;
  border-radius: 0px !important;
  box-shadow: 0 4px 5px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 4px 5px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 4px 5px 2px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 4px 5px 2px rgba(0, 0, 0, 0.1);
}

.selectize-dropdown .option {
  padding: 0px 15px !important;
}

.selectize-input {
  border: none !important;
  text-align: left;
  background: #ebeded !important;
}

.selectize-input.input-active input {
  width: 178px !important;
}

.selectize-input input {
  color: #000 !important;
  width: 0px;
}

.selectize-input > input {
  -webkit-transform: translate(0%, 40%);
          transform: translate(0%, 40%);
}

.nav-item-search .not-full {
  padding: 0px !important;
}

.autocomplete-d .selectize-dropdown {
  border: none !important;
}

.autocomplete-d .selectize-dropdown-content {
  border-top: 1px solid #ebeded;
  border-right: 1px solid #ebeded;
  border-left: 1px solid #ebeded;
}

.mt-0 {
  margin-top: 0;
}

/**
ARTICLE BODY EMBED STYLES

[REQUIRED VARIABLES]
[VARIABLES]
ASSIGN THE FOLLOWING VARS IN LOCAL CHANNEL/SITE variable.SCSS
* `$siteName:site/channel;` - assign the name of CHANNEL/SITE, like `ct, history`
* `$article-body-embed-style: true; -

[NOTES]
* Default values for all variables are defined below:
**/
#body .article-embed {
  margin: 5px 0 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#body .item-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 220px;
  margin-right: 20px;
}

#body .item-left img {
  max-width: 100%;
}

#body .item-right {
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
}

#body .slug a, #body .theme-black .slug-white a, .theme-black #body .slug-white a {
  color: #d51b1e;
  text-decoration: none;
}

#body .title-embed {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  font-style: normal;
  color: #000;
  text-decoration: none;
}

#body .deck-embed {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.2;
  font-style: normal;
  color: #000;
  margin-top: 3px;
}

#body .byline-embed {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
  font-style: normal;
  color: #000;
  text-transform: uppercase;
  margin-top: 5px;
}

/**
ARTICLE BODY STYLES

[REQUIRED VARIABLES]
[VARIABLES]
ASSIGN THE FOLLOWING VARS IN LOCAL CHANNEL/SITE.SCSS
* `$article_body_type: serif OR sans-serif;` - default value is 'none'
* `$article_body_secondary_color: Hex color value;` - default value is '#d51b1e'

[NOTES]
* Default values for all variables below are defined in:
\system\css\sass\base\_defaults.scss
**/
/** [Required mixins] **/
/** [Font specific styles - Serif] **/
#body {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif !important;
  font-weight: 400;
  font-size: 1rem;
}

#body p, #body p.intro, #body blockquote {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif !important;
  font-weight: 400;
  line-height: 1.7;
}

#body p.intro, #body blockquote {
  font-size: 1rem;
}

#body strong, #body .question {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif !important;
  font-weight: 600;
}

#body .question em, #body .question .citation {
  font-family: inherit !important;
  font-weight: inherit !important;
}

#body .subhead {
  font-family: "Chronicle Display A", "Chronicle Display B", serif !important;
  font-weight: 600;
}

#body .subhead2 {
  font-family: "Chronicle Display A", "Chronicle Display B", serif !important;
  font-weight: 700;
}

#body .subhead3 {
  font-family: "Chronicle Display A", "Chronicle Display B", serif !important;
  font-weight: 700;
}

#body .subhead4 {
  font-family: "Chronicle Display A", "Chronicle Display B", serif !important;
  font-weight: 700;
}

#body .subhead em, #body .subhead2 em, #body .subhead3 em, #body .subhead4 em {
  font-family: "Chronicle Display A", "Chronicle Display B", serif !important;
  font-weight: 600;
  font-style: italic;
  line-height: 1.2;
}

#body .intro, #body .bio, #body .source, #body .citation, #body em, #body i {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif !important;
  font-weight: 400;
  font-style: italic;
}

#body ul li a, #body ol li a {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif !important;
  font-weight: 400;
}

#body .callout,
#body .callout_left,
#body .callout_right,
#body .callout_center {
  line-height: 1.3;
  font-family: "Chronicle Display A", "Chronicle Display B", serif !important;
  font-weight: 200;
}

#body .callout span.citation, #body .callout em,
#body .callout_left span.citation,
#body .callout_left em,
#body .callout_right span.citation,
#body .callout_right em,
#body .callout_center span.citation,
#body .callout_center em {
  font-weight: 200;
  font-family: inherit !important;
}

#body .callout strong,
#body .callout_left strong,
#body .callout_right strong,
#body .callout_center strong {
  font-weight: 700;
}

#body .dropcap, #body .article-dropcap {
  color: #d51b1e;
  line-height: 0.8;
  font-family: "Chronicle Display A", "Chronicle Display B", serif !important;
  font-weight: 200;
  font-size: 6rem;
}

#body table td, #body table th {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif !important;
  font-weight: 400;
  font-size: 1rem;
}

#body .sidebar_center, #body .sidebar_left, #body .sidebar_right,
#body .sidebar_center blockquote, #body .sidebar_left blockquote, #body .sidebar_right blockquote {
  line-height: 1.6;
  font-size: 0.8rem;
}

#body .sidebar_center .bio, #body .sidebar_center .source, #body .sidebar_left .bio, #body .sidebar_left .source, #body .sidebar_right .bio, #body .sidebar_right .source,
#body .sidebar_center blockquote .bio,
#body .sidebar_center blockquote .source, #body .sidebar_left blockquote .bio, #body .sidebar_left blockquote .source, #body .sidebar_right blockquote .bio, #body .sidebar_right blockquote .source {
  font-size: 0.75rem;
}

/** [Font specific styles - Sans-Serif] **/
.caption, .table-caption,
.image-caption, #body .image-caption, #body .caption, #body p.caption {
  font-family: Verdana, Arial, sans-serif !important;
  color: #878787 !important;
  font-size: 0.7rem;
  line-height: 1.4;
}

.caption a, .table-caption a, .image-caption a, #body .image-caption a, #body .caption a {
  color: #878787 !important;
  text-decoration: none;
}

.caption a:hover, .table-caption a:hover, .image-caption a:hover, #body .image-caption a:hover, #body .caption a:hover {
  text-decoration: underline;
}

/** [Article CSS] **/
#body {
  line-height: 1.7;
  /** [All red colored items here] **/
  /** [Anchor specific] **/
  /*bio*/
  /** [Paragraph styles] **/
  /** [Table styles] **/
  /** [Italicized items] **/
  /** [Subhead] **/
  /** [Callout] **/
  /** [Sidebar] **/
  /** [Blockquote] **/
  /** [Legal Quotes] **/
  /* Question & Answer*/
  /** [Lists] **/
  /** [Bio and Source] **/
  /** [Copyright] **/
  /** [Image] **/
  /** [Video] **/
  /** [Dropcap] **/
  /** [All items with Verdana] **/
  /** [Inline Footnote] **/
}

#body a,
#body .callout,
#body .callout_left,
#body .callout_center,
#body .callout_right,
#body .subhead a {
  color: #d51b1e;
}

#body a.callout_left,
#body a.callout_left:active,
#body a.callout_left:visited,
#body .callout_left a.text,
#body .callout_left a.text:active,
#body .callout_left a.text:visited {
  text-decoration: underline;
  color: #d51b1e;
}

#body a {
  text-decoration: underline;
}

#body a:hover {
  color: #000;
  text-decoration: underline !important;
}

#body p.bio a, #body p.source a {
  color: #d51b1e;
}

#body p {
  margin-bottom: 25px;
}

#body p strong em {
  font-weight: inherit !important;
}

#body table {
  border: 1px solid #d5d5d5;
  border-right: 0;
  width: 100%;
  margin-bottom: 20px;
}

#body table tr th {
  font-weight: 700;
}

#body table tr td, #body table tr th {
  border: 1px solid #d5d5d5;
  padding: 10px;
}

#body table tr td:first-child, #body table tr th:first-child {
  border-left: 0;
}

#body table tr:first-child td {
  border-top: 0;
}

#body table tr:first-child th {
  border-top: 0;
}

#body table tr:last-child td {
  border-bottom: 0;
}

#body table tr p {
  margin-bottom: 10px;
}

#body .intro, #body em, #body .bio, #body .source {
  font-style: italic;
}

#body .intro .citation, #body em .citation, #body .bio .citation, #body .source .citation {
  font-style: normal;
}

#body p.bio a, #body p.source a {
  font-style: italic;
}

#body .bio em {
  font-style: normal;
}

#body .subhead, #body .subhead2 {
  line-height: 1.2;
  margin-bottom: 15px;
}

#body .subhead a, #body .subhead2 a {
  color: #d51b1e;
  text-decoration: underline;
}

#body .subhead a:hover, #body .subhead2 a:hover {
  color: #000;
}

#body .subhead {
  font-size: 1.5rem;
}

#body .subhead2 {
  font-size: 1.2rem;
}

#body .subhead3 {
  font-size: 1.1875rem;
}

#body .subhead4 {
  font-size: 1.125rem;
}

#body .callout,
#body .callout_left,
#body .callout_center,
#body .callout_right {
  border: none;
  width: 300px;
  margin: 5px 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.7rem;
}

#body .callout a:hover,
#body .callout_left a:hover,
#body .callout_center a:hover,
#body .callout_right a:hover {
  color: #000 !important;
}

@media only screen and (max-width: 400px) {
  #body .callout,
  #body .callout_left,
  #body .callout_center,
  #body .callout_right {
    width: 100% !important;
  }
}

#body .callout_left {
  float: left;
  padding-right: 40px;
}

#body .callout_center {
  margin-left: auto;
  margin-right: auto;
}

#body .callout_right {
  float: right;
  padding-left: 40px;
}

#body .sidebar_center,
#body .sidebar_left,
#body .sidebar_right {
  background: #fff;
  border-top: 2px solid #cccccc;
  border-bottom: 2px solid #cccccc;
  border-right: none;
  border-left: none;
  margin-top: 30px;
  margin-bottom: 35px;
  padding: 20px 0;
  font-family: Verdana, Arial, sans-serif !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#body .sidebar_center strong, #body .sidebar_center .subhead, #body .sidebar_center li, #body .sidebar_center .subhead2, #body .sidebar_center em, #body .sidebar_center .citation, #body .sidebar_center .question, #body .sidebar_center p, #body .sidebar_center blockquote, #body .sidebar_center quoteindent, #body .sidebar_center a, #body .sidebar_center .bio a,
#body .sidebar_left strong,
#body .sidebar_left .subhead,
#body .sidebar_left li,
#body .sidebar_left .subhead2,
#body .sidebar_left em,
#body .sidebar_left .citation,
#body .sidebar_left .question,
#body .sidebar_left p,
#body .sidebar_left blockquote,
#body .sidebar_left quoteindent,
#body .sidebar_left a,
#body .sidebar_left .bio a,
#body .sidebar_right strong,
#body .sidebar_right .subhead,
#body .sidebar_right li,
#body .sidebar_right .subhead2,
#body .sidebar_right em,
#body .sidebar_right .citation,
#body .sidebar_right .question,
#body .sidebar_right p,
#body .sidebar_right blockquote,
#body .sidebar_right quoteindent,
#body .sidebar_right a,
#body .sidebar_right .bio a {
  font-family: Verdana,Arial,sans-serif !important;
}

#body .sidebar_center .subhead,
#body .sidebar_left .subhead,
#body .sidebar_right .subhead {
  font-size: 1.2rem;
}

#body .sidebar_center .subhead2,
#body .sidebar_left .subhead2,
#body .sidebar_right .subhead2 {
  font-size: 1rem;
}

#body .sidebar_center .subhead, #body .sidebar_center .subhead2,
#body .sidebar_left .subhead,
#body .sidebar_left .subhead2,
#body .sidebar_right .subhead,
#body .sidebar_right .subhead2 {
  font-family: Verdana,Arial,sans-serif !important;
  font-weight: 700;
  margin-bottom: 10px;
}

#body .sidebar_center li,
#body .sidebar_left li,
#body .sidebar_right li {
  margin-bottom: 10px;
}

#body .sidebar_center strong,
#body .sidebar_left strong,
#body .sidebar_right strong {
  font-weight: bold;
}

#body .sidebar_center em,
#body .sidebar_left em,
#body .sidebar_right em {
  font-weight: italic;
}

#body .sidebar_left, #body .sidebar_right {
  width: 260px;
}

#body .sidebar_left {
  margin-right: 30px;
  float: left;
}

#body .sidebar_right {
  margin-left: 30px;
  float: right;
}

#body blockquote {
  margin: 30px 50px;
  padding: 0;
}

#body blockquote .quoteindent {
  margin: 25px 0 20px 50px;
}

#body .legal_quote {
  font-family: Verdana, Arial, sans-serif !important;
  color: #000;
  font-size: 0.8125rem;
  line-height: 1.7;
  margin: 30px 50px;
}

#body p.answer, #body p.question {
  line-height: 1.7 !important;
  color: #000;
}

#body p.question {
  font-weight: 700;
}

#body ul, #body ol {
  padding-left: 65px !important;
  margin-bottom: 5px !important;
}

#body ul li,
#body ol li {
  padding-bottom: 20px !important;
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif;
}

#body ul ul, #body ol ul {
  padding-left: 30px;
}

#body .bio,
#body .source {
  font-size: 0.8rem;
}

#body .bio a,
#body .source a {
  text-decoration: underline;
}

#body .bio a:hover,
#body .source a:hover {
  color: #000;
}

#body .copyright {
  line-height: 1.35;
  font-family: Verdana, Arial, sans-serif !important;
  color: #d51b1e;
  font-size: 0.7rem;
}

#body .copyright a {
  text-decoration: underline;
  position: static;
  color: #d51b1e;
}

#body .copyright a:hover {
  color: #000;
}

#body .copyright .citation {
  font-family: Verdana, Arial, sans-serif !important;
}

#body .image img {
  margin: auto;
}

#body .image_right {
  float: right;
  margin-left: 20px;
  margin-bottom: 30px;
}

#body .image_left {
  float: left;
  margin-right: 20px;
}

#body .imageWrapper {
  line-height: 1.45;
}

#body .video_left {
  float: left;
  margin-right: 20px;
}

#body .video_right {
  float: right;
  margin-left: 20px;
}

#body .video_center {
  text-align: center;
}

#body .dropcap, #body .article-dropcap {
  height: 80px;
  padding-right: 15px;
  float: left;
}

#body .footnote-button,
#body a.footnote-button {
  font-family: monospace;
  font-weight: normal;
  text-decoration: none !important;
  letter-spacing: -0.1em;
  padding: 0 5px;
  display: inline-block;
  vertical-align: middle;
  color: #d51b1e;
}

#body .footnote-button:visited, #body .footnote-button:focus,
#body a.footnote-button:visited,
#body a.footnote-button:focus {
  color: #d51b1e;
}

#body .footnote-button:hover, #body .footnote-button:focus,
#body a.footnote-button:hover,
#body a.footnote-button:focus {
  color: #000;
  text-decoration: none !important;
}

#body .inline-ftn-wrapper {
  display: none;
  margin: 10px 0;
}

#body .inline-footnote {
  display: none;
  margin-top: 0;
  background-color: #ebeded;
  color: #000;
  border: medium none;
  padding: 15px;
  font-size: 0.6875rem;
  font-family: Verdana, Arial, sans-serif !important;
  font-weight: 400;
  line-height: 1.5;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

#body .inline-footnote b, #body .inline-footnote em, #body .inline-footnote strong {
  font-family: inherit !important;
}

#body .inline-footnote b, #body .inline-footnote strong {
  font-weight: 700 !important;
}

#body .inline-footnote .citation {
  font-size: 0.6875rem;
  font-family: Verdana, Arial, sans-serif !important;
  font-weight: 400;
  font-style: italic !important;
}

#body .inline-footnote em .citation {
  font-style: normal !important;
}
/*# sourceMappingURL=channel.css.map */