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

/* line 5, Z:/home-ct/channels/ct/channel/css/sass/base/_base.scss */
a {
  text-decoration: none;
  color: #000;
}

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

/* line 2, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-wrap {
  width: 100%;
  min-width: 1020px;
  clear: both;
  overflow: hidden;
}

/* line 8, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-wrap_home {
  min-width: 1000px;
  overflow: hidden;
}

/* line 12, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.homepage .l-page {
  padding: 0 10px;
  background: transparent;
  margin-top: 0px;
}

/* line 17, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-page_inner {
  width: 940px;
  background: #fff;
  margin-top: 40px;
}

/* line 22, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.sidebar-right-article {
  clear: right;
  float: right;
}

/* line 26, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-content-610 {
  width: 610px;
}

/* line 30, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.border-bottom-gray {
  border-bottom: 1px solid #ebeded;
}

/* line 33, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.border-top-gray {
  border-top: 1px solid #ebeded;
}

/* line 36, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-page {
  margin: 25px auto 0 auto;
  padding: 0 20px;
  width: 940px;
  background: #fff;
}

/* line 43, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.homepage .l-page {
  padding: 0 10px;
  background: transparent;
  margin-top: 0px;
}

/* line 48, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-outer {
  width: 100%;
  min-width: 1000px;
}

/* line 52, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-page_inner {
  width: 940px;
  background: #fff;
  margin-top: 40px;
}

/* line 57, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-content {
  width: 640px;
  box-sizing: border-box;
  padding-right: 20px;
}

/* line 62, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.box-sizing {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  padding-right: 20px;
}

/* line 68, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-rightnav {
  width: 300px;
}

/* line 71, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-rightnav .heading-section-sm {
  border-width: 9px;
}

/* line 74, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-rightnav li.arrow-links {
  float: left;
  width: 90%;
}

/* line 78, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-rightnav fieldset.newsletterList div {
  margin: 7px 0;
}

/* line 82, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-grid-section-blog > .l-grid_item {
  padding-bottom: 60px;
  margin: 0 0 0 20px;
}

/* line 86, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-grid-section-blog > .l-grid_item a:hover {
  text-decoration: none;
}

/* line 89, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-grid-section-blog span .l-grid_item {
  padding: 17px 0 25px;
  border-top: 2px solid #000000;
}

/* line 93, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-grid-section-blog span .l-grid_item:hover {
  border-top: 2px solid #d51b1e;
}

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

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

/* line 103, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-grid-section-blog {
  margin-top: 0;
}

/* line 106, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-grid-section-blog > .l-grid_item {
  padding: 17px 0 25px;
  border-top: 2px solid #000;
}

/* line 111, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-grid-section-blog > .l-grid_item:hover {
  border-top-color: #d51b1e;
}

/* line 116, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-tbl_item {
  position: relative;
  padding-bottom: 80px;
  padding-right: 20px;
}

/* line 121, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-tbl_item-last {
  padding-right: 0;
}

/* line 124, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-grid_item-first {
  margin: 0;
}

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

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

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

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

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

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

/* line 145, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-nine {
  width: 700px;
}

/* line 148, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-grid-section-blog > .l-grid_item-first {
  margin: 0;
}

/* line 151, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.sidebar-right-article {
  clear: right;
  float: right;
}

/* line 155, Z:/home-ct/channels/ct/channel/css/sass/base/_layout.scss */
.l-content-610 {
  width: 610px;
}

/* Headings and Titles */
/* line 2, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.heading, .title {
  display: block;
}

/* line 5, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.heading > a, .title > a {
  color: #000;
  text-decoration: none;
}

/* line 9, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.heading > a:hover, .title > a:hover {
  text-decoration: underline;
}

/* line 13, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.espanol-headers_container a.title {
  display: inline;
}

/* line 16, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.heading-main,
.heading-item {
  letter-spacing: -0.04rem;
  font-weight: 400;
  line-height: inherit;
  font-size: 58.4px;
  font-size: 3.65rem;
}

/* line 22, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.heading-main > a:hover {
  text-decoration: none;
}

/* line 25, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.heading-topic,
.heading-collection {
  font-weight: 400;
  line-height: inherit;
  font-size: 38.4px;
  font-size: 2.4rem;
  letter-spacing: -.03em;
}

/* line 31, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.heading-collection {
  line-height: 1.1;
}

/* line 37, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.heading-section-xl {
  letter-spacing: -.065rem;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  font-size: 38.4px;
  font-size: 2.4rem;
}

/* line 42, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.heading-section-lg {
  letter-spacing: -.03rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 100;
}

/* line 46, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.heading-section-sm {
  font-size: 35.2px;
  font-size: 2.2rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 100;
  letter-spacing: -1.8px;
  line-height: 1;
}

/* line 53, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.heading-blog {
  display: inline-block;
  height: 40px;
  margin-left: -12px;
  padding: 10px 0 0 175px;
  background-position: left top;
  background-repeat: no-repeat;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 600;
}

/* line 62, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.heading-blog > a {
  padding-left: 10px;
}

/* line 65, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.heading-gleanings {
  background-image: url(/ct/channel/img/bg_gleanings.png);
  background-repeat: no-repeat;
}

/* line 69, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.tagline {
  color: #9a9a9a;
  display: inline-block;
  vertical-align: top;
  margin-top: 10px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 500;
  font-size: 13.6px;
  font-size: 0.85rem;
}

/* line 77, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.title-serif {
  font-size: 28.8px;
  font-size: 1.8rem;
}

/* End "Headings and Titles" */
/* line 81, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.more {
  color: #d51b1e;
  text-decoration: none;
  font-weight: bold;
}

/* line 86, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.title-2 {
  line-height: 1;
}

/* line 90, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
a.title {
  color: #000;
  text-decoration: none;
}

/* line 94, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
a.title:hover {
  text-decoration: underline;
}

/* line 98, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.article-deck {
  font-size: 14.4px;
  font-size: 0.9rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  line-height: 1.15;
  margin-top: 4px;
}

/* line 103, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.article-deck a {
  color: #000;
}

/* line 107, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.article-byline {
  line-height: 1.15;
  margin-top: 7px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-size: 14.4px;
  font-size: 0.9rem;
}

/* line 113, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.article-byline span {
  padding: 0 5px 0 0;
}

/* line 119, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.button_red {
  background: #d51b1e;
}

/* line 122, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.button_red a {
  color: #fff;
}

/* line 125, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.button_red a:hover {
  color: #fff;
  text-decoration: none;
}

/* line 129, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.button_red a img {
  margin-right: 8px;
}

/* line 134, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.button_red:hover {
  background: #ed1317;
}

/* line 137, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.button_yellow {
  background: #f8e405;
}

/* line 140, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.button_yellow > a {
  color: #000;
  display: block;
}

/* line 144, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.button_yellow > a:hover {
  text-decoration: none;
}

/* line 149, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.color-white {
  color: #fff;
}

/* line 152, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
a.color-blue {
  color: #0099d2;
}

/* line 155, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.button_yellow:hover {
  background: #fbff0a;
}

/* line 158, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.section-content-heading {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 400;
  color: #999;
  border-bottom: 2px solid #000;
  overflow: hidden;
  font-size: 25.6px;
  font-size: 1.6rem;
}

/* line 167, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.heading-xs {
  color: #999;
  display: block;
  font-size: 11.2px;
  font-size: 0.7rem;
}

/* line 173, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.heading-xs a {
  color: #999;
}

/* line 176, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.desc {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
}

/* line 182, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.page-heading-mobile {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  font-size: 24px;
  font-size: 1.5rem;
  text-transform: uppercase;
  display: inline;
  border-bottom: 3px solid #000;
}

/* line 189, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.read-more {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  font-size: 16.8px;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: #d51b1e;
  text-transform: uppercase;
}

/* line 196, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.section-heading-mobile {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 400;
  font-size: 24px;
  font-size: 1.5rem;
  color: #000;
  border-bottom: 3px solid #000;
  text-transform: uppercase;
  display: inline;
}

/* line 204, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.heading {
  text-transform: uppercase;
}

/* line 208, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.sans-serif_headings .heading-section-lg {
  font-weight: 100;
  font-size: 25.6px;
  font-size: 1.6rem;
  text-transform: none;
}

/* line 214, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.postdate {
  padding-left: 5px;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 219, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.postdate span.seprator {
  font-weight: 100 !important;
}

/* line 222, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.postdate span {
  position: relative;
  margin: 0 2px;
  font-weight: 100;
  font-size: 16px;
  font-size: 1rem;
}

/* line 228, Z:/home-ct/channels/ct/channel/css/sass/base/_typography.scss */
.postdate .date-seprator {
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.color-red {
  color: #d51b1e !important;
}

/* line 4, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.color-black {
  color: #000;
}

/* line 7, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.color-yellow {
  color: #f8e405;
}

/* line 10, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.color-light_gray {
  color: #999 !important;
}

/* line 13, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.color-magenta {
  color: #dc0083;
}

/* line 16, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.color-gold {
  color: #c0b400;
}

/* line 19, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.bg-red {
  background-color: #d51b1e;
}

/* line 22, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.bg-yellow {
  background-color: #f8e405;
}

/* line 25, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.bg-light_gray {
  background-color: #999;
}

/* line 28, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.bg-magenta {
  background-color: #dc0083;
}

/* line 31, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.bg-gold {
  background-color: #c0b400;
}

/* line 34, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.title {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
}

/* line 37, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.title-lg {
  font-size: 52.32px;
  font-size: 3.27rem;
}

/* line 40, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-top-3 {
  margin-top: 3px;
}

/* line 43, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-top-5 {
  margin-top: 5px;
}

/* line 46, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-negative-top-13 {
  margin-top: -13px;
}

/* line 49, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-top-50 {
  margin-top: 50px;
}

/* line 52, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-bottom-3 {
  margin-bottom: 3px;
}

/* line 55, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-bottom-7 {
  margin-bottom: 7px;
}

/* line 58, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-bottom-35 {
  margin-bottom: 35px;
}

/* line 61, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-negative-bottom-13 {
  margin-bottom: -13px;
}

/* line 64, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-right-3 {
  margin-right: 3px;
}

/* line 67, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-right-30 {
  margin-right: 30px;
}

/* line 70, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-top-10 {
  margin-top: 10px;
}

/* line 73, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-top-15 {
  margin-top: 15px;
}

/* line 76, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-inner-top-10 {
  padding-top: 10px;
}

/* line 79, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-top-20 {
  margin-top: 20px;
}

/* line 82, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-top-25 {
  margin-top: 25px;
}

/* line 85, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-top-30 {
  margin-top: 30px;
}

/* line 88, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-top-35 {
  margin-top: 35px;
}

/* line 91, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-top-80 {
  margin-top: 80px;
}

/* line 94, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-right-8 {
  margin-right: 8px;
}

/* line 97, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-right-10 {
  margin-right: 10px;
}

/* line 100, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-right-15 {
  margin-right: 15px;
}

/* line 103, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-left-45 {
  margin-left: 45px;
}

/* line 106, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-left-68 {
  margin-left: 68px;
}

/* line 109, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-left-80 {
  margin-left: 80px;
}

/* line 112, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-bottom-3 {
  margin-bottom: 3px;
}

/* line 115, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-bottom-5 {
  margin-bottom: 5px;
}

/* line 118, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-bottom-10 {
  margin-bottom: 10px;
}

/* line 121, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-bottom-15 {
  margin-bottom: 15px;
}

/* line 124, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-bottom-20 {
  margin-bottom: 20px;
}

/* line 127, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-bottom-25 {
  margin-bottom: 25px;
}

/* line 130, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-bottom-30 {
  margin-bottom: 30px;
}

/* line 133, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-bottom-40 {
  margin-bottom: 40px;
}

/* line 136, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-bottom-50 {
  margin-bottom: 50px;
}

/* line 139, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-inner-top-10 {
  padding-top: 10px;
}

/* line 142, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-inner-top-15 {
  padding-top: 15px;
}

/* line 145, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-inner-top-20 {
  padding-top: 20px;
}

/* line 148, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-inner-top-30 {
  padding-top: 30px;
}

/* line 151, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-inner-top-35 {
  padding-top: 35px;
}

/* line 154, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-inner-top-60 {
  padding-top: 60px;
}

/* line 157, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-inner-bottom-5 {
  padding-bottom: 5px;
}

/* line 160, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-inner-bottom-10 {
  padding-bottom: 10px;
}

/* line 163, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-inner-bottom-20 {
  padding-bottom: 20px;
}

/* line 166, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-inner-left-15 {
  padding-left: 15px;
}

/* line 169, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-inner-left-5 {
  padding-left: 5px;
}

/* line 172, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-inner-left-8 {
  padding-left: 8px;
}

/* line 175, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-inner-left-12 {
  padding-left: 12px;
}

/* line 178, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-both-20 {
  padding: 15px 0 20px;
  overflow: hidden;
}

/* line 182, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-left-5 {
  margin-left: 5px;
}

/* line 185, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-left-10 {
  margin-left: 10px;
}

/* line 188, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-inner-left-35 {
  padding-left: 35px;
}

/* line 191, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-right-20 {
  margin-right: 20px;
}

/* line 194, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-right-35 {
  margin-right: 35px;
}

/* line 197, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.spacer-right-50 {
  margin-right: 50px;
}

/* line 200, Z:/home-ct/channels/ct/channel/css/sass/base/_conventions.scss */
.accessible {
  display: none;
}

/* line 2, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.loaderImg {
  background: #d51b1e;
  color: #fff;
  font-weight: 600;
  padding: 2px 5px;
  margin-top: -30px;
  position: absolute;
  display: none;
  font-size: 14.4px;
  font-size: 0.9rem;
}

/* line 12, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.spacer-left-8 {
  margin-left: 8px;
}

/* line 16, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.homepage .content-full {
  width: 940px;
  margin: 0;
}

/* line 23, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
#sliding-carousel .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  cursor: default;
}

/* line 30, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.spacer-left-95 {
  margin-left: 95px;
}

/* line 33, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.spacer-bottom-60 {
  margin-bottom: 60px;
}

/* line 36, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.spacer-bottom-45 {
  margin-bottom: 45px;
}

/* line 39, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.global-nav #globalNav,
.global-foot #globalFooter {
  min-width: 1000px;
}

/* line 43, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
#globalNav,
#globalFooter {
  min-width: 1020px;
}

/* line 47, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.globalNav {
  background: #ccc;
}

/* line 50, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.headings-blue {
  color: #0099d2;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 55, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.headings-black {
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 60, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.item_date-section {
  color: #d51b1e;
  -webkit-font-smoothing: antialiased;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  font-size: 17.6px;
  font-size: 1.1rem;
}

/* line 68, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.item_date-blog {
  left: 0;
  padding-right: 10px;
  position: absolute;
  top: -0.7em;
  background-color: #fff;
}

/* line 75, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.post-publication {
  color: #999;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 80, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.flag-news {
  background-position: 0 -598px;
}

/* line 83, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.item_img {
  display: block;
  margin-bottom: 10px;
}

/* line 87, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.more-right {
  padding-right: 10px;
  right: 0;
  bottom: 4px;
}

/* line 92, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.more-leftside {
  padding-right: 10px;
}

/* line 95, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.more-left {
  padding-left: 10px;
  padding-right: 0;
  right: 40px;
  bottom: 4px;
  background: url(/ct/channel/img/arrow_black_left.gif) left center no-repeat;
}

/* line 103, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
a.more-left {
  color: #000;
}

/* line 106, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.more-rightView > a.more {
  bottom: 15px;
  right: 0;
  padding: 0 10px;
  color: #d51b1e !important;
}

/* line 112, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.more-rightView a.no-image {
  padding-right: 0;
  background: #fff;
}

/* line 116, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.item_commentCount {
  position: absolute;
  bottom: 50px;
  text-transform: uppercase;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  font-size: 17.6px;
  font-size: 1.1rem;
}

/* line 124, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.item_commentCount > a {
  color: #000;
  text-decoration: none;
}

/* line 129, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.overlay-ajax {
  position: absolute !important;
  background: #fff url(/system/img/ajax-loader.svg) center center no-repeat !important;
}

/* line 133, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.hover_red:hover {
  color: #d51b1f;
}

/* line 136, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.podcast-heading {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-size: 12.8px;
  font-size: 0.8rem;
  vertical-align: 10px;
}

/* line 141, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.sponsor-expand {
  background: #d51b20;
  height: 20px;
  text-align: center;
}

/* line 146, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.l-grid-section-blog .l-grid_item:hover li,
.l-grid-section-blog .l-grid_item:hover a {
  color: #d51b1e;
  text-decoration: none;
}

/* line 151, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.expandContent {
  width: 100%;
  position: fixed;
  background: #fff;
  bottom: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 5;
  display: none;
  opacity: 1 !important;
  border-top: 15px solid #000;
}

/* line 163, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.articleImg {
  width: 620px;
  overflow: hidden;
}

/* line 167, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.listed-links_bold {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
}

/* line 171, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.loginErrorDiv {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

/* line 174, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
select.custom-formElements {
  padding: 4px;
}

/* line 178, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.l-three .l-grid {
  float: none;
}

/* line 182, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
h2 .js-selectExplore {
  margin: 18px 0 10px;
}

/* line 185, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.firstContainerList .byline {
  font-weight: 500;
}

/* line 188, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.limitBy {
  width: auto !important;
  padding-right: 10px;
  margin-top: 4px;
}

/* line 193, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.tabularData th {
  background: #000;
  padding: 3px 5px;
}

/* line 197, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.tabularData th.first-column {
  text-align: left;
  padding-left: 10px;
  width: 210px;
}

/* line 202, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
th a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 210, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.tabularData td {
  padding: 16px 0 8px 10px;
  vertical-align: top;
  text-align: center;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 217, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.tabularData td .reviewPagingRight a {
  color: #d51b1e;
}

/* line 221, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.tabularData td.firstColumn {
  text-align: left;
  padding-left: 0;
  width: 250px;
}

/* line 226, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
#books .tabularData td.firstColumn {
  width: 290px;
}

/* line 229, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
td.topData {
  padding-bottom: 0;
  padding-left: 0;
}

/* line 233, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
td.topData .reviewPagingRight {
  padding-right: 0;
}

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

/* Needed for Newsfeed Browse Page */
/* line 248, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.clearBoth {
  clear: both;
}

/* line 251, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.previousLink,
.nxtLink {
  position: absolute;
}

/* line 255, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.previousLink {
  left: 0;
}

/* line 258, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.nxtLink {
  right: 0;
}

/* line 261, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
#fromissue {
  padding: 0 10px;
}

/* line 264, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
#fromissue > .l-grid_item {
  margin-right: 6px;
  width: 215px;
}

/*use this class to display grid blocks for example homepage */
/* line 269, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.applyBlock {
  display: inline-block;
  vertical-align: top;
  float: none;
}

/*use this class to display grid blocks for example homepage */
/* line 275, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
#LoaderImage {
  display: none;
  text-align: center;
}

/* line 279, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
#LoaderImage > span {
  color: #d51b1e;
  text-transform: uppercase;
  vertical-align: top;
  position: relative;
  top: 4px;
  left: 15px;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  font-size: 18.4px;
  font-size: 1.15rem;
}

/* line 290, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.image-credit, .credit {
  margin-bottom: 5px;
}

/* line 293, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.caption {
  color: #878787;
  font-size: 11.2px;
  font-size: 0.7rem;
}

/* line 297, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.pagingSort {
  position: relative;
  top: -2px;
}

/* line 301, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.pagingSort span {
  padding-right: 8px;
  padding-top: 2px;
}

/* line 305, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.reviewsPaging {
  width: 100%;
  display: inline-block;
  padding-top: 8px;
  padding-bottom: 4px;
}

/* line 312, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.reviewsPaging:first-child .custom-form-select_searchgoto {
  margin-top: -3px;
}

/* line 316, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-border-bottom {
  border-bottom: 1px solid #000;
}

/* line 319, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-border-top {
  border-top: 1px solid #000;
}

/*css for columnist page*/
/* line 323, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.category-description-sm {
  margin-top: 3px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 328, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-container {
  border-bottom: 1px solid #dedecc;
  padding-bottom: 5px;
}

/* line 332, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.read-author-bio {
  line-height: 1;
  display: block;
  text-align: center;
  color: #0099d2;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 340, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.read-author-bio:hover {
  text-decoration: underline;
  color: #0099d2;
}

/*styles for Virtual Collection page*/
/* line 347, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.headings-section_views {
  border-bottom: 1px solid #0099d2;
  font-weight: 700;
  margin-bottom: 4px;
  padding-bottom: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 356, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.headings-section_views a {
  color: #0099d2;
}

/* line 360, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.author-name {
  width: 150px;
  line-height: 1;
  font-weight: 700;
  text-align: right;
  font-size: 14.4px;
  font-size: 0.9rem;
}

/* line 368, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.author-name a {
  color: #0099d2;
}

/* line 372, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.aboutAuthor {
  margin-top: -20px;
  background: #fff;
  padding-left: 10px;
}

/* line 377, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.view-first_item {
  float: none;
}

/*styles for Virtual Collection page*/
/* line 381, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.category-description-md {
  font-family: "Gotham A", "Gotham B", sans-serif;
  line-height: 1.4;
  font-size: 13.6px;
  font-size: 0.85rem;
}

/* line 387, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-border-top select.js-sortBy {
  margin: 0;
}

/* line 390, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
select.js-sortBy {
  text-transform: none;
}

/* line 393, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.columnistListing {
  padding-left: 15px;
  overflow: hidden;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 11.2px;
  font-size: 0.7rem;
}

/* line 399, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.columnistListing a {
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 403, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-books_awards li {
  width: 100%;
  margin: 10px 0;
}

/* line 407, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-topstory .media_img {
  margin-bottom: 5px;
}

/* line 410, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.browseColumnist select {
  margin-bottom: 5px;
}

/* line 413, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.blockContent {
  width: 100%;
  display: inline-block;
}

/* line 417, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.l-tbl .slug {
  display: block;
  width: 100%;
}

/* line 421, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.loginErrorDiv div label {
  display: block;
  font-weight: 400;
  color: #000;
  font-size: 13.6px;
  font-size: 0.85rem;
}

/* line 428, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.loginErrorDiv div input[type="text"] {
  width: 200px;
  background: #ebeded;
  border: 1px solid #000;
}

/* line 433, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.loginErrorDiv > p {
  font-size: 13.6px;
  font-size: 0.85rem;
}

/* line 436, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.loginErrorDiv > p a {
  color: #d51b1e;
}

/* line 440, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.loginErrorDiv > h5 {
  line-height: 1;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
}

/* line 445, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-top > .nav-topics {
  margin-bottom: 20px;
}

/* line 448, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.adjective {
  position: relative;
  bottom: 60px;
}

/* line 452, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.custom-formElements,
input#newsletterEmailInput {
  background: #fff;
  border: 1px solid #000000;
  padding: 2px;
  font-family: verdana,arial,sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
  color: #696969;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 464, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.custom-formElements optgroup {
  margin-top: 10px;
  margin-left: 2px;
  font-style: normal;
}

/* line 469, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.newsletter-section .custom-formElements {
  font-size: 19.2px;
  font-size: 1.2rem;
}

/* line 472, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
select optgroup.optGroup {
  margin-top: 10px;
  padding: 0 5px;
  font-family: Arial,Verdana,Helvetica,sans-serif;
  font-weight: bold;
  letter-spacing: 0.01em;
  font-size: 14.4px;
  font-size: 0.9rem;
}

/* line 481, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.js-backtoTop {
  width: 53px;
  height: 51px;
  float: right;
  cursor: pointer;
  background-image: url(/ct/channel/img/img_sprite_backtotop.png);
}

/* line 488, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.js-backtoTop:hover {
  background-position: 0 -51px;
}

/* line 492, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.media_content .withoutFlag {
  position: static;
  margin-bottom: 10px;
}

/* line 496, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.purchaseLinks > a {
  text-transform: uppercase;
  color: #d51b1e;
  padding-right: 10px;
  margin-right: 10px;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 505, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.listenLink {
  border-right: 1px solid #ccc;
}

/* line 508, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.category-description-lg {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif;
  line-height: 1.7em;
  font-size: 16px;
  font-size: 1rem;
}

/* line 514, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.category-description-lg a {
  color: #000;
  text-decoration: underline;
}

/* line 518, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.category-description-lg a:hover {
  text-decoration: none;
}

/* line 522, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.category-description-lg strong {
  font-weight: 600;
}

/* line 526, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.search-input-width {
  width: 180px;
  height: 21px;
  vertical-align: top;
}

/* line 531, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.shoptext {
  font-size: 14.72px;
  font-size: 0.92rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

/* line 535, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.shoptext a {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 700;
  line-height: 1;
  font-size: 20.64px;
  font-size: 1.29rem;
}

/* line 542, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
input:focus {
  outline-style: none;
}

/* line 545, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
#body.section-faq p {
  padding-right: 15px;
}

/* line 551, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
#body .inner-rightnav_item .unlockButton a:hover {
  text-decoration: none !important;
}

/* line 557, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.fb_iframe_widget span {
  vertical-align: top !important;
}

/* line 560, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-readnext {
  height: 124px;
  font-size: 0;
  overflow: hidden;
}

/* line 564, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-readnext img {
  vertical-align: top;
}

/* line 568, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-readnext a img {
  width: 220px;
}

/* line 574, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.lowercase {
  text-transform: lowercase;
}

/* line 577, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
a.descending, a.ascending:hover {
  background: url(/ct/channel/img/icon_arrow_sm.png) no-repeat right center;
  padding-right: 10px;
}

/* line 581, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
a.ascending, a.descending:hover {
  background: url(/ct/channel/img/icon_arrow_sm_reverse.png) no-repeat right center;
  padding-right: 10px;
}

/* line 585, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.author-bio > p {
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1rem;
}

/* line 590, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.buttons_link-item {
  text-transform: uppercase;
  padding: 2px 5px;
  display: inline-block;
  vertical-align: top;
  float: none;
  margin: 4px 0 6px 0;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 600, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.buttons_link-item a {
  color: #d51b1e;
  text-decoration: none;
}

/* line 604, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.buttons_link-item:hover {
  background: #FBFF0A;
}

/* line 609, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-vault_in .link-archives {
  font-size: 2.15rem;
}

/* line 613, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.button_yellow-md {
  margin: 3px 0 0 10px;
  font-weight: bold;
  font-size: 11.2px;
  font-size: 0.7rem;
}

/* line 619, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-vault {
  background: #ebeded url(/ct/channel/img/bg_stripes.gif);
  padding: 20px 12px 15px;
  overflow: hidden;
}

/* line 623, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-vault p {
  font-size: 13.6px;
  font-size: 0.85rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  line-height: 1.4;
}

/* line 629, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-vault img {
  margin-right: 10px;
}

/* line 633, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.link-archives {
  color: #d51b1e;
  font-weight: 100;
  display: block;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 32px;
  font-size: 2rem;
}

/* line 641, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.link-archives_black {
  color: #000000;
}

/*styles added for Magazine and year pages*/
/* line 645, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.red-color {
  color: #d51b1e;
}

/* line 648, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.heading-section_flag {
  margin-right: 15px;
}

/* line 651, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.custom-form_pt {
  width: 178px;
  height: 21px;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 657, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.custom-form-input_search {
  width: 320px;
  height: 21px;
}

/* line 661, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.custom-form-select_search {
  width: 240px;
  height: 27px;
  text-transform: capitalize;
}

/* line 666, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.custom-form-select_searchgoto {
  width: 23px;
  height: 16px;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 672, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.search-results_main {
  padding-top: 20px;
}

/* line 675, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.search-results_result {
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}

/* line 679, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.search-results_excerpt {
  padding: 20px 0 0 30px;
  line-height: 1.5;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

/* line 686, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.highlight {
  background-color: #f8e405;
  color: #000000;
  padding: 1px 3px;
}

/* line 691, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.search-results_lastResult {
  border-bottom: none;
  padding: 0;
}

/* line 695, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.archives-heading_lg {
  border: none;
}

/* line 698, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.archives-section_covers {
  margin-right: 15px;
  text-align: center;
  height: 290px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 705, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.archives-section_covers .archives-section-links_sm a {
  color: #d51b1e !important;
}

/* line 710, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.archives-dropdown_165 {
  width: 165px;
}

/* line 713, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.archives-dropdown_125 {
  width: 125px;
}

/* line 716, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.archives-intro_centered {
  border: none;
  font-size: 22.4px;
  font-size: 1.4rem;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 700;
}

/* line 721, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.archives-intro_left {
  text-align: left;
  border: none;
  letter-spacing: 0.7px;
  font-size: 20.8px;
  font-size: 1.3rem;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 700;
}

/* line 729, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.sister-publication .more-right {
  left: 0px !important;
}

/* line 734, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.archives-toc_sections .heading-section-lg {
  font-size: 32px;
  font-size: 2rem;
}

/* line 738, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.archives-toc_heading {
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 12px 0;
  color: #000;
  letter-spacing: -0.03em;
  font-weight: 100;
  line-height: 1.05;
  font-size: 32px;
  font-size: 2rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
}

/* line 750, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.archives-toc_accessicon {
  margin-top: 7px;
  margin-left: 5px;
}

/* line 754, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.archives-toc_linedText {
  background: url("/ct/channel/img/bg_archives_italics.gif") no-repeat center;
  text-align: center;
  font-style: italic;
}

/* line 759, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.alignCenter {
  text-align: center;
}

/* line 762, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.archives-user_text {
  font-size: 13.6px;
  font-size: 0.85rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

/* line 765, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.archives-user_text .applyBlock {
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 768, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.archives-user_text a {
  text-decoration: underline;
}

/* line 771, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.archives-user_text a:hover {
  text-decoration: none;
}

/* line 776, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.more-right_sections {
  position: relative;
  right: 0;
}

/*styles end for year page*/
/* line 781, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.media-rating {
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 784, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.media-rating img {
  margin-top: 5px;
}

/* line 788, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.book-rating img {
  margin-top: 5px;
}

/* line 791, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.author {
  margin-top: 3px;
}

/* line 794, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.byAuthor {
  font-size: 11.2px;
  font-size: 0.7rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 10px;
  display: block;
  color: #999;
}

/* line 802, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-books_awards a {
  font-weight: 800;
}

/* line 805, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.tabularData .bottomData {
  padding-left: 0;
  padding-bottom: 0;
}

/* line 809, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.tabularData .bottomData .paging {
  border-top: 1px solid #000;
  border-bottom: 0;
  padding-top: 5px;
}

/* line 814, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.tabularData .bottomData .reviewPagingRight {
  padding: 0;
}

/* line 818, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.l-three .heading-gleanings {
  margin-bottom: 10px;
}

/* line 821, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.media-title {
  text-decoration: none;
  color: #000;
  font-size: 14.4px;
  font-size: 0.9rem;
}

/* line 827, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.media-title:hover {
  text-decoration: underline;
}

/* line 831, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.content-inside {
  overflow: hidden;
}

/*For Our Latest Page*/
/* line 836, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-waterfall-date {
  border-bottom: 2px solid #000;
}

/* line 839, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-waterfall-date-item {
  position: relative;
  top: 6px;
  background: #fff;
  padding-right: 4px;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  font-size: 19.2px;
  font-size: 1.2rem;
}

/* line 850, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.js-dropdownNav li {
  padding-bottom: 5px;
}

/* line 853, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.js-dropdownNav li a:hover {
  color: #000;
}

/* line 857, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.js-dropdownNav ul {
  background: #fff;
}

/* line 860, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.js-dropdownNav ul a {
  font-size: 13.6px;
  font-size: 0.85rem;
}

/* line 864, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.reviewGridContainer {
  padding-top: 20px;
}

/* line 867, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.archives-toc_sections .slug-category {
  font-weight: 100;
  line-height: 1.1;
  font-size: 32px;
  font-size: 2rem;
}

/* line 875, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-elements .slug-category {
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
}

/* line 880, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-elements .author-name {
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 886, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-issues .custom-buttons {
  display: inline-block;
  vertical-align: top;
}

/* line 891, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.btn-subscribe {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  background: #d51b1e;
  letter-spacing: -.03em;
  padding: 3px 65px;
  display: inline-block;
  font-size: 22.4px;
  font-size: 1.4rem;
}

/* line 900, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.btn-subscribe:hover {
  text-decoration: none;
  background: #ED1317;
}

/* line 905, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.author-bio .top-section-search {
  display: inline-block;
}

/* line 909, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.top-section-search input.form-submit-image {
  background: url(/ct/channel/img/btn_go.gif);
  border: 0;
  width: 36px;
  height: 27px;
}

/* line 916, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-breaking-news {
  background: #000;
  color: #fff;
  height: 44px;
  display: block;
}

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

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

/* line 936, Z:/home-ct/channels/ct/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 942, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.content-full {
  width: 980px;
  margin-left: -20px;
  margin-bottom: 5px;
}

/* line 947, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.ctLatestCover {
  margin-right: 20px;
}

/* line 950, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-article .limitBy {
  margin-top: 8px;
}

/* line 953, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.subscribe-rss {
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
}

/* line 956, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.subscribe-rss a {
  text-decoration: underline;
}

/* line 960, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.rss-tabular-data {
  border: 0;
  vertical-align: middle;
}

/* line 964, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.rss-tabular-data .rssFirstColumn {
  width: 22px;
  padding-top: 4px;
}

/* line 968, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.rss-tabular-data .rssFirstColumn img {
  position: relative;
  top: 4px;
}

/* line 972, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.rss-tabular-data .rssSecondColumn {
  width: 250px;
  font-family: verdana,arial,sans-serif;
  font-size: 11.2px;
  font-size: 0.7rem;
}

/* line 978, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.rss-tabular-data .rssThirdColumn {
  font-family: arial,verdana,sans-serif;
  font-size: 11.2px;
  font-size: 0.7rem;
}

/* line 984, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.moreRssLink .more {
  right: 20px;
}

/* line 987, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.l-tbl-section-main .slug {
  height: auto;
  min-height: 20px;
}

/* line 991, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
#poll {
  width: 100%;
}

/* line 994, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
#poll iframe {
  width: 620px;
  margin-top: 20px;
}

/*to remove input outline in chrome browser*/
/* line 1000, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
*:focus {
  outline: none;
}

/*to remove input outline in chrome browser*/
/* line 1004, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.collection-links .more {
  position: relative;
}

/* line 1008, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.ct-studies .left {
  width: 145px;
  float: left;
  padding-left: 10px;
}

/* line 1013, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.ct-studies .right {
  width: 135px;
  float: left;
}

/* line 1018, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.viewMore {
  clear: left;
  padding-top: 10px;
}

/* line 1022, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.homepage-flag {
  display: none;
}

/* line 1025, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.article-byline img {
  margin: 0 5px;
  vertical-align: middle;
}

/* line 1029, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.moreIssue ul.l-grid {
  width: 100%;
}

/* line 1031, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.moreIssue ul.l-grid li {
  width: 202px;
  margin: 0 15px;
}

/* line 1035, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.moreIssue ul.l-grid .u-right {
  float: right !important;
  text-align: right;
}

/* line 1041, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.main-waterfall-section .title {
  display: inline;
}

/* line 1044, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.main-waterfall-section .subscriber-access-notifier {
  margin-left: 5px;
}

/* line 1047, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.main-waterfall-section .title-block {
  display: block;
}

/* line 1050, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.main-waterfall-section .byline-block {
  padding-left: 80px;
}

/* line 1054, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.book-rating {
  padding-left: 80px;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 1058, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.expandContent-sm {
  height: auto;
  padding-bottom: 20px;
}

/* line 1061, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.expandContent-sm .ctSocialShare span {
  color: #676a6b;
  font-size: 1em;
}

/* line 1066, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.nav-head-red {
  top: 5px;
  position: relative;
}

/* line 1070, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.featured_slug-red a {
  font-size: 1rem;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  color: #d51b1e;
}

/* line 1075, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.featured_lock {
  position: relative;
  top: 4px;
}

/* line 1079, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.social_icons {
  height: 45px;
}

/* line 1082, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.alignment_top {
  position: relative;
  bottom: 2px;
}

/* line 1086, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-issues_centered {
  text-align: center;
}

/* line 1088, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-issues_centered .archives-intro_centered {
  width: 250px;
}

/* line 1091, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-issues_centered .section-vault_lg {
  text-align: left;
  background: #ebeded url(/ct/channel/img/bg_stripes_lg.gif);
  height: 92px;
}

/* line 1096, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-issues_centered .section-vault_lg .section-vault_in {
  width: 252px;
}

/* line 1099, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-issues_centered .section-vault_lg .link-archives {
  text-align: left;
}

/* line 1103, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-issues_centered .text-left {
  text-align: left;
}

/* line 1106, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-issues_centered .promo-listed {
  list-style: none;
  margin: 10px 0 0 15px;
}

/* line 1110, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-issues_centered li {
  background: url(/ct/channel/img/bg_bullet.gif) 0 7px no-repeat;
  padding-left: 10px;
}

/* line 1115, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.collection-links {
  text-transform: uppercase;
  font-weight: bold;
}

/* line 1118, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.collection-links .nav-topics {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-size: 16.8px;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}

/* line 1123, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.collection-links .nav-topics a {
  color: #d51b1e;
  padding: 0;
  margin: 0 2px;
}

/* line 1128, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.collection-links .nav-topics a:hover {
  border: none;
  text-decoration: underline;
}

/* line 1132, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.collection-links .nav-topics > .nav_label {
  margin-right: 2px;
}

/* line 1136, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
#beaconAdsDiv {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
}

/* line 1142, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.flag-sponsored {
  position: absolute;
  top: 0;
}

/* line 1145, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.flag-sponsored .flag-sponsored_image {
  vertical-align: bottom;
}

/* line 1149, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.flag-red_extend {
  position: relative;
  right: -20px;
}

/* line 1153, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
a.follow {
  background: url(/ct/channel/img/icon_follow.gif) no-repeat;
  width: 13px;
  height: 11px;
  display: inline-block;
  margin-left: 5px;
}

/* line 1160, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
a.following {
  background: url(/ct/channel/img/icon_following.gif) no-repeat;
  width: 13px;
  height: 11px;
  display: inline-block;
  margin-left: 5px;
}

/* line 1167, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.display-inline {
  display: inline !important;
}

/* line 1170, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.l-four_376 {
  width: 376px;
}

/* line 1173, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.custom-buttons_sm {
  font-size: 22.4px;
  font-size: 1.4rem;
  margin-right: 5px;
  text-transform: uppercase;
  padding: 3px 30.5px !important;
}

/* line 1179, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.sans-transform {
  text-transform: none;
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 15.5px;
}

/* line 1185, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.search-results_result .sponsor-search_slug {
  position: relative;
  bottom: 3px;
}

/* Styles for Article Amazon section */
/* line 1191, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.article-promoSpot {
  margin-top: 42px;
}

/* line 1194, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.article-promoSpot .u-left img {
  margin-top: 3px;
}

/* line 1198, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.article-promoSpot .byline {
  margin: 0 0 18px;
}

/* line 1201, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.article-promoSpot .article-promoSpot_item {
  line-height: 1.1;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 1205, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.article-promoSpot .title {
  font-size: 16.8px;
  font-size: 1.05rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 10px;
}

/* line 1212, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.review-box {
  width: 100%;
  display: inline-box;
}

/* line 1216, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.inner-content {
  margin: 0 auto;
  width: 940px;
}

/* line 1220, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.uppercase {
  text-transform: uppercase;
}

/* line 1223, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.bg-light-gray {
  background: #ebeded;
}

/* line 1226, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.subnavSection-lg {
  width: 100%;
}

/* line 1228, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.subnavSection-lg span.section-button-links {
  margin-left: 0;
}

/* line 1233, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.short-desc {
  clear: both;
  font-size: 13.6px;
  font-size: 0.85rem;
}

/* line 1237, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.short-desc span a {
  text-decoration: underline;
}

/* line 1239, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.short-desc span a:hover {
  text-decoration: none;
}

/* line 1245, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.short-desc .buttons_link a {
  text-decoration: none;
}

/* line 1250, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.seprator {
  padding: 0 4px;
}

/* line 1253, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.text-sm {
  font-size: 11.2px;
  font-size: 0.7rem;
}

/* line 1256, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.display-none {
  display: none;
}

/* line 1259, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.js-sticky {
  position: fixed;
  top: 0;
  width: 300px;
}

/* line 1264, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.border-bottom-white {
  border-bottom: 1px solid #fff;
}

/* line 1267, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.footer #global-footer_newsletter input#newsletterSubmitInput {
  bottom: 12px !important;
}

/* Custom styles for slideshow */
/* line 1272, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.page-count {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif !important;
  font-size: 14px !important;
}

/* line 1276, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.slide-description p {
  font-family: "Gotham A", "Gotham B", sans-serif !important;
}

/* line 1279, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.expand-it {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.05em;
  height: 12px;
  padding-left: 18px;
}

/* line 1286, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.expand-it span {
  top: -5px;
}

/* line 1289, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.article-top .title {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 500;
}

/* line 1293, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.slide-description p span {
  font-size: 1.15em;
}

/* line 1296, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-waterfall_blocks {
  clear: both;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}

/* line 1301, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-waterfall_blocks .subhead {
  margin-bottom: 40px !important;
  text-align: left;
  color: #000;
}

/* line 1307, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-waterfall_block {
  width: 50%;
}

/* line 1311, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.readermode .section-waterfall_block {
  width: 45%;
}

/* line 1314, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.readermode .section-waterfall_block:nth-child(odd) {
  margin-right: 20px;
}

/* line 1318, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.nav-topics a.active {
  border-bottom: 3px solid #d51b1e;
  color: #d51b1e;
}

/* line 1322, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.fixed-height-350 {
  min-height: 350px;
}

/* line 1325, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.custom-content {
  width: 300px;
}

/* line 1328, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.custom-content .fixed-height-350 {
  width: 100%;
}

/* line 1331, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.fixed-height-140 {
  min-height: 140px;
}

/* line 1334, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.main-waterfall-section {
  overflow: hidden;
}

/* line 1336, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.main-waterfall-section .title-4_bolded {
  font-weight: 600 !important;
  line-height: 0.9;
}

/* line 1340, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.main-waterfall-section .book-rating {
  padding: 0px !important;
}

/* line 1344, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.heading-5 {
  font-size: 0.7rem;
  font-weight: 700;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 1351, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
  .l-header h1.logo img {
    height: 115px;
  }
}

/* line 1359, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.unlocked-popup .section-articlePreview a.color-white {
  color: #fff;
  text-decoration: none;
  text-align: center;
}

/* line 1366, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.valign-middle {
  vertical-align: middle;
}

/* line 1369, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.post-authorship_info {
  color: #999;
  float: left;
  font-style: italic;
  margin-top: 10px;
  width: 100%;
}

/* line 1376, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.border-bottom-gray {
  border-bottom: 1px solid #ebeded;
}

/* line 1379, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.spacer-top-5 {
  margin-top: 5px;
}

/* line 1383, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-main .buttons_link {
  width: 155px !important;
}

/* line 1388, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.btn-loadmore {
  background-color: #fff;
  color: #000;
  padding: 11px 21px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  border: 1px solid #000;
}

/* line 1396, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.btn-loadmore:hover {
  text-decoration: none;
}

/* line 1400, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.btn-unlock {
  background-color: #fff;
  color: #d51b1e;
  padding: 11px 21px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-size: 12.8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  border: 1px solid #d51b1e;
}

/* line 1408, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.btn-unlock:hover {
  text-decoration: none;
}

/* line 1412, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.position-relative {
  position: relative;
}

/* line 1415, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.seprator {
  color: #999;
}

/* line 1417, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.seprator:hover {
  text-decoration: none !important;
}

/* line 1422, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.slug:hover .seprator {
  text-decoration: none !important;
}

/* line 1426, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.heading-collection {
  font-size: 2.4rem !important;
}

/* line 1428, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.heading-collection .js-selectExplore {
  margin: 6px 0 10px !important;
}

/* line 1432, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.nav-topics span.seprator {
  margin: 0px;
  font-size: 16px;
  font-size: 1rem;
}

/* line 1437, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.border-bottom-gray h2.page-heading {
  margin-top: -10px;
}

/* line 1441, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.subscriber-icon {
  margin-left: 8px;
}

/* line 1446, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-article .section .headings-small {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
}

/* line 1450, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-article .topic-head {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
}

/* line 1455, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-border-top div.headings-black {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
}

/* line 1461, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.newsletterList .nlList_item .nlList_item_link {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

/* line 1467, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-moreFrom-Issue .heading-section-lg {
  font-size: 38.4px;
  font-size: 2.4rem;
}

/* line 1470, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-moreFrom-Issue .more-rightView > a.more {
  bottom: 11px !important;
}

/* line 1474, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.border-bottom-black {
  border-bottom: 1px solid #000;
}

/* line 1477, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.border-top-black {
  border-top: 1px solid #000;
}

/* line 1480, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.custom-block {
  margin-top: 15px;
  padding-top: 15px;
}

/* line 1484, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.display-inline-block {
  display: inline-block;
}

/* line 1487, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.custom-block .blockContent {
  border-bottom: 0;
  margin-bottom: 0;
}

/* line 1491, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.w-700 {
  font-weight: 700;
}

/* line 1495, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
#section-popular .l-four {
  width: 220px !important;
  margin-right: 15px;
  padding-right: 0 !important;
  display: inline-block !important;
}

/* line 1501, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
#section-popular .title,
#section-popular .deck {
  width: 93%;
}

/* line 1506, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.position-absolute {
  position: absolute;
}

/* line 1512, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.header-menu ul.nav-bar li a.color-red:hover {
  color: #000 !important;
}

/* line 1519, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
#articlePreview .custom-buttons {
  display: inline-block !important;
  width: 140px !important;
  padding: 4px 33.5px !important;
}

/* line 1526, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.l-rightnav span.spacer-bottom-15 {
  letter-spacing: 0px;
}

/* line 1531, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.paging a.nextLink {
  font-size: 12.8px;
  font-size: 0.8rem;
  padding: 15px 0px !important;
}

/* line 1536, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.description {
  font-size: 12.8px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

/* line 1540, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.description a.red-color {
  text-decoration: underline;
}

/* line 1542, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.description a.red-color:hover {
  color: #000;
}

/* line 1548, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.rc-w-60500 h3 {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 100;
  font-size: 38.4px;
  font-size: 2.4rem;
}

/* line 1553, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.deck, .short-desc, .archive-section_covers, .nav-topics {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

/* line 1556, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.border-top-light-gray {
  border-top: 1px solid #ebeded;
}

/* line 1559, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.article-promoSpot {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

/* line 1563, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
#js-wrap-readermode .featured_slug {
  left: 0;
  position: absolute;
}

/* line 1568, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.tooltip-container {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 0.75rem;
  background: #fff;
  color: #000;
  border: 1px solid #bfbfbf;
  width: 195px;
  display: block;
  font-weight: 400;
  word-wrap: break-word;
}

/* line 1579, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.archives-heading_lg {
  color: #000;
  font-size: 38.4px;
  font-size: 2.4rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 100;
}

/* line 1584, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.heading-archives {
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif;
  font-weight: 400;
  letter-spacing: -0.1px;
}

/* line 1589, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.heading-main {
  font-size: 57.6px;
  font-size: 3.6rem;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 400;
  letter-spacing: -0.1px;
  color: #d51b1e;
}

/* line 1595, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.borber-bottom-light-gray {
  border-bottom: 1px solid #ebeded;
}

/* line 1599, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.collection-links .nav_label {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif !important;
  font-weight: 500 !important;
  font-size: 1.1rem !important;
}

/* line 1606, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.slug-style-overwrite .slug {
  font-size: 12px;
  font-size: 0.75rem;
  color: #999 !important;
}

/* line 1611, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-vault_lg .section-vault_in {
  width: 255px;
}

/* line 1615, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-gleaning .l-grid, .section-gleaning .l-grid_item {
  clear: none;
}

/* line 1619, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.spacer-bottom-5 {
  margin-bottom: 5px;
}

/* line 1622, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.heading-podcast {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 1626, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.custom-buttons_sm-new {
  width: 162px;
  text-align: center;
  padding: 3px 10px !important;
  margin-right: 6px !important;
}

/* line 1632, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.sponsor-search_slug {
  color: #999;
  font-size: 12px;
  font-size: 0.75rem;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  /* line 1637, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
  .l-rightnav .heading-section-lg {
    font-size: 2.35rem !important;
  }
}

/* line 1642, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.contactUs-form input.buttons_link {
  border: none !important;
}

/* line 1646, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.spacer-right-15 {
  margin-right: 15px;
}

/* line 1649, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.spacer-inner-top-10 {
  padding-top: 10px;
}

/* line 1653, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.section-blog .section-heading_tagline {
  font-weight: 400;
  display: block;
  margin-top: 0;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 1662, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
#loginErrorDiv ul.login-nav li {
  list-style-type: none;
}

/* line 1668, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.featured-insertion_info .nav-topics {
  margin-bottom: 20px;
  margin-top: 6px;
}

/* line 1671, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.featured-insertion_info .nav-topics a {
  color: #d51b1e;
  text-decoration: none;
  font-size: 12.8px;
  font-size: 0.8rem;
  display: inline-block;
}

/* line 1682, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.blockContent ul.section li div.slug {
  margin-top: 2px;
}

/* line 1686, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.blockContent ul.section li:last-child {
  margin-right: 0px;
}

/* line 1690, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.blockContent .bg-flag {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  background: black;
  color: #fff;
  padding: 2px 10px;
}

/* line 1699, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.promo-ad {
  width: 940px;
}

/* line 1701, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.promo-ad a {
  float: left;
}

/* line 1706, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.slug .minute {
  color: #d51b1e !important;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 0;
}

/* line 1715, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.inline-block {
  display: block;
}

/* line 1718, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.inline {
  display: inline !important;
}

/* line 1721, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
display-inlineBlock {
  display: inline-block !important;
}

/* line 1725, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.popularSection .slug {
  display: block !important;
}

/* line 1729, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.spacer-bottom-1 {
  margin-bottom: 1px;
}

/* line 1732, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.global-footer .global-footer_newsletter-section #global-footer_newsletter input#newsletterSubmitInput {
  bottom: 12px;
}

/* line 1735, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.unlockButton {
  padding: 7px 25px !important;
}

/* line 1738, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.follow-links {
  font-family: "Gotham A","Gotham B",sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 1744, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.follow-links a {
  color: #d51b1e;
  text-decoration: underline;
}

/* line 1748, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.follow-links a img {
  vertical-align: middle !important;
}

/* line 1751, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.follow-links a:hover {
  text-decoration: none;
}

/* line 1754, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.no-border {
  border: none !important;
}

/* line 1757, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.moreFrom-Issue {
  width: 700px !important;
}

/* line 1760, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
input.inputBox {
  padding: 2px;
  border: 1px solid #000000;
  color: #000000;
  font-family: verdana,arial,sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0;
  padding: 2px;
}

/* line 1769, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.flag-content {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  color: #fff !important;
  letter-spacing: .05em;
  font-size: 15.2px;
  font-size: 0.95rem;
  padding: 3px 25px 2px !important;
  background: #d51b1e;
  font-weight: 500 !important;
  display: inline-block;
  vertical-align: middle;
}

/* line 1780, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.expand-content {
  width: 100%;
}

/* line 1783, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.no-content {
  padding: 0;
  margin-top: -5px;
  border: 0;
}

/* line 1791, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
div.userInfo.u-split span.userInfo_links img.alternate-dropdown_icon {
  margin: 0 0 5px 5px;
}

/* line 1794, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
div.userInfo.u-split span.userInfo_links ul#js-alternatedropdown_top.alternate-dropdown {
  position: absolute;
  right: -20px;
  top: 45px;
  list-style-type: none;
  background: #ebeded;
  z-index: 1;
  padding: 10px 20px;
  text-align: left;
  width: 90%;
}

/* line 1807, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.loader-image {
  text-align: center;
}

/* line 1810, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.loader-image > span {
  color: #d51b1e;
  text-transform: uppercase;
  vertical-align: top;
  position: relative;
  top: 4px;
  left: 15px;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  font-size: 18.4px;
  font-size: 1.15rem;
}

/* line 1821, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.spacer-bottom-1 {
  margin-bottom: 1px;
}

/* line 1824, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.bg-light-gray {
  background: #ebeded;
}

/* line 1827, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.spacer-inner-left-15 {
  padding-left: 15px;
}

/* line 1830, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.readermode_image {
  position: relative;
  right: 15%;
}

/* line 1834, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.contactUs-form label {
  width: unset;
}

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

/* line 1847, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.spacer-top-7 {
  margin-top: 7px;
}

/* line 1850, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.no-space {
  margin-right: 0;
}

/* line 1853, Z:/home-ct/channels/ct/channel/css/sass/base/_generic.scss */
.header-section {
  background: #000 !important;
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.print-media {
  background: transparent;
}

/* line 4, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.print-page {
  width: 860px;
  position: relative;
}

/* line 8, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.printerversionad {
  text-align: center;
  padding-top: 10px;
  padding-top: 5px;
  background-color: #ebeded;
  border-bottom: 1px solid #dedecc;
}

/* line 15, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.printerversionad p {
  color: #767676;
  margin: 5px 0 0 0;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 22, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.print-container {
  margin-left: 10px;
}

/* line 25, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.print-container a {
  color: #000;
}

/* line 31, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.print-content .article-img {
  margin: 0 20px;
  width: 460px;
}

/* line 36, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.print-content .copyright {
  color: #dd3f1f;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 42, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.print-content .slug {
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 45, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.print-content .image_left {
  margin-left: 0px;
}

/* line 49, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.print-content div#body {
  width: 860px;
}

/* line 54, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.print-content .blockquote {
  margin-left: 20px;
  color: red;
}

/* line 59, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.print-content .subhead {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-size: 25.6px;
  font-size: 1.6rem;
  font-weight: 600;
}

/* line 65, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.print-issue-info {
  color: #d51b1e;
  font-weight: bold;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 71, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.utilities {
  width: 99%;
}

/* line 74, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.utilities ul {
  margin: -115px 0 10px;
  float: right;
}

/* line 79, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.utilities li {
  margin: 0 5px;
  display: inline;
  margin: 2px 3px;
  overflow: hidden;
}

/* line 85, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.utilities li a {
  color: #d51b1e;
  padding: 0 2px;
  margin-left: 3px;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 93, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.current-date {
  color: #d51b1e;
  margin: -15px 0 15px 0;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 99, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.print-title {
  font-size: 44.8px;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.07;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
}

/* line 105, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.print-article-link {
  border-top: 1px solid #dedecc;
  border-bottom: 1px solid #dedecc;
  padding: 10px 10px 10px 3px;
  margin-left: 0px;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 113, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.print-article-link a {
  text-decoration: none;
  color: #000;
}

/* line 117, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.print-article-link a:hover {
  text-decoration: underline;
}

/* line 122, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.post-date {
  font-weight: normal;
  color: #b8b8b8;
  font-size: 12px;
  font-size: 0.75rem;
}

@media print {
  /* line 130, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
  body,
  .title,
  .title-2,
  .deck,
  .byline,
  #printPage,
  .postdate,
  .printPresentUrl_section,
  .printChoice,
  .printTop,
  .printOptions_section,
  #body p {
    font-family: Georgia, "Times New Roman", serif !important;
    color: #000;
  }
}

/* line 146, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
p.error {
  color: #dd3f1f;
  font-weight: bold;
}

/* line 150, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.required {
  font-style: italic;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 155, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.textarea {
  font: 0.8rem Verdana, Arial, Helvetica, sans-serif;
  color: #666666;
  width: 250px;
  height: 200px;
  background: url("/ct/channel/img/bg_form_field_shadow_tall.gif") repeat scroll 0 0 transparent;
}

/* line 162, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

/* line 167, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
fieldset div {
  margin-bottom: 15px;
}

/* line 171, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
fieldset h2 {
  font-weight: bold;
  color: #e85305;
  margin: 7px 0;
  font-size: 20.8px;
  font-size: 1.3rem;
}

/* line 179, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
fieldset label {
  width: 150px;
  font-weight: bold;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 188, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.inline div {
  float: left;
  clear: left;
  width: 100%;
  padding-bottom: 15px;
}

/* line 195, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.inline label {
  display: inline;
  float: left;
  margin-right: 40px;
}

/* line 201, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
input.text, #recaptcha_response_field {
  height: 20px;
  width: 250px;
  color: #666666;
  background: url("/ct/channel/img/bg_input.gif") repeat-x;
  border: none;
}

/* line 208, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
#recaptcha_image {
  border: 1px solid #ccc;
}

/* line 211, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
#captchaButtons a {
  text-decoration: underline;
}

/* line 214, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
#captcha {
  font-size: 15.2px;
  font-size: 0.95rem;
}

/* line 217, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.footer-print {
  margin-top: 20px;
  font-size: 11.2px;
  font-size: 0.7rem;
}

/* line 222, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.footer-print p {
  text-align: right;
}

@media print {
  /* line 227, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
  .printerversionad {
    display: none;
    visibility: hidden;
  }
}

/* line 232, Z:/home-ct/channels/ct/channel/css/sass/base/_utilities.scss */
.external-url {
  background: #ebeded;
  vertical-align: top;
  float: none;
  padding: 20px 10px;
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.body-readermode {
  padding-top: 42px;
}

/* line 4, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode {
  /*width:940px;
	margin:0 auto;*/
}

/* line 7, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .l-outer {
  background: transparent;
  width: 100%;
  clear: both;
}

/* line 11, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .l-outer .l-content {
  width: auto;
}

/* line 15, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .ad-readermode {
  background: url(/ct/channel/img/bg_shadow.gif) 0 -40px repeat-x;
  padding-top: 6px;
}

/* line 19, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .l-page {
  background: transparent;
  margin: 0 auto !important;
}

/* line 23, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .section-bordered-both {
  width: 700px;
  margin: 0 auto 20px;
}

/* line 27, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .content-full {
  margin-bottom: 3px;
}

/* line 30, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .ad-top {
  margin: 8px 10px 9px 0;
}

/* line 33, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .gray-bar {
  background: url("/ct/channel/img/bg_shadow.gif") repeat-x scroll 0 -37px transparent;
  height: 105px;
  padding: 12px 0 0;
  width: 100%;
  margin: 0;
}

/* line 39, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .gray-bar img {
  text-align: center;
}

/* line 43, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .readermode-content {
  width: auto;
  margin: 0;
}

/* line 47, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .l-footer {
  padding-bottom: 25px;
}

/* line 50, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode #globalNav, .readermode .l-header,
.readermode .l-rightnav, .readermode .userInfo {
  display: none;
}

/* line 54, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode #body {
  width: 700px;
  margin: 0 auto;
}

/* line 57, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode #body p {
  padding-right: 0;
}

/* line 60, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode #body .u-cf {
  margin-left: -24px;
}

/* line 64, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .section-articleInfo {
  width: 700px;
  margin: 0 auto 50px;
  clear: both;
}

/* line 69, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .section-top-article {
  display: none;
}

/* line 72, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .section-top-article-reader {
  display: block;
}

/* line 75, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .articleImg {
  margin-left: 0;
  margin-bottom: 0;
  width: 100%;
  text-align: center;
  overflow: inherit;
}

/* line 81, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .articleImg .caption {
  text-align: left;
  padding-bottom: 20px;
}

/* line 85, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .articleImg .image-credit {
  text-align: left;
}

/* line 89, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .seprator {
  display: inline;
}

/* line 92, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .nav-footer {
  display: inline;
  padding-bottom: 25px;
}

/* line 98, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.with-image .flag-news {
  background-position: 0 -432px;
  height: 72px;
  border-left: 10px solid #fff;
  border-bottom: 10px solid #fff;
  float: right;
  padding-left: 63px;
}

/* line 106, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.with-image .flag-views {
  background-position: 0 -360px;
  height: 72px;
  border-left: 10px solid #fff;
  border-bottom: 10px solid #fff;
  float: right;
  padding-left: 63px;
}

/* line 114, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.with-image .flag-reviews {
  background-position: 0 -504px;
  height: 72px;
  border-left: 10px solid #fff;
  border-bottom: 10px solid #fff;
  float: right;
  padding-left: 63px;
}

/* line 122, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.with-image .featured_slug {
  right: 0;
  top: -20px !important;
  left: auto;
  padding: 0;
  line-height: 1;
}

/* line 130, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.spacer-inner-top-40 {
  padding-top: 40px;
}

/* line 134, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.wrap-readermode .l-header {
  background: url(/ct/channel/img/bg_shadow.gif) repeat-x;
  height: 150px;
}

/* line 138, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.wrap-readermode .l-outer {
  background: transparent;
  width: auto;
}

/* line 142, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.wrap-readermode .ad-top {
  margin-top: 14px;
  width: 100%;
  text-align: center;
  float: none;
}

/* line 149, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.fix-header {
  width: 100%;
  background: #fff;
  padding: 8px 0 5px;
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
}

/* line 158, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.fix-header .articleHead-top {
  position: relative;
}

/* line 161, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.fix-header .nav-dropdown {
  border-top: 20px solid #fff;
  top: 28px;
}

/* line 166, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.title-head {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  font-size: 13.6px;
  font-size: 0.85rem;
}

/* line 171, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.header-rightlinks {
  border-left: 1px solid #cfcfcf;
}

/* line 173, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.header-rightlinks li {
  border-right: 1px solid #cfcfcf;
  display: inline-block;
  vertical-align: top;
  height: 25px;
  font-size: 8.8px;
  font-size: 0.55rem;
}

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

/* line 187, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.header-rightlinks li a:hover {
  background-color: #ededed;
}

/* line 191, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.header-rightlinks li img {
  vertical-align: middle;
}

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

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

/* line 205, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.header-rightlinks .share span {
  border: 1px solid #d8d8d8;
  background: #fff;
  padding: 0 2px 2px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-left: 4px;
  min-width: 10px;
}

/* line 215, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.header-rightlinks .share:hover {
  text-decoration: none;
}

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

/* line 225, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.search-box {
  position: relative;
}

/* line 228, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.search-box label {
  width: 80px;
  text-transform: uppercase;
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 235, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.search-box .custom-formElements {
  width: 450px;
  height: 21px;
}

/* line 241, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.wrap-readermode .search-box .custom-formElements {
  height: 27px;
  *height: 21px;
}

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

/* line 256, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.progress-bar {
  background: #cfcfcf;
  height: 2px;
  width: 500px;
  margin-top: 3px;
  display: block;
  position: absolute;
}

/* line 265, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.articleHead-top {
  width: 500px;
  margin-left: 15px;
  display: inline-block;
  vertical-align: top;
}

/* line 272, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.fix-header ul.nav-main {
  left: 0;
  position: relative;
  bottom: 0;
  float: left;
}

/* line 278, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.fix-header .nav-main > .nav_item:first-child {
  background: #fff url(/ct/channel/img/icon_explore_grey.png) no-repeat 9px 6px;
  border: 1px solid #cfcfcf;
  padding: 0px 13px 2px 28px;
  margin-right: 8px;
}

/* line 284, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.fix-header .nav-main > .nav_item:first-child:hover {
  background-color: #eaeae9;
  border: 1px solid #cfcfcf;
}

/* line 289, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.fix-header .nav-main_link {
  color: #000;
}

/* line 292, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.fix-header .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 302, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.fix-header .header-content {
  height: auto;
}

/* line 306, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode-withoutimage {
  width: 700px;
}

/* line 309, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode-content {
  width: 700px;
  margin: 0 auto;
}

/* line 313, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.section-fixed-header {
  position: fixed;
  top: 40px;
  border-top: 1px solid #dedede;
  padding: 18px 0 8px;
  display: none;
  width: 100%;
  height: 40px;
  z-index: 10;
  background: #fff;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 326, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
  .section-fixed-header {
    top: 40px;
  }
  /* line 330, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
  ::i-block-chrome, .section-fixed-header {
    top: 41px;
  }
}

/* line 335, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.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 339, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.shadow-box {
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.06);
}

/* line 344, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .ad-top iframe {
  width: 728px;
  height: 90px;
  margin: 0 auto;
}

/* line 349, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .centered-content {
  width: 940px;
}

/* line 352, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .fullwidthimage {
  width: 940px;
  margin: 0 auto 20px;
}

/* line 355, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .fullwidthimage .flag-sponsored {
  margin-top: 8px;
}

/* line 358, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .fullwidthimage .header-content {
  margin-bottom: 35px;
}

/* line 362, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .centered-content_inner {
  margin: 0 auto;
  width: 700px;
}

/* line 366, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .partialwidthimage {
  width: 620px;
  margin: 0 auto;
  position: relative;
  left: -30px;
}

/* line 371, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .partialwidthimage .header-content {
  padding-bottom: 5px;
}

/* line 374, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .partialwidthimage img {
  margin: 10px 0;
}

/* line 377, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .partialwidthimage .featured_slug {
  margin-left: 0;
}

/* line 380, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .partialwidthimage .blockContent {
  margin: 0;
}

/* line 384, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
.readermode .section-moreFrom-Issue {
  width: 100%;
}

/* line 389, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
#js-getReaderMode .readermodeAd {
  height: 90px;
}

/* line 393, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
#js-getReaderMode .partialwidthimage img {
  margin: 10px 0 14px;
}

/* line 397, Z:/home-ct/channels/ct/channel/css/sass/base/_readermode.scss */
#js-getReaderMode .flag-sponsored_image {
  vertical-align: middle;
}

/** Typographical styles **/
/* line 2, 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 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: 40px;
  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: 28px;
  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: 20.8px;
  font-size: 1.3rem;
}

/* line 23, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.title-4_normal {
  font-weight: 400;
  font-size: 17.6px;
  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: 16.8px;
  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.3;
  font-size: 14.4px;
  font-size: 0.9rem;
}

/* line 37, 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: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* line 44, 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: 12px;
  font-size: 0.75rem;
}

/* line 50, 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: 12px;
  font-size: 0.75rem;
  text-decoration: none;
}

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

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

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

/* line 70, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.more {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 16.8px;
  font-size: 1.05rem;
}

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

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

/* line 87, 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: 35.2px;
  font-size: 2.2rem;
}

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

/* line 97, 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 100, 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: 5px;
  text-transform: uppercase !important;
}

/* line 108, 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 114, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.nav-topics .nav-topics_list a {
  color: #d51b1e;
  padding-bottom: 3px;
}

/* line 117, 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 123, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.nav-topics .nav-topics_list .active {
  color: #000 !important;
}

/* line 125, 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 128, 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 133, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.nav-topics .nav-topics_list .color-red {
  color: #d51b1e;
}

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

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

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

/* line 151, 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 159, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.btn-espanol {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  font-size: 17.6px;
  font-size: 1.1rem;
  display: inline-block;
  border-bottom: 4px solid #f8e405;
  text-transform: uppercase;
}

/* line 166, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.btn-espanol a {
  color: #000;
}

/* line 168, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.btn-espanol a:hover {
  text-decoration: none !important;
}

/* line 172, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_typography.scss */
.btn-espanol:hover {
  text-decoration: none !important;
  border-bottom: 4px solid #000;
}

/* line 177, 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: 12px;
  font-size: 0.75rem;
}

/** Header Styles **/
/* line 3, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.bg-black {
  background-color: #000;
}

/* line 5, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.bg-black .u-cf {
  clear: both;
}

/* line 9, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.bg-black li.js-subscribe a {
  color: #d51b1e;
}

/* line 11, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.bg-black li.js-subscribe a:hover {
  color: #000;
}

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

/* line 20, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.bg-white {
  background: #fff !important;
}

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

/* line 29, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.ad-top {
  width: 100%;
}

/* line 32, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-menu {
  -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);
  height: 152px;
  position: relative;
}

/* line 39, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-menu .l-two {
  width: 140px;
}

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

/* line 47, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-menu .red-color,
.header-menu .color-red {
  color: #d51b1e !important;
}

/* line 51, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-menu .gray-color {
  color: #ebeded;
}

/* line 54, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-menu .follow-us {
  border-top: 1px solid #e3e6e6;
  padding-top: 11px;
  margin-top: 6px;
  width: 100%;
}

/* line 60, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-menu .bg-teal {
  background: #ebeded;
  padding: 10px 6px 15px 10px;
  overflow: hidden;
}

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

/* line 69, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.align-center {
  text-align: center;
}

/* line 72, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-logo {
  padding: 10px 0;
}

/* line 75, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.user-info {
  display: inline;
  position: absolute;
  right: 2px;
  top: 0;
  text-transform: uppercase;
}

/* line 81, 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: 19.2px;
  font-size: 1.2rem;
}

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

/* line 94, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.user-info:hover .dropdown-alternate {
  display: block;
}

/* line 98, 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: 22px;
  list-style: none;
  right: 0;
  display: none;
}

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

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

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

/* line 122, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.dropdown-alternate li:hover {
  background: #ebeded;
  color: #000;
}

/* line 127, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.dropdown-alternate li a {
  color: #000;
  line-height: 1.3;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 13.6px;
  font-size: 0.85rem;
  display: block;
}

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

/* line 141, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.dropdown-alternate .innerMenu {
  right: 70px;
}

/* line 145, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.alternate-dropdown li a:hover {
  text-decoration: none;
}

/* line 148, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.dropdown-alternate_icon {
  vertical-align: middle;
  padding-left: 5px;
}

/* line 152, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.l-pager {
  margin: 0px auto;
  width: 940px;
}

/* line 156, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
ul.nav-bar {
  list-style-type: none;
  display: inline-block;
}

/* line 159, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
ul.nav-bar li {
  margin: 10px 32px 12px;
  display: inline-block;
  text-transform: uppercase;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-size: 13.6px;
  font-size: 0.85rem;
}

/* line 165, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
ul.nav-bar li a {
  text-decoration: none;
}

/* line 167, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
ul.nav-bar li a:hover {
  text-decoration: none;
}

/* line 173, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
ul.nav-bar li a.color-red:hover {
  color: #000 !important;
  text-decoration: none;
}

/* line 180, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
ul.nav-bar li.nav-bar_list {
  margin: 0px;
}

/* line 182, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
ul.nav-bar li.nav-bar_list a.nav-bar_link {
  padding: 10px 32px 12px !important;
  margin: 0px;
}

/* line 185, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
ul.nav-bar li.nav-bar_list a.nav-bar_link:hover {
  color: #d51b1e;
}

/* line 192, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
ul.nav-bar li.js-subscribe a.nav-bar_link:hover {
  color: #000;
}

/* line 198, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
form.box_for_search {
  display: inline-block;
  margin-left: 35px;
  position: relative;
  bottom: 2px;
}

/* line 204, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
form.box_for_search input.search-component {
  width: 0;
  height: 27px;
  padding: 0;
}

/* line 210, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
form.box_for_search input.submit {
  vertical-align: middle;
  margin-right: 5px;
  margin-top: 3px;
}

/* line 221, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
form.box_for_search input {
  background: #ebeded;
  border: none;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 12.8px;
  font-size: 0.8rem;
  color: #999;
  vertical-align: text-top;
}

/* line 230, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.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: 2;
  -webkit-box-shadow: 0px 2px 3px 1px #eee;
  -moz-box-shadow: 0px 2px 3px 1px #eee;
  box-shadow: 0px 2px 3px 1px #eee;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 12.8px;
  font-size: 0.8rem;
  margin-top: 10px;
}

/* line 245, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .section {
  width: none;
}

/* line 248, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .inner-content {
  margin: 0 auto;
  width: 940px !important;
  position: relative;
}

/* line 253, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .u-cf {
  clear: both;
}

/* line 256, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown ul li,
.nav-dropdown ul li a {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 12.8px;
  font-size: 0.8rem;
  text-transform: none;
  margin-bottom: 9px !important;
}

/* line 266, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnav-item_lg ul.content-inside .nav-item_sm a:hover {
  text-decoration: underline;
}

/* line 272, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown ul li.uppercase a,
.nav-dropdown ul li.red-color {
  text-transform: uppercase;
}

/* line 277, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .bg-teal {
  background-color: #ebeded;
}

/* line 283, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnavSection-lg_left .short-desc .spacer-top-3 a.red-color {
  border-bottom: 1px solid #f4c6c7;
}

/* line 289, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnavSection-lg_left .short-desc .text-sm span a.red-color {
  border-bottom: 1px solid #f4c6c7;
}

/* line 296, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnav-top {
  padding: 8px 2px;
  color: #fff;
  text-align: left;
}

/* line 302, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnav-top ul.nav li a {
  font-weight: 400;
  text-transform: none;
  color: #fff;
}

/* line 309, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnav-top li {
  display: inline-block;
  padding: 0 16px;
  width: auto;
  font-weight: 600;
  margin: 0;
}

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

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

/* line 322, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnav-top .first-item {
  border: 0;
  padding-left: 0;
}

/* line 328, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown ul {
  background: none repeat scroll 0 0 transparent;
  border: 0 none;
  height: auto;
  position: static;
  min-height: auto;
  width: auto;
}

/* line 336, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown ul li {
  text-align: left;
  margin: 5px 0px;
  width: 100%;
  position: static;
  border-bottom: 0;
}

/* line 343, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown ul li a.nav_link {
  margin: 0px !important;
  padding: 0;
  text-decoration: none;
}

/* line 347, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown ul li a.nav_link:hover {
  background: transparent;
  text-decoration: underline;
}

/* line 353, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown ul li a.display-block {
  display: inline-block;
}

/* line 357, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown ul li a.first-item {
  padding-top: .35em;
  padding-bottom: .3em;
}

/* line 362, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown ul li .nav-section-help {
  border: 0;
  width: 130px;
}

/* line 370, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown ul li .second-level ul li {
  width: 100%;
}

/* line 377, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .nav_link {
  color: #000;
  display: inline-block;
  padding: .45em .5em .45em 1.5em;
}

/* line 382, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .nav_link:hover {
  background: #eaeae9;
}

/* line 386, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .nav_link:hover.iconMore {
  background: #eaeae9 url(/ct/channel/img/arrow_red.gif) no-repeat 14em center;
}

/* line 391, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnav-item li {
  width: 240px;
  vertical-align: top;
  line-height: 1;
}

/* line 396, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnav-item li.nav-item_sm {
  width: 100%;
}

/* line 399, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnav-item .subnav-item_lg {
  width: 270px;
  margin-right: 45px;
}

/* line 403, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnav-item .blog-nav {
  padding-left: 20px;
  border-left: 1px solid #000;
}

/* line 410, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown ul.content-inside .subnav-item li {
  width: 105px !important;
}

/* line 415, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .iconMore {
  background-position: 14em center;
}

/* line 419, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnav-item li.nav-item_sm {
  width: 115% !important;
}

/* line 421, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnav-item li.nav-item_sm a.red-color:hover {
  text-decoration: underline;
}

/* line 426, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnavSection-lg_left {
  text-align: left;
  text-transform: capitalize;
}

/* line 429, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnavSection-lg_left .themeCollection-sm {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
}

/* line 433, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnavSection-lg_left .content-inside .deck, .nav-dropdown .subnavSection-lg_left .content-inside .short-desc {
  text-transform: capitalize;
  font-size: 0.8rem;
  text-align: left;
}

/* line 440, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnavSection-lg_right {
  text-align: left;
  text-transform: capitalize;
}

/* line 444, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnavSection-lg_right .themeCollection-sm {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
}

/* line 447, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnavSection-lg_right .content-inside {
  text-align: left;
}

/* line 449, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnavSection-lg_right .content-inside .short-desc {
  text-transform: none;
  text-align: left;
}

/* line 455, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .heading-xs,
.nav-dropdown .heading-xs a {
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.75rem;
  color: #999;
}

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

/* line 466, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .no-border {
  border: 0;
}

/* line 469, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .no-border a {
  padding-left: 40px;
}

/* line 472, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .no-border .nav-head {
  padding-left: 20px;
  display: block;
}

/* line 476, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .no-border ul a {
  padding-left: 20px;
}

/* line 481, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnavSection-lg_right .short-desc {
  clear: right;
}

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

/* line 489, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .highlighted {
  left: 0;
  top: -1px;
  position: absolute;
}

/* line 494, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .highlighted {
  left: 198px;
}

/* line 497, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .highlight-item {
  left: 515px;
}

/* line 500, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .menu-inner {
  margin-top: 5px;
}

/* line 503, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .nav-item {
  display: inline-block;
}

/* line 506, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .logo-small {
  margin-right: 15px;
}

/* line 509, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .nav-section-help {
  width: 142px !important;
}

/* line 512, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .vault-component {
  margin-bottom: 31px;
}

/* line 515, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnavSection-lg_left {
  width: 58%;
  padding-right: 30px;
  padding-top: 15px;
}

/* line 520, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .border-right-black {
  border-right: 1px solid #000;
  padding-top: 15px;
}

/* line 524, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .subnavSection-lg_right {
  width: 37%;
  padding-top: 15px;
}

/* line 528, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown .buttons_link {
  width: 137px !important;
}

/*vertical header style*/
/* line 534, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-section {
  background: #d51b1e;
  width: 100%;
  padding: 3px 0px 5px;
  height: 60px;
  clear: both;
  min-width: 1000px;
  overflow: hidden;
}

/* line 543, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-search {
  border-bottom: 1px solid #000;
  position: relative;
  top: 5px;
}

/* line 547, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-search .header-search_input {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: none;
  text-align: right;
  width: 133px;
  padding-left: 5px;
  font-size: 20.8px;
  font-size: 1.3rem;
}

/* line 556, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-search .header-search_input:focus {
  text-align: left;
}

/* line 561, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.global-header, .js-footer {
  min-width: 1000px;
  overflow: hidden;
}

/* line 566, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-links li, .header-links li.js-menuTrigger {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  display: inline-block;
  padding: 14px 0;
  color: fff;
}

/* line 572, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-links li:first-child, .header-links li.js-menuTrigger:first-child {
  background: none;
}

/* line 575, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-links li .spacer-inner, .header-links li.js-menuTrigger .spacer-inner {
  padding: 25px 14px 26px;
}

/* line 578, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-links li a, .header-links li.js-menuTrigger a {
  color: #fff;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 584, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.header-links li.lastitem a.spacer-inner {
  padding-right: 0;
}

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

/* line 595, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.textual-logo:hover {
  text-decoration: none;
}

/* line 598, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.textual-logo .textual-logo_item {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 100;
  padding: 0 4px;
  font-size: 43.2px;
  font-size: 2.7rem;
}

/* line 605, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.spacer-top-5 {
  margin-top: 5px;
}

/* line 608, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.buttons_link {
  background-color: #d51b1e;
  color: #fff !important;
  padding: 7px 33.5px;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  font-size: 20.32px;
  font-size: 1.27rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: block;
  cursor: pointer;
  text-align: center;
}

/* line 620, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.buttons_link a {
  color: #fff !important;
}

/* line 623, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.buttons_link:hover {
  background-color: #ed1317;
  text-decoration: none;
}

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

/** 
	Add `$add-vertical-styles: true;` to your vertical's variables.scss
**/
/* line 651, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
#fix-header .nav-main_link {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-size: 13.6px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

/* line 656, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
#fix-header .header-content {
  padding: 0px !important;
}

/* line 659, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
#fix-header .nav-dropdown {
  position: fixed;
  border-top: 20px solid #fff;
  margin-top: 6px;
}

/* line 663, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
#fix-header .nav-dropdown .bg-teal {
  padding: 10px 6px 15px 10px;
  overflow: hidden;
}

/* line 668, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
#fix-header .follow-us {
  border-top: 1px solid #e3e6e6;
  padding-top: 11px;
  width: 100%;
  margin-top: 6px;
}

/* line 674, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
#fix-header .nav-dropdown .subnav-item li {
  line-height: normal !important;
}

/* line 677, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
#fix-header .shadow-box {
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.06);
}

/* line 684, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.article-section .nav-dropdown .highlighted {
  left: 35px;
}

/* line 689, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav {
  list-style: none;
}

/* line 692, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.content-inside {
  overflow: hidden;
}

/* line 696, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.section .section-button-links {
  margin: 0px;
  clear: both;
  width: 137px;
}

/* line 702, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.spacer-top-15 {
  margin-top: 15px;
}

/* line 705, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.spacer-bottom-50 {
  margin-bottom: 50px;
}

/* line 708, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.spacer-inner-top-5 {
  padding-top: 5px;
}

/* line 711, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.spacer-right-10 {
  margin-right: 10px;
}

/* line 714, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.spacer-top-3 {
  margin-top: 3px;
}

/* line 717, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.spacer-top-50 {
  margin-top: 50px;
}

/* line 720, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.spacer-right-15 {
  margin-right: 15px;
}

/* line 724, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.explore-nav .highlighted {
  left: 272px !important;
}

/* line 727, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.explore-nav .highlight-item {
  left: 588px !important;
}

/* line 731, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.position-relative {
  position: relative;
}

/* line 738, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.nav-dropdown_top ul.subnav-item_eras li.l-three ul.subnav-list li, .nav-dropdown_top ul.subnav-item_holidays li.l-three ul.subnav-list li, .nav-dropdown_top ul.subnav-item_people li.l-three ul.subnav-list li {
  padding: 0px;
}

/* line 745, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.highlight {
  background: #f8e405 !important;
  color: #000 !important;
}

/* line 749, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.spacer-top-8 {
  margin-top: 8px;
}

/* line 752, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_header.scss */
.spacer-right-5 {
  margin-right: 5px;
}

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

/*Fixed Header CSS*/
/* line 3, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.header-content {
  height: 100%;
  margin: 0 auto;
  position: relative;
  width: 970px;
}

/* line 9, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-main .nav-main_link {
  font-size: 1.3em;
}

/* line 13, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header {
  width: 100%;
  background: #fff;
  padding: 8px 0 5px;
  display: none;
  position: fixed;
  z-index: 5;
  top: 0;
  font-family: "Gotham A", "Gotham B", sans-serif;
}

/* line 22, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .header-content {
  height: auto;
  line-height: 1.3;
}

/* line 26, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .nav_item, .fix-header .nav_label {
  display: inline-block;
}

/* line 29, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header ul.nav-main {
  left: 0;
  position: relative;
  bottom: 0;
  float: left;
  top: 0;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 37, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
  .fix-header ul.nav-main {
    top: 2px;
  }
  /* line 39, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
  .fix-header ul.nav-main li.explore {
    padding: 1.3px 13px 0.5px 28px !important;
  }
}

/* line 44, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .nav-main_link {
  color: #000000;
}

/* line 47, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .nav-main > .nav_item:first-child {
  border: 1px solid #cfcfcf;
}

/* line 49, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .nav-main > .nav_item:first-child:hover {
  background-color: #eaeae9;
  border-bottom: 1px solid #cfcfcf;
}

/* line 54, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .nav-main li.explore {
  background: #fff url(/ct/channel/img/icon_explore_grey.png) no-repeat 9px 8px;
  padding: 2px 13px 2px 28px !important;
  margin-right: 8px;
}

/* line 59, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .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 69, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .articleHead-top {
  position: relative;
}

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

/* line 78, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.header-rightlinks {
  border-left: 1px solid #cfcfcf;
}

/* line 80, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.header-rightlinks li {
  border-right: 1px solid #cfcfcf;
  display: inline-block;
  vertical-align: top;
  height: 25px;
  font-size: 0.55rem;
}

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

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

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

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

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

/* line 108, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.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 119, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.header-rightlinks .btn-close {
  background: url(/ct/channel/img/btn_close.gif) no-repeat 10px center;
  padding-left: 30px;
  height: 14px;
}

/* line 125, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.search-box {
  top: 5px;
  top: 8px\9\0;
  position: relative;
}

/* line 129, 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 137, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.search-box .custom-formElements {
  width: 450px;
  height: 21px;
}

/* line 144, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.wrap-readermode .search-box .custom-formElements {
  height: 27px;
  height: 21px;
}

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

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

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

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 179, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
  .section-fixed-header {
    top: 42px;
  }
}

/* line 183, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.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 187, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.shadow-box {
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.06);
}

/* line 191, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.articleHead-top {
  display: inline-block;
  margin-left: 15px;
  vertical-align: top;
  width: 500px;
}

/* line 197, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.custom-formElements, input#newsletterEmailInput {
  border: 1px solid #000000;
  color: #000000;
  font-family: verdana,arial,sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0;
  padding: 2px;
}

/* line 205, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
input, select {
  vertical-align: middle;
}

/* line 209, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.section-fixed-header .ctSocialShare_horizontal {
  margin-top: 0;
}

/* line 212, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.l-two {
  width: 140px;
}

/* line 216, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.section-currentissue .more {
  padding-right: 10px;
}

/* line 219, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.section-currentissue .move-right-100 {
  right: 100px;
}

/* line 223, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.spacer-left-45 {
  margin-left: 45px;
}

/*style for Explore Menu*/
/* line 228, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-dropdown .nav_link:hover {
  background: transparent;
}

/* line 231, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-dropdown a.red-color {
  color: #d51b1e;
}

/* line 233, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-dropdown a.red-color:hover {
  color: #d51b1e;
}

/* line 238, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-dropdown .subnav-top a.red-color {
  color: #d51b1e;
}

/* line 240, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-dropdown .subnav-top a.red-color :hover {
  color: #000;
}

/* line 245, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-dropdown .nav-section-help {
  border: 0;
}

/* line 248, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-dropdown a {
  color: #000;
}

/* line 251, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-dropdown a.color-red {
  color: #d51b1e;
}

/* line 253, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-dropdown a.color-red:hover {
  color: #000;
}

/* line 257, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-dropdown ul {
  background: none repeat scroll 0 0 transparent;
  border: 0 none;
  height: auto;
  position: static;
  min-height: auto;
  width: auto;
}

/* line 264, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-dropdown ul li {
  border-bottom: 0;
}

/* line 266, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-dropdown ul li a.nav_link {
  padding: 0;
  display: inline-block;
}

/* line 271, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-dropdown ul li.second-level ul li {
  width: 100%;
}

/* line 276, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.inner-content {
  margin: 0 auto;
  width: 940px;
}

/* line 280, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.highlighted {
  position: absolute;
  left: 0;
  top: -30px;
}

/* line 285, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.highlight-item {
  left: 375px;
}

/* line 288, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.subnav-top {
  padding: 8px 2px;
  font-size: .75rem;
  color: #d51b1e;
}

/* line 293, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.logo-small {
  top: 0;
}

/* line 297, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.subnav-item li {
  width: 230px;
  vertical-align: top;
}

/* line 302, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.dd-menu ul {
  display: block;
}

/* line 305, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.uppercase {
  text-transform: uppercase;
}

/* line 308, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.spacer-top-5 {
  margin-top: 5px;
}

/* line 311, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.heading-xs {
  font-size: .7rem;
  color: #878787;
  display: block;
}

/* line 315, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.heading-xs a {
  color: #878787;
  text-decoration: none !important;
}

/* line 321, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.subnav-item li.subnav-item_lg {
  width: 270px;
  margin-right: 45px;
}

/* line 326, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav_item ul ul {
  display: block;
  margin: 0;
}

/* line 330, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.bg-teal {
  background: #f1f1e3;
  padding: 10px 6px 15px 10px;
  overflow: hidden;
}

/* line 335, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.content-inside {
  overflow: hidden;
}

/* line 340, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.explore .subnav-item li.nav-item_sm a {
  font-size: .7rem;
  font-weight: 400;
  font-family: "Gotham A", "Gotham B", sans-serif;
}

/* line 348, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-section-help {
  border: 0;
  width: 130px;
}

/* line 352, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.explore {
  cursor: default;
}

/* line 355, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.blog-nav {
  padding-left: 20px;
  border-left: 1px solid #000;
}

/* line 360, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav_item ul.spacer-top-10 {
  margin-top: 10px;
}

/* line 364, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.spacer-bottom-7 {
  margin-bottom: 7px;
}

/* line 367, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-byline {
  padding-left: 15px;
  display: block;
  margin-top: 2px;
}

/* line 373, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-dropdown .nav_link.display-block {
  display: inline-block;
}

/* line 377, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.follow-us {
  border-top: 1px solid #e3e6e6;
  padding-top: 11px;
  margin-top: 6px;
  width: 100%;
}

/* line 384, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav_item .expandWidth {
  width: auto;
}

/* line 388, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.subnav .subnav-top li {
  display: inline-block;
  padding: 0 16px;
  width: auto;
}

/* line 393, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.subnav .subnav-top li:first-child {
  border-left: none;
  padding: 0 16px 0 0;
}

/* line 397, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.subnav-top li {
  border-left: 3px solid #e3e3d5;
  font-size: .85rem;
  font-weight: 600;
}

/* line 402, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.subnav-top li.first-item {
  border: 0;
}

/* line 405, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.subnav-top li.spacer-left-0 {
  padding-left: 0;
}

/* line 408, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.subnavSection-lg {
  width: 100%;
}

/* line 411, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.subnavSection-lg_left {
  width: 58%;
  padding-right: 30px;
  padding-top: 15px;
}

/* line 416, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.border-right-black {
  border-right: 1px solid #000;
  padding-top: 15px;
  padding-bottom: 15px;
}

/* line 421, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.subnavSection-lg_right {
  width: 37%;
  padding-top: 15px;
}

/* line 425, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.themeCollection-sm {
  font-size: 1.85rem;
  line-height: 1;
}

/* line 429, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.short-desc {
  font-size: .85rem;
}

/* line 432, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.spacer-top-3 {
  margin-top: 3px;
}

/* line 435, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.spacer-top-10 {
  margin-top: 10px;
}

/* line 438, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.seprator {
  color: #999;
  padding: 0 2px;
}

/* line 442, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.text-sm {
  font-size: .7rem;
}

/* line 445, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.spacer-right-30 {
  margin-right: 30px;
}

/* line 448, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.section-button-links.spacer-outer-left-0 {
  margin-left: 0;
}

/* line 451, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.spacer-bottom-35 {
  margin-bottom: 35px;
}

/* line 454, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.display-none {
  display: none;
}

/* line 457, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.spacer-top-20 {
  margin-top: 20px;
}

/* line 460, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.spacer-bottom-3 {
  margin-bottom: 3px;
}

/* line 463, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.spacer-top-15 {
  margin-top: 15px;
}

/* line 466, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.spacer-right-15 {
  margin-right: 15px;
}

/* line 469, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.spacer-right-10 {
  margin-right: 10px;
}

/* line 472, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.spacer-right-20 {
  margin-right: 20px;
}

/* line 475, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.spacer-bottom-50 {
  margin-bottom: 50px;
}

/* line 478, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.color-white {
  color: #fff;
}

/* line 482, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.u-left {
  float: left;
}

/* line 485, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.section .section-button-links {
  width: 210px;
}

/* line 488, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.menu-inner {
  margin-top: 5px;
}

/* line 491, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.spacer-bottom-15 {
  margin-bottom: 15px;
}

/* line 494, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-dropdown ul.subnav-item li.nav_item {
  line-height: 1.25;
  list-style-type: none;
}

/* line 498, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-dropdown ul.subnav-item li.nav_item:first-child:hover {
  background: transparent;
  border: 0;
}

/* line 502, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.fix-header .nav-dropdown {
  top: 29px;
  border-top: 20px solid #fff;
}

/* line 506, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.nav-dropdown .subnav-item li.nav-item_sm {
  width: 100%;
}

/* line 509, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
.image .imageWrapper {
  width: 100% !important;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  /* line 513, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
  #fix-header .nav-dropdown {
    margin-top: 0px;
  }
  /* line 516, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_fixed_header.scss */
  .fix-header .nav-dropdown {
    top: 34px;
  }
}

/**
 * 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 5, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.ad-content {
  width: 100%;
  display: inline-block;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  padding: 15px 0 20px;
  margin-bottom: 20px;
}

/* line 12, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.ad-content .image-container {
  position: relative;
  height: 170px;
  width: 300px;
  overflow: hidden;
}

/* line 17, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.ad-content .image-container .image-container_item {
  position: absolute;
  height: auto;
  width: 100%;
}

/* line 24, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.ad-content .slug a {
  text-decoration: none !important;
}

/* line 26, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.ad-content .slug a:hover {
  text-decoration: underline;
}

/* line 31, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.ad-content .description {
  font-size: 14.4px;
  font-size: 0.9rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
}

/* line 37, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.ad-content .content-inside .title {
  color: #000 !important;
  text-decoration: none !important;
  line-height: 1;
}

/* line 43, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.ad-content a.custom-buttons {
  width: 160px;
  display: block;
  text-align: center;
  line-height: 1.3;
  padding: 4px 33.5px !important;
}

/* line 49, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.ad-content a.custom-buttons:hover {
  color: #fff !important;
}

/* line 54, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.custom-buttons, #body .custom-buttons {
  background-color: #d51b1e;
  color: #fff;
  padding: 7px 33.5px;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  font-size: 20.32px;
  font-size: 1.27rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}

/* line 63, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.custom-buttons:hover, #body .custom-buttons:hover {
  background-color: #ed1317;
  text-decoration: none !important;
}

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

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

/* line 77, 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 85, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.leftnav-list li a {
  line-height: 1.1;
}

/* line 88, 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 91, 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 96, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.leftnav-list li:first-child {
  border-top: none;
}

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

/* line 107, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.blockContent ul.section li div.slug {
  margin-top: 2px;
}

/* line 111, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.blockContent ul.section li:last-child {
  margin-right: 0px;
}

/* line 115, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.blockContent .bg-flag {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  background: black;
  color: #fff;
  padding: 2px 10px;
  margin-bottom: 1px;
}

/*Code moved from generic to make consistancy for Ct and verticals*/
/* line 126, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.section-waterfall-date {
  border-bottom: 2px solid #000;
}

/* line 129, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
.section-waterfall-date-item {
  position: relative;
  top: 6px;
  background: #fff;
  padding-right: 4px;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  font-size: 19.2px;
  font-size: 1.2rem;
}

/* line 140, 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 149, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles.scss */
#slideout #closeSlideout {
  position: absolute;
  top: -18px;
  right: -3px;
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.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 */
.section-bordered-both .section-reviews {
  font-family: "Gotham A", "Gotham B", sans-serif;
}

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

/* line 13, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.section-bordered-both .section .related-topics {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  overflow: hidden;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 17, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.section-bordered-both .section .related-topics .seperator, .section-bordered-both .section .related-topics .meta-divider {
  color: #999;
  margin: 0px 8px;
  position: relative;
}

/* line 21, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.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 30, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.section-bordered-both .section .related-topics a {
  color: #000;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1px;
  text-decoration: underline;
}

/* line 36, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.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 */
.section-bordered-both .section .related-topics .social-follow {
  padding-left: 10px;
  margin-left: 5px;
}

/* line 43, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.section-bordered-both .section .related-topics .social-follow .social-item {
  font-size: .7rem;
  margin-right: 10px;
  vertical-align: middle;
}

/* line 47, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.section-bordered-both .section .related-topics .social-follow .social-item a {
  color: #d51b1e;
  text-decoration: none;
}

/* line 50, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.section-bordered-both .section .related-topics .social-follow .social-item a:hover {
  text-decoration: underline;
}

/* line 54, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.section-bordered-both .section .related-topics .social-follow .social-item img {
  margin-right: 5px;
  position: relative;
  top: 0;
}

/* line 61, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.section-bordered-both .section .related-topics .item-date {
  margin-left: 8px;
}

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

/* line 65, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.section-bordered-both .section .related-topics .item-date span:before {
  width: 1px;
  height: 13px;
  content: '';
  position: absolute;
  top: 2px;
  background: #999;
}

/* line 76, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.section-bordered-both .section .headings-small {
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

/* line 82, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.section-bordered-both .related-topics_item {
  font-family: "Gotham A", "Gotham B", sans-serif !important;
  font-weight: 400;
  color: #999;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 87, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.section-bordered-both .related-topics_item cite {
  font-style: normal;
}

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

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

/* line 99, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.topics {
  width: 100px;
}

/* line 102, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_meta.scss */
.inline-block {
  display: inline-block;
}

/* line 105, 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: 11.2px;
  font-size: 0.7rem;
  color: #d51b1e;
  display: block;
  margin-bottom: 10px;
}

/* line 113, 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 117, 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;
}

/* line 6, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.l-rightnav .right-section-currentIssue {
  line-height: 1.3;
}

/* line 9, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.l-rightnav .right-section-currentIssue .heading-section .currentIssueDateSection {
  background-color: #ebeded;
  padding: 5px 8px;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* line 17, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.l-rightnav .right-section-currentIssue .heading-section .currentIssueDateSection span a {
  color: #000;
  float: left;
  text-transform: uppercase;
}

/* line 24, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.l-rightnav .right-section-currentIssue .heading-section .currentIssueDateSection .more-rightView a {
  color: #d51b1e !important;
  text-transform: uppercase;
  float: right;
}

/* line 32, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.l-rightnav .right-section-currentIssue .ctLatestCover {
  margin-right: 20px;
  line-height: 1.1;
}

/* line 36, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.l-rightnav .right-section-currentIssue .section-currentissue {
  color: #000000 !important;
  font-family: "Chronicle Display A", "Chronicle Display B", serif !important;
}

/* line 39, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.l-rightnav .right-section-currentIssue .section-currentissue .more {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #d51b1e;
  text-transform: uppercase;
}

/* line 48, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.l-rightnav .right-section-currentIssue .section-currentissue ul .firstlink {
  font-weight: 700 !important;
  font-size: 1.05rem !important;
}

/* line 51, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.l-rightnav .right-section-currentIssue .section-currentissue ul .firstlink a {
  font-size: 1.05rem !important;
}

/* line 55, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.l-rightnav .right-section-currentIssue .section-currentissue ul li {
  display: inline-block;
  vertical-align: top;
  line-height: 1.05;
  margin-bottom: 15px;
}

/* line 60, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.l-rightnav .right-section-currentIssue .section-currentissue ul li .spacer-left {
  margin-left: 8px;
}

/* line 63, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.l-rightnav .right-section-currentIssue .section-currentissue ul li a {
  color: #000000 !important;
  font-family: "Chronicle Display A", "Chronicle Display B", serif !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1;
}

/* line 73, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.l-rightnav .right-section-currentIssue .heading-section-lg {
  padding-bottom: 2px;
  font-size: 35.2px;
  font-size: 2.2rem;
}

/*Support our work*/
/* line 82, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.support-work .content-inside {
  overflow: hidden;
}

/* line 85, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.support-work .description {
  font-size: 12.8px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

/* line 91, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.support-work .description a.red-color {
  text-decoration: underline !important;
}

/* line 93, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.support-work .description a.red-color:hover {
  color: #000;
  text-decoration: none !important;
}

/* line 99, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.support-work .display-inline-block {
  display: inline-block;
}

/* line 102, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.support-work .spacer-bottom-20 {
  margin-bottom: 20px;
}

/* line 105, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.support-work .border-top-light-gray {
  border: 0;
}

/* line 108, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.support-work .w-700 {
  font-weight: 700;
}

/* line 111, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.support-work .color-red {
  color: #d51b1e !important;
}

/* line 114, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.support-work .red-color {
  color: #d51b1e;
}

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

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

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

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

/* line 136, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
#body div.section-newsletters .nlListIsEmpty {
  padding: 0 !important;
}

/* line 138, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
#body div.section-newsletters .nlListIsEmpty p {
  font-family: Verdana, Arial, sans-serif !important;
  font-size: 12.5px;
  font-size: .75rem;
  margin-bottom: 0;
}

/* line 151, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
#body .l-rightnav .right-section-currentIssue .section-currentissue ul .firstlink strong {
  font-family: "Chronicle Display A", "Chronicle Display B", serif !important;
  font-weight: 700 !important;
}

/* line 156, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
#body .l-rightnav .right-section-currentIssue .section-currentissue ul li {
  padding-bottom: 0 !important;
}

/* line 166, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
div.newsletters .section-heading,
#body .section-newsletters .section-heading {
  line-height: 1.15;
}

/* line 169, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
div.newsletters .description,
#body .section-newsletters .description {
  font-size: 12.5px;
  font-size: .75rem;
  font-family: verdana,sans-serif;
}

/* line 174, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
div.newsletters a.more, div.newsletters a.more-link,
#body .section-newsletters a.more,
#body .section-newsletters a.more-link {
  color: #d51b1e;
  font-size: 17px;
  font-size: 1.05rem !important;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  letter-spacing: .03em;
  font-weight: 500;
  text-decoration: none;
}

/* line 182, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
div.newsletters a.more:hover, div.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 188, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.l-rightnav .right-section-currentIssue .more,
#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.05rem !important;
}

/* line 199, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
div.newsletters a.section-heading_sm, .section-newsletters a.section-heading_sm {
  font-size: .9rem;
  font-family: "Gotham A","Gotham B", sans-serif;
  color: #000;
  text-decoration: none;
}

/* line 204, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
div.newsletters a.section-heading_sm:hover, .section-newsletters a.section-heading_sm:hover {
  text-decoration: underline;
}

/* line 212, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.l-rightnav li.spacer-inner-bottom-0, #body .l-rightnav li.spacer-inner-bottom-0 {
  padding-bottom: 0 !important;
}

/* line 215, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.l-rightnav .rightnav-item-link {
  color: #000000 !important;
  font-family: "Chronicle Display A", "Chronicle Display B", serif !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1;
}

/* line 222, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.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: 16px;
  font-size: 1rem;
}

/* line 235, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.job-board .job-board-logo {
  display: inline-block;
}

/* line 237, Z:/home-ct/channels/ct/channel/css/sass/base/_vertical_styles_currentissue.scss */
.job-board .job-board-logo img {
  vertical-align: top;
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#comments h3 {
  border-bottom: 9px solid #000000;
  letter-spacing: -0.03rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: inherit;
  font-size: 24px;
  font-size: 1.5rem;
}

/* line 8, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#commentListHead {
  float: right;
  margin-top: -32px;
}

/* line 13, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#commentListHead p, #commentListFoot p {
  float: left;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
}

/* line 20, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#commentListHead #allCommentsLink, #commentListFoot #allCommentsLink {
  border-left: 1px solid #000;
  padding-left: 10px;
  margin-left: 10px;
}

/* line 27, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#commentList {
  clear: both;
  width: 100%;
  float: left;
  padding: 10px 0 15px;
}

/* line 33, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#commentList .comment {
  padding: 10px 0 2px;
  font-family: arial,sans-serif;
  clear: both;
  line-height: 1.35;
  font-size: 11.2px;
  font-size: 0.7rem;
}

/* line 41, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#commentList .commentName {
  float: left;
  font-weight: 600;
}

/* line 45, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#commentList .commentTime {
  display: none;
}

/* line 48, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#commentList .commentDateTime, #commentList .commentTools {
  float: right;
}

/* line 51, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#commentList .commentBody {
  width: 100%;
  display: inline-block;
  margin: 10px 0;
}

/* line 58, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#allReviewsLists p.commentPaging {
  float: right;
  position: relative;
}

/* line 62, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#allReviewsLists p.commentPaging img {
  position: static;
}

/* line 65, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#allReviewsLists p.commentPaging a {
  color: #000;
  font-size: 16.8px;
  font-size: 1.05rem;
}

/* line 70, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#allReviewsLists p.commentPaging .nextLink, #allReviewsLists p.commentPaging .previousLink {
  background: #d51b1e;
}

/* line 73, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#allReviewsLists p.commentPaging .nextLink:hover, #allReviewsLists p.commentPaging .previousLink:hover {
  background: #d51b1e;
  line-height: inherit;
}

/* line 79, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#allReviewsLists p.commentPaging .previousLink {
  float: left;
}

/* line 83, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#allReviewsLists #commentListHead {
  clear: left;
  width: 100%;
  margin: 0;
}

/* line 89, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#body p a.more {
  color: #d51b1e;
  text-decoration: none;
}

/* line 93, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#body p a.more:hover {
  text-decoration: underline;
}

/* line 97, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
.series #commentListHead,
.hasPaging {
  background: #ebeded;
  height: 51px;
  overflow: hidden;
  width: 100%;
  clear: both;
}

/* line 104, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
.series #commentListHead p,
.hasPaging p {
  vertical-align: middle;
  font-size: 0;
}

/* line 108, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
.series #commentListHead .commentTotal,
.hasPaging .commentTotal {
  border-right: 3px solid #fff;
  padding: 15px 10px;
  float: left;
  color: #d51b1e;
  font-size: 16.8px;
  font-size: 1.05rem;
}

/* line 116, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
.series #commentListHead .commentPaging a, .series #commentListHead .commentPaging strong,
.hasPaging .commentPaging a,
.hasPaging .commentPaging strong {
  border-left: 3px solid #fff;
  padding: 15px 10px;
  display: inline-block;
  position: static;
  letter-spacing: .05em;
  vertical-align: top;
  font-size: 16.8px;
  font-size: 1.05rem;
}

/* line 126, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
.series #commentListHead .commentPaging a:hover, .series #commentListHead .commentPaging strong:hover,
.hasPaging .commentPaging a:hover,
.hasPaging .commentPaging strong:hover {
  background: #DEDECC;
  text-decoration: none;
}

/* line 132, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
.series #commentListHead p {
  float: right;
  font-size: 16.8px;
  font-size: 1.05rem;
  border-left: none !important;
  padding: 15px 10px 0 0;
}

/* line 138, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#allReviewsLists p a.showAllComments {
  background: #d51b1e;
  color: #fff;
  letter-spacing: .03em;
  line-height: 1;
  font-weight: 500;
  font-size: 20.8px;
  font-size: 1.3rem;
}

/* line 147, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#allReviewsLists p a.showAllComments:hover {
  letter-spacing: .03em;
}

/* line 151, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#commentsHead {
  padding: 15px 0;
}

/* line 154, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#commentFormHeader {
  clear: left;
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid #ccc;
  font-weight: 600;
  font-size: 11.2px;
  font-size: 0.7rem;
}

/* line 164, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#commentTextDiv textarea {
  clear: both;
  width: 614px;
  height: 100px;
}

/* line 169, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#commentTextDiv p#limitText {
  float: right;
}

/* line 173, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
form#commentForm div {
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 176, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
form#commentForm div label {
  font-weight: normal;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 182, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
#commentNameDiv {
  margin: 10px 0;
}

/* line 185, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
.section-comments-article {
  background: #d51b1e;
  padding: 8px 15px 8px 10px;
}

/* line 189, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
.section-comments-article .title-3 {
  color: #fff;
  font-size: 18.4px;
  font-size: 1.15rem;
}

/* line 194, Z:/home-ct/channels/ct/channel/css/sass/modules/_comments.scss */
.section-comments-article .deck {
  color: #fff;
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/modules/_media.scss */
.media_img {
  margin: 0 20px 20px 0;
  font-size: 0;
}

/* line 6, Z:/home-ct/channels/ct/channel/css/sass/modules/_media.scss */
.media_img-small {
  margin: 0 7px 10px 0;
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/modules/_footer.scss */
.l-footer {
  padding-bottom: 20px;
  text-align: center;
  margin-top: 25px;
  display: inline-block;
  width: 100%;
  position: relative;
}

/* line 10, Z:/home-ct/channels/ct/channel/css/sass/modules/_footer.scss */
.logo-footer {
  margin-bottom: 20px;
  padding: 20px 0;
  position: relative;
  text-align: center;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
}

/* line 19, Z:/home-ct/channels/ct/channel/css/sass/modules/_footer.scss */
.logo-footer > img {
  display: inline-block;
  vertical-align: middle;
}

/* line 23, Z:/home-ct/channels/ct/channel/css/sass/modules/_footer.scss */
.logo-footer > span {
  position: absolute;
  bottom: -0.6em;
  padding: 0 6px;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  font-style: italic;
  font-size: 13.6px;
  font-size: 0.85rem;
  background: #fff;
  margin-left: -49px;
  left: 50%;
}

/* line 37, Z:/home-ct/channels/ct/channel/css/sass/modules/_footer.scss */
.clearfix {
  clear: both;
}

/* 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 8, 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: 12px;
  font-size: 0.75rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

/* line 14, Z:/home-ct/channels/ct/channel/css/sass/modules/_search.scss */
.highlight {
  background-color: #f8e405;
  color: #000000;
  padding: 1px 3px;
}

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

/* line 2, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav {
  list-style: none;
}

/* line 5, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav .nav_link-first {
  margin-left: 0 !important;
}

/* line 9, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav_item,
.nav_label {
  display: inline-block;
}

/* line 13, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav_link {
  text-decoration: none;
}

/* line 16, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav_link:hover {
  text-decoration: none;
}

/* line 21, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav_item .expandWidth {
  width: 15em;
}

/*.nav-main {
		bottom: 30px;
		left: 183px;
		position: absolute;
		color: #fff;
	}*/
/* line 33, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-main > .nav_item {
  padding: 2px 13px 2px 8px;
}

/* line 36, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-main > .nav_item:first-child {
  padding-left: 28px;
  background: url(/ct/channel/img/icon_explore.png) 9px center no-repeat;
  background-color: rgba(255, 255, 255, 0.14);
  border: 1px solid #ce1a1e;
  margin-right: 4px;
}

/* line 44, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-main > .nav_item:first-child:hover {
  background-color: rgba(134, 16, 16, 0.2);
  border: 1px solid #bf191d;
}

/* line 49, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-main > .nav_item:first-child.dd-open {
  background: url(/ct/channel/img/icon_explore_red.png) 9px center no-repeat;
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.97);
  border: 1px solid #d8d8d7;
}

/* line 56, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-main > .nav_item:first-child.dd-open span {
  color: #d51b1e;
}

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

/* line 75, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-main_item:nth-child(4) > .nav_link {
  border-color: #ee3b3e;
}

/* line 79, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-main_item:nth-child(6) > .nav_link {
  border-color: #e2383c;
}

/* line 83, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-main_link {
  color: #fff;
  font-weight: 600;
  font-size: 16.8px;
  font-size: 1.05rem;
}

/* line 89, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-main_link:hover {
  border-bottom: 4px solid #e2383c;
  padding-bottom: 3px;
}

/* line 94, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.explore {
  cursor: default;
}

/* line 97, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-head {
  cursor: default;
}

/* line 100, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.explore:hover {
  border: 0;
}

/* line 103, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-separator {
  color: #e66163;
  font-weight: 700;
  font-size: 16.8px;
  font-size: 1.05rem;
}

/* line 110, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-list_link {
  color: #000;
}

/* line 113, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-list_link:hover {
  text-decoration: underline;
}

/* line 117, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-list > .nav_item {
  margin-right: 8px;
}

/* line 120, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-list > .nav_item:before {
  content: '/';
  display: inline-block;
  padding-right: 8px;
}

/* line 128, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-list > .nav_label:before,
.nav-list > .nav_item-first:before {
  content: '';
  padding-right: 0;
}

/* line 133, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-topics {
  margin-bottom: 20px;
  margin-top: 6px;
  font-size: 12.8px;
  font-size: 0.8rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

/* line 140, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-topics > .nav_label {
  margin-right: 10px;
  /*// 7 + 8 = 15px between `.nav_label`
		                   // and the first `.nav_item`*/
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

/* line 147, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-topics a {
  margin: 0 5px;
  color: #d51b1e;
  text-decoration: none;
  border-bottom: 3px solid #fff;
  padding-bottom: 2px;
}

/* line 154, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-topics a:hover {
  border-bottom: 3px solid #000;
  color: #000;
}

/* line 159, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-topics a.viewAll {
  color: #d51b1e;
}

/* line 162, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-topics a.active {
  border-bottom: 3px solid #000;
  color: #000;
}

/* line 166, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-head {
  font-size: 12px;
  font-size: 0.75rem;
  padding-left: 20px;
}

/* line 171, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-head a {
  padding: 5px 0 0 0 !important;
}

/* line 174, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-head a:hover {
  text-decoration: none;
}

/* line 179, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.ourlatest > .nav-topics {
  margin-bottom: 20px;
}

/* line 182, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-footer {
  font-weight: 400;
  line-height: 1.4;
  font-size: 11.2px;
  font-size: 0.7rem;
}

/* line 185, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.section-main .nav-topics {
  margin-bottom: 25px;
}

/* line 188, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-topics span {
  margin: 0 5px;
  position: relative;
  top: 0px;
  font-weight: 200 !important;
  color: #999;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 197, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.arrow-links a {
  color: #000;
}

/* line 200, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.arrow-links a:hover {
  text-decoration: underline;
}

/* line 206, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.fix-header .nav_item ul.nav-dropdown {
  top: 26px;
}

/* line 211, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-secondLevel {
  color: #878787;
  clear: left;
  padding: 10px 0 0 20px;
}

/* line 216, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-secondLevel .red-link-color {
  color: #d51b1e;
}

/* line 220, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-byline {
  color: #878787;
  text-transform: uppercase;
  padding-left: 15px;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
  font-size: 10.4px;
  font-size: 0.65rem;
}

/* line 231, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav_item ul ul {
  display: block;
  margin: 0;
}

/* line 235, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.subMenu {
  list-style: none;
}

/* line 238, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.subMenu .nav_link {
  padding-left: 1.5em !important;
}

/* line 242, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
ul.section-opinion-nav a.nav_link {
  padding-left: 40px;
}

/* line 245, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
ul.lastList {
  width: 17em;
}

/* line 248, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.color-blue {
  color: #0099d2;
  font-size: 12px;
  font-size: 0.75rem;
}

/* line 253, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.subMenu span {
  padding-left: 20px;
}

/* line 256, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.w-115 {
  width: 115px !important;
}

/* line 260, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.headings-small {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .03em;
  font-size: 11.2px;
  font-size: 0.7rem;
}

/*To adjust filter links style on Ourlatest page*/
/* line 270, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.ourlatest .nav-topics span {
  font-size: 0.7rem !important;
  margin: 0px;
}

/* line 274, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.ourlatest .nav-topics .nav-label {
  margin-right: 0px;
}

/* line 277, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.ourlatest .nav-topics .nav-item::before {
  padding: 0 2px;
  font-size: 0.65rem;
}

/* line 281, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.ourlatest .nav-topics .nav-topics_list {
  font-size: 0.65rem;
}

/* line 284, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.ourlatest .nav-topics .clear-link {
  font-size: 0.65rem;
  margin-top: 3px;
}

/* line 290, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-browseTopics {
  display: inline;
  text-transform: uppercase;
  border-left: 1px solid #d2d2d2;
  padding: 3px 5.5px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 16.8px;
  font-size: 1.05rem;
}

/* line 300, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-browseTopics:first-child {
  border: 0;
  padding-left: 0;
}

/* line 304, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-browseTopics a {
  color: #000;
}

/* line 306, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-browseTopics a:hover {
  border-bottom: 5px solid #d51b1e;
  text-decoration: none;
  color: #d51b1e;
}

/* line 312, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.nav-browseTopics > .selected {
  border-bottom: 5px solid #d51b1e;
  color: #d51b1e;
}

/* line 316, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.collection-links {
  text-transform: uppercase;
  font-weight: bold;
}

/* line 319, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.collection-links .nav-topics {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-size: 16.8px;
  font-size: 1.05rem;
  letter-spacing: .03em;
  font-weight: 400;
}

/* line 325, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.collection-links .nav-topics a {
  color: #d51b1e;
  padding: 0;
  margin: 0 2px;
}

/* line 330, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.collection-links .nav-topics a:hover {
  border: none;
  text-decoration: underline;
}

/* line 334, Z:/home-ct/channels/ct/channel/css/sass/modules/_nav.scss */
.collection-links .nav-topics > .nav_label {
  margin-right: 2px;
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/modules/_userinfo.scss */
.userInfo {
  width: 940px;
  margin-left: -20px;
  padding: 0 20px;
  background: #ebeded;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 20.8px;
  font-size: 1.3rem;
}

/* line 13, Z:/home-ct/channels/ct/channel/css/sass/modules/_userinfo.scss */
.userInfo > span {
  display: inline-block;
  padding-bottom: 15px;
  padding-top: 15px;
}

/* line 18, Z:/home-ct/channels/ct/channel/css/sass/modules/_userinfo.scss */
.userInfo a.login-sub {
  color: #000;
}

/* line 21, Z:/home-ct/channels/ct/channel/css/sass/modules/_userinfo.scss */
.userInfo a.login-sub:hover {
  color: #d51b1e;
  text-decoration: none;
}

/* line 27, Z:/home-ct/channels/ct/channel/css/sass/modules/_userinfo.scss */
.userInfo strong {
  font-weight: 700;
  vertical-align: top;
}

/* line 31, Z:/home-ct/channels/ct/channel/css/sass/modules/_userinfo.scss */
.userInfo_links {
  padding-left: 44px;
  padding-right: 6px;
  background: url(/ct/channel/img/icon_avatar.gif) center left no-repeat;
}

/* line 38, Z:/home-ct/channels/ct/channel/css/sass/modules/_userinfo.scss */
.userInfo_links > a, .userInfo_links strong a {
  vertical-align: middle;
  color: #000;
  text-decoration: none;
}

/* line 44, Z:/home-ct/channels/ct/channel/css/sass/modules/_userinfo.scss */
.userInfo_links a:hover {
  color: #d51b1e;
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/modules/_section.scss */
.section {
  position: relative;
}

/* line 4, Z:/home-ct/channels/ct/channel/css/sass/modules/_section.scss */
.section-main {
  margin-bottom: 40px;
  border-bottom: 6px solid #000;
}

/* line 9, Z:/home-ct/channels/ct/channel/css/sass/modules/_section.scss */
.special-section li {
  padding-bottom: 30px;
  position: relative;
}

/* line 13, Z:/home-ct/channels/ct/channel/css/sass/modules/_section.scss */
.special-section li .item_commentCount {
  bottom: 30px;
}

/* line 16, Z:/home-ct/channels/ct/channel/css/sass/modules/_section.scss */
.special-section li .slug {
  height: 20px;
  display: block !important;
}

/* line 21, Z:/home-ct/channels/ct/channel/css/sass/modules/_section.scss */
.content-grayout {
  background: rgba(196, 196, 196, 0.65);
  margin-top: 20px;
}

/* line 25, Z:/home-ct/channels/ct/channel/css/sass/modules/_section.scss */
.content-slideshow.locked-slideshow {
  height: auto;
  width: 99.8%;
  margin-left: 1px;
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.featured {
  margin-bottom: 25px;
  overflow: hidden;
  position: relative;
  border-bottom: solid 6px #000;
}

/* line 7, Z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.featured .image-credit {
  position: absolute;
  left: 560px;
  bottom: 10px;
  margin-bottom: 0;
}

/**
 * This is applied to the *wrapper* for the featured image,
 * not to the <img /> tag itself. If the image does not need
 * to be linked, wrap it in a <span> instead.
 */
/* line 20, Z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.featured_img {
  margin: 0;
  overflow: hidden;
  clear: both;
}

/* line 26, Z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.media-featured_content {
  padding: 0 20px 20px 20px;
  position: relative;
  width: 360px;
  float: left;
}

/* line 32, Z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.media-featured_content .deck {
  margin: 5px 0;
}

/* line 36, Z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.featured_deck {
  color: #3a3a3a;
  line-height: 1.35;
  font-size: 15.2px;
  font-size: 0.95rem;
}

/* line 42, 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: 12.8px;
  font-size: 0.8rem;
}

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

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

/* line 59, Z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.spacer-left-0 {
  left: 0 !important;
}

/* line 62, Z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.featured_title {
  font-weight: 600;
  line-height: 1.05;
  font-size: 40px;
  font-size: 2.5rem;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  margin-bottom: 4px;
}

/* line 67, Z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.featured_title a:hover {
  text-decoration: none;
  color: #d51b1e;
}

/* line 72, Z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.no-featured {
  width: 100%;
}

/* line 75, Z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.relative {
  position: relative;
}

/* line 78, Z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.flag-content {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  color: #fff !important;
  letter-spacing: .05em;
  font-size: 15.2px;
  font-size: 0.95rem;
  padding: 3px 25px 2px !important;
  background: #d51b1e;
  font-weight: 500 !important;
  display: inline-block;
  vertical-align: middle;
}

/* line 89, Z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.horizontal-flag {
  transform: rotate(-90deg);
  height: 24px;
  text-align: center;
  transform-origin: 110px 110px;
  width: calc(100% - 24px);
  position: absolute;
  left: 0;
  top: 0;
}

/* line 98, Z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.horizontal-flag .flag-content {
  display: block;
  margin: 0;
}

/* line 102, Z:/home-ct/channels/ct/channel/css/sass/modules/_featured.scss */
.horizontal-flag + a {
  margin-left: 24px;
}

/*styles for Newsletter*/
/* line 2, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.newsletterSubscribe a {
  font-size: 12px;
  font-size: 0.75rem;
  color: #000;
  text-decoration: none;
  padding: 0 2px;
}

/* line 8, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.newsletterSubscribe a:hover {
  text-decoration: underline;
}

/* line 11, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.newsletterSubscribe a > span {
  font-size: 12px;
  font-size: 0.75rem;
  color: #999;
}

/* line 16, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.releaseGenre {
  width: 117px;
  margin: 0;
}

/* line 20, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
input#newsletterEmailInput {
  height: 21px;
  width: 256px;
}

/* line 24, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.newsletterEmail {
  float: left;
}

/* line 27, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.newsletterFields {
  margin-top: 0px !important;
}

/* line 30, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.newsletterList div, .newsletterFields div {
  margin-bottom: 4px;
}

/* line 33, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.newsletterList div img {
  vertical-align: middle;
}

/* line 36, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.newsletterFields label {
  position: absolute;
  text-indent: -999em;
  width: auto;
}

/**/
/* line 42, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal {
  background: #ffffff none repeat scroll 0 0;
  border: 1px solid #000000;
  border-radius: 8px;
  padding: 15px;
  z-index: 9999;
}

/* line 49, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-newsletter.is-centered {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* line 54, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options.is-centered {
  left: 50%;
  position: fixed !important;
  top: 30%;
  transform: translate(-50%, -50%);
}

/* line 60, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options_item.is-centered {
  top: 50%;
}

/* line 63, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options_item {
  height: 645px;
}

/* line 66, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options {
  background: #ffffff none repeat scroll 0 0;
  border: 3px solid #b6bbc1;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 15px;
  width: 600px;
  z-index: 999999;
}

/* line 76, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-newsletter .closeModal {
  z-index: 1;
}

/* line 80, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.closeModal {
  position: absolute;
  top: -15px;
  right: -15px;
}

/* line 85, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.nlListIsEmpty, #body .nlListIsEmpty {
  margin-top: 15px;
  padding: 0 5px 0 0 !important;
}

/* line 88, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.nlListIsEmpty h3, #body .nlListIsEmpty h3 {
  font-weight: 700;
}

/* line 91, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.nlListIsEmpty p, #body .nlListIsEmpty p {
  line-height: 1.35;
  margin: 4px 0 0;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: verdana,arial,sans-serif !important;
}

/* line 97, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.nlListIsEmpty p a, #body .nlListIsEmpty p a {
  text-decoration: underline;
  color: #000;
}

/* line 103, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.nlListIsEmpty p a:hover, #body .nlListIsEmpty p a:hover {
  text-decoration: none;
}

/* line 109, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.subscribe-title {
  position: absolute;
  top: 28px;
}

/* line 114, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .nlList_item, .modal-newsletter .nlList_item {
  margin-bottom: 20px;
}

/* line 117, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .nlList_item_checkbox, .modal-newsletter .nlList_item_checkbox {
  position: relative;
  top: -13px;
  margin-right: 10px;
}

/* line 122, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .newsletterDescription, .modal-newsletter .newsletterDescription {
  display: inline-block;
  margin: 0 25px;
  line-height: 1.2;
  position: relative;
  top: -12px;
  font-size: 14.4px;
  font-size: 0.9rem;
}

/* line 130, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .js-logo1, .modal-newsletter .js-logo1 {
  height: 20px;
  padding-bottom: 17px;
}

/* line 134, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .js-logo2, .modal-newsletter .js-logo2 {
  height: 20px;
  position: relative;
  top: -10px;
  padding-bottom: 10px;
}

/* line 140, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .js-logo3, .modal-newsletter .js-logo3 {
  height: 20px;
  position: relative;
  top: -10px;
  padding-bottom: 10px;
}

/* line 146, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .js-logo4, .modal-newsletter .js-logo4 {
  height: 20px;
  position: relative;
  top: -15px;
}

/* line 151, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .js-logo5, .modal-newsletter .js-logo5 {
  height: 20px;
  position: relative;
  top: -10px;
  padding-bottom: 10px;
}

/* line 157, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .newsletterSample, .modal-newsletter .newsletterSample {
  display: none;
}

/* line 162, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .newsletterSubmit label, .modal-newsletter .newsletterSubmit label {
  display: none;
}

/* line 166, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .newsletterFields, .modal-newsletter .newsletterFields {
  margin-bottom: 20px;
}

/* line 169, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .copyright, .modal-newsletter .copyright {
  font-family: verdana,sans-serif;
  font-size: 11.2px;
  font-size: 0.7rem;
}

/* line 173, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .errormsg, .modal-newsletter .errormsg {
  display: block;
  margin-top: 3px;
  color: #d51b1e;
  font-size: 14.4px;
  font-size: 0.9rem;
}

/* line 179, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options input, .modal-newsletter input {
  background-color: transparent;
  border: 0px solid;
  color: #87878f;
}

/* line 184, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .nlListIsEmpty, .modal-newsletter .nlListIsEmpty {
  margin: 15px 15px 15px 20px;
  font-size: 14.4px;
  font-size: 0.9rem;
}

/* line 189, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options_item {
  height: auto;
}

/* line 191, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options_item .section-copyright {
  bottom: 2px;
  margin-left: 10px;
}

/* line 196, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-newsletter {
  width: 801px;
  padding: 0 4px 10px;
}

/* line 199, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-newsletter .closeModal {
  z-index: 1;
}

/* line 203, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .newsletterEmail,
.modal-newsletter .newsletterEmail {
  float: left;
  margin-left: 25px;
}

/* line 211, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .newsletterSubscribe .newsletterFields input#newsletterEmailInput {
  height: 21px !important;
}

/* line 217, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .newsletterEmail .nlField-email,
.modal-newsletter .newsletterEmail .nlField-email {
  border: 1px solid #000000;
  font-family: verdana,sans-serif;
  height: 23px;
  padding-left: 8px;
  width: 300px;
}

/* line 225, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options .newsletterEmail .nlField_label,
.modal-newsletter .newsletterEmail .nlField_label {
  font-size: 0.9rem;
  margin-right: 10px;
}

/* line 230, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.newsletterSubscribeModal {
  position: relative;
  /*padding-top:187px;
	height:423px;*/
  margin: 0 auto;
  width: 550px;
}

/* line 236, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.newsletterSubscribeModal .newsletter-modal {
  position: absolute;
  top: 0;
  left: -123px;
}

/* line 241, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.newsletterSubscribeModal .section-copyright {
  position: relative;
  bottom: -7px;
}

/* line 247, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options_item .newsletterSubscribeModal {
  padding-top: 187px;
}

/* line 251, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
.modal-options_item {
  padding: 0 4px 30px;
  top: 10px;
}

@media only screen and (max-width: 1440px) {
  /* line 256, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
  .newsletterSubscribeModal {
    height: auto;
    width: 96%;
  }
  /* line 259, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
  .newsletterSubscribeModal .newsletter-modal {
    left: -20px;
  }
  /* line 264, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
  .modal-newsletter .newsletterDescription {
    font-size: 12.8px;
    font-size: 0.8rem;
    display: block;
  }
  /* line 268, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
  .modal-newsletter .copyright {
    font-size: 11.2px;
    font-size: 0.7rem;
  }
  /* line 272, Z:/home-ct/channels/ct/channel/css/sass/modules/_newsletters.scss */
  .modal-options_item {
    padding: 0 4px 15px;
  }
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/modules/_icons.scss */
.icon-unlocked, .icon-unlocked-left {
  background: url(/ct/channel/img/icon_unlocked.gif) no-repeat;
}

/* line 4, Z:/home-ct/channels/ct/channel/css/sass/modules/_icons.scss */
.icon-unlocked-left {
  padding-left: 28px;
  background-position: left center;
}

/* line 11, Z:/home-ct/channels/ct/channel/css/sass/modules/_icons.scss */
.icon-unlocked-right {
  padding-right: 28px;
  background-position: right center;
}

/* line 16, Z:/home-ct/channels/ct/channel/css/sass/modules/_icons.scss */
.icons-social a {
  width: 36px;
  display: inline-block;
  vertical-align: top;
  margin-left: 27px;
  text-align: center;
  text-decoration: none;
}

/* line 23, Z:/home-ct/channels/ct/channel/css/sass/modules/_icons.scss */
.icons-social a span {
  display: block;
  color: #000;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 10.4px;
  font-size: 0.65rem;
}

/* line 30, Z:/home-ct/channels/ct/channel/css/sass/modules/_icons.scss */
.icons-social a:hover {
  text-decoration: underline;
}

/* line 34, Z:/home-ct/channels/ct/channel/css/sass/modules/_icons.scss */
.icons-social > .noSpace {
  margin: 0;
}

/* line 37, Z:/home-ct/channels/ct/channel/css/sass/modules/_icons.scss */
.icons-social > .section-wide-55 {
  width: 50px;
}

/* line 40, Z:/home-ct/channels/ct/channel/css/sass/modules/_icons.scss */
.iconMore {
  background-image: url(/ct/channel/img/arrow_red.gif);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 10px;
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
section-notice.listed-links_bold {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 16px;
  font-size: 1rem;
}

/* line 8, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
section-notice.listed-links_bold > a {
  color: #000;
}

/* line 12, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.listed-links_bold img, img.subscriber-access-lock {
  vertical-align: middle;
}

/* line 15, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.feedback {
  background: #ebeded;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 19, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.feedback strong {
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 500;
}

/* line 28, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.feedback span, .feedback b {
  padding: 10px 8px;
  vertical-align: middle;
  display: inline-block;
  font-weight: 400;
}

/* line 34, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.feedback span img, .feedback b img {
  margin-right: 5px;
}

/* line 39, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.feedback span {
  border-left: 3px solid #fff;
}

/* line 42, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.help-form_email {
  color: #d51b1e;
  font-size: 15.2px;
  font-size: 0.95rem;
}

/* line 47, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.help-response {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif;
  font-weight: 400;
  color: #000;
  padding: 10px;
  width: 400px;
  font-size: 13.6px;
  font-size: 0.85rem;
}

/* line 56, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.help-response p {
  padding: 10px 10px 10px 0;
}

/* line 61, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.registeredRight ul {
  padding-left: 10px;
}

/* line 63, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.registeredRight ul li {
  list-style: none;
}

/* line 68, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.register-form input.buttons_link {
  border: none !important;
}

/* line 71, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.register-form_content .display-block {
  font-weight: 500;
}

/* line 74, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.passwordSpec, .unavailableZip, .recaptcha_only_if_image, .recaptcha_only_if_audio, #captchaCaption {
  font-size: 12.8px;
  font-weight: 500;
}

/* line 78, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.contactUs-form, .register-form {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif;
  font-weight: 400;
}

/* line 82, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.help-form_content > label, .register-form_content > label {
  display: block;
}

/* line 85, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.help-form_content input, .register-form_content .text, #captchaInput .text {
  border: 1px solid #000;
  background: none;
}

/* line 89, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.help-form_content strong,
.limitText strong {
  font-weight: 500;
}

/* line 93, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
textarea#message {
  height: 215px;
  padding: 8px 2px 2px 6px;
  width: 610px;
  border: 1px solid #000000;
}

/* line 99, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.textarea-width {
  width: 620px;
}

/* line 102, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.textarea-width span {
  font-size: 13.6px;
  font-size: 0.85rem;
}

/* line 106, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.textarea-width label {
  display: inline;
}

/* line 110, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.contact-form-input-element {
  width: 300px;
  border: 1px solid #000;
  padding: 2px;
  height: 22px;
}

/* line 116, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.contact-form-select-element {
  width: 256px;
}

/* line 119, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.info-submit {
  width: 100%;
  float: left;
  margin: 0;
}

/* line 124, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.info-submit span {
  display: inline;
  padding: 5px 10px;
  font-weight: 500;
  font-size: 14.4px;
  font-size: 0.9rem;
}

/* line 132, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.info-submit label {
  display: inline;
}

/* line 136, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.info-submit textarea#message {
  width: 98%;
  height: 180px;
}

/* line 141, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
span.limitText {
  padding: 0;
  font-size: 13.6px;
  font-size: 0.85rem;
}

/* For Contact Us Page */
/* line 148, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.help-subhead {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif;
  font-weight: 400;
  font-size: 24px;
  font-size: 1.5rem;
}

/* line 154, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.section-notice {
  border-bottom: 1px solid #dedecc;
  padding-bottom: 30px;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

/* line 161, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.buttons_link-medium {
  display: inline;
  padding: 5px 40px;
}

/*Site Map*/
/* line 167, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.listed-links_normal {
  font-family: "Gotham A", "Gotham B", sans-serif;
  line-height: 1.6;
  list-style: none outside none;
  padding-left: 20px;
}

/* line 173, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.listed-links_normal a {
  color: #000;
}

/* line 177, Z:/home-ct/channels/ct/channel/css/sass/modules/_helpandinfo.scss */
.listed-links_item {
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/modules/_slideup_notice.scss */
.expandContent {
  width: 100%;
  position: fixed;
  background: #fff;
  bottom: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 5;
  opacity: 1 !important;
  border-top: 15px solid #000;
}

/* line 12, Z:/home-ct/channels/ct/channel/css/sass/modules/_slideup_notice.scss */
#popupBoxClose {
  color: #999;
  right: 0;
  position: absolute;
  background: url(/ct/channel/img/icon_close.gif) no-repeat 0 1px;
  padding-left: 20px;
  font-family: verdana,arial,sans-serif;
  font-weight: 400;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 25, Z:/home-ct/channels/ct/channel/css/sass/modules/_slideup_notice.scss */
.article-popup_section .content-inside {
  width: 500px;
}

/* line 29, Z:/home-ct/channels/ct/channel/css/sass/modules/_slideup_notice.scss */
.btn_subscribe {
  display: inline-block;
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.image_left {
  margin-right: 20px;
  margin-top: 5px;
  float: left;
}

/* line 6, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.image_right {
  float: right;
  margin-left: 20px;
}

/* line 10, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.imageWrapper > .credit {
  display: block;
}

/* line 15, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.related-topics select.custom-formElements {
  margin-bottom: 10px;
}

/* line 19, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.moreIssue {
  width: 75%;
  overflow: hidden;
}

/* line 23, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.moreIssue .l-grid_item {
  width: 202px;
  margin: 0 15px;
  text-align: right;
}

/* line 28, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.moreIssue .align-left {
  text-align: left;
}

/* line 32, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-moreFrom-Issue {
  overflow: hidden;
}

/* line 35, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-moreFrom-Issue .title {
  display: inline;
}

/* line 38, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-moreFrom-Issue .subscriber-access-notifier {
  margin-left: 8px;
  float: none;
}

/* line 45, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-moreFrom-Issue .moreIssue ul.l-grid li.l-three .slug {
  width: 100%;
}

/* line 52, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.reviewDesc {
  overflow: hidden;
  font-size: .75rem;
}

/* line 55, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.reviewDesc a {
  color: #000;
  text-decoration: underline;
}

/* line 58, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.reviewDesc a:hover {
  text-decoration: none;
}

/* line 63, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-reviews {
  overflow: hidden;
}

/* line 65, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-reviews .headings-small {
  float: left;
  width: 125px;
}

/*code need to used as separate include and should removed from here*/
/* line 71, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.heading-preview {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif;
  font-weight: 400;
  text-align: center;
  padding: 4px 5px;
  background: #000;
  color: #fff;
  font-size: 20.8px;
  font-size: 1.3rem;
}

/* line 80, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-inner {
  padding: 20px 15px 15px;
  background: #ebeded;
  font-size: 19.2px;
  font-size: 1.2rem;
}

/* line 86, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-inner .subscribe {
  font-size: 14.4px;
  font-size: 0.9rem;
}

/* line 88, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-inner .subscribe .desc-text {
  margin: 0;
}

/* line 93, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-articlePreview, #body .section-articlePreview {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  clear: left;
}

/* line 97, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-articlePreview p, #body .section-articlePreview p {
  padding: 0;
  line-height: 1.15;
  font-family: "Gotham A", "Gotham B", sans-serif !important;
  font-weight: 400;
  font-size: 14.4px;
  font-size: 0.9rem;
}

/* line 105, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-articlePreview span, #body .section-articlePreview span {
  color: #d51b1e;
  font-size: 19.2px;
  font-size: 1.2rem;
}

/* line 111, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-articlePreview a {
  color: #d51b1e;
  text-decoration: underline;
}

/* line 115, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-articlePreview a:hover {
  text-decoration: none;
}

/* line 120, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-articlePreview .subscribe a.btn_subscribe {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
  width: 222px;
  text-align: center;
  box-sizing: border-box;
  letter-spacing: 0.03em;
}

/* line 133, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.subscribe .section-centered a.custom-buttons {
  width: 200px !important;
}

/* line 138, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
#body .section-centered, .section-centered {
  text-align: center;
}

/* line 140, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
#body .section-centered .custom-buttons, .section-centered .custom-buttons {
  background-color: #d51b1e;
  color: #fff;
  padding: 7px 33.5px;
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  font-weight: 500;
  font-size: 20.32px;
  font-size: 1.27rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}

/* line 149, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
#body .section-centered .custom-buttons:hover, .section-centered .custom-buttons:hover {
  background-color: #ed1317;
  text-decoration: none !important;
}

/* line 153, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
#body .section-centered .custom-buttons span, .section-centered .custom-buttons span {
  font-weight: 500;
  color: #000;
  font-size: 22.4px;
  font-size: 1.4rem;
}

/*Code needs to use as Separate Include for all verticals*/
/* line 162, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-login {
  text-align: center;
}

/* line 165, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-login a.custom-buttons {
  color: #000;
  background: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 19.2px;
  font-size: 1.2rem;
}

/* line 174, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-login a.custom-buttons:hover {
  background: #DEDECC;
}

/* line 178, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-login span {
  text-transform: uppercase;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  padding: 0 15px;
  font-size: 16px;
  font-size: 1rem;
}

/* line 187, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.noCommentsText {
  color: #d51b1e;
  margin: 10px 0;
  display: block;
  font-size: 15.2px;
  font-size: 0.95rem;
}

/* line 194, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-bordered-top-15 {
  border-top: 15px solid #000;
}

/* line 197, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.text-order-up {
  text-transform: uppercase;
}

/* line 200, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-popup > h2,
.section-popup > h3 {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: 29.6px;
  font-size: 1.85rem;
}

/* line 210, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-popup > h3 {
  font-weight: 900;
}

/* line 213, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.currentIssue-list {
  list-style: none;
  font-weight: 600;
  padding-bottom: 20px;
  font-size: 16px;
  font-size: 1rem;
}

/* line 220, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.currentIssue-list a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -.03em;
  font-size: 18.4px;
  font-size: 1.15rem;
}

/* line 230, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.firstLink a {
  font-weight: 800;
}

/* line 233, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-articleInfo > h2 {
  letter-spacing: -0.03em;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  font-weight: 400;
  line-height: 1.1;
  font-size: 52.8px;
  font-size: 3.3rem;
}

/* line 237, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.section-articleInfo > h2 .btn-espanol {
  letter-spacing: normal !important;
}

/* line 242, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
#popupBoxClose {
  color: #999;
  right: 0;
  position: absolute;
  background: url(/ct/channel/img/icon_close.gif) no-repeat 0 1px;
  padding-left: 20px;
  font-family: verdana,arial,sans-serif;
  font-weight: 400;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 254, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.heading-review {
  width: auto;
  margin-top: 5px;
  padding-right: 10px;
}

/* line 259, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.l-five div#body {
  width: 100%;
}

/* line 262, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.spacer-right-40 {
  margin-right: 40px;
}

/* line 266, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.scrollContainer .l-page {
  margin-top: 0;
  padding: 0;
}

/* line 270, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.scrollContainer .article-popup_section {
  padding-left: 90px;
}

/* line 272, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.scrollContainer .article-popup_section .section-articlePreview {
  clear: none;
}

/* line 277, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.scrollContainer {
  overflow: hidden;
  font-weight: 400;
}

/* line 281, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.scrollContainer h2 {
  font-size: 40px;
  font-size: 2.5rem;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
}

/* line 286, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.scrollContainer h3 {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  font-size: 24.8px;
  font-size: 1.55rem;
}

/* line 290, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.scrollContainer .subheading {
  color: #000;
  font-size: 20.8px;
  font-size: 1.3rem;
  line-height: 1.15;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
}

/* line 297, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.image_center {
  margin-bottom: 20px;
}

/* line 301, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.blockContent .heading-section-lg, .moreIssue .heading-section-lg {
  font-size: 38.4px;
  font-size: 2.4rem;
}

/* line 307, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
#scrollContainer .section-articlePreview .subscribe {
  font-size: 0.9rem;
}

/* line 312, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
#ratingHelp {
  float: left;
  margin-left: 4px;
}

/* line 316, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
#ratingHelp img {
  position: relative;
  top: 2px;
}

/* line 321, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
#recommendedResources {
  display: none;
}

/* line 324, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.video_left {
  float: left;
  margin-right: 20px;
}

/* line 328, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.video_right {
  float: right;
  margin-left: 20px;
}

/* line 333, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.footnote-button {
  font-family: monospace;
  font-weight: normal;
  text-decoration: none !important;
  letter-spacing: -0.1em;
}

/* line 340, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.active-ftn {
  display: block;
}

/* line 343, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
.page-heading-en-espanol {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  font-size: 48px;
  font-size: 3rem;
}

/* line 348, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
#body p.copyright, #body .copyright {
  clear: both;
}

/* line 351, Z:/home-ct/channels/ct/channel/css/sass/modules/_articleinfo.scss */
#body .image_left {
  margin-bottom: 10px;
}

/*Styles added By Rashpal*/
/* line 4, Z:/home-ct/channels/ct/channel/css/sass/modules/_article_styles.scss */
.rightnav-article_adjustment .section-newsletters {
  border-bottom: 1px solid #000;
  padding: 13px 0;
}

/* line 9, Z:/home-ct/channels/ct/channel/css/sass/modules/_article_styles.scss */
input.form-elements_input {
  height: 21px;
  width: 250px;
  color: #696969;
}

/* line 14, Z:/home-ct/channels/ct/channel/css/sass/modules/_article_styles.scss */
.section-heading {
  line-height: 1.1;
}

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

/* line 22, Z:/home-ct/channels/ct/channel/css/sass/modules/_article_styles.scss */
.spacer-inner-bottom-15 {
  padding-bottom: 15px;
}

/* line 26, Z:/home-ct/channels/ct/channel/css/sass/modules/_article_styles.scss */
.article-byline .author-image {
  border-radius: 30px;
  margin-right: 12px;
}

/* line 31, Z:/home-ct/channels/ct/channel/css/sass/modules/_article_styles.scss */
.article-byline a {
  color: #000;
}

/* line 33, Z:/home-ct/channels/ct/channel/css/sass/modules/_article_styles.scss */
.article-byline a:hover {
  text-decoration: underline;
}

/* line 38, Z:/home-ct/channels/ct/channel/css/sass/modules/_article_styles.scss */
.article-promoSpot {
  padding: 20px 0 15px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

/* line 43, Z:/home-ct/channels/ct/channel/css/sass/modules/_article_styles.scss */
#shareUrlModal {
  width: 620px;
  padding: 22px 20px;
}

/**
	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: 16px;
  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: 16px;
  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 51, 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 54, 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 58, Z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .subhead em, #body .subhead2 em {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif !important;
  font-weight: 400;
  font-style: italic;
}

/* line 63, Z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .intro, #body .bio, #body .source, #body .citation {
  font-family: "Chronicle SSm A", "Chronicle SSm B", serif !important;
  font-weight: 400;
  font-style: italic;
}

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

/* line 70, 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 76, 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: 96px;
  font-size: 6rem;
}

/* line 86, Z:/global/system/css/sass/modules/_article_body_styles.scss */
#body table td {
  font-size: 16px;
  font-size: 1rem;
}

/* line 92, 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: 12.8px;
  font-size: 0.8rem;
}

/* line 98, 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: 12px;
  font-size: 0.75rem;
}

/** [Font specific styles - Sans-Serif] **/
/** [Article CSS] **/
/* line 181, 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] **/
  /* Question & Answer*/
  /** [Lists] **/
  /** [Bio and Source] **/
  /** [Copyright] **/
  /** [Image] **/
  /** [Dropcap] **/
  /** [All items with Verdana] **/
  /** [Inline Footnote] **/
  /*caption*/
}

/* line 185, 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 193, 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 201, Z:/global/system/css/sass/modules/_article_body_styles.scss */
#body a {
  text-decoration: underline;
}

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

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

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

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

/* line 226, Z:/global/system/css/sass/modules/_article_body_styles.scss */
#body table {
  margin-bottom: 20px;
}

/* line 229, Z:/global/system/css/sass/modules/_article_body_styles.scss */
#body table td {
  border: 1px solid #e5e5e5;
  padding: 10px;
}

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

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

/* line 245, 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 250, Z:/global/system/css/sass/modules/_article_body_styles.scss */
#body p.bio a, #body p.source a {
  font-style: italic;
}

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

/* line 261, Z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .subhead, #body .subhead2 {
  line-height: 1.2;
}

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

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

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

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

/* line 280, 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;
  padding-right: 40px;
  float: left;
  font-size: 27.2px;
  font-size: 1.7rem;
}

/* line 292, 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;
}

/* line 298, 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 312, 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 316, Z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .sidebar_center .subhead,
#body .sidebar_left .subhead,
#body .sidebar_right .subhead {
  font-size: 19.2px;
  font-size: 1.2rem;
  font-family: Verdana,Arial,sans-serif !important;
  font-weight: 700;
}

/* line 321, Z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .sidebar_center .subhead2,
#body .sidebar_left .subhead2,
#body .sidebar_right .subhead2 {
  font-size: 16px;
  font-size: 1rem;
  font-family: Verdana,Arial,sans-serif !important;
  font-weight: 700;
}

/* line 327, 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 {
  margin-bottom: 10px;
}

/* line 331, 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 335, 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 338, 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 342, Z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .sidebar_left, #body .sidebar_right {
  width: 260px;
}

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

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

/* line 355, Z:/global/system/css/sass/modules/_article_body_styles.scss */
#body blockquote {
  margin: 30px 50px;
  line-height: 1.7;
  padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* line 433, Z:/global/system/css/sass/modules/_article_body_styles.scss */
#body blockquote {
  margin: 30px 50px;
  line-height: 1.7;
}

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

/* line 449, Z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .footnote-button {
  font-family: monospace;
  font-weight: normal;
  text-decoration: none !important;
  letter-spacing: -0.1em;
}

/* line 456, Z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .inline-footnote {
  display: none;
  font-family: Verdana,Arial,Helvetica,sans-serif !important;
}

/* line 460, Z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .inline-ftn-wrapper {
  overflow: hidden;
  background-color: #ebeded;
  color: #000;
  font: 0.7em Verdana,Arial,Helvetica,sans-serif;
  line-height: 1.5;
  margin-top: 15px;
  display: none;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  border: medium none;
  padding: 0;
  opacity: 0;
}

/* line 475, Z:/global/system/css/sass/modules/_article_body_styles.scss */
#body .active-ftn {
  display: block;
}

/* line 482, Z:/global/system/css/sass/modules/_article_body_styles.scss */
.table-caption, .image-caption, .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 488, Z:/global/system/css/sass/modules/_article_body_styles.scss */
.table-caption a, .image-caption a, .caption a,
#body .image-caption a, #body .caption a, #body p.caption a {
  color: #878787 !important;
  text-decoration: none;
}

/* line 491, Z:/global/system/css/sass/modules/_article_body_styles.scss */
.table-caption a:hover, .image-caption a:hover, .caption a:hover,
#body .image-caption a:hover, #body .caption a:hover, #body p.caption a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 400px) {
  /* line 497, 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 1, Z:/home-ct/channels/ct/channel/css/sass/modules/_paging.scss */
.articleFoot {
  height: 52px;
  clear: left;
  overflow: hidden;
}

/* line 7, Z:/home-ct/channels/ct/channel/css/sass/modules/_paging.scss */
.paging {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  font-size: 12.8px;
  font-size: 0.8rem;
  letter-spacing: -0.7px;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}

/* line 14, Z:/home-ct/channels/ct/channel/css/sass/modules/_paging.scss */
.paging select.custom-formElements {
  padding: 2px;
}

/* line 18, Z:/home-ct/channels/ct/channel/css/sass/modules/_paging.scss */
.paging a,
.currLink {
  padding: 15px 9px;
  display: inline-block;
  vertical-align: middle;
}

/* line 24, Z:/home-ct/channels/ct/channel/css/sass/modules/_paging.scss */
.reviewPagingRight a {
  margin: 0 3px;
  padding: 0;
  color: #d51b1e;
  vertical-align: top;
}

/* line 30, Z:/home-ct/channels/ct/channel/css/sass/modules/_paging.scss */
.reviewPagingRight a:hover {
  text-decoration: underline;
}

/* line 34, Z:/home-ct/channels/ct/channel/css/sass/modules/_paging.scss */
#body .paging a {
  text-decoration: none;
}

/* line 37, Z:/home-ct/channels/ct/channel/css/sass/modules/_paging.scss */
.reviewPagingRight {
  padding-right: 5px;
}

/* line 40, Z:/home-ct/channels/ct/channel/css/sass/modules/_paging.scss */
.reviewPagingRight span {
  padding-right: 3px;
  padding-left: 8px;
}

/* line 44, Z:/home-ct/channels/ct/channel/css/sass/modules/_paging.scss */
.reviewPagingRight .goDiv {
  padding-left: 0;
}

/* line 49, Z:/home-ct/channels/ct/channel/css/sass/modules/_paging.scss */
.paging a.nextLink,
a.nextLink:hover {
  color: #fff;
  letter-spacing: .03em;
  line-height: 1;
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 57, Z:/home-ct/channels/ct/channel/css/sass/modules/_paging.scss */
.pagingLeft a {
  color: #d51b1e;
  border-right: 3px solid #fff;
  cursor: pointer;
}

/* line 62, Z:/home-ct/channels/ct/channel/css/sass/modules/_paging.scss */
.pagingRight a,
.currLink {
  color: #000;
  border-left: 3px solid #fff;
}

/* line 67, Z:/home-ct/channels/ct/channel/css/sass/modules/_paging.scss */
.review-paging.section-border-top {
  border-top: 1px solid #000;
  padding: 5px 0 5px;
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.star-rating {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 75px;
  height: 14px;
  position: relative;
  background: url(/system/img/star-rating.gif) top left repeat-x;
}

/* line 10, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.star-rating li {
  float: left;
}

/* line 13, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.star-rating li a {
  display: block;
  width: 15px;
  height: 14px;
  text-decoration: none;
  text-indent: -9000px;
  z-index: 20;
  position: absolute;
  padding: 0;
  margin: 0;
}

/* line 24, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.star-rating li a:hover {
  background: url(/system/img/star-rating.gif) left bottom;
  z-index: 1;
  left: 0;
  bottom: 0;
}

/* line 30, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.star-rating a.one-star {
  left: 0;
}

/* line 33, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.star-rating a.one-star:hover {
  width: 15px;
}

/* line 37, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.star-rating a.two-stars {
  left: 15px;
}

/* line 40, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.star-rating a.two-stars:hover {
  width: 30px;
}

/* line 44, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.star-rating a.three-stars {
  left: 30px;
}

/* line 47, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.star-rating a.three-stars:hover {
  width: 45px;
}

/* line 51, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.star-rating a.four-stars {
  left: 45px;
}

/* line 54, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.star-rating a.four-stars:hover {
  width: 60px;
}

/* line 58, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.star-rating a.five-stars {
  left: 60px;
}

/* line 61, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.star-rating a.five-stars:hover {
  width: 75px;
}

/* line 65, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
#starvote p, .starvote p,
#starresult p, .starresult p {
  display: none;
}

/* line 69, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
#rateThisMovie,
#rateThisAlbum {
  clear: both;
  display: inline;
  float: left;
  padding: 10px 10px 0 0;
  width: 592px;
}

/* line 77, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
#rateThisAlbum h3,
#rateThisMovie h3 {
  clear: left;
  float: left;
  padding-right: 10px;
  color: #DD3F1F;
  text-transform: capitalize;
  padding-top: 15px;
}

/* line 87, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
strong.yourRating {
  float: left;
  padding: 10px 5px 10px 0;
}

/* line 91, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.yourRating {
  background: url(/ct/channel/img/stars_sprite.gif) no-repeat;
  height: 14px;
  list-style: none;
  padding: 0px !important;
  position: relative;
  top: 2px;
  width: 75px;
  margin-right: 4px;
}

/* line 101, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.movieRating,
#rateThisMovie ul.yourRating,
#rateThisAlbum ul.yourRating,
#rateThisItem ul.yourRating {
  float: left;
}

/* line 107, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.movieRating {
  margin: 0;
  width: 60px;
}

/* line 111, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.halfstar {
  background-position: 0 -14px;
}

/* line 114, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.yourRating li.one a:hover,
ul.onestar {
  background-position: 0 -28px;
}

/* line 118, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.oneandhalfstar {
  background-position: 0 -42px;
}

/* line 121, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.yourRating li.two a:hover,
ul.twostar {
  background-position: 0 -56px;
}

/* line 125, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.twoandhalfstar {
  background-position: 0 -70px;
}

/* line 128, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.yourRating li.three a:hover,
ul.threestar {
  background-position: 0 -84px;
}

/* line 132, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.threeandhalfstar {
  background-position: 0 -98px;
}

/* line 135, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.yourRating li.four a:hover,
ul.fourstar {
  background-position: 0 -112px;
}

/* line 139, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.fourandhalfstar {
  background-position: 0 -126px;
}

/* line 142, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.yourRating li.five a:hover,
ul.fivestar {
  background-position: 0 -140px;
}

/* line 146, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.yourRating li {
  cursor: pointer;
  float: left;
  text-align: left;
  text-indent: -999em;
}

/* line 152, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.yourRating li a {
  height: 14px;
  left: 0;
  position: absolute;
  text-decoration: none;
  top: 0;
  width: 15px;
  z-index: 3;
}

/* line 161, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.yourRating li.two a {
  left: 15px;
}

/* line 164, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.yourRating li.three a {
  left: 30px;
}

/* line 167, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.yourRating li.four a {
  left: 45px;
}

/* line 170, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.yourRating li.five a {
  left: 60px;
}

/* line 173, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.yourRating li a:hover {
  background: url(/ct/channel/img/stars_sprite.gif) 0px 0px no-repeat;
  height: 14px;
  left: 0;
  overflow: hidden;
  width: 75px;
  z-index: 2;
}

/* line 181, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
ul.movieRating li a:hover {
  width: 60px;
}

/*css for rating Movies/Books/Music*/
/* line 186, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.ratingTxt {
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* line 189, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.rate-it {
  font-size: 11.2px;
  font-size: 0.7rem;
}

/* line 192, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.reviewDesc > ul {
  list-style: none;
  display: inline-block;
}

/* line 196, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.reviewDesc > ul > li {
  display: inline-block;
}

/* line 200, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.ratingSmallTxt {
  font-size: 11.2px;
  font-size: 0.7rem;
  padding: 0 4px;
}

/* line 204, Z:/home-ct/channels/ct/channel/css/sass/modules/_rating.scss */
.addYours {
  color: #d51b1e;
  text-transform: uppercase;
  padding: 0 6px 0 8px;
  background: url(/ct/channel/img/icon_add_ur_rating.png) no-repeat left 2px;
  margin-left: 7px;
  font-size: 10.4px;
  font-size: 0.65rem;
}

/*css for rating Movies/Books/Music*/
/*featured box */
/* line 2, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
.featured-insertion {
  border-bottom: 7px solid #000;
  padding-bottom: 4px;
  background: #ebeded;
}

/* line 7, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
.featured-insertion_heading {
  background: #000;
  color: #fff;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 600;
  height: 40px;
  text-transform: none;
  font-size: 24px;
  font-size: 1.5rem;
}

/* line 15, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
.featured-insertion_info {
  margin-right: 15px;
}

/* line 18, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
.featured-insertion_content {
  padding: 20px 20px 0;
  overflow: hidden;
}

/* line 22, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
.featured-insertion_content .more {
  right: 10px;
}

/* line 26, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
.featured-insertion_headingtext {
  position: relative;
  top: 7px;
  left: 20px;
  display: inline-block;
  height: 22px;
  line-height: 1;
  border-right: 1px solid #4d4d4d;
  padding-right: 10px;
  padding-bottom: 5px;
  font-size: 24px;
  font-size: 1.5rem;
}

/* line 38, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
.featured-insertion_noborder {
  border-right: none;
}

/* line 42, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
.featured-insertion_description .deck a {
  color: #d51b1e;
}

/* line 46, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
a.featured-insertion_links {
  border-bottom: none;
  margin: 0 2px;
  padding: 0;
}

/* line 51, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
a.featured-insertion_links:hover {
  border: 0;
}

/* line 55, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
.featured-insertion_linklist {
  overflow: hidden;
}

/* line 58, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
.featured-insertion_linklist li {
  list-style: none;
}

/* line 61, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
.featured-insertion_linklist li a {
  display: inline;
}

/* line 65, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
.featured-insertion_linklist li .firstLink {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 3px;
  display: inline-block;
}

/* line 72, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
.featured-insertion_linklist li .firstLock {
  position: relative;
  top: 7px;
  vertical-align: top;
}

/* line 78, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
.featured-insertion_linklist li .slug a {
  font-size: 13.6px;
  font-size: 0.85rem;
}

/* line 81, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
.spacer-left {
  margin-left: 5px;
}

/* line 84, Z:/home-ct/channels/ct/channel/css/sass/modules/_featuredboxes.scss */
.featured-insertion_headingdesc {
  position: relative;
  top: 7px;
  margin-left: 30px;
  color: #fff;
  text-transform: none;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  font-size: 15.2px;
  font-size: 0.95rem;
}

/* slider styles */
/* line 2, Z:/home-ct/channels/ct/channel/css/sass/modules/_archivesslider.scss */
#js-contentslider {
  overflow: hidden;
  width: 100%;
  display: inline-block;
  background: #fff;
  width: 602px;
}

/* line 9, Z:/home-ct/channels/ct/channel/css/sass/modules/_archivesslider.scss */
.sliding-carousel {
  width: 600px;
  height: 420px;
  white-space: nowrap;
  background: url("/ct/channel/img/background_archives_slider.png") bottom repeat-x;
  border: 1px solid #000;
}

/* line 16, Z:/home-ct/channels/ct/channel/css/sass/modules/_archivesslider.scss */
.sliding-carousel_container {
  height: 370px;
  width: 13000px;
  margin-top: 10px;
}

/* line 20, Z:/home-ct/channels/ct/channel/css/sass/modules/_archivesslider.scss */
.sliding-carousel_container .sliding-carousel_item:last-child {
  border-right: 0px;
}

/* line 24, Z:/home-ct/channels/ct/channel/css/sass/modules/_archivesslider.scss */
.sliding-carousel_item {
  display: inline;
  width: 400px;
  height: 370px;
  border-right: 1px solid #000;
  padding-left: 10px;
}

/* line 31, Z:/home-ct/channels/ct/channel/css/sass/modules/_archivesslider.scss */
.sliding-carousel_title {
  font-size: 13.6px;
  font-size: 0.85rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
}

/* line 35, Z:/home-ct/channels/ct/channel/css/sass/modules/_archivesslider.scss */
.sliding-carousel_magazines {
  width: 60px;
  margin-right: 20px;
  height: 120px;
  text-align: center;
  font-size: 11.2px;
  font-size: 0.7rem;
}

/* line 42, Z:/home-ct/channels/ct/channel/css/sass/modules/_archivesslider.scss */
#sliding-carousel .sliding-carousel_scrollbar,
#sliding-carousel .ui-widget-content {
  position: relative;
  width: 96.5%;
  height: 20px;
}

/* line 48, Z:/home-ct/channels/ct/channel/css/sass/modules/_archivesslider.scss */
#sliding-carousel .ui-widget-content,
#sliding-carousel .ui-state-default,
#sliding-carousel .ui-state-hover,
#sliding-carousel .ui-state-focus,
#sliding-carousel .ui-state-active,
#sliding-carousel .ui-corner-all,
#sliding-carousel .ui-corner-bottom,
#sliding-carousel .ui-corner-right,
#sliding-carousel .ui-corner-br {
  background: none;
  border: none;
  color: none;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 65, Z:/home-ct/channels/ct/channel/css/sass/modules/_archivesslider.scss */
#sliding-carousel .ui-slider-handle,
#sliding-carousel .ui-state-default {
  width: 40px;
  height: 20px;
  background: #d51b1e url(/ct/channel/img/img_slider_knob.gif);
  border: none;
}

/* line 72, Z:/home-ct/channels/ct/channel/css/sass/modules/_archivesslider.scss */
#sliding-carousel .ui-widget {
  font-size: 0;
  margin-left: -2px;
  right: -2px;
  top: 20px;
  width: calc(100% - 40px);
}

/* line 79, Z:/home-ct/channels/ct/channel/css/sass/modules/_archivesslider.scss */
#sliding-carousel .ui-top {
  top: 6px;
}

/* line 82, Z:/home-ct/channels/ct/channel/css/sass/modules/_archivesslider.scss */
.sliding-carousel_yearsleft {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 700;
  width: auto;
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* line 88, Z:/home-ct/channels/ct/channel/css/sass/modules/_archivesslider.scss */
.sliding-carousel_yearright {
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
  width: 88%;
  padding-left: 10px;
}

/* line 93, Z:/home-ct/channels/ct/channel/css/sass/modules/_archivesslider.scss */
.sliding-carousel_yearlinks {
  margin-right: 8px;
  color: #000;
  text-decoration: none;
  font-size: 12px;
  font-size: 0.75rem;
  display: inline;
  list-style-type: none !important;
  width: 33px;
}

/* line 102, Z:/home-ct/channels/ct/channel/css/sass/modules/_archivesslider.scss */
.sliding-carousel_maglinks {
  white-space: pre-wrap;
  line-height: 10px;
  font-size: 11.2px;
  font-size: 0.7rem;
  font-family: "Gotham A", "Gotham B", sans-serif;
  font-weight: 400;
}

/* line 108, Z:/home-ct/channels/ct/channel/css/sass/modules/_archivesslider.scss */
.sliding-carousel .sliding-carousel_scrollbar:after {
  content: ' ';
  width: 80px;
  position: absolute;
  right: -42px;
  height: 20px;
}

/* classes for superfish navigation for other dropdown than main dropdown */
/* line 2, Z:/home-ct/channels/ct/channel/css/sass/modules/_alternatedropdowns.scss */
#js-showAltDropdown_top {
  position: relative;
}

/* line 5, Z:/home-ct/channels/ct/channel/css/sass/modules/_alternatedropdowns.scss */
#js-showAltDropdown_top ul#js-alternatedropdown_top,
.js-showAltDropdown_content ul#js-alternatedropdown_content,
.js-showAltDropdown_content ul.js-showAltDropdown_hider {
  display: none;
}

/* line 10, Z:/home-ct/channels/ct/channel/css/sass/modules/_alternatedropdowns.scss */
#js-showAltDropdown_top:hover,
.js-showAltDropdown_content:hover {
  cursor: pointer;
}

/* line 14, Z:/home-ct/channels/ct/channel/css/sass/modules/_alternatedropdowns.scss */
#js-showAltDropdown_top:hover ul#js-alternatedropdown_top,
.js-showAltDropdown_content:hover ul#js-alternatedropdown_content,
ul.js-showAltDropdown_show {
  display: block;
}

/*styles for Columnist dropdown*/
/* line 22, Z:/home-ct/channels/ct/channel/css/sass/modules/_alternatedropdowns.scss */
.top-section-search {
  position: relative;
  padding-bottom: 25px;
  /* Reduce padding from 40px */
  clear: both;
}

/* line 27, Z:/home-ct/channels/ct/channel/css/sass/modules/_alternatedropdowns.scss */
.top-section-search #js-showAltDropdown_content {
  width: 310px;
  position: absolute;
  z-index: 1;
  padding-left: 5px;
  list-style: none;
  background: #ebeded url(/ct/channel/img/icon_select_dropdown.png) no-repeat right 6px;
}

/* line 35, Z:/home-ct/channels/ct/channel/css/sass/modules/_alternatedropdowns.scss */
.top-section-search b {
  padding-top: 4px;
  display: block;
}

/* line 41, Z:/home-ct/channels/ct/channel/css/sass/modules/_alternatedropdowns.scss */
#js-showAltDropdown_content ul.alternate-dropdown {
  width: 100%;
  overflow: scroll;
  overflow-x: hidden;
  margin-top: 2px;
  background: #ebeded;
  top: 25px;
  left: -1px;
}

/* line 50, Z:/home-ct/channels/ct/channel/css/sass/modules/_alternatedropdowns.scss */
#js-showAltDropdown_content ul.alternate-dropdown li {
  padding-left: 5px;
  padding-bottom: 1px;
  border: 0;
  font-family: arial;
  letter-spacing: 0;
  font-size: 13.6px;
  font-size: 0.85rem;
}

/* line 59, Z:/home-ct/channels/ct/channel/css/sass/modules/_alternatedropdowns.scss */
#js-showAltDropdown_content ul.alternate-dropdown li:hover {
  background: #3399ff;
}

/* line 63, Z:/home-ct/channels/ct/channel/css/sass/modules/_alternatedropdowns.scss */
#js-showAltDropdown_content ul.alternate-dropdown a {
  color: #000;
  padding-left: 20px;
  font-family: arial;
  display: block;
}

/* line 69, Z:/home-ct/channels/ct/channel/css/sass/modules/_alternatedropdowns.scss */
#js-showAltDropdown_content ul.alternate-dropdown a:hover {
  color: #fff;
}

/*styles for Columnist dropdown*/
/* line 76, Z:/home-ct/channels/ct/channel/css/sass/modules/_alternatedropdowns.scss */
.columnistsDropDown > select {
  width: 280px;
}

/**
 * I'm including the `-ct` suffix in order to prevent system-wide
 * modals from being affected.
 */
/* line 5, Z:/home-ct/channels/ct/channel/css/sass/modules/_modals.scss */
.modal-ct {
  padding: 30px;
  width: 560px;
  border: 3px solid #b6bbc1;
}

/* line 11, Z:/home-ct/channels/ct/channel/css/sass/modules/_modals.scss */
.modal-ct > p {
  margin: 20px 0;
  font-weight: 400;
  line-height: 1.2;
  font-size: 19.2px;
  font-size: 1.2rem;
}

/* line 18, Z:/home-ct/channels/ct/channel/css/sass/modules/_modals.scss */
.modal-ct > textarea {
  display: block;
  overflow: auto;
  padding: 5px;
  width: 100%;
  border: 1px solid #d9d9d9;
  resize: none;
  color: #676a6b;
  font-family: Verdana, Arial, sans-serif;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 11.2px;
  font-size: 0.7rem;
}

/* line 36, Z:/home-ct/channels/ct/channel/css/sass/modules/_modals.scss */
.modal-ct.is-centered {
  left: 50%;
  position: fixed;
  top: 100px;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

/* line 48, Z:/home-ct/channels/ct/channel/css/sass/modules/_modals.scss */
.modal-ct a {
  text-decoration: underline;
}

/* line 51, Z:/home-ct/channels/ct/channel/css/sass/modules/_modals.scss */
.modal-ct a:hover {
  color: #d51b1e;
}

/* line 56, Z:/home-ct/channels/ct/channel/css/sass/modules/_modals.scss */
.title-modal {
  font-weight: 400;
  line-height: 1.05;
  font-size: 38.4px;
  font-size: 2.4rem;
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/modules/_hovermagsub.scss */
h3.top {
  color: #d51b1e;
  margin-bottom: 20px;
}

/* line 5, Z:/home-ct/channels/ct/channel/css/sass/modules/_hovermagsub.scss */
.info_text p {
  margin-bottom: 30px;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 400;
}

/* line 10, Z:/home-ct/channels/ct/channel/css/sass/modules/_hovermagsub.scss */
.info_text a {
  text-decoration: underline;
}

/* line 13, Z:/home-ct/channels/ct/channel/css/sass/modules/_hovermagsub.scss */
.info_text .note {
  background-color: #ebeded;
  padding: 25px;
  clear: right;
  margin-top: 25px;
}

/* line 18, Z:/home-ct/channels/ct/channel/css/sass/modules/_hovermagsub.scss */
.info_text .note p {
  margin-bottom: 0;
}

/* line 22, Z:/home-ct/channels/ct/channel/css/sass/modules/_hovermagsub.scss */
.list-style-inner {
  list-style-position: inside;
  margin-left: 10px;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-weight: 400;
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.featured-billygraham {
  min-height: 306px;
  background-color: #000;
  position: relative;
}

/* line 8, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.featured-billygraham .featured-title_lg {
  color: #d51b1e;
  font-weight: 600;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-size: 76px;
  font-size: 4.75rem;
}

/* line 17, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.featured-billygraham .featured-title_lg:hover {
  text-decoration: none;
}

/* line 21, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.featured-billygraham .featured-billygraham_image {
  height: 306px;
  display: inline-block;
  vertical-align: top;
}

/* line 26, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.featured-billygraham .featured-billygraham_credit {
  color: #999;
  position: absolute;
  bottom: 7px;
  font-size: 9px;
  font-weight: 500;
  font-family: verdana, sans-serif;
}

/* line 37, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.featured-billygraham .featured-billygraham-content {
  color: #e0ce06;
  font-size: 73px;
  display: inline-block;
  padding: 79px 0 0 15px;
  text-decoration: none;
  text-transform: uppercase;
}

/* line 47, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.featured-billygraham_left {
  width: 450px;
  position: relative;
  left: -40px;
}

/* line 52, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.featured-billygraham_right {
  margin-left: 30px;
}

/* line 55, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.featured-title_item {
  color: white;
  display: inline-block;
  font-size: 24px;
  padding: 4px 0 0 204px;
}

/* line 60, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.featured-title_item span {
  padding: 0 20px;
}

/* For Breaking News Bar */
/* line 66, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.billygraham-breaking-news:before {
  background: url("/ct/channel/img/bg_breakingnews.gif") repeat scroll 0 0 transparent;
}

/* line 69, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.special-section_item {
  background: url("/ct/channel/img/sm_billygraham.gif") no-repeat scroll 220px 0 #000;
}

/* For Billy Graham Special Issue */
/* line 74, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.section-moreFrom-Issue {
  width: 620px;
}

/* line 77, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.featured_more {
  color: white;
  position: absolute;
  bottom: 6px;
}

/* line 83, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.more-item {
  padding-top: 20px;
}

/* line 86, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.mag-desc {
  width: auto;
  overflow: hidden;
  padding-left: 10px;
}

/* line 91, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.mag-desc p {
  margin-bottom: 15px;
  margin-top: 15px;
  font-family: "Gotham A", "Gotham B", sans-serif;
  line-height: 1.2;
  font-size: 14.4px;
  font-size: 0.9rem;
}

/* line 100, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.section-login a.button_yellow {
  background: #f8e405 !important;
}

/* line 103, Z:/home-ct/channels/ct/channel/css/sass/modules/_billygraham_featuredpanel.scss */
.section-login .button_yellow:hover {
  background: #fbff0a !important;
}

/* line 1, Z:/home-ct/channels/ct/channel/css/sass/modules/_author.scss */
.designation {
  color: #999;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  padding-top: 5px;
  font-size: 16.8px;
  font-size: 1.05rem;
}

/* line 8, Z:/home-ct/channels/ct/channel/css/sass/modules/_author.scss */
.border-md {
  border-top: 2px solid #000;
}

/* line 11, Z:/home-ct/channels/ct/channel/css/sass/modules/_author.scss */
.author-description {
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  line-height: 1.7;
  font-size: 16px;
  font-size: 1rem;
}

/* line 17, Z:/home-ct/channels/ct/channel/css/sass/modules/_author.scss */
.spacer-left-25 {
  margin-left: 25px;
}

/* line 21, Z:/home-ct/channels/ct/channel/css/sass/modules/_author.scss */
.browse-authors {
  padding-bottom: 15px;
}

/* line 24, Z:/home-ct/channels/ct/channel/css/sass/modules/_author.scss */
.browse-authors select {
  display: block;
  width: 220px;
}

/* line 29, Z:/home-ct/channels/ct/channel/css/sass/modules/_author.scss */
.author-title-sm {
  font-family: "Gotham Cond A", "Gotham Cond B", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .05em;
  font-size: 16.8px;
  font-size: 1.05rem;
}

/* line 38, Z:/home-ct/channels/ct/channel/css/sass/modules/_author.scss */
.section .section-button-links {
  margin-left: 240px;
  margin-bottom: 25px;
  clear: both;
  width: 137px;
}

/* For Authors Page */
/* line 46, Z:/home-ct/channels/ct/channel/css/sass/modules/_author.scss */
.l-one {
  width: 140px;
}

/* line 49, Z:/home-ct/channels/ct/channel/css/sass/modules/_author.scss */
.last-item {
  margin: 0px;
}

/* line 52, Z:/home-ct/channels/ct/channel/css/sass/modules/_author.scss */
.border-bottom_black {
  border-bottom: 1px solid #000;
  width: 100%;
}

/* line 56, Z:/home-ct/channels/ct/channel/css/sass/modules/_author.scss */
.heading-sm {
  color: #999999;
  font-weight: 600;
  font-family: "Chronicle Display A", "Chronicle Display B", serif;
  font-size: 28.8px;
  font-size: 1.8rem;
}

/* line 63, Z:/home-ct/channels/ct/channel/css/sass/modules/_author.scss */
.author-title {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 15.2px;
  font-size: 0.95rem;
}

/* line 69, Z:/home-ct/channels/ct/channel/css/sass/modules/_author.scss */
.designation-sm {
  display: block;
  font-size: 11.2px;
  font-size: 0.7rem;
}

/* line 74, Z:/home-ct/channels/ct/channel/css/sass/modules/_author.scss */
a.follow {
  background: url(/ct/channel/img/icon_follow.gif) no-repeat;
  width: 13px;
  height: 11px;
  display: inline-block;
  margin-left: 5px;
}

/* line 82, Z:/home-ct/channels/ct/channel/css/sass/modules/_author.scss */
a.following {
  background: url(/ct/channel/img/icon_following.gif) no-repeat;
  width: 13px;
  height: 11px;
  display: inline-block;
  margin-left: 5px;
}

/* line 89, Z:/home-ct/channels/ct/channel/css/sass/modules/_author.scss */
.ctAuthorAlertBox {
  font-size: 15.2px;
  font-size: 0.95rem;
  padding: 15px;
  border: 3px solid #b6bbc1;
  width: 550px;
  min-width: 520px;
}

/*# sourceMappingURL=../channel.map */