/**
 * 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;
*/
/* line 106, z:/home-ct/channels/ct/channel/css/sass/base/_mixins.scss */
.card-3:not(:nth-child(-n+3)) .g-top-40 {
  margin-top: 40px;
}

/** Local variables **/
/** Global styles overwritten **/
/**
 * Mixin for using "rem" units in a backwards-compatible way.
 *
 * `@include rem(font-size, 3.2);`
 */
/**
 * Mixin to calculate the width of a grid item.
 *
 * `@include calc-width(3); // (60 * 3) + (20 * (3 - 1)) = 180 + 40 = 240`
 */
/**
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] **/
/* line 36, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif !important;
  font-weight: 400;
  font-size: 1rem;
}

/* line 40, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body p, #body p.intro, #body blockquote {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif !important;
  font-weight: 400;
  line-height: 1.7;
}

/* line 44, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body p.intro, #body blockquote {
  font-size: 1rem;
}

/* line 48, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body strong, #body .question {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif !important;
  font-weight: 600;
}

/* line 52, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .question em, #body .question .citation {
  font-family: inherit !important;
  font-weight: inherit !important;
}

/* line 57, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .subhead {
  font-family: "Chronicle Display A", "Chronicle Display B", serif !important;
  font-weight: 600;
}

/* line 60, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .subhead2 {
  font-family: "Chronicle Display A", "Chronicle Display B", serif !important;
  font-weight: 700;
}

/* line 63, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .subhead3 {
  font-family: "Chronicle Display A", "Chronicle Display B", serif !important;
  font-weight: 700;
}

/* line 66, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .subhead4 {
  font-family: "Chronicle Display A", "Chronicle Display B", serif !important;
  font-weight: 700;
}

/* line 70, z:/global/system/css/sass/modules/_article_body_styles.scss */
#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;
}

/* line 76, z:/global/system/css/sass/modules/_article_body_styles.scss */
#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;
}

/* line 79, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body ul li a, #body ol li a {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif !important;
  font-weight: 400;
}

/* line 83, z:/global/system/css/sass/modules/_article_body_styles.scss */
#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;
}

/* line 89, z:/global/system/css/sass/modules/_article_body_styles.scss */
#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;
}

/* line 93, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .callout strong,
#body .callout_left strong,
#body .callout_right strong,
#body .callout_center strong {
  font-weight: 700;
}

/* line 99, z:/global/system/css/sass/modules/_article_body_styles.scss */
#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;
}

/* line 109, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body table td, #body table th {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif !important;
  font-weight: 400;
  font-size: 1rem;
}

/* line 116, z:/global/system/css/sass/modules/_article_body_styles.scss */
#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;
}

/* line 122, z:/global/system/css/sass/modules/_article_body_styles.scss */
#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] **/
/* line 228, z:/global/system/css/sass/modules/_article_body_styles.scss */
.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;
}

/* line 233, z:/global/system/css/sass/modules/_article_body_styles.scss */
.caption a, .table-caption a,
.image-caption a, #body .image-caption a, #body .caption a {
  color: #878787 !important;
  text-decoration: none;
}

/* line 236, z:/global/system/css/sass/modules/_article_body_styles.scss */
.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] **/
/* line 246, z:/global/system/css/sass/modules/_article_body_styles.scss */
#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] **/
}

/* line 250, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body a,
#body .callout,
#body .callout_left,
#body .callout_center,
#body .callout_right,
#body .subhead a {
  color: #d51b1e;
}

/* line 258, z:/global/system/css/sass/modules/_article_body_styles.scss */
#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;
}

/* line 269, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body a {
  text-decoration: underline;
}

/* line 271, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body a:hover {
  color: #000;
  text-decoration: underline !important;
}

/* line 280, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body p.bio a, #body p.source a {
  color: #d51b1e;
}

/* line 285, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body p {
  margin-bottom: 25px;
}

/* line 288, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body p strong em {
  font-weight: inherit !important;
}

/* line 295, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body table {
  border: 1px solid #d5d5d5;
  border-right: 0;
  width: 100%;
  margin-bottom: 20px;
}

/* line 301, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body table tr th {
  font-weight: 700;
}

/* line 304, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body table tr td, #body table tr th {
  border: 1px solid #d5d5d5;
  padding: 10px;
}

/* line 307, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body table tr td:first-child, #body table tr th:first-child {
  border-left: 0;
}

/* line 311, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body table tr:first-child td {
  border-top: 0;
}

/* line 314, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body table tr:first-child th {
  border-top: 0;
}

/* line 317, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body table tr:last-child td {
  border-bottom: 0;
}

/* line 320, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body table tr p {
  margin-bottom: 10px;
}

/* line 327, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .intro, #body em, #body .bio, #body .source {
  font-style: italic;
}

/* line 329, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .intro .citation, #body em .citation, #body .bio .citation, #body .source .citation {
  font-style: normal;
}

/* line 334, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body p.bio a, #body p.source a {
  font-style: italic;
}

/* line 339, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .bio em {
  font-style: normal;
}

/* line 345, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .subhead, #body .subhead2 {
  line-height: 1.2;
  margin-bottom: 15px;
}

/* line 348, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .subhead a, #body .subhead2 a {
  color: #d51b1e;
  text-decoration: underline;
}

/* line 351, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .subhead a:hover, #body .subhead2 a:hover {
  color: #000;
}

/* line 356, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .subhead {
  font-size: 1.5rem;
}

/* line 359, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .subhead2 {
  font-size: 1.2rem;
}

/* line 362, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .subhead3 {
  font-size: 1.1875rem;
}

/* line 365, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .subhead4 {
  font-size: 1.125rem;
}

/* line 370, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .callout,
#body .callout_left,
#body .callout_center,
#body .callout_right {
  border: none;
  width: 300px;
  margin: 5px 0 20px;
  box-sizing: border-box;
  font-size: 1.7rem;
}

/* line 379, z:/global/system/css/sass/modules/_article_body_styles.scss */
#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) {
  /* line 370, z:/global/system/css/sass/modules/_article_body_styles.scss */
  #body .callout,
  #body .callout_left,
  #body .callout_center,
  #body .callout_right {
    width: 100% !important;
  }
}

/* line 386, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .callout_left {
  float: left;
  padding-right: 40px;
}

/* line 390, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .callout_center {
  margin-left: auto;
  margin-right: auto;
}

/* line 394, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .callout_right {
  float: right;
  padding-left: 40px;
}

/* line 400, z:/global/system/css/sass/modules/_article_body_styles.scss */
#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;
  box-sizing: border-box;
}

/* line 414, z:/global/system/css/sass/modules/_article_body_styles.scss */
#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;
}

/* line 418, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .sidebar_center .subhead,
#body .sidebar_left .subhead,
#body .sidebar_right .subhead {
  font-size: 1.2rem;
}

/* line 421, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .sidebar_center .subhead2,
#body .sidebar_left .subhead2,
#body .sidebar_right .subhead2 {
  font-size: 1rem;
}

/* line 424, z:/global/system/css/sass/modules/_article_body_styles.scss */
#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;
}

/* line 429, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .sidebar_center li,
#body .sidebar_left li,
#body .sidebar_right li {
  margin-bottom: 10px;
}

/* line 432, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .sidebar_center strong,
#body .sidebar_left strong,
#body .sidebar_right strong {
  font-weight: bold;
}

/* line 435, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .sidebar_center em,
#body .sidebar_left em,
#body .sidebar_right em {
  font-weight: italic;
}

/* line 439, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .sidebar_left, #body .sidebar_right {
  width: 260px;
}

/* line 442, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .sidebar_left {
  margin-right: 30px;
  float: left;
}

/* line 446, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .sidebar_right {
  margin-left: 30px;
  float: right;
}

/* line 452, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body blockquote {
  margin: 30px 50px;
  padding: 0;
}

/* line 455, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body blockquote .quoteindent {
  margin: 25px 0 20px 50px;
}

/* line 460, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .legal_quote {
  font-family: Verdana, Arial, sans-serif !important;
  color: #000;
  font-size: 0.8125rem;
  line-height: 1.7;
  margin: 30px 50px;
}

/* line 469, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body p.answer, #body p.question {
  line-height: 1.7 !important;
  color: #000;
}

/* line 473, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body p.question {
  font-weight: 700;
}

/* line 478, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body ul, #body ol {
  padding-left: 65px !important;
  margin-bottom: 5px !important;
}

/* line 481, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body ul li, #body ol li {
  padding-bottom: 20px !important;
}

/* line 484, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body ul ul, #body ol ul {
  padding-left: 30px;
}

/* line 490, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .bio,
#body .source {
  font-size: 0.8rem;
}

/* line 493, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .bio a,
#body .source a {
  text-decoration: underline;
}

/* line 495, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .bio a:hover,
#body .source a:hover {
  color: #000;
}

/* line 502, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .copyright {
  line-height: 1.35;
  font-family: Verdana, Arial, sans-serif !important;
  color: #d51b1e;
  font-size: 0.7rem;
}

/* line 507, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .copyright a {
  text-decoration: underline;
  position: static;
  color: #d51b1e;
}

/* line 511, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .copyright a:hover {
  color: #000;
}

/* line 515, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .copyright .citation {
  font-family: Verdana, Arial, sans-serif !important;
}

/* line 522, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .image img {
  margin: auto;
}

/* line 526, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .image_right {
  float: right;
  margin-left: 20px;
  margin-bottom: 30px;
}

/* line 531, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .image_left {
  float: left;
  margin-right: 20px;
}

/* line 535, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .imageWrapper {
  line-height: 1.45;
}

/* line 540, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .video_left {
  float: left;
  margin-right: 20px;
}

/* line 544, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .video_right {
  float: right;
  margin-left: 20px;
}

/* line 548, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .video_center {
  text-align: center;
}

/* line 553, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .dropcap, #body .article-dropcap {
  height: 80px;
  padding-right: 15px;
  float: left;
}

/* line 562, z:/global/system/css/sass/modules/_article_body_styles.scss */
#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;
}

/* line 572, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .footnote-button:visited, #body .footnote-button:focus,
#body a.footnote-button:visited,
#body a.footnote-button:focus {
  color: #d51b1e;
}

/* line 575, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .footnote-button:hover, #body .footnote-button:focus,
#body a.footnote-button:hover,
#body a.footnote-button:focus {
  color: #000;
  text-decoration: none !important;
}

/* line 580, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .inline-ftn-wrapper {
  display: none;
  margin: 10px 0;
}

/* line 584, z:/global/system/css/sass/modules/_article_body_styles.scss */
#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;
}

/* line 597, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .inline-footnote b, #body .inline-footnote em, #body .inline-footnote strong {
  font-family: inherit !important;
}

/* line 600, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .inline-footnote b, #body .inline-footnote strong {
  font-weight: 700 !important;
}

/* line 603, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .inline-footnote .citation {
  font-size: 0.6875rem;
  font-family: Verdana, Arial, sans-serif !important;
  font-weight: 400;
  font-style: italic !important;
}

/* line 609, z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .inline-footnote em .citation {
  font-style: normal !important;
}

/**
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:
**/
/* line 254, z:/global/system/css/sass/modules/_article_body_embed_styles.scss */
#body .article-embed {
  margin: 5px 0 20px 0;
  display: flex;
}

/* line 258, z:/global/system/css/sass/modules/_article_body_embed_styles.scss */
#body .item-left {
  flex: 0 0 auto;
  max-width: 220px;
  margin-right: 20px;
}

/* line 263, z:/global/system/css/sass/modules/_article_body_embed_styles.scss */
#body .item-left img {
  max-width: 100%;
}

/* line 267, z:/global/system/css/sass/modules/_article_body_embed_styles.scss */
#body .item-right {
  -ms-flex: 1;
  flex: 1;
}

/* line 272, z:/global/system/css/sass/modules/_article_body_embed_styles.scss */
#body .slug a {
  color: #d51b1e;
  text-decoration: none;
}

/* line 277, z:/global/system/css/sass/modules/_article_body_embed_styles.scss */
#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;
}

/* line 286, z:/global/system/css/sass/modules/_article_body_embed_styles.scss */
#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;
}

/* line 295, z:/global/system/css/sass/modules/_article_body_embed_styles.scss */
#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;
}

/* line 1, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.title {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  color: #000;
  line-height: 1.2;
}

/* line 5, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.title a {
  color: #000;
}

/* line 9, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.title-1 {
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.05;
}

/* line 14, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.title-2 {
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1;
}

/* line 19, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.title-3 {
  font-weight: 600;
  font-size: 1.25rem;
}

/* line 23, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.title-4_normal {
  font-weight: 400;
  font-size: 1.1rem;
}

/* line 27, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.title-4_bolded {
  font-weight: 700;
  font-size: 1.05rem;
}

/* line 31, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.deck, .short-desc {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  font-size: .9rem;
}

/* line 37, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.article-new .deck, article-new .short-desc {
  font-size: 16px !important;
}

/* line 40, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.byline {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* line 47, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.slug {
  color: #d51b1e !important;
  text-transform: uppercase;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
}

/* line 53, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.slug 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;
}

/* line 60, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.slug a:hover {
  text-decoration: underline;
}

/* line 64, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.slug span {
  padding: 0 5px;
  color: #999;
  font-weight: 400;
}

/* line 69, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.slug span.lowercase {
  color: #d51b1e;
}

/* line 73, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.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;
}

/* line 80, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.more a {
  color: #d51b1e;
}

/* line 84, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.section-heading-light, .section-heading {
  color: #000;
  font-size: 2.25rem;
  font-weight: 100;
  font-family: "Gotham A", "Gotham B", sans-serif;
  letter-spacing: -.03rem;
  line-height: 1.15;
}

/* line 91, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.section-heading-light a, .section-heading a {
  color: #000;
}

/* line 96, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.sticky-leftnav .section-heading {
  font-size: 1.8125rem;
}

/* line 100, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.page-heading, .heading-lg {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  color: #000;
  font-size: 2.25rem;
}

/* line 105, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.page-heading a, .heading-lg a {
  color: #000;
}

/* line 110, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.nav-topics .nav-item, .nav-topics .nav-label {
  display: inline-block;
}

/* line 113, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.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;
}

/* line 121, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.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;
}

/* line 127, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.nav-topics .nav-topics_list a {
  color: #d51b1e;
  padding-bottom: 1px;
}

/* line 130, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.nav-topics .nav-topics_list a:hover {
  border-bottom: 3px solid #000;
  color: #000 !important;
  text-decoration: none;
}

/* line 136, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.nav-topics .nav-topics_list .active {
  color: #000 !important;
}

/* line 138, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.nav-topics .nav-topics_list .active a {
  color: #000 !important;
  border-bottom: 3px solid #000 !important;
}

/* line 141, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.nav-topics .nav-topics_list .active a:hover {
  color: #000 !important;
}

/* line 147, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.nav-topics ul {
  margin: 0;
  display: inline;
  padding: 0;
}

/* line 153, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.nav-topics .nav-item_first a {
  margin-left: 0px;
}

/* line 156, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.nav-topics .nav-item_first::before {
  content: "" !important;
  padding: 0 !important;
}

/* line 161, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.nav-topics .nav-item::before {
  color: #999999;
  content: "|";
  font-size: 0.75rem;
  padding: 0 6px;
  font-weight: 200;
}

/* line 169, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.lang-switcher {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
  display: inline-block;
  text-transform: uppercase;
}

/* line 175, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.lang-switcher a {
  color: #000 !important;
  border-bottom: 4px solid #f8e405;
  display: inline-block;
}

/* line 179, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.lang-switcher a:hover {
  text-decoration: none !important;
  border-bottom: 4px solid #000;
}

/* line 184, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.lang-switcher:hover {
  text-decoration: none !important;
}

/* line 188, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
#body .lang-switcher a {
  text-decoration: none !important;
}

/* line 190, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
#body .lang-switcher a:hover {
  text-decoration: none !important;
}

/* line 196, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.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;
}

/* line 1, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.w-140 {
  max-width: 140px;
  flex: 0 0 140px;
}

/* line 5, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.w-150 {
  max-width: 150px;
  flex: 0 0 150px;
}

/* line 9, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.w-240 {
  max-width: 240px;
  flex: 0 0 240px;
}

/* line 13, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.w-270 {
  max-width: 270px;
  flex: 0 0 270px;
}

/* line 17, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.w-275 {
  max-width: 275px;
  flex: 0 0 275px;
}

/* line 21, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.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);
}

/* line 25, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.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);
}

/* line 31, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.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;
  box-sizing: border-box;
}

/* line 42, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-explore .hamburger-icon:not(.explore-icon) {
  background-position: center left 8px;
  padding: 2px 13px 2px 28px;
  border: 1px solid #cfcfcf;
  display: flex;
  align-items: center;
}

/* line 49, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-explore .hamburger-icon:not(.explore-text) {
  padding: 2px 15px;
  margin: 0 5px;
  display: block;
}

/* line 54, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-explore .hamburger-icon:hover {
  background-color: #eaeae9;
}

/* line 57, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-explore .hamburger-icon::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 29px;
  top: 100%;
  left: -50%;
}

/* line 67, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.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);
  -moz-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;
}

/* line 81, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .inner-content {
  width: 940px !important;
}

/* line 84, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown * {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: none;
  line-height: 1;
}

/* line 90, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .subnav-top {
  font-size: .75rem;
  padding: 9px 0;
  color: #fff;
  text-align: left;
}

/* line 95, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .subnav-top .nav {
  list-style: none;
}

/* line 97, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .subnav-top .nav li {
  display: inline-block;
  padding-right: 15px;
  font-size: .85rem;
  width: auto;
  margin: 0;
}

/* line 103, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .subnav-top .nav li:not(:first-child) {
  padding: 0 15px;
  border-left: 3px solid #e3e3d5;
}

/* line 107, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .subnav-top .nav li a {
  color: #fff;
}

/* line 109, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .subnav-top .nav li a:hover {
  text-decoration: underline;
}

/* line 116, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .heading-xs,
.nav-dropdown .heading-xs a {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #999 !important;
  font-weight: 400;
}

/* line 122, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .heading-xs:hover,
.nav-dropdown .heading-xs a:hover {
  text-decoration: underline !important;
}

/* line 126, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .list {
  list-style: none;
}

/* line 128, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .list .list-item {
  text-align: left;
  margin: 5px 0;
  width: 100%;
  display: inline-block;
}

/* line 133, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .list .list-item a {
  color: #000000;
}

/* line 139, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .list .nav-item-tracking a:hover {
  color: #d51b1e;
  text-decoration: underline;
}

/* line 146, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .follow-us {
  border-top: 1px solid #e3e6e6;
}

/* line 149, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .seprator {
  margin: 0 3px;
  color: #999;
}

/* line 153, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .caret {
  position: absolute;
  left: 198px;
  top: -2px;
}

/* line 158, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .caret4mag {
  left: 515px;
}

/* line 161, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .subnav-span-left {
  max-width: 58%;
  flex: 0 0 58%;
  padding: 15px 30px 15px 0;
  border-right: 1px solid #000;
}

/* line 167, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.nav-dropdown .subnav-span-right {
  max-width: 37%;
  flex: 0 0 37%;
  padding: 15px;
}

/* line 173, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.currentissue-box {
  background: #ebeded;
  padding: 10px 6px 15px 10px;
}

/* line 177, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.subnav-span-left, .subnav-span-right {
  text-align: left;
  text-transform: capitalize;
}

/* line 181, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_mega_dropdown.scss */
.themeCollection-sm {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  font-size: 1.85rem;
  line-height: 1;
}

/* line 1, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.bg-gray {
  background: #ebeded !important;
}

/* line 4, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.border-bottom-light-gray {
  border-bottom: 1px solid #ebeded;
}

/* line 7, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.border-light-gray {
  border: 1px solid #ebeded;
}

/* line 10, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.short-desc, .short-desc * {
  font-size: .85rem !important;
  line-height: 1.2 !important;
}

/* line 14, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.text-sm, .text-sm * {
  font-size: .7rem !important;
}

/* line 17, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.l-header {
  min-width: 1000px;
}

/* line 20, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.l-pager {
  margin: 0 auto;
}

/* line 23, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-content {
  width: 940px;
  margin: 0 auto;
}

/* line 27, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-nav {
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.25);
  -moz-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);
}

/* line 32, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-nav a {
  color: #000;
}

/*
* user info (login, logout) in header Styles
********************************/
/* line 40, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.user-info {
  position: absolute;
  right: 10px;
  top: 0;
}

/* line 44, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.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;
}

/* line 49, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.user-info .icon {
  vertical-align: middle;
  padding-left: 5px;
}

/* line 53, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.user-info .sep {
  font-size: 1.05rem;
  font-weight: 300;
  margin: 0 6px;
  position: relative;
  top: -1px;
}

/* line 61, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.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;
}

/* line 72, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.dropdown-alternate ul {
  background: #fff;
}

/* line 74, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.dropdown-alternate ul a {
  font-size: 0.85rem;
}

/* line 78, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.dropdown-alternate li {
  border-bottom: 1px solid #ccc;
  text-align: left;
  text-transform: capitalize;
}

/* line 83, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.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;
}

/* line 90, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.dropdown-alternate li a:hover {
  background: #ebeded;
  color: #000;
  text-decoration: none;
}

/* line 100, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.item-dropdown:hover .dropdown-alternate {
  display: block;
}

/*
* Ct main Navbar in header style
********************************/
/* line 109, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.navbar {
  list-style-type: none;
}

/* line 111, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.navbar > .nav-item {
  text-transform: uppercase;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin: 0;
}

/* line 116, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.navbar > .nav-item > a {
  text-decoration: none;
}

/* line 118, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.navbar > .nav-item > a:hover {
  text-decoration: none;
}

/* line 121, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.navbar > .nav-item > a.color-red:hover {
  color: #000 !important;
  text-decoration: none;
}

/* line 126, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.navbar > .nav-item .nav-item-link {
  margin: 0;
  display: inline-block;
  padding: 12px 32px !important;
}

/* line 130, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.navbar > .nav-item .nav-item-link:hover {
  color: #d51b1e;
}

/* line 136, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.navbar > .nav-item.js-subscribe .nav-item-link:hover {
  color: #000;
}

/* line 144, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.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;
}

/* line 154, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.navbar-search .submit {
  margin-right: 5px;
}

/*
* vertical header style
********************************/
/* line 164, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.vertical-header {
  background: #d51b1e;
}

/* line 169, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.vertical-header-nav > li {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  display: inline-block;
}

/* line 173, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.vertical-header-nav > li > a {
  padding: 25px 15px;
  color: #fff;
  font-size: 0.8125rem;
  display: block;
}

/* line 181, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.vertical-logo {
  font-size: 2.25rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 100;
  color: #fff;
  text-transform: uppercase;
}

/* line 187, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.vertical-logo a {
  color: #fff;
}

/* line 189, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.vertical-logo a:hover {
  text-decoration: none;
}

/* line 193, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.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*/
/* line 2, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  display: none;
  z-index: 100;
  padding: 5px 0;
}

/* line 10, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .nav-dropdown {
  position: fixed;
  top: 36px;
}

/* line 13, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .nav-dropdown .caret {
  left: 35px;
}

/* line 17, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .articleHead-top {
  width: 500px;
}

/* line 19, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .articleHead-top .title-head {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
}

/* line 25, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .header-rightlinks {
  border-left: 1px solid #cfcfcf;
  list-style: none;
}

/* line 28, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .header-rightlinks li {
  border-right: 1px solid #cfcfcf;
  font-size: 0.55rem;
}

/* line 32, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .header-rightlinks img {
  vertical-align: middle;
}

/* line 35, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .header-rightlinks a {
  color: #6b6b6b;
  font-family: verdana,sans-serif;
  padding: 6px 10px 5px;
  display: inline-block;
}

/* line 40, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .header-rightlinks a:hover {
  background-color: #ededed;
}

/* line 44, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.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;
}

/* line 54, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .header-rightlinks .subs-link:hover {
  text-decoration: none;
}

/* line 58, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .header-rightlinks .commentsCounter {
  background: url(/ct/channel/img/icon_comments_counter.png) no-repeat 10px center;
  padding-left: 34px;
  height: 14px;
}

/* line 63, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .header-rightlinks .share {
  background: url(/ct/channel/img/icon_share.png) no-repeat 10px 4px;
  padding-left: 35px;
  height: 14px;
}

/* line 67, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.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;
}

/* line 78, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .header-rightlinks .btn-close {
  background: url(/ct/channel/img/btn_close.gif) no-repeat 10px center;
  padding-left: 30px;
  height: 14px;
}

/* line 84, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .progress-bar-active {
  background: #d51b1e;
  height: 2px;
  width: 0%;
  display: block;
  position: relative;
  top: 3px;
  z-index: 2;
}

/* line 93, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .progress-bar {
  background: #cfcfcf;
  height: 2px;
  width: 500px;
  margin-top: 1px;
  display: block;
  position: absolute;
}

/* line 102, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.section-fixed-header {
  position: fixed;
  top: 36px;
  border-top: 1px solid #dedede;
  padding: 15px 0;
  display: none;
  width: 100%;
  z-index: 4;
  background: #fff;
}

/* line 113, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.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;
}

/* line 121, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.search-box .form-input {
  width: 450px;
}

/* line 124, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.search-box .input-group .submit {
  background: url(/ct/channel/img/btn_go.gif) no-repeat center #000;
}

/* line 128, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.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;
}

/* line 2, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.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;
}

/* line 11, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.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;
}

/* line 19, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.panel-current-issue .current-issue-date {
  background-color: #ebeded;
  padding: 5px 8px;
}

/* line 26, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.panel-current-issue .sub-link, .panel-current-issue .gift-link, .panel-current-issue .more {
  color: #d51b1e !important;
}

/* line 29, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.panel-current-issue .date-link {
  color: #000 !important;
}

/* line 32, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.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;
}

/* line 41, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
#body .panel-current-issue .current-issue-articles li {
  padding-bottom: 0 !important;
}

/* line 44, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.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;
}

/* line 1, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
#body .section-bordered-both, .section-bordered-both {
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  padding: 15px 0;
  overflow: hidden;
}

/* line 6, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
#body .section-bordered-both .reviewDesc, .section-bordered-both .reviewDesc {
  font-weight: 400;
}

/* line 10, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
#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;
}

/* line 14, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
#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;
}

/* line 20, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
#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;
}

/* line 29, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
#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;
}

/* line 35, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
#body .section-bordered-both .section .related-topics a:hover, .section-bordered-both .section .related-topics a:hover {
  text-decoration: none;
}

/* line 40, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
#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;
}

/* line 45, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
#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;
}

/* line 48, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
#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;
}

/* line 52, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
#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;
}

/* line 60, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
#body .section-bordered-both .section .related-topics .item-date span, .section-bordered-both .section .related-topics .item-date span {
  margin-right: 8px;
}

/* line 62, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
#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;
}

/* line 73, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
#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;
}

/* line 80, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
#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;
}

/* line 85, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
#body .section-bordered-both .related-topics_item a, .section-bordered-both .related-topics_item a {
  color: #999 !important;
  text-decoration: underline;
}

/* line 88, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
#body .section-bordered-both .related-topics_item a:hover, .section-bordered-both .related-topics_item a:hover {
  text-decoration: none;
}

/* line 94, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.topics {
  width: 100px;
  flex: 0 0 auto;
}

/* line 99, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
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;
}

/* line 107, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
a.post-parent_left {
  background: url(/history/channel/img/icon-prev.png) no-repeat center left;
  padding-left: 14px;
}

/* line 111, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
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) {
  /* line 118, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
  .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;
*/
/* line 106, z:/home-ct/channels/ct/channel/css/sass/base/_mixins.scss */
.card-3:not(:nth-child(-n+3)) .g-top-40 {
  margin-top: 40px;
}

/* line 1, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.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;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none !important;
}

/* line 25, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.button:hover, #body .button:hover {
  text-decoration: none !important;
}

/* line 29, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.btn-condensed {
  font-size: 1.2rem !important;
  letter-spacing: 0.03em;
  min-width: 200px;
}

/* line 33, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.modal-sub-button .btn-condensed {
  min-width: 140px !important;
}

/* line 38, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.btn-primary, #body .btn-primary {
  background-color: #d51b1e !important;
  color: #fff !important;
}

/* line 41, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.btn-primary:hover, #body .btn-primary:hover {
  background-color: #ed1317 !important;
  color: #fff !important;
}

/* line 46, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.btn-outline-primary {
  border-color: #d51b1e !important;
  color: #d51b1e !important;
}

/* line 49, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.btn-outline-primary:hover {
  background-color: #ed1317 !important;
  color: #fff !important;
}

/* line 54, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.btn-outline-primary-white {
  border-color: #fff !important;
  color: #fff !important;
}

/* line 57, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.btn-outline-primary-white:hover {
  background-color: #ebeded !important;
  color: #000 !important;
}

/* line 63, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.pdf-buttons .button, .pdf-buttons #body .button, #body .pdf-buttons .button {
  flex: 0 0 100%;
  max-width: 230px;
}

/* line 66, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.pdf-buttons .button + .button, .pdf-buttons #body .button + .button, #body .pdf-buttons .button + .button {
  margin-left: 20px;
}

/* line 70, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.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;
}

/* line 78, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.button_yellow:hover {
  background: #fbff0a;
  text-decoration: underline;
}

/* line 82, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.btn-red {
  color: #fff;
  font-size: 1.2rem;
  background: #d51b1e;
  display: inline-block;
}

/*Archive subscribe button*/
/* line 91, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.subscribe-panel .button, .subscribe-panel #body .button, #body .subscribe-panel .button {
  min-width: 200px;
}

/* line 94, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.subscribe-panel .button + .button, .subscribe-panel #body .button + .button, #body .subscribe-panel .button + .button {
  margin-left: 25px;
}

/* line 98, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.subscribe-panel p {
  margin-bottom: 30px;
  margin-top: 15px;
  font-size: .8rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
}

/* line 104, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.subscribe-panel .login {
  margin-left: 8px;
  text-decoration: underline;
}

/* line 110, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.btn-podcast {
  display: flex;
  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;
}

/* line 119, z:/home-ct/channels/ct/channel/css/sass/modules/_buttons.scss */
.btn-podcast:hover {
  text-decoration: none;
}

/* line 2, z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.featured-media-img {
  margin-right: 20px;
}

/* line 5, z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.featured-media-content {
  position: relative;
}

/* line 9, z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.featured_deck {
  color: #3a3a3a;
  line-height: 1.35;
  font-size: 0.95rem;
  margin: 5px 0;
}

/* line 15, z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.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;
}

/* line 21, z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.featured_slug div {
  display: inline;
}

/* line 24, z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.featured_slug .seprator {
  display: inline;
  color: #999;
  font-size: 0.95rem;
}

/* line 30, z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.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;
}

/* line 34, z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.featured-title a:hover {
  text-decoration: none;
  color: #d51b1e;
}

/* line 39, z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.flag-content {
  letter-spacing: .05em;
}

/* line 13, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
#body .button {
  min-width: 200px;
}

/* line 22, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.promo-ad a {
  float: left;
}

/* line 25, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.promo-ad .ad-fullwidth {
  margin-bottom: 0 !important;
}

/* line 29, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.bg-solid-gray, .bg-ad-gray {
  background-color: #ebeded;
}

/* line 32, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.bg-ad-gray {
  padding: 10px 0px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

/* line 38, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
#slideout {
  position: fixed !important;
  bottom: 0;
  left: -550px;
  visibility: visible !important;
  opacity: 0;
  z-index: 999999;
  border: 3px solid #b6bbc1;
  background: white;
}

/* line 47, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
#slideout #closeSlideout {
  position: absolute;
  top: -18px;
  right: -3px;
}

/* line 53, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.push-left-neg-20 {
  margin-left: -20px;
}

/* line 56, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.pos-absolute {
  position: absolute;
  left: 0;
}

/* line 60, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.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;
}

/* line 72, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.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;
}

/* line 80, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.leftnav-list li a {
  line-height: 1.1;
}

/* line 83, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.leftnav-list li:hover {
  border-top-color: #d51b1e;
  border-bottom-color: #d51b1e;
}

/* line 86, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.leftnav-list li:hover .byline, .leftnav-list li:hover .title, .leftnav-list li:hover .item-list, .leftnav-list li:hover .deck, .leftnav-list li:hover .section {
  color: #d51b1e;
  text-decoration: none;
}

/* line 91, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.leftnav-list li:first-child {
  border-top: none;
}

/* line 93, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.leftnav-list li:first-child:hover {
  border-top: none;
}

/* line 100, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.list-arrow-featured li {
  position: relative;
  padding-left: 15px;
  list-style: none;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 1rem;
}

/* line 107, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.list-arrow-featured li:last-child {
  margin-bottom: 0px;
}

/* line 110, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.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;
  transform: rotate(270deg);
}

/* line 121, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.list-arrow-featured li a {
  color: #000;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
}

/* line 129, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.author-section .author-social-link img {
  vertical-align: middle;
}

/* line 132, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.author-section .author-social-link a {
  vertical-align: middle !important;
}

/*Support our work*/
/* line 140, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.support-work .shadow {
  box-shadow: 0px 4px 10px -1px rgba(0, 0, 0, 0.15);
}

/* line 143, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.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;
}

/* line 150, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.support-work .support-work-content a.red-color {
  text-decoration: underline !important;
}

/* line 152, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.support-work .support-work-content a.red-color:hover {
  color: #000;
  text-decoration: none !important;
}

/* line 160, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
#body .image_left {
  margin-bottom: 20px;
}

/* line 163, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
#body .inner-rightnav_item {
  margin-left: 25px;
  line-height: 1.3 !important;
}

/* line 166, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
#body .inner-rightnav_item ul, #body .inner-rightnav_item ol {
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1.1;
}

/* line 171, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
#body .inner-rightnav_item a {
  color: #000;
  text-decoration: none;
}

/* line 175, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
#body .inner-rightnav_item a.more, #body .inner-rightnav_item a.more-link {
  line-height: .9;
}

/* line 180, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
#body .section-newsletters .nlListIsEmpty {
  padding: 0 !important;
}

/* line 182, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
#body .section-newsletters .nlListIsEmpty p {
  font-family: Verdana, Arial, sans-serif !important;
  margin-bottom: 0;
}

/* line 189, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
#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;
}

/* line 201, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.newsletters .description,
#body .section-newsletters .description {
  font-size: 0.8125rem;
  font-family: verdana,sans-serif;
}

/* line 205, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.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;
}

/* line 212, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.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;
}

/* line 220, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.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;
}

/* line 225, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.newsletters a.section-heading_sm:hover, .section-newsletters a.section-heading_sm:hover {
  text-decoration: underline;
}

/* line 231, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.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
******************************/
/* line 246, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.login-title {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #000;
}

/* line 252, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.login-body {
  font-family: "Gotham A","Gotham B",sans-serif;
}

/* line 254, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.login-body * {
  font-family: "Gotham A","Gotham B",sans-serif;
}

/* line 255, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.login-body .btn-login {
  background: #d51b1e;
}

/* line 257, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.login-body .btn-login:hover {
  background-color: #ed1317;
}

/* line 262, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.section-breaking-news {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

/* line 267, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.breaking-news-bar {
  display: flex;
  align-items: center;
  background: #000;
  height: 44px;
}

/* line 272, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.breaking-news-bar:before {
  background: url(/ct/channel/img/img_breakingnews.gif);
  width: 221px;
  height: 44px;
  float: left;
  content: "";
}

/* line 279, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.breaking-news-bar .title {
  font-size: 1.45rem;
  font-weight: 400;
  margin-left: 15px;
}

/* line 283, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.breaking-news-bar .title a {
  color: #fff;
  background: url(/ct/channel/img/arrow_breakingnews.png) no-repeat center right;
  padding-right: 15px;
}

/* line 292, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.waterfall-heading {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  position: relative;
}

/* line 295, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.waterfall-heading.sm {
  font-size: 1.0625rem;
}

/* line 298, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.waterfall-heading span {
  background: #fff;
  position: relative;
  padding-right: 4px;
  font-weight: 400;
  top: 1px;
}

/* line 305, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.waterfall-heading:before {
  content: "";
  position: absolute;
  height: 2px;
  background: #000;
  width: 100%;
  top: 16px;
  left: 0;
}

/* line 316, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.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;
}

/* line 330, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.section-read-these-next .bg-flag {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  background: #000;
  color: #fff;
  padding: 2px 10px;
  line-height: 1;
  margin-bottom: 1px;
}

/* line 342, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.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;
}

/* line 352, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.load-more img {
  vertical-align: middle;
  margin-right: 10px;
}

/* line 356, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.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;
}

/* line 370, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.articleDirectionRTL .lang-switcher {
  padding-right: 8px;
  margin-left: 0px !important;
}

/* line 372, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.articleDirectionRTL .lang-switcher:first-of-type {
  padding-right: 0px;
}

/* line 376, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.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;
}

/* line 392, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.articleDirectionRTL .meta-container .title,
.articleDirectionRTL .meta-container .deck,
.articleDirectionRTL .meta-container .article-languages,
.articleDirectionRTL .meta-container .article-byline,
.articleDirectionRTL .meta-container .author-info,
.articleDirectionRTL .meta-container .print-title,
.articleDirectionRTL .meta-container .slug {
  direction: rtl;
}

/* line 400, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.articleDirectionRTL .meta-container .title span:first-child, .articleDirectionRTL .meta-container .title .byline,
.articleDirectionRTL .meta-container .deck span:first-child,
.articleDirectionRTL .meta-container .deck .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 .slug .byline {
  margin-right: 0px !important;
}

/* line 406, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.articleDirectionRTL .waterfall .postdate {
  display: inline-flex;
  align-items: center;
}

/* line 413, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.es-related-article {
  font-size: 0.8rem;
  font-style: italic;
}

/* line 418, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.flag-empty {
  padding-left: 0 !important;
}

/* line 420, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.flag-empty:after {
  content: "";
  display: none;
}

/* line 424, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.flag-empty .notification {
  font-size: .75rem;
  margin: 0px;
}

/* line 429, z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.img-sponser-flag {
  left: 0;
}

/* line 1, z:/home-ct/channels/ct/channel/css/sass/modules/_search.scss */
.search-results_main {
  padding-top: 20px;
}

/* line 4, z:/home-ct/channels/ct/channel/css/sass/modules/_search.scss */
.search-results_result {
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}

/* line 7, z:/home-ct/channels/ct/channel/css/sass/modules/_search.scss */
.search-results_result .sponsor-search_slug {
  position: relative;
  bottom: 3px;
}

/* line 12, z:/home-ct/channels/ct/channel/css/sass/modules/_search.scss */
.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;
}

/* line 18, z:/home-ct/channels/ct/channel/css/sass/modules/_search.scss */
.search-results_lastResult {
  border-bottom: none;
  padding: 0;
}

/* line 23, z:/home-ct/channels/ct/channel/css/sass/modules/_search.scss */
.ais-Hits-item:last-child .search-results_result {
  border-bottom: none;
  padding-bottom: 0;
}

/* line 30, z:/home-ct/channels/ct/channel/css/sass/modules/_search.scss */
.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;
}

/* line 39, z:/home-ct/channels/ct/channel/css/sass/modules/_search.scss */
.search-panel form .input-addon-group {
  margin: 0 auto;
  width: 620px;
}

/* line 42, z:/home-ct/channels/ct/channel/css/sass/modules/_search.scss */
.search-panel form .input-addon-group .submit {
  position: absolute;
  right: 15px;
  width: 28px;
  height: 28px;
}

/* line 50, z:/home-ct/channels/ct/channel/css/sass/modules/_search.scss */
.search-panel label {
  display: block;
  font-size: 0.75rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

/* line 57, z:/home-ct/channels/ct/channel/css/sass/modules/_search.scss */
.search-panel select {
  border-color: transparent;
  margin-right: 10px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
}

@media screen and (max-width: 1024px) {
  /* line 6, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .sticky-active .ctSocialShare ul li {
    margin-right: 12px;
  }
}

@media screen and (max-width: 991px) {
  /* line 14, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .related-articles {
    width: 68% !important;
  }
  /* line 17, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .global-header, .storystream-content .global-footer, .storystream-content .js-footer,
  .storystream-content .l-outer {
    min-width: 100%;
  }
  /* line 21, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .content-article, .storystream-content .story-stream_article-content {
    width: calc(100% - 230px) !important;
    float: right;
  }
  /* line 24, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .content-article .l-nine, .storystream-content .story-stream_article-content .l-nine {
    width: 100%;
  }
  /* line 28, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .featured-image {
    width: 100%;
  }
  /* line 32, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .banner-top {
    width: 100%;
  }
  /* line 35, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .timeline-nav {
    width: 210px;
    padding: 0;
    margin-right: 0;
  }
  /* line 39, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .timeline-nav .timeline-leftnav {
    margin-left: -10px;
  }
  /* line 43, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .sticky-leftnav {
    width: 205px;
    padding: 0;
    margin: 0;
  }
  /* line 47, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .sticky-leftnav ul.article-leftnav-list {
    width: 100%;
    margin: 0;
  }
  /* line 51, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .sticky-leftnav ul.article-leftnav-list li a.active {
    width: 183px;
    margin-left: -10px;
  }
  /* line 55, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .sticky-leftnav ul.article-leftnav-list li a {
    width: 185px;
  }
  /* line 63, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .streamline-leftnav .leftnav-list a.active {
    margin-left: -10px;
    width: 183px;
  }
  /* line 69, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .short-list {
    width: 200px;
  }
  /* line 73, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .ad-top img {
    width: 100%;
    height: auto;
  }
  /* line 78, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .ad-content, .storystream-content .ad-ajax {
    width: 100%;
  }
  /* line 80, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .ad-content img, .storystream-content .ad-ajax img {
    width: auto;
    height: auto;
  }
  /* line 85, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .sticky-active {
    background: #fff;
  }
  /* line 88, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content #fix-header .header-content {
    padding: 0 15px !important;
  }
  /* line 91, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .articleHead-top {
    width: 390px;
  }
  /* line 93, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .articleHead-top .progress-bar {
    width: inherit;
  }
  /* line 97, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .article-preview, .storystream-content .l-pager,
  .storystream-content .article-image {
    width: 100%;
  }
  /* line 101, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .l-content, .storystream-content .article-data,
  .storystream-content .curated-article-content {
    width: calc(100% - 220px) !important;
    box-sizing: border-box;
  }
  /* line 107, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .featured-article img {
    width: 100%;
  }
  /* line 111, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .l-nine.deck, .storystream-content .l-nine.byline, .storystream-content .l-nine.article-title {
    width: auto;
  }
  /* line 114, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .l-wrapper, .storystream-content .global-header,
  .storystream-content .header-section_inner, .storystream-content .header-section, .storystream-content .l-full, .storystream-content .global-footer, .storystream-content .footer {
    min-width: 100%;
  }
  /* line 120, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .l-full ul .l-three {
    width: 22.75%;
  }
  /* line 123, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .l-full ul .l-three a img {
    width: 100%;
    height: auto;
  }
  /* line 132, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .header-section {
    padding-left: 25px;
    padding-right: 25px;
    box-sizing: border-box;
    height: 68px;
  }
  /* line 138, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .user-info {
    right: 23px;
  }
  /* line 141, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .l-page, .storystream-content .inner-content, .storystream-content .header-content {
    width: 100%;
    box-sizing: border-box;
  }
  /* line 145, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
  .storystream-content .l-page {
    padding: 0 25px;
  }
}

/* line 149, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
.storystream-content .ad-ajax {
  display: flex;
  justify-content: center;
}

/* line 153, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
.storystream-content .ad-ajax a img {
  width: 100% !important;
}

/* line 158, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
.storystream-content .section-fixed-header {
  padding: 0;
  height: auto;
  box-sizing: border-box;
}

/* line 162, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
.storystream-content .section-fixed-header .header-content {
  padding: 0 15px;
}

/* line 165, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
.storystream-content .section-fixed-header .search-box {
  padding: 15px 0;
  top: 0;
}

/* line 171, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
.storystream-content #janShare .header-content {
  padding: 7px 15px;
  overflow: hidden;
}

/* line 178, z:/home-ct/channels/ct/channel/css/sass/modules/_storystream.scss */
.storystream-content #body .article-preview .btn-red {
  width: 200px;
}

/* line 1, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-page {
  margin: 0 auto;
  width: 940px;
}

/* line 5, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.global-header, .header, .footer,
.main-header, .top-nav, .logo-container {
  width: 100%;
}

/* line 9, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-page, .inner-content {
  width: 940px;
  margin: 0 auto;
}

/* line 13, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-wrap, #beta {
  width: 100%;
  min-width: 1000px;
}

/* line 17, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-content {
  width: 620px;
}

/* line 20, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-content_lg {
  width: 640px;
}

/* line 23, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-rightnav {
  width: 300px;
  position: relative;
}

/* line 27, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-one {
  width: 60px;
}

/* line 30, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-two {
  width: 140px;
}

/* line 33, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-three {
  width: 220px;
}

/* line 36, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-four {
  width: 300px;
}

/* line 39, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-five {
  width: 380px;
}

/* line 42, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-six {
  width: 460px;
}

/* line 45, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-eight {
  width: 620px;
}

/* line 48, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-nine {
  width: 76%;
}

/* line 51, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-full {
  width: 100%;
}

/* line 54, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-grid_item {
  margin-right: 20px;
}

/* line 57, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-grid_item:first-child {
  margin-left: 0;
}

/* line 60, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-grid_item-last {
  margin-right: 0;
}

/* line 63, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-wrapper {
  background: #fff;
  width: 100%;
  min-width: 1000px;
  overflow: hidden;
}

/* line 69, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-grid,
.l-tbl {
  list-style: none;
}

/* line 73, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-grid,
.l-grid_item {
  float: left;
}

/* line 77, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-grid_item,
.l-tbl_item {
  position: relative;
}

/* line 81, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-tbl {
  display: table;
  width: 100%;
}

/* line 85, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-tbl_item {
  display: table-cell;
  vertical-align: top;
}

/* line 89, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-threeFourths {
  width: 75%;
}

/* line 92, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-half {
  width: 50%;
}

/* line 95, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-fourth {
  width: 25%;
}

/* line 98, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-fifth {
  width: 20%;
}

/* line 101, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-twoThirds {
  width: 66.6666666667%;
}

/* line 104, z:/home-ct/channels/news/channel/css/sass/base/_layout.scss */
.l-third {
  width: 33.3333333333%;
}

/* line 1, z:/home-ct/channels/news/channel/css/sass/base/_base.scss */
body {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  line-height: 1.3;
}

/* line 6, z:/home-ct/channels/news/channel/css/sass/base/_base.scss */
a {
  text-decoration: none;
}

/* line 8, z:/home-ct/channels/news/channel/css/sass/base/_base.scss */
a:hover {
  text-decoration: underline;
}

/* line 3, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.l-content .btn-red, .article-popup_item .btn-red,
#body .article-preview .btn-red {
  background: #d51b1e none repeat scroll 0 0;
  display: inline-block;
  letter-spacing: 0.03em;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 8px 0px;
  width: 222px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
}

/* line 15, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.l-content .btn-red a, .article-popup_item .btn-red a,
#body .article-preview .btn-red a {
  color: #ffffff;
  text-decoration: none;
}

/* line 19, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.l-content .btn-red:hover, .article-popup_item .btn-red:hover,
#body .article-preview .btn-red:hover {
  background: #ed1317 none repeat scroll 0 0;
  text-decoration: none;
}

/* line 25, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.nav-dropdown ul.subnav-item li.nav_item {
  line-height: 1;
}

/* line 28, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.lock-image {
  margin: 0 8px;
  vertical-align: baseline;
}

/* line 32, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.img-container {
  position: relative;
  height: 124px;
  width: 220px;
  overflow: hidden;
}

/* line 37, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.img-container .img-container_item {
  position: absolute;
  height: auto;
  width: 100%;
}

/* line 44, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.featured-section .featured-section_container {
  border: 1px solid #ebeded;
  min-height: 272px;
  padding: 15px 10px 15px 20px;
  align-self: flex-start;
}

/* line 50, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.featured-section figure {
  flex: 1;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 50, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
  .featured-section figure {
    flex: none !important;
    max-width: 540px;
  }
}

/* line 59, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.spotlight .description {
  font-size: .8rem;
}

/* line 63, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.content-inside, .sub-section {
  overflow: hidden;
}

/* line 68, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.author-section ul li {
  list-style-type: none;
  display: inline-block;
  width: 140px;
  vertical-align: top;
}

/* line 78, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.link-list .nav-topics .nav-label {
  color: #000000;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 15px;
  text-transform: uppercase;
}

/* line 86, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.link-list .nav-topics .nav-topics_list-container {
  list-style-type: none;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
}

/* line 91, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.link-list .nav-topics .nav-topics_list-container a {
  padding-bottom: 3px;
}

/* line 95, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.link-list .nav-topics ul {
  margin: 0;
  padding: 0;
}

/* social link above current issue*/
/* line 102, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.fb_iframe_widget {
  top: 13px;
}

/* line 105, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
._2tga._49ve {
  border-radius: 3px;
  font-size: 11px;
  height: 20px;
  margin: 0px 0px 15px 0px !important;
  padding: 0 0 12px 2px;
}

/* line 112, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.social-link {
  background-color: #ECEDEF;
  vertical-align: middle;
  padding: 14px 5px 15px;
  display: flex;
  align-items: center;
}

/* line 118, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.social-link .fb-like {
  margin: 0 25px 0 8px;
}

/* line 120, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.social-link .fb-like span {
  vertical-align: top !important;
}

/* line 124, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.social-link .twitter-follow-button {
  margin: 0;
}

/* line 128, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.fb_iframe_widget {
  top: 0;
  vertical-align: top;
}

/* line 132, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.title-display {
  display: inline-block;
  font-size: 2.65rem !important;
}

/* line 138, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.footer .footer-inner_logo .logo_narrow {
  max-width: 115px;
  width: 110px;
}

/* Search Page - Start */
/* line 145, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.component-search_box {
  padding: 25px 0;
}

/* line 147, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.component-search_box .component-search_options {
  margin-top: 5px;
}

/* line 149, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.component-search_box .component-search_options input {
  margin-left: 0;
}

/* line 152, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.component-search_box .component-search_options .text-sm {
  font-family: verdana,sans-serif;
  margin-left: 2px;
  color: #5e5e5e;
  font-size: 0.55rem;
}

/* line 159, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.component-search_box .heading-5 {
  font-size: 0.75rem;
  font-weight: 700;
}

/* line 164, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.component-search_result {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}

/* Search Page - End */
/* line 170, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
#homepage .usElem {
  z-index: 1;
}

/* line 174, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
#homepage .js-exploreDropDown .bg-teal {
  opacity: 1;
}

/* line 179, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.backToTop {
  background-image: url("/ct/channel/img/img_sprite_backtotop.png");
  cursor: pointer;
  float: right;
  height: 51px;
  margin-bottom: -10px;
  margin-top: 10px;
  width: 53px;
}

/* line 187, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.backToTop:hover {
  background-position: 0 -51px;
}

/* line 191, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
a.selected {
  border-bottom: 3px solid #000;
  color: #000 !important;
  text-decoration: none;
}

/* line 197, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.overlay-filter {
  background: #fff none repeat scroll 0 0 !important;
  height: 100%;
  opacity: 0.6 !important;
  position: absolute !important;
  top: 0px;
  width: 620px !important;
  z-index: 999;
}

/* line 206, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.no-results {
  font-weight: 700;
}

/* line 209, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.inner-rightnav_article {
  float: right;
  position: relative;
  width: 1px;
}

/* line 216, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.rightnav-article_adjustment .social-link.spacer-bottom-30 {
  margin-bottom: 20px;
}

/* line 219, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.rightnav-article_adjustment .section-newsletters {
  padding: 8px 0 15px;
}

/* line 224, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.ctLatestCover .section-currentissue_more {
  color: #d51b1e;
  text-transform: uppercase;
}

/* line 229, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.date-info {
  border-left: 1px solid #000000;
  margin: 0;
  padding: 33px 15px;
  color: #d51b1e;
  display: inline-block;
}

/* line 237, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.post-info h2 {
  font-size: 2rem;
  padding-top: 11px;
  display: inline-block;
}

/* line 243, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.divider-black {
  border-bottom: 9px solid #000;
  margin-bottom: 25px;
}

/* line 247, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.heading-3 {
  color: #000;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 1.8rem;
  font-weight: 100;
}

/* line 255, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
#body p.subscribenote-item {
  font-family: "Gotham A", "Gotham B", sans-serif !important;
}

/* line 259, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.elementHeightAdjust {
  padding: 5px 15px !important;
}

/* line 261, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.elementHeightAdjust p {
  position: relative;
  top: 45%;
}

/* line 267, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.curated-article-content .inner-rightnav_article {
  float: right;
  height: 350px;
  position: relative;
  width: 1px;
}

/* line 275, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.l-rightnav ul.l-full {
  list-style: none;
}

/* line 279, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.extrnl-url {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #999;
  word-wrap: break-word;
}

/* line 286, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.short-desc-new {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  color: #999;
  text-transform: uppercase;
}

/* line 293, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.h1-bottom-border {
  border-bottom: 1px solid #ebebed;
}

/* line 297, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.slug span.spacer-slug {
  margin-left: -8px;
  color: #d51b1e;
}

/* line 302, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.curated-article-content {
  width: 73% !important;
}

/* line 305, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.container-stripes {
  background: #ebeded url("/news/channel/img/stripes.png");
  padding: 25px 12px;
}

/* line 308, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.container-stripes .container-stripes_item {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
}

/* line 314, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.modal-adjust-height {
  height: 375px !important;
}

/* line 317, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.item-map {
  width: 175px;
  height: auto;
}

@media all and (-ms-high-contrast: none) {
  /* line 322, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
  .map-svg {
    margin-top: -25px !important;
  }
}

/* line 328, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
div.byline span.byline-seprator {
  font-size: 0.9rem;
  font-weight: 200;
  color: #999;
}

/* line 334, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.searches {
  border-bottom: 1px solid;
  padding-bottom: 12px;
}

/* line 338, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.searches .reviewPaging span.reviewResult {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 0.9em;
  font-weight: 500;
}

/* line 346, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.searches .reviewPaging div.pagingSort form fieldset label.sortList {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 0.9em;
  font-weight: 500;
}

/* line 356, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.pagination .review-paging {
  border-bottom: none !important;
}

/* line 360, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.main-container .section-newsletters {
  margin-top: 0;
}

/* line 364, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.section {
  position: relative;
}

/* line 367, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.slideshow-item {
  position: absolute;
}

/* line 370, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.btn-select {
  background-position: -28px 0 !important;
}

/* line 373, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.news-title {
  position: absolute;
  top: 9px;
  left: 240px;
  font-size: 1.4rem;
  font-weight: 400;
}

/* line 379, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.news-title a {
  color: #fff;
  background: url(/ct/channel/img/arrow_breakingnews.png) no-repeat center right;
  padding-right: 15px;
}

/* line 385, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.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: 16px;
  font-size: 1rem;
}

/* line 398, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.featured-section .notification {
  position: absolute !important;
  left: 0;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 406, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
  .meta-container .article-map .map-name {
    display: block;
    margin-top: -40px;
  }
  /* line 412, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
  .sticky-leftnav {
    padding-right: 27px !important;
  }
  /* line 416, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
  .article-leftnav-list .progress-bar-active {
    display: inline-block !important;
    z-index: 0 !important;
  }
  /* line 421, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
  .article-leftnav-list li a {
    position: relative;
    z-index: 1;
  }
}

/* line 430, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.ad-top img {
  vertical-align: top;
}

/* line 434, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.section-readnext {
  height: 124px;
  font-size: 0;
}

/* line 440, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.related-topics .social-follow .social-item {
  margin-right: 0px !important;
}

/* line 445, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.related-topics .bio a {
  text-decoration: none !important;
  font-size: 0.6875rem;
}

/* line 448, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.related-topics .bio a:hover {
  text-decoration: underline !important;
}

/* line 455, z:/home-ct/channels/news/channel/css/sass/base/_generic.scss */
.input-group .submit {
  background-size: 15px;
}

/* line 2, z:/home-ct/channels/news/channel/css/sass/modules/_nav.scss */
.nav-topics .nav-label {
  color: #2d2d2d;
}

/* line 5, z:/home-ct/channels/news/channel/css/sass/modules/_nav.scss */
.nav-topics .nav_label {
  display: inline-block;
  color: #000000;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 0.8em !important;
  font-weight: 700;
  margin-right: 15px;
  text-transform: uppercase !important;
}

/* line 16, z:/home-ct/channels/news/channel/css/sass/modules/_nav.scss */
.nav-links li {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 500;
  display: inline-block;
  padding: 10px 10px 12px 11px;
  color: black;
  font-size: 1rem;
}

/* line 23, z:/home-ct/channels/news/channel/css/sass/modules/_nav.scss */
.nav-links li:first-child {
  background: none;
}

/* line 26, z:/home-ct/channels/news/channel/css/sass/modules/_nav.scss */
.nav-links li a {
  color: black;
}

/* line 32, z:/home-ct/channels/news/channel/css/sass/modules/_nav.scss */
.archive-nav-topics .nav-topics_list {
  color: #000;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
}

/* line 37, z:/home-ct/channels/news/channel/css/sass/modules/_nav.scss */
.archive-nav-topics .nav-topics_list a {
  color: #000;
  padding-bottom: 3px;
}

/* line 1, z:/home-ct/channels/news/channel/css/sass/base/_utilities.scss */
.color-yellow {
  color: #f8e405;
}

/* line 4, z:/home-ct/channels/news/channel/css/sass/base/_utilities.scss */
.color-light-gray {
  color: #ebeded;
}

/* line 7, z:/home-ct/channels/news/channel/css/sass/base/_utilities.scss */
.bg-red {
  background-color: #d51b1e;
}

/* line 10, z:/home-ct/channels/news/channel/css/sass/base/_utilities.scss */
.bg-yellow {
  background-color: #f8e405;
}

/* line 13, z:/home-ct/channels/news/channel/css/sass/base/_utilities.scss */
.bg-light-gray {
  background-color: #ebeded;
}

/* line 16, z:/home-ct/channels/news/channel/css/sass/base/_utilities.scss */
.clearfix {
  clear: both;
}

/* line 19, z:/home-ct/channels/news/channel/css/sass/base/_utilities.scss */
.border-bottom-black {
  border-bottom: 1px solid black;
}

/* line 22, z:/home-ct/channels/news/channel/css/sass/base/_utilities.scss */
.border-top-black_bold {
  border-top: 3px solid black;
}

/* line 25, z:/home-ct/channels/news/channel/css/sass/base/_utilities.scss */
.border-black-top {
  border-top: 1px solid #000;
}

/* line 28, z:/home-ct/channels/news/channel/css/sass/base/_utilities.scss */
.border-bottom-white {
  border-bottom: 1px solid #fff;
}

/* line 31, z:/home-ct/channels/news/channel/css/sass/base/_utilities.scss */
.border-bottom-gray {
  border-bottom: 1px solid #ebeded;
}

/* line 35, z:/home-ct/channels/news/channel/css/sass/base/_utilities.scss */
.valign-top {
  vertical-align: top;
}

/* line 1, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.container {
  width: 100%;
  max-width: 960px;
  padding-left: 10px;
  padding-right: 10px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  /* line 4, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .container {
    width: 960px;
  }
}

/* line 7, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.container-fluid {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
}

/* line 8, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.row {
  display: flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

/* line 9, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.no-gutter {
  margin-right: 0;
  margin-left: 0;
}

/* line 10, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.no-gutter > [class^=col-] {
  padding-right: 0;
  padding-left: 0;
}

/* line 11, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
[class*=col-] {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  box-sizing: border-box;
  padding-left: 10px;
}

/* line 12, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.col, .col-m {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

/* line 13, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.col-m12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

/* line 14, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.col-m11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

/* line 15, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.col-m10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

/* line 16, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.col-m9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

/* line 17, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.col-m8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

/* line 18, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.col-m7 {
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

/* line 19, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.col-m6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

/* line 20, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.col-m5 {
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

/* line 21, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.col-m4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

/* line 22, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.col-m3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

/* line 23, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.col-m2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

/* line 24, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.col-m1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

/* line 25, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.order-mfirst {
  -ms-flex-order: -1;
  order: -1;
}

/* line 26, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.order-mlast {
  -ms-flex-order: 13;
  order: 13;
}

/* line 27, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.order-m0 {
  -ms-flex-order: 0;
  order: 0;
}

/* line 28, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.order-m1 {
  -ms-flex-order: 1;
  order: 1;
}

/* line 29, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.order-m2 {
  -ms-flex-order: 2;
  order: 2;
}

/* line 30, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.order-m3 {
  -ms-flex-order: 3;
  order: 3;
}

/* line 31, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.order-m4 {
  -ms-flex-order: 4;
  order: 4;
}

/* line 32, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.order-m5 {
  -ms-flex-order: 5;
  order: 5;
}

/* line 33, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.order-m6 {
  -ms-flex-order: 6;
  order: 6;
}

/* line 34, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.order-m7 {
  -ms-flex-order: 7;
  order: 7;
}

/* line 35, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.order-m8 {
  -ms-flex-order: 8;
  order: 8;
}

/* line 36, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.order-m9 {
  -ms-flex-order: 9;
  order: 9;
}

/* line 37, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.order-m10 {
  -ms-flex-order: 10;
  order: 10;
}

/* line 38, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.order-m11 {
  -ms-flex-order: 11;
  order: 11;
}

/* line 39, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.order-m12 {
  -ms-flex-order: 12;
  order: 12;
}

/* line 40, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.offset-m0 {
  margin-left: 0;
}

/* line 41, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.offset-m1 {
  margin-left: 8.333333%;
}

/* line 42, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.offset-m2 {
  margin-left: 16.666667%;
}

/* line 43, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.offset-m3 {
  margin-left: 25%;
}

/* line 44, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.offset-m4 {
  margin-left: 33.333333%;
}

/* line 45, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.offset-m5 {
  margin-left: 41.666667%;
}

/* line 46, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.offset-m6 {
  margin-left: 50%;
}

/* line 47, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.offset-m7 {
  margin-left: 58.333333%;
}

/* line 48, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.offset-m8 {
  margin-left: 66.666667%;
}

/* line 49, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.offset-m9 {
  margin-left: 75%;
}

/* line 50, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.offset-m10 {
  margin-left: 83.333333%;
}

/* line 51, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
.offset-m11 {
  margin-left: 91.666667%;
}

@media (min-width: 768px) {
  /* line 53, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-t {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 54, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-t12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 55, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-t11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  /* line 56, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-t10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  /* line 57, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-t9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 58, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-t8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  /* line 59, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-t7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  /* line 60, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-t6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 61, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-t5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  /* line 62, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-t4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  /* line 63, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-t3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 64, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-t2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  /* line 65, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-t1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  /* line 66, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-tfirst {
    -ms-flex-order: -1;
    order: -1;
  }
  /* line 67, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-tlast {
    -ms-flex-order: 13;
    order: 13;
  }
  /* line 68, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-t0 {
    -ms-flex-order: 0;
    order: 0;
  }
  /* line 69, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-t1 {
    -ms-flex-order: 1;
    order: 1;
  }
  /* line 70, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-t2 {
    -ms-flex-order: 2;
    order: 2;
  }
  /* line 71, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-t3 {
    -ms-flex-order: 3;
    order: 3;
  }
  /* line 72, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-t4 {
    -ms-flex-order: 4;
    order: 4;
  }
  /* line 73, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-t5 {
    -ms-flex-order: 5;
    order: 5;
  }
  /* line 74, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-t6 {
    -ms-flex-order: 6;
    order: 6;
  }
  /* line 75, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-t7 {
    -ms-flex-order: 7;
    order: 7;
  }
  /* line 76, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-t8 {
    -ms-flex-order: 8;
    order: 8;
  }
  /* line 77, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-t9 {
    -ms-flex-order: 9;
    order: 9;
  }
  /* line 78, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-t10 {
    -ms-flex-order: 10;
    order: 10;
  }
  /* line 79, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-t11 {
    -ms-flex-order: 11;
    order: 11;
  }
  /* line 80, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-t12 {
    -ms-flex-order: 12;
    order: 12;
  }
  /* line 81, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-t0 {
    margin-left: 0;
  }
  /* line 82, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-t1 {
    margin-left: 8.333333%;
  }
  /* line 83, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-t2 {
    margin-left: 16.666667%;
  }
  /* line 84, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-t3 {
    margin-left: 25%;
  }
  /* line 85, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-t4 {
    margin-left: 33.333333%;
  }
  /* line 86, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-t5 {
    margin-left: 41.666667%;
  }
  /* line 87, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-t6 {
    margin-left: 50%;
  }
  /* line 88, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-t7 {
    margin-left: 58.333333%;
  }
  /* line 89, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-t8 {
    margin-left: 66.666667%;
  }
  /* line 90, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-t9 {
    margin-left: 75%;
  }
  /* line 91, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-t10 {
    margin-left: 83.333333%;
  }
  /* line 92, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-t11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  /* line 95, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-d {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 96, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-d12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 97, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-d11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  /* line 98, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-d10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  /* line 99, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-d9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 100, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-d8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  /* line 101, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-d7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  /* line 102, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-d6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 103, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-d5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  /* line 104, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-d4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  /* line 105, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-d3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 106, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-d2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  /* line 107, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-d1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  /* line 108, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-dfirst {
    -ms-flex-order: -1;
    order: -1;
  }
  /* line 109, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-dlast {
    -ms-flex-order: 13;
    order: 13;
  }
  /* line 110, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-d0 {
    -ms-flex-order: 0;
    order: 0;
  }
  /* line 111, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-d1 {
    -ms-flex-order: 1;
    order: 1;
  }
  /* line 112, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-d2 {
    -ms-flex-order: 2;
    order: 2;
  }
  /* line 113, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-d3 {
    -ms-flex-order: 3;
    order: 3;
  }
  /* line 114, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-d4 {
    -ms-flex-order: 4;
    order: 4;
  }
  /* line 115, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-d5 {
    -ms-flex-order: 5;
    order: 5;
  }
  /* line 116, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-d6 {
    -ms-flex-order: 6;
    order: 6;
  }
  /* line 117, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-d7 {
    -ms-flex-order: 7;
    order: 7;
  }
  /* line 118, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-d8 {
    -ms-flex-order: 8;
    order: 8;
  }
  /* line 119, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-d9 {
    -ms-flex-order: 9;
    order: 9;
  }
  /* line 120, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-d10 {
    -ms-flex-order: 10;
    order: 10;
  }
  /* line 121, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-d11 {
    -ms-flex-order: 11;
    order: 11;
  }
  /* line 122, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-d12 {
    -ms-flex-order: 12;
    order: 12;
  }
  /* line 123, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-d0 {
    margin-left: 0;
  }
  /* line 124, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-d1 {
    margin-left: 8.333333%;
  }
  /* line 125, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-d2 {
    margin-left: 16.666667%;
  }
  /* line 126, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-d3 {
    margin-left: 25%;
  }
  /* line 127, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-d4 {
    margin-left: 33.333333%;
  }
  /* line 128, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-d5 {
    margin-left: 41.666667%;
  }
  /* line 129, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-d6 {
    margin-left: 50%;
  }
  /* line 130, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-d7 {
    margin-left: 58.333333%;
  }
  /* line 131, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-d8 {
    margin-left: 66.666667%;
  }
  /* line 132, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-d9 {
    margin-left: 75%;
  }
  /* line 133, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-d10 {
    margin-left: 83.333333%;
  }
  /* line 134, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-d11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1240px) {
  /* line 137, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-ld {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  /* line 138, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-ld12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* line 139, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-ld11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  /* line 140, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-ld10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  /* line 141, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-ld9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  /* line 142, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-ld8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  /* line 143, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-ld7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  /* line 144, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-ld6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* line 145, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-ld5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  /* line 146, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-ld4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  /* line 147, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-ld3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  /* line 148, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-ld2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  /* line 149, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .col-ld1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  /* line 150, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-ldfirst {
    -ms-flex-order: -1;
    order: -1;
  }
  /* line 151, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-ldlast {
    -ms-flex-order: 13;
    order: 13;
  }
  /* line 152, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-ld0 {
    -ms-flex-order: 0;
    order: 0;
  }
  /* line 153, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-ld1 {
    -ms-flex-order: 1;
    order: 1;
  }
  /* line 154, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-ld2 {
    -ms-flex-order: 2;
    order: 2;
  }
  /* line 155, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-ld3 {
    -ms-flex-order: 3;
    order: 3;
  }
  /* line 156, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-ld4 {
    -ms-flex-order: 4;
    order: 4;
  }
  /* line 157, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-ld5 {
    -ms-flex-order: 5;
    order: 5;
  }
  /* line 158, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-ld6 {
    -ms-flex-order: 6;
    order: 6;
  }
  /* line 159, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-ld7 {
    -ms-flex-order: 7;
    order: 7;
  }
  /* line 160, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-ld8 {
    -ms-flex-order: 8;
    order: 8;
  }
  /* line 161, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-ld9 {
    -ms-flex-order: 9;
    order: 9;
  }
  /* line 162, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-ld10 {
    -ms-flex-order: 10;
    order: 10;
  }
  /* line 163, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-ld11 {
    -ms-flex-order: 11;
    order: 11;
  }
  /* line 164, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .order-ld12 {
    -ms-flex-order: 12;
    order: 12;
  }
  /* line 165, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-ld0 {
    margin-left: 0;
  }
  /* line 166, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-ld1 {
    margin-left: 8.333333%;
  }
  /* line 167, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-ld2 {
    margin-left: 16.666667%;
  }
  /* line 168, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-ld3 {
    margin-left: 25%;
  }
  /* line 169, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-ld4 {
    margin-left: 33.333333%;
  }
  /* line 170, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-ld5 {
    margin-left: 41.666667%;
  }
  /* line 171, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-ld6 {
    margin-left: 50%;
  }
  /* line 172, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-ld7 {
    margin-left: 58.333333%;
  }
  /* line 173, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-ld8 {
    margin-left: 66.666667%;
  }
  /* line 174, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-ld9 {
    margin-left: 75%;
  }
  /* line 175, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-ld10 {
    margin-left: 83.333333%;
  }
  /* line 176, z:/home-ct/channels/news/channel/css/sass/base/_grids.scss */
  .offset-ld11 {
    margin-left: 91.666667%;
  }
}

/* line 1, z:/home-ct/channels/news/channel/css/sass/modules/_buttons.scss */
.btn-red {
  background-color: #d51b1e;
  border-color: #d51b1e;
  color: #fff;
}

/* line 1, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.sticky-active {
  position: fixed;
  top: 7%;
  width: 235px;
}

/* line 6, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.heading {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  color: #000;
}

/* line 10, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.heading-md {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 700;
  color: #000;
  font-size: 2.7rem;
}

/* line 16, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.heading-sm {
  font-weight: 400;
  font-size: 2.5rem;
}

/* line 20, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.heading-xs {
  font-weight: 600;
  font-size: 1.3rem;
}

/* line 24, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.weight-600 {
  font-weight: 600;
}

/* line 28, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.elem-sans_serif p {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
}

/* line 34, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.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;
}

/* line 47, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.sticky-active .progress-bar-active, .sticky-leftnav .progress-bar-active {
  background: #f0f2f2;
  display: none;
  height: 100%;
  left: 6px;
  max-width: 250px;
  position: absolute;
  top: 0;
  z-index: -1;
  margin-left: -16px;
}

/* line 59, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.sticky-leftnav {
  box-sizing: border-box;
  padding-right: 30px;
  margin-right: 5px;
}

/* line 66, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.leftnav-list li a {
  color: #000;
}

/* line 69, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.leftnav-list li:hover {
  color: #d51b1e;
  border-bottom: 1px solid #d51b1e;
  border-top: 1px solid #d51b1e;
}

/* line 73, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.leftnav-list li:hover a, .leftnav-list li:hover .byline {
  color: #d51b1e;
}

/* line 76, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.leftnav-list li:hover a {
  text-decoration: none;
}

/* line 82, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.article-title {
  font-weight: 400;
  font-size: 3.3rem;
  line-height: 1;
}

/* line 87, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.inline-block {
  display: inline-block;
}

/* line 91, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.author-bio .author-image {
  border-radius: 30px;
  margin-right: 10px;
}

/* line 96, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.author-bio span a {
  color: #000;
}

/* line 104, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.social-follow .social-item a {
  position: relative;
  bottom: 1px;
}

/* line 111, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#body a {
  color: #d51b1e;
}

/* line 114, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#body .copyright {
  color: #d51b1e;
}

/* line 118, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#body .article-preview .bg-black {
  color: #fff;
  font-size: 1.2rem;
}

/* line 122, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#body .article-preview .bg-gray {
  background: #ebebeb;
  font-size: 0.9rem;
  padding: 10px 20px;
}

/* line 126, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#body .article-preview .bg-gray a.btn {
  color: #fff;
  text-decoration: none;
}

/* line 130, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#body .article-preview .bg-gray .note {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

/* line 133, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#body .article-preview .bg-gray .note a {
  color: #d51b1e;
}

/* line 140, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#body .item-date a {
  color: #000;
}

/* line 145, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.follow-links {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
}

/* line 149, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.follow-links img {
  vertical-align: middle;
}

/* line 152, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.follow-links a {
  color: #d51b1e;
  text-decoration: underline;
}

/* line 155, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.follow-links a:hover {
  text-decoration: none;
}

/* line 161, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.related-topics span.byline {
  color: #000;
  font-weight: 400;
  text-transform: none;
}

/* line 166, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.related-topics .related-topics_item {
  font-family: "Gotham A", "Gotham B", sans-serif !important;
  font-weight: 400;
  color: #999;
  font-size: 0.8rem;
}

/* line 171, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.related-topics .related-topics_item cite {
  font-style: normal;
}

/* line 174, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.related-topics .related-topics_item a {
  color: #999 !important;
  text-decoration: underline;
}

/* line 177, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.related-topics .related-topics_item a:hover {
  text-decoration: none;
}

/* line 183, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.related-topics .byline a.color-black {
  text-transform: none;
}

/* line 189, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#body .related-topics_item {
  font-family: "Gotham A", "Gotham B", sans-serif !important;
}

/* line 191, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#body .related-topics_item a {
  color: #999 !important;
}

/* line 193, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#body .related-topics_item a:hover {
  text-decoration: none !important;
}

/* line 200, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#body .related-topics a:hover {
  text-decoration: none !important;
}

/* Porous Paywall - Start */
/* line 209, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.article-popup_section {
  box-sizing: border-box;
  padding-left: 90px;
}

/* line 212, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.article-popup_section .message-confirm {
  line-height: 1.2;
  margin: 12px 0 15px;
  font-size: 0.9rem;
}

/* line 217, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.article-popup_section .text-member {
  overflow: hidden;
  line-height: 1.2;
  font-size: 0.9rem;
}

/* line 221, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.article-popup_section .text-member a {
  text-decoration: underline;
  color: #d51b1e;
}

/* line 224, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.article-popup_section .text-member a:hover {
  text-decoration: none;
}

/* line 229, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.article-popup_section .btn-custom {
  padding: 9px 0;
  letter-spacing: 0.03em;
}

/* line 234, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.article-popup {
  background: #fff;
  border-top: 15px solid #000;
  position: fixed;
  width: 100%;
  z-index: 5;
  bottom: 0;
  display: none;
}

/* line 242, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.article-popup p.notice-subscribedUser {
  font-size: 1rem;
}

/* line 244, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.article-popup p.notice-subscribedUser a {
  text-decoration: underline;
}

/* line 246, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.article-popup p.notice-subscribedUser a:hover {
  text-decoration: none;
}

/* line 252, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
a.close-it {
  background: url(/news/channel/img/icon_hide.gif) no-repeat center left;
  padding-left: 20px;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 1.3;
  font-family: verdana,sans-serif;
  font-size: 0.75rem;
  color: #6b6b6b;
}

/* Porous Paywall - End */
/* line 265, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#body .inner-rightnav_item {
  box-sizing: border-box;
  margin-left: 25px;
  padding-top: 10px;
}

/* line 269, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#body .inner-rightnav_item .more {
  color: #d51b1e;
}

/* line 273, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#body .inner-rightnav_item .fb_iframe_widget iframe {
  bottom: 0;
  position: relative;
}

/* line 278, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#body .inner-rightnav_item .js-newsletter {
  line-height: 1.2;
}

/* line 280, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#body .inner-rightnav_item .js-newsletter .section-heading_sm {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

/* Social Media:Link Pop-up - Start */
/* line 288, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#unlockUrlModal, #shareUrlModal {
  width: 620px;
  padding: 22px 20px;
}

/* line 291, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#unlockUrlModal .modal-title, #shareUrlModal .modal-title {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 2.4rem;
}

/* line 297, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#unlockUrlModal .modal-description, #shareUrlModal .modal-description {
  margin-bottom: 20px;
  line-height: 1.2;
}

/* line 301, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
#unlockUrlModal textarea, #shareUrlModal textarea {
  width: 100%;
}

/* line 305, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.subscribenote-item {
  font-size: 0.75rem;
}

/* line 307, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.subscribenote-item a {
  text-decoration: underline;
}

/* line 309, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.subscribenote-item a:hover {
  text-decoration: none;
}

/* line 314, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.article-leftnav-list, .curated-leftnav {
  box-sizing: border-box;
  margin-right: 5px;
  width: 220px;
}

/* line 319, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.article-leftnav-list .leftnav-list li:first-child a, .curated-leftnav .leftnav-list li:first-child a {
  border-top: none;
}

/* line 322, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.article-leftnav-list .leftnav-list li, .curated-leftnav .leftnav-list li {
  border-bottom: none;
  border-top: none;
  padding: 0px;
  position: relative;
}

/* line 327, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.article-leftnav-list .leftnav-list li a, .curated-leftnav .leftnav-list li a {
  border-bottom: 1px solid #d9d9d9;
  border-top: 1px solid transparent;
  color: #000;
  padding: 15px 0px 15px 10px;
  text-decoration: none;
  display: inline-block;
  width: 190px;
  margin-top: -1px;
}

/* line 336, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.article-leftnav-list .leftnav-list li a:hover, .curated-leftnav .leftnav-list li a:hover {
  border-bottom: 1px solid #d51b1e;
}

/* line 342, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.article-leftnav-list .leftnav-list li a.active, .curated-leftnav .leftnav-list li a.active {
  border-top: 1px solid transparent;
  border-bottom: 1px solid #d51b1e;
  border-left: 8px solid #d51b1e;
  margin-left: -18px;
  padding: 15px 4px 15px 10px;
  color: #d51b1e;
  text-decoration: none;
  display: inline-block;
  width: 206px;
}

/* line 356, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.border-top-light-gray {
  border-top: 1px solid #ebeded !important;
}

/* line 359, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav {
  box-sizing: border-box;
  margin-right: 5px;
  width: 220px;
}

/* line 364, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-list li:first-child .title-4_bolded {
  border-top: none !important;
}

/* line 366, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-list li:first-child .title-4_bolded:hover {
  border-bottom: 1px solid #d51b1e;
}

/* line 370, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-list li:last-child .title-4_bolded {
  border-bottom: none !important;
  padding-bottom: 0;
}

/* line 374, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-list li {
  display: inline-block;
  position: relative;
  width: 100%;
  border-bottom: none;
  border-top: none;
  padding: 0px;
}

/* line 381, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-list li .title-4_bolded {
  border-bottom: 1px solid #d9d9d9;
  border-top: 1px solid transparent;
  color: #000;
  padding: 15px 0px 15px 0;
  text-decoration: none;
  display: inline-block;
  width: 190px;
  margin-top: -1px;
}

/* line 390, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-list li .title-4_bolded:hover {
  border-bottom: 1px solid #d51b1e;
  border-top: 1px solid #d51b1e;
  text-decoration: none;
}

/* line 391, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-list li .title-4_bolded:hover .title, .timeline-nav .timeline-list li .title-4_bolded:hover .postdate {
  color: #d51b1e;
}

/* line 400, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-list li.active {
  margin-left: -18px;
  color: #999 !important;
  text-decoration: none;
  display: inline-block;
  width: 203px;
}

/* line 406, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-list li.active .title-4_bolded {
  color: #999 !important;
}

/* line 410, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-list li.active:hover a, .timeline-nav .timeline-list li.active:hover .title-4_bolded, .timeline-nav .timeline-list li.active:hover .postdate {
  color: #999 !important;
}

/* line 413, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-list li.active:hover .title-4_bolded {
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

/* line 422, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-leftnav {
  border-left: 1px solid #999;
  margin-left: -20px;
}

/* line 426, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-leftnav .leftnav-list.timeline-list li {
  background: url(/news/channel/img/icon_circle.svg) no-repeat center left;
  margin-left: -8px;
  padding-left: 25px !important;
  background-size: 15px;
}

/* line 431, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-leftnav .leftnav-list.timeline-list li:hover {
  background: url(/news/channel/img/icon_circle.svg) no-repeat center left;
  background-size: 15px;
  color: #d51b1e;
}

/* line 435, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-leftnav .leftnav-list.timeline-list li:hover a, .timeline-nav .timeline-leftnav .leftnav-list.timeline-list li:hover .title-4_bolded {
  color: #d51b1e;
}

/* line 439, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-leftnav .leftnav-list.timeline-list li:first-child .title-4_bolded {
  padding-top: 0 !important;
}

/* line 441, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-leftnav .leftnav-list.timeline-list li:first-child .title-4_bolded:hover {
  border-top: 0 !important;
}

/* line 446, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-leftnav .leftnav-list.timeline-list .active {
  background: url(/news/channel/img/icon_circle_active.svg) no-repeat center left;
  background-size: 15px;
  color: #999;
}

/* line 450, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-leftnav .leftnav-list.timeline-list .active a {
  color: #999 !important;
}

/* line 452, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-leftnav .leftnav-list.timeline-list .active a:hover {
  color: #999 !important;
}

/* line 456, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.timeline-nav .timeline-leftnav .leftnav-list.timeline-list .active:hover {
  background: url(/news/channel/img/icon_circle_active.svg) no-repeat center left;
  background-size: 15px;
}

/* line 465, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.meta-container .article-map {
  width: 100px;
  margin-top: 10px;
}

/* line 468, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.meta-container .article-map .map-name {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  color: #ccc;
  font-size: 0.7rem;
}

/* line 476, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.border-none, .section-newsletters.border-none {
  border: 0 none;
  margin-top: -18px;
  margin-bottom: -10px;
}

/* line 482, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.js-articleContent .follow-links.spacer-inner-top-20 {
  padding-top: 3px;
}

/* line 488, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.support-work .description span {
  display: inline-block;
  padding-top: 5px;
}

/* line 491, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.support-work .description span a {
  text-decoration: underline;
}

/* line 497, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
div.ctSocialShare {
  margin-top: 15px;
}

/* line 499, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
div.ctSocialShare li {
  width: 82px !important;
}

/* line 505, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.js-articleContent div.bsap_1289847 a {
  display: inline-block !important;
  float: none !important;
}

/*This should be move under system folder*/
@media screen and (max-width: 768px) {
  /* line 514, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
  .article-popup div.l-page {
    width: 100% !important;
  }
  /* line 516, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
  .article-popup div.l-page div.article-popup_section, .article-popup div.l-page a.close-it {
    padding: 0 2% !important;
  }
}

/*This should be move under system folder*/
/* line 524, z:/home-ct/channels/news/channel/css/sass/modules/_article.scss */
.topicsList .byline {
  text-transform: none;
  font-weight: 400;
}

/* line 2, z:/home-ct/channels/news/channel/css/sass/modules/_login.scss */
.login-body .assist-link {
  color: #d51b1e;
}

/* line 1, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.color-yellow {
  color: #f8e405;
}

/* line 4, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.color-light-gray {
  color: #ebeded;
}

/* line 7, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.bg-red {
  background-color: #d51b1e;
}

/* line 10, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.bg-yellow {
  background-color: #f8e405;
}

/* line 13, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.bg-light-gray {
  background-color: #ebeded;
}

/* line 16, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.clearfix {
  clear: both;
}

/* line 19, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.border-bottom-black {
  border-bottom: 1px solid black;
}

/* line 22, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.border-top-black_bold {
  border-top: 3px solid black;
}

/* line 25, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.valign-top {
  vertical-align: top;
}

/* line 28, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.display-block {
  display: block;
}

/* line 31, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.display-inline {
  display: inline-block;
}

/* line 35, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-page {
  width: 860px;
  position: relative;
}

/* line 38, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-page .textual-logo {
  font-size: 2.25rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 100;
  color: #000;
  text-transform: uppercase;
}

/* line 44, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-page .textual-logo .textual-logo_item {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 100;
  padding: 0 4px;
  font-size: 2.7rem;
}

/* line 52, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.printerversionad {
  text-align: center;
  padding-top: 5px;
  background-color: #e3e6e6;
  border-bottom: 1px solid #d1d3d4;
}

/* line 57, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.printerversionad p {
  color: #999999;
  margin: 5px 0 10px;
  font-size: 0.8rem;
}

/* line 63, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-container {
  margin-left: 10px;
}

/* line 65, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-container .print-title {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-size: 3rem;
}

/* line 69, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-container .current-date {
  color: #d51b1e;
  margin: -21px 0 10px;
  font-size: 0.7rem;
}

/* line 74, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-container .current-date, .print-container .post-date, .print-container .slug, .print-container .slug a {
  font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* line 77, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-container .slug {
  font-size: 0.7rem;
}

/* line 80, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-container .post-date {
  color: #999;
  font-size: 0.7rem;
  display: inline-flex;
}

/* line 84, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-container .post-date time {
  margin: 0 5px;
}

/* line 89, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-container .byline .divider {
  color: #999;
}

/* line 93, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-container .image-caption {
  margin-top: 5px;
}

/* line 97, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.utilities {
  width: 99%;
}

/* line 99, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.utilities ul {
  margin: -65px 0 10px;
  float: right;
}

/* line 103, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.utilities li {
  margin: 0 5px;
  display: inline;
  margin: 2px 3px;
  overflow: hidden;
}

/* line 108, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.utilities li a {
  color: #d51b1e;
  padding: 0 2px;
  margin-left: 3px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
}

/* line 117, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-article_link {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 10px 10px 3px;
  margin-left: 0;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
}

/* line 124, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-article_link a {
  text-decoration: none;
  color: #000;
}

/* line 127, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-article_link a:hover {
  text-decoration: underline;
}

/* line 133, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-content .article-img {
  margin: 7px 20px 0 0;
  width: 460px;
}

/* line 137, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-content .copyright {
  font-size: 0.8rem;
}

/* line 140, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-content .slug {
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* line 145, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-content div#body {
  width: 860px;
}

/* line 150, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
#body.print-body p a {
  color: #d51b1e;
}

/* line 154, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
#body.print-body .copyright {
  font-size: 0.75rem;
}

/* line 157, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
#body.print-body .sidebar_center, #body.print-body .sidebar_left, #body.print-body .sidebar_right {
  clear: both;
}

/* line 161, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
#body.print-body .section-articlePreview a.custom-buttons {
  color: #000;
  text-decoration: none;
}

/* line 167, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-issue_info {
  color: #d51b1e;
  font-weight: bold;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
}

@media print {
  /* line 174, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
  body, .title,
  .title-2, .deck,
  .byline, .print-page,
  .post-date,
  #body p {
    font-family: Georgia, "Times New Roman", serif !important;
    color: #000;
  }
}

@media print {
  /* line 184, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
  .printerversionad {
    display: none;
    visibility: hidden;
  }
}

/* line 189, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.footer-print {
  font-size: 0.7rem;
}

/* line 191, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.footer-print p {
  text-align: right;
}

/* line 195, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.print-logo {
  height: 85px;
}

/* line 198, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
h2.email {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

/* line 202, z:/home-ct/channels/news/channel/css/sass/modules/_print.scss */
.required_item, .error {
  color: #d51b1e;
}

/* line 2, z:/home-ct/channels/news/channel/css/sass/modules/_map.scss */
.area-america #americas-2, .area-america #americas-3, .area-america #americas-4, .area-america #americas-5, .area-america #americas-6, .area-america #americas-7, .area-america #americas-8, .area-america #americas-9, .area-america #americas-10, .area-america #americas-11, .area-america #americas-12, .area-america #americas-13, .area-america #americas-14, .area-america #americas-15, .area-america #americas-16, .area-america #americas-17, .area-america #americas-18, .area-america #americas-19, .area-america #americas-20, .area-america #americas-21, .area-america #americas-22, .area-america #americas-23, .area-america #americas-24, .area-america #americas-25, .area-america #americas-26, .area-america #americas-27, .area-america #americas-28, .area-america #americas-29, .area-america #americas-30, .area-america #americas-31, .area-america #americas-32, .area-america #americas-33, .area-america #americas-34, .area-america #americas-36, .area-america #americas-37, .americas #americas-2, .americas #americas-3, .americas #americas-4, .americas #americas-5, .americas #americas-6, .americas #americas-7, .americas #americas-8, .americas #americas-9, .americas #americas-10, .americas #americas-11, .americas #americas-12, .americas #americas-13, .americas #americas-14, .americas #americas-15, .americas #americas-16, .americas #americas-17, .americas #americas-18, .americas #americas-19, .americas #americas-20, .americas #americas-21, .americas #americas-22, .americas #americas-23, .americas #americas-24, .americas #americas-25, .americas #americas-26, .americas #americas-27, .americas #americas-28, .americas #americas-29, .americas #americas-30, .americas #americas-31, .americas #americas-32, .americas #americas-33, .americas #americas-34, .americas #americas-36, .americas #americas-37 {
  fill: #d51b1e;
}

/* line 7, z:/home-ct/channels/news/channel/css/sass/modules/_map.scss */
.area-asia #asia-1, .area-asia #asia-2, .area-asia #asia-3, .area-asia #asia-4, .area-asia #asia-5, .area-asia #asia-6, .area-asia #asia-7, .area-asia #asia-8, .area-asia #asia-9, .area-asia #asia-10, .area-asia #asia-11, .area-asia #asia-12, .area-asia #asia-13, .area-asia #asia-14, .area-asia #asia-15, .area-asia #asia-16, .area-asia #asia-17, .area-asia #asia-18, .area-asia #asia-19, .area-asia #asia-20, .area-asia #asia-21, .area-asia #asia-22, .area-asia #asia-23, .area-asia #asia-24, .area-asia #asia-25, .area-asia #asia-26, .area-asia #asia-27, .area-asia #asia-28, .area-asia #asia-29, .area-asia #asia-30, .area-asia #asia-31, .area-asia #asia-32, .area-asia #asia-33, .area-asia #asia-34, .area-asia #asia-35, .area-asia #asia-36, .area-asia #asia-37, .area-asia #asia-38, .area-asia #asia-39, .area-asia #asia-40, .area-asia #asia-41, .asia #asia-1, .asia #asia-2, .asia #asia-3, .asia #asia-4, .asia #asia-5, .asia #asia-6, .asia #asia-7, .asia #asia-8, .asia #asia-9, .asia #asia-10, .asia #asia-11, .asia #asia-12, .asia #asia-13, .asia #asia-14, .asia #asia-15, .asia #asia-16, .asia #asia-17, .asia #asia-18, .asia #asia-19, .asia #asia-20, .asia #asia-21, .asia #asia-22, .asia #asia-23, .asia #asia-24, .asia #asia-25, .asia #asia-26, .asia #asia-27, .asia #asia-28, .asia #asia-29, .asia #asia-30, .asia #asia-31, .asia #asia-32, .asia #asia-33, .asia #asia-34, .asia #asia-35, .asia #asia-36, .asia #asia-37, .asia #asia-38, .asia #asia-39, .asia #asia-40, .asia #asia-41 {
  fill: #d51b1e;
}

/* line 12, z:/home-ct/channels/news/channel/css/sass/modules/_map.scss */
.area-africa #africa-2, .area-africa #africa-3, .africa #africa-2, .africa #africa-3 {
  fill: #d51b1e;
}

/* line 17, z:/home-ct/channels/news/channel/css/sass/modules/_map.scss */
.area-europe #europe, .area-europe #europe-2, .area-europe #europe-3, .area-europe #europe-4, .area-europe #europe-5, .area-europe #europe-6, .area-europe #europe-7, .area-europe #europe-8, .area-europe #europe-9, .area-europe #europe-10, .area-europe #europe-11, .area-europe #europe-12, .area-europe #europe-13, .area-europe #europe-14, .area-europe #europe-15, .area-europe #europe-16, .area-europe #europe-17, .area-europe #europe-18, .area-europe #europe-19, .area-europe #europe-20, .area-europe #europe-21, .area-europe #europe-22, .area-europe #europe-23, .area-europe #europe-24, .area-europe #europe-25, .area-europe #europe-26, .area-europe #europe-27, .europe #europe, .europe #europe-2, .europe #europe-3, .europe #europe-4, .europe #europe-5, .europe #europe-6, .europe #europe-7, .europe #europe-8, .europe #europe-9, .europe #europe-10, .europe #europe-11, .europe #europe-12, .europe #europe-13, .europe #europe-14, .europe #europe-15, .europe #europe-16, .europe #europe-17, .europe #europe-18, .europe #europe-19, .europe #europe-20, .europe #europe-21, .europe #europe-22, .europe #europe-23, .europe #europe-24, .europe #europe-25, .europe #europe-26, .europe #europe-27 {
  fill: #d51b1e;
}

/* line 22, z:/home-ct/channels/news/channel/css/sass/modules/_map.scss */
.area-middle-east #middle_east, .middleeast #middle_east {
  fill: #d51b1e;
}

/* line 26, z:/home-ct/channels/news/channel/css/sass/modules/_map.scss */
.cls-1, .cls-2, .cls-3, .cls-4 {
  stroke: none !important;
}

/* line 1, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-top-40 {
  margin-top: 40px;
}

/* line 4, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-top-45 {
  margin-top: 45px;
}

/* line 7, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-top-55 {
  margin-top: 55px;
}

/* line 10, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-bottom-8 {
  margin-bottom: 8px;
}

/* line 13, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-left-3 {
  margin-left: 3px;
}

/* line 16, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-left-7 {
  margin-left: 7px;
}

/* line 19, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-left-12 {
  margin-left: 12px;
}

/* line 22, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-left-17 {
  margin-left: 17px;
}

/* line 25, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-left-50 {
  margin-left: 50px;
}

/* line 28, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-left-60 {
  margin-left: 60px;
}

/* line 31, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-right-40 {
  margin-right: 40px;
}

/* line 34, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-right-45 {
  margin-right: 45px;
}

/* line 37, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-right-65 {
  margin-right: 65px;
}

/* line 40, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-inner-top-3 {
  padding-top: 3px;
}

/* line 43, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-inner-top-8 {
  padding-top: 8px;
}

/* line 46, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-inner-top-25 {
  padding-top: 25px;
}

/* line 49, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-inner-top-45 {
  padding-top: 45px;
}

/* line 52, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-inner-bottom-2 {
  padding-bottom: 2px;
}

/* line 55, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-inner-bottom-3 {
  padding-bottom: 3px;
}

/* line 58, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-inner-bottom-15 {
  padding-bottom: 15px;
}

/* line 61, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-inner-bottom-25 {
  padding-bottom: 25px;
}

/* line 64, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-inner-bottom-30 {
  padding-bottom: 30px;
}

/* line 67, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-inner-bottom-35 {
  padding-bottom: 35px;
}

/* line 70, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-inner-bottom-40 {
  padding-bottom: 40px;
}

/* line 73, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-inner-bottom-50 {
  padding-bottom: 50px;
}

/* line 76, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-inner-left-10 {
  padding-left: 10px;
}

/* line 79, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-inner-right-10 {
  padding-right: 10px;
}

/* line 82, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-inner-right-15 {
  padding-right: 15px;
}

/* line 85, z:/home-ct/channels/news/channel/css/sass/modules/_spacers.scss */
.spacer-inner-right-20 {
  padding-right: 20px;
}

/* line 1, z:/home-ct/channels/news/channel/css/sass/modules/_newsletters.scss */
.modal-container {
  max-width: 550px;
}

/* line 11, z:/home-ct/channels/news/channel/css/sass/modules/_newsletters.scss */
.modal-newsletter .newsletterList .newsletterLogo {
  height: 26px;
}

/* line 14, z:/home-ct/channels/news/channel/css/sass/modules/_newsletters.scss */
.modal-newsletter .newsletterList .newsletterDescription {
  font-size: 0.8125rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
}

/* line 26, z:/home-ct/channels/news/channel/css/sass/modules/_newsletters.scss */
.newsletterFields .nlField-email {
  font-size: 0.8125rem;
  color: #3d3d3d;
}

/* line 30, z:/home-ct/channels/news/channel/css/sass/modules/_newsletters.scss */
.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;
}

/* line 40, z:/home-ct/channels/news/channel/css/sass/modules/_newsletters.scss */
.section-newsletters {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 13px 0 18px;
}

/* line 47, z:/home-ct/channels/news/channel/css/sass/modules/_newsletters.scss */
.section-newsletters .form-input {
  max-width: 256px;
  color: #696969;
}

/* line 51, z:/home-ct/channels/news/channel/css/sass/modules/_newsletters.scss */
.section-newsletters .section-heading_sm {
  color: #000;
  font-size: 0.9rem;
}

/* line 59, z:/home-ct/channels/news/channel/css/sass/modules/_newsletters.scss */
.article-body-newsletter .nl-embed-form {
  width: 502px;
  max-width: 502px;
}

/* line 63, z:/home-ct/channels/news/channel/css/sass/modules/_newsletters.scss */
.article-body-newsletter .nlField-email {
  width: 348px !important;
  max-width: 348px;
  margin-right: 8px;
  height: calc(30px + 8px + 2px);
}

/* line 69, z:/home-ct/channels/news/channel/css/sass/modules/_newsletters.scss */
.article-body-newsletter .nl-signup {
  height: 40px;
  padding: 4px 10px;
  width: 100px;
}

/* line 77, z:/home-ct/channels/news/channel/css/sass/modules/_newsletters.scss */
.nl-rightnav .nlField-email {
  width: 215px !important;
  margin-right: 5px;
  height: 35px;
}

/* line 82, z:/home-ct/channels/news/channel/css/sass/modules/_newsletters.scss */
.nl-rightnav .nl-signup {
  height: 35px;
  padding-left: 10px;
  padding-right: 10px;
}

/*# sourceMappingURL=Z:/home-ct/channels/news/channel/css/channel.map */