/* Variables copied from variables.less */
/*  */

/* General */
html,
body,
button {
  color: #454547;
}

/* Default .btn */
/*  */
.btn {
  background-color: #454547;
  color: #FFFFFF;
}
.btn:hover,
.btn:focus {
  background-color: #6b6b6d;
  color: #FFFFFF;
}

/* Header */
.header {
  background-color: #454547;
  color: #FFFFFF;
}

/* Header with image */
/*  */
.header--withimage .header {
  background-color: transparent;
}

/* This is decided by Curated */
@media (max-width: 760px) {
  .header .navbar-collapse {
    background-color: #252526;
  }
  .header .navbar-collapse a {
    color: rgba(255,255,255,0.8);
  }
  .header .navbar-collapse a:hover,
  .header .navbar-collapse a:active {
    color: #ffffff;
  }
}
.header .navbar-search {
  background-color: #252526;
}

.header .navbar-search-bar {
  background-color: rgba(255,255,255,0.8);
}

.header .navbar-a-search {
  color: rgba(255,255,255,0.8);
}

.header .navbar-toggle .navbar-toggle-bar {
  background-color: rgba(255,255,255,0.8);
}
.header .navbar-toggle:hover .navbar-toggle-bar,
.header .navbar-toggle:active .navbar-toggle-bar {
  background-color: #FFFFFF;
}
/* This is decided by Curated */
/* matches .navbar-collapse a above */
.header .navbar-toggle .icon-cross {
  color: rgba(255,255,255,0.8);
}
.header .navbar-toggle .icon-cross:hover,
.header .navbar-toggle .icon-cross:active {
  color: #ffffff;
}
.header a {
  color: rgba(255,255,255,0.8);
}
.header a:hover,
.header a:active {
  color: #FFFFFF;
}
.header a.navbar-brand {
  color: #FFFFFF;
}

/* Colors for email and search inputs in header */
/*  */
.header .form-control {
  background-color: rgba(255,255,255,0.9);
  color: #000000;
}

/* Placeholder colors */
/*  */
.header ::-moz-placeholder {
  color: #29292b;
}
.header :-ms-input-placeholder {
  color: #29292b;
}
.header ::placeholder {
  color: #29292b;
}

.header .btn,
.btn-primary {
  background-color: #3e3e40;

  color: #FFFFFF;
}

.header .btn path,
.btn-primary path {
  stroke: #FFFFFF;
}

.header .btn:hover,
.btn-primary:hover,
.header .btn:focus,
.btn-primary:focus {
  background-color: #373739;
  color: #FFFFFF;

}


.navbar-search .btn {
  background-color: transparent;
  color: #5e5e61;
}
.navbar-search .btn:hover,
.navbar-search .btn:focus {
  background-color: transparent;
  color: #000000;
}

/* Item */
/*  */

/* When the item is in .item__list, set divider border top color (archives and search pages) */
/*  */
.item__list .item:before {
  border-top-color: rgba(69,69,71,0.2);
}

.item__heading {
  /* This is .item__heading on search and archives */
  color: #000000;
}
.item__footer {
  /* This is .item__footer on search and archives */
  color: rgba(69,69,71,0.7);
}

/* Issue heading */
/*  */
.issue__heading h1 {
  color: #454547;
}

/* If issue date is displayed along with title <time> gets wrapped in an <i> */
/*  */
.issue__heading h1 i {
  color: rgba(69,69,71,0.7);
}

/* Trello: https://trello.com/c/lEPuvhXO */
/* If secondary font is Garamond, Laila or Merriweather adjust */
/* padding to correct line-height issues with these fonts in lozenge */
/*  */
.category__title--lozenge .category__title__text {
  padding-bottom: 3px;
  padding-top: 5px;
}

    /* Garamond doesn't need fixing on desktop, only Laila and Merriweather */
    /*  */

/* Category styles */
/* Does not effect search/archives alignment */
/*  */
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-blog .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-blog .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-blog .item__body p a {
  color: #000000;
}


.cc-blog {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-blog .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-blog .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-blog .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-blog blockquote {
  border-left-color: #cccccc;
}

.cc-blog .item__title a {
  color: #000000;
}
.cc-blog .item__title a:hover,
.cc-blog .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-blog p a,
.cc-blog ul li a {
  color: #000000;
}
.cc-blog p a:hover,
.cc-blog p a:active,
.cc-blog ul li a:hover,
.cc-blog ul li a:active {
  color: #262626;
}

.cc-blog .item__footer {
  color: #454547;
}
.cc-blog .item__footer a {
  color: #000000;
}
.cc-blog .item__footer a:hover,
.cc-blog .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-blog hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-blog.category__footer h2 {
  border: 1px solid #454547;
}
.cc-blog.category__footer a {
  color: #000000;
}
.cc-blog.category__footer a:hover,
.cc-blog.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-politics .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-politics .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-politics .item__body p a {
  color: #000000;
}


.cc-politics {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-politics .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-politics .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-politics .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-politics blockquote {
  border-left-color: #cccccc;
}

.cc-politics .item__title a {
  color: #000000;
}
.cc-politics .item__title a:hover,
.cc-politics .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-politics p a,
.cc-politics ul li a {
  color: #000000;
}
.cc-politics p a:hover,
.cc-politics p a:active,
.cc-politics ul li a:hover,
.cc-politics ul li a:active {
  color: #262626;
}

.cc-politics .item__footer {
  color: #454547;
}
.cc-politics .item__footer a {
  color: #000000;
}
.cc-politics .item__footer a:hover,
.cc-politics .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-politics hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-politics.category__footer h2 {
  border: 1px solid #454547;
}
.cc-politics.category__footer a {
  color: #000000;
}
.cc-politics.category__footer a:hover,
.cc-politics.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-travel .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-travel .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-travel .item__body p a {
  color: #000000;
}


.cc-travel {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-travel .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-travel .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-travel .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-travel blockquote {
  border-left-color: #cccccc;
}

.cc-travel .item__title a {
  color: #000000;
}
.cc-travel .item__title a:hover,
.cc-travel .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-travel p a,
.cc-travel ul li a {
  color: #000000;
}
.cc-travel p a:hover,
.cc-travel p a:active,
.cc-travel ul li a:hover,
.cc-travel ul li a:active {
  color: #262626;
}

.cc-travel .item__footer {
  color: #454547;
}
.cc-travel .item__footer a {
  color: #000000;
}
.cc-travel .item__footer a:hover,
.cc-travel .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-travel hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-travel.category__footer h2 {
  border: 1px solid #454547;
}
.cc-travel.category__footer a {
  color: #000000;
}
.cc-travel.category__footer a:hover,
.cc-travel.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-alternativeenergy .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-alternativeenergy .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-alternativeenergy .item__body p a {
  color: #000000;
}


.cc-alternativeenergy {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-alternativeenergy .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-alternativeenergy .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-alternativeenergy .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-alternativeenergy blockquote {
  border-left-color: #cccccc;
}

.cc-alternativeenergy .item__title a {
  color: #000000;
}
.cc-alternativeenergy .item__title a:hover,
.cc-alternativeenergy .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-alternativeenergy p a,
.cc-alternativeenergy ul li a {
  color: #000000;
}
.cc-alternativeenergy p a:hover,
.cc-alternativeenergy p a:active,
.cc-alternativeenergy ul li a:hover,
.cc-alternativeenergy ul li a:active {
  color: #262626;
}

.cc-alternativeenergy .item__footer {
  color: #454547;
}
.cc-alternativeenergy .item__footer a {
  color: #000000;
}
.cc-alternativeenergy .item__footer a:hover,
.cc-alternativeenergy .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-alternativeenergy hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-alternativeenergy.category__footer h2 {
  border: 1px solid #454547;
}
.cc-alternativeenergy.category__footer a {
  color: #000000;
}
.cc-alternativeenergy.category__footer a:hover,
.cc-alternativeenergy.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-photography .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-photography .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-photography .item__body p a {
  color: #000000;
}


.cc-photography {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-photography .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-photography .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-photography .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-photography blockquote {
  border-left-color: #cccccc;
}

.cc-photography .item__title a {
  color: #000000;
}
.cc-photography .item__title a:hover,
.cc-photography .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-photography p a,
.cc-photography ul li a {
  color: #000000;
}
.cc-photography p a:hover,
.cc-photography p a:active,
.cc-photography ul li a:hover,
.cc-photography ul li a:active {
  color: #262626;
}

.cc-photography .item__footer {
  color: #454547;
}
.cc-photography .item__footer a {
  color: #000000;
}
.cc-photography .item__footer a:hover,
.cc-photography .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-photography hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-photography.category__footer h2 {
  border: 1px solid #454547;
}
.cc-photography.category__footer a {
  color: #000000;
}
.cc-photography.category__footer a:hover,
.cc-photography.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-responsibleinvesting .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-responsibleinvesting .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-responsibleinvesting .item__body p a {
  color: #000000;
}


.cc-responsibleinvesting {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-responsibleinvesting .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-responsibleinvesting .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-responsibleinvesting .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-responsibleinvesting blockquote {
  border-left-color: #cccccc;
}

.cc-responsibleinvesting .item__title a {
  color: #000000;
}
.cc-responsibleinvesting .item__title a:hover,
.cc-responsibleinvesting .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-responsibleinvesting p a,
.cc-responsibleinvesting ul li a {
  color: #000000;
}
.cc-responsibleinvesting p a:hover,
.cc-responsibleinvesting p a:active,
.cc-responsibleinvesting ul li a:hover,
.cc-responsibleinvesting ul li a:active {
  color: #262626;
}

.cc-responsibleinvesting .item__footer {
  color: #454547;
}
.cc-responsibleinvesting .item__footer a {
  color: #000000;
}
.cc-responsibleinvesting .item__footer a:hover,
.cc-responsibleinvesting .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-responsibleinvesting hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-responsibleinvesting.category__footer h2 {
  border: 1px solid #454547;
}
.cc-responsibleinvesting.category__footer a {
  color: #000000;
}
.cc-responsibleinvesting.category__footer a:hover,
.cc-responsibleinvesting.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-media .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-media .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-media .item__body p a {
  color: #000000;
}


.cc-media {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-media .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-media .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-media .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-media blockquote {
  border-left-color: #cccccc;
}

.cc-media .item__title a {
  color: #000000;
}
.cc-media .item__title a:hover,
.cc-media .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-media p a,
.cc-media ul li a {
  color: #000000;
}
.cc-media p a:hover,
.cc-media p a:active,
.cc-media ul li a:hover,
.cc-media ul li a:active {
  color: #262626;
}

.cc-media .item__footer {
  color: #454547;
}
.cc-media .item__footer a {
  color: #000000;
}
.cc-media .item__footer a:hover,
.cc-media .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-media hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-media.category__footer h2 {
  border: 1px solid #454547;
}
.cc-media.category__footer a {
  color: #000000;
}
.cc-media.category__footer a:hover,
.cc-media.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-marketseconomy .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-marketseconomy .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-marketseconomy .item__body p a {
  color: #000000;
}


.cc-marketseconomy {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-marketseconomy .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-marketseconomy .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-marketseconomy .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-marketseconomy blockquote {
  border-left-color: #cccccc;
}

.cc-marketseconomy .item__title a {
  color: #000000;
}
.cc-marketseconomy .item__title a:hover,
.cc-marketseconomy .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-marketseconomy p a,
.cc-marketseconomy ul li a {
  color: #000000;
}
.cc-marketseconomy p a:hover,
.cc-marketseconomy p a:active,
.cc-marketseconomy ul li a:hover,
.cc-marketseconomy ul li a:active {
  color: #262626;
}

.cc-marketseconomy .item__footer {
  color: #454547;
}
.cc-marketseconomy .item__footer a {
  color: #000000;
}
.cc-marketseconomy .item__footer a:hover,
.cc-marketseconomy .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-marketseconomy hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-marketseconomy.category__footer h2 {
  border: 1px solid #454547;
}
.cc-marketseconomy.category__footer a {
  color: #000000;
}
.cc-marketseconomy.category__footer a:hover,
.cc-marketseconomy.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-climatechange .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-climatechange .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-climatechange .item__body p a {
  color: #000000;
}


.cc-climatechange {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-climatechange .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-climatechange .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-climatechange .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-climatechange blockquote {
  border-left-color: #cccccc;
}

.cc-climatechange .item__title a {
  color: #000000;
}
.cc-climatechange .item__title a:hover,
.cc-climatechange .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-climatechange p a,
.cc-climatechange ul li a {
  color: #000000;
}
.cc-climatechange p a:hover,
.cc-climatechange p a:active,
.cc-climatechange ul li a:hover,
.cc-climatechange ul li a:active {
  color: #262626;
}

.cc-climatechange .item__footer {
  color: #454547;
}
.cc-climatechange .item__footer a {
  color: #000000;
}
.cc-climatechange .item__footer a:hover,
.cc-climatechange .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-climatechange hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-climatechange.category__footer h2 {
  border: 1px solid #454547;
}
.cc-climatechange.category__footer a {
  color: #000000;
}
.cc-climatechange.category__footer a:hover,
.cc-climatechange.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-healthbiotech .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-healthbiotech .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-healthbiotech .item__body p a {
  color: #000000;
}


.cc-healthbiotech {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-healthbiotech .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-healthbiotech .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-healthbiotech .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-healthbiotech blockquote {
  border-left-color: #cccccc;
}

.cc-healthbiotech .item__title a {
  color: #000000;
}
.cc-healthbiotech .item__title a:hover,
.cc-healthbiotech .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-healthbiotech p a,
.cc-healthbiotech ul li a {
  color: #000000;
}
.cc-healthbiotech p a:hover,
.cc-healthbiotech p a:active,
.cc-healthbiotech ul li a:hover,
.cc-healthbiotech ul li a:active {
  color: #262626;
}

.cc-healthbiotech .item__footer {
  color: #454547;
}
.cc-healthbiotech .item__footer a {
  color: #000000;
}
.cc-healthbiotech .item__footer a:hover,
.cc-healthbiotech .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-healthbiotech hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-healthbiotech.category__footer h2 {
  border: 1px solid #454547;
}
.cc-healthbiotech.category__footer a {
  color: #000000;
}
.cc-healthbiotech.category__footer a:hover,
.cc-healthbiotech.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-transportation .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-transportation .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-transportation .item__body p a {
  color: #000000;
}


.cc-transportation {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-transportation .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-transportation .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-transportation .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-transportation blockquote {
  border-left-color: #cccccc;
}

.cc-transportation .item__title a {
  color: #000000;
}
.cc-transportation .item__title a:hover,
.cc-transportation .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-transportation p a,
.cc-transportation ul li a {
  color: #000000;
}
.cc-transportation p a:hover,
.cc-transportation p a:active,
.cc-transportation ul li a:hover,
.cc-transportation ul li a:active {
  color: #262626;
}

.cc-transportation .item__footer {
  color: #454547;
}
.cc-transportation .item__footer a {
  color: #000000;
}
.cc-transportation .item__footer a:hover,
.cc-transportation .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-transportation hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-transportation.category__footer h2 {
  border: 1px solid #454547;
}
.cc-transportation.category__footer a {
  color: #000000;
}
.cc-transportation.category__footer a:hover,
.cc-transportation.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-sustainability .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-sustainability .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-sustainability .item__body p a {
  color: #000000;
}


.cc-sustainability {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-sustainability .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-sustainability .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-sustainability .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-sustainability blockquote {
  border-left-color: #cccccc;
}

.cc-sustainability .item__title a {
  color: #000000;
}
.cc-sustainability .item__title a:hover,
.cc-sustainability .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-sustainability p a,
.cc-sustainability ul li a {
  color: #000000;
}
.cc-sustainability p a:hover,
.cc-sustainability p a:active,
.cc-sustainability ul li a:hover,
.cc-sustainability ul li a:active {
  color: #262626;
}

.cc-sustainability .item__footer {
  color: #454547;
}
.cc-sustainability .item__footer a {
  color: #000000;
}
.cc-sustainability .item__footer a:hover,
.cc-sustainability .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-sustainability hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-sustainability.category__footer h2 {
  border: 1px solid #454547;
}
.cc-sustainability.category__footer a {
  color: #000000;
}
.cc-sustainability.category__footer a:hover,
.cc-sustainability.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-local .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-local .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-local .item__body p a {
  color: #000000;
}


.cc-local {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-local .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-local .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-local .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-local blockquote {
  border-left-color: #cccccc;
}

.cc-local .item__title a {
  color: #000000;
}
.cc-local .item__title a:hover,
.cc-local .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-local p a,
.cc-local ul li a {
  color: #000000;
}
.cc-local p a:hover,
.cc-local p a:active,
.cc-local ul li a:hover,
.cc-local ul li a:active {
  color: #262626;
}

.cc-local .item__footer {
  color: #454547;
}
.cc-local .item__footer a {
  color: #000000;
}
.cc-local .item__footer a:hover,
.cc-local .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-local hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-local.category__footer h2 {
  border: 1px solid #454547;
}
.cc-local.category__footer a {
  color: #000000;
}
.cc-local.category__footer a:hover,
.cc-local.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-science .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-science .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-science .item__body p a {
  color: #000000;
}


.cc-science {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-science .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-science .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-science .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-science blockquote {
  border-left-color: #cccccc;
}

.cc-science .item__title a {
  color: #000000;
}
.cc-science .item__title a:hover,
.cc-science .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-science p a,
.cc-science ul li a {
  color: #000000;
}
.cc-science p a:hover,
.cc-science p a:active,
.cc-science ul li a:hover,
.cc-science ul li a:active {
  color: #262626;
}

.cc-science .item__footer {
  color: #454547;
}
.cc-science .item__footer a {
  color: #000000;
}
.cc-science .item__footer a:hover,
.cc-science .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-science hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-science.category__footer h2 {
  border: 1px solid #454547;
}
.cc-science.category__footer a {
  color: #000000;
}
.cc-science.category__footer a:hover,
.cc-science.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-socialresponsibility .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-socialresponsibility .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-socialresponsibility .item__body p a {
  color: #000000;
}


.cc-socialresponsibility {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-socialresponsibility .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-socialresponsibility .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-socialresponsibility .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-socialresponsibility blockquote {
  border-left-color: #cccccc;
}

.cc-socialresponsibility .item__title a {
  color: #000000;
}
.cc-socialresponsibility .item__title a:hover,
.cc-socialresponsibility .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-socialresponsibility p a,
.cc-socialresponsibility ul li a {
  color: #000000;
}
.cc-socialresponsibility p a:hover,
.cc-socialresponsibility p a:active,
.cc-socialresponsibility ul li a:hover,
.cc-socialresponsibility ul li a:active {
  color: #262626;
}

.cc-socialresponsibility .item__footer {
  color: #454547;
}
.cc-socialresponsibility .item__footer a {
  color: #000000;
}
.cc-socialresponsibility .item__footer a:hover,
.cc-socialresponsibility .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-socialresponsibility hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-socialresponsibility.category__footer h2 {
  border: 1px solid #454547;
}
.cc-socialresponsibility.category__footer a {
  color: #000000;
}
.cc-socialresponsibility.category__footer a:hover,
.cc-socialresponsibility.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-investing .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-investing .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-investing .item__body p a {
  color: #000000;
}


.cc-investing {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-investing .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-investing .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-investing .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-investing blockquote {
  border-left-color: #cccccc;
}

.cc-investing .item__title a {
  color: #000000;
}
.cc-investing .item__title a:hover,
.cc-investing .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-investing p a,
.cc-investing ul li a {
  color: #000000;
}
.cc-investing p a:hover,
.cc-investing p a:active,
.cc-investing ul li a:hover,
.cc-investing ul li a:active {
  color: #262626;
}

.cc-investing .item__footer {
  color: #454547;
}
.cc-investing .item__footer a {
  color: #000000;
}
.cc-investing .item__footer a:hover,
.cc-investing .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-investing hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-investing.category__footer h2 {
  border: 1px solid #454547;
}
.cc-investing.category__footer a {
  color: #000000;
}
.cc-investing.category__footer a:hover,
.cc-investing.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-bcorpresponsiblebusiness .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-bcorpresponsiblebusiness .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-bcorpresponsiblebusiness .item__body p a {
  color: #000000;
}


.cc-bcorpresponsiblebusiness {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-bcorpresponsiblebusiness .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-bcorpresponsiblebusiness .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-bcorpresponsiblebusiness .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-bcorpresponsiblebusiness blockquote {
  border-left-color: #cccccc;
}

.cc-bcorpresponsiblebusiness .item__title a {
  color: #000000;
}
.cc-bcorpresponsiblebusiness .item__title a:hover,
.cc-bcorpresponsiblebusiness .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-bcorpresponsiblebusiness p a,
.cc-bcorpresponsiblebusiness ul li a {
  color: #000000;
}
.cc-bcorpresponsiblebusiness p a:hover,
.cc-bcorpresponsiblebusiness p a:active,
.cc-bcorpresponsiblebusiness ul li a:hover,
.cc-bcorpresponsiblebusiness ul li a:active {
  color: #262626;
}

.cc-bcorpresponsiblebusiness .item__footer {
  color: #454547;
}
.cc-bcorpresponsiblebusiness .item__footer a {
  color: #000000;
}
.cc-bcorpresponsiblebusiness .item__footer a:hover,
.cc-bcorpresponsiblebusiness .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-bcorpresponsiblebusiness hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-bcorpresponsiblebusiness.category__footer h2 {
  border: 1px solid #454547;
}
.cc-bcorpresponsiblebusiness.category__footer a {
  color: #000000;
}
.cc-bcorpresponsiblebusiness.category__footer a:hover,
.cc-bcorpresponsiblebusiness.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-environment .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-environment .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-environment .item__body p a {
  color: #000000;
}


.cc-environment {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-environment .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-environment .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-environment .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-environment blockquote {
  border-left-color: #cccccc;
}

.cc-environment .item__title a {
  color: #000000;
}
.cc-environment .item__title a:hover,
.cc-environment .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-environment p a,
.cc-environment ul li a {
  color: #000000;
}
.cc-environment p a:hover,
.cc-environment p a:active,
.cc-environment ul li a:hover,
.cc-environment ul li a:active {
  color: #262626;
}

.cc-environment .item__footer {
  color: #454547;
}
.cc-environment .item__footer a {
  color: #000000;
}
.cc-environment .item__footer a:hover,
.cc-environment .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-environment hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-environment.category__footer h2 {
  border: 1px solid #454547;
}
.cc-environment.category__footer a {
  color: #000000;
}
.cc-environment.category__footer a:hover,
.cc-environment.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-divestment .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-divestment .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-divestment .item__body p a {
  color: #000000;
}


.cc-divestment {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-divestment .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-divestment .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-divestment .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-divestment blockquote {
  border-left-color: #cccccc;
}

.cc-divestment .item__title a {
  color: #000000;
}
.cc-divestment .item__title a:hover,
.cc-divestment .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-divestment p a,
.cc-divestment ul li a {
  color: #000000;
}
.cc-divestment p a:hover,
.cc-divestment p a:active,
.cc-divestment ul li a:hover,
.cc-divestment ul li a:active {
  color: #262626;
}

.cc-divestment .item__footer {
  color: #454547;
}
.cc-divestment .item__footer a {
  color: #000000;
}
.cc-divestment .item__footer a:hover,
.cc-divestment .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-divestment hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-divestment.category__footer h2 {
  border: 1px solid #454547;
}
.cc-divestment.category__footer a {
  color: #000000;
}
.cc-divestment.category__footer a:hover,
.cc-divestment.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-technology .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-technology .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-technology .item__body p a {
  color: #000000;
}


.cc-technology {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-technology .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-technology .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-technology .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-technology blockquote {
  border-left-color: #cccccc;
}

.cc-technology .item__title a {
  color: #000000;
}
.cc-technology .item__title a:hover,
.cc-technology .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-technology p a,
.cc-technology ul li a {
  color: #000000;
}
.cc-technology p a:hover,
.cc-technology p a:active,
.cc-technology ul li a:hover,
.cc-technology ul li a:active {
  color: #262626;
}

.cc-technology .item__footer {
  color: #454547;
}
.cc-technology .item__footer a {
  color: #000000;
}
.cc-technology .item__footer a:hover,
.cc-technology .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-technology hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-technology.category__footer h2 {
  border: 1px solid #454547;
}
.cc-technology.category__footer a {
  color: #000000;
}
.cc-technology.category__footer a:hover,
.cc-technology.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-culture .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-culture .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-culture .item__body p a {
  color: #000000;
}


.cc-culture {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-culture .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-culture .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-culture .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-culture blockquote {
  border-left-color: #cccccc;
}

.cc-culture .item__title a {
  color: #000000;
}
.cc-culture .item__title a:hover,
.cc-culture .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-culture p a,
.cc-culture ul li a {
  color: #000000;
}
.cc-culture p a:hover,
.cc-culture p a:active,
.cc-culture ul li a:hover,
.cc-culture ul li a:active {
  color: #262626;
}

.cc-culture .item__footer {
  color: #454547;
}
.cc-culture .item__footer a {
  color: #000000;
}
.cc-culture .item__footer a:hover,
.cc-culture .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-culture hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-culture.category__footer h2 {
  border: 1px solid #454547;
}
.cc-culture.category__footer a {
  color: #000000;
}
.cc-culture.category__footer a:hover,
.cc-culture.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-realestate .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-realestate .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-realestate .item__body p a {
  color: #000000;
}


.cc-realestate {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-realestate .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-realestate .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-realestate .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-realestate blockquote {
  border-left-color: #cccccc;
}

.cc-realestate .item__title a {
  color: #000000;
}
.cc-realestate .item__title a:hover,
.cc-realestate .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-realestate p a,
.cc-realestate ul li a {
  color: #000000;
}
.cc-realestate p a:hover,
.cc-realestate p a:active,
.cc-realestate ul li a:hover,
.cc-realestate ul li a:active {
  color: #262626;
}

.cc-realestate .item__footer {
  color: #454547;
}
.cc-realestate .item__footer a {
  color: #000000;
}
.cc-realestate .item__footer a:hover,
.cc-realestate .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-realestate hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-realestate.category__footer h2 {
  border: 1px solid #454547;
}
.cc-realestate.category__footer a {
  color: #000000;
}
.cc-realestate.category__footer a:hover,
.cc-realestate.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-food .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-food .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-food .item__body p a {
  color: #000000;
}


.cc-food {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-food .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-food .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-food .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-food blockquote {
  border-left-color: #cccccc;
}

.cc-food .item__title a {
  color: #000000;
}
.cc-food .item__title a:hover,
.cc-food .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-food p a,
.cc-food ul li a {
  color: #000000;
}
.cc-food p a:hover,
.cc-food p a:active,
.cc-food ul li a:hover,
.cc-food ul li a:active {
  color: #262626;
}

.cc-food .item__footer {
  color: #454547;
}
.cc-food .item__footer a {
  color: #000000;
}
.cc-food .item__footer a:hover,
.cc-food .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-food hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-food.category__footer h2 {
  border: 1px solid #454547;
}
.cc-food.category__footer a {
  color: #000000;
}
.cc-food.category__footer a:hover,
.cc-food.category__footer a:focus {
  color: #000000;
}
/* Search modifier classes */
/*  */

/* For each category we have an .item__heading modifier class which is used on search results */
/*  */
.item--cc-sports .item__heading {
  color: #454547;
}

/* For each category we have an .item__title modifier class, used on the search results */
.item--cc-sports .item__title {
  color: #000000;
}

/* Modifier used in search to show the embedded links in the correct color. */
.item--cc-sports .item__body p a {
  color: #000000;
}


.cc-sports {
  background-color: #FFFFFF;
  color: #454547;
  text-align: left;
}

.cc-sports .category__title {
  color: #454547;
  text-align: left;

  /* If header justification: left and header style: both_horizontal | icon_only */
  /* give heading relative for absolute positing of icon */
  /*  */
  position: relative;
}

/* Icons */
/*  */
.cc-sports .category__title img {

  /* If title category_header_justification: left give icon some space */
  /*  */
    margin-right: 18px;
}

/* If header justification: left and header style: both_horizontal | icon_only */
/* place icon off canvas when not on small screen */
/*  */
@media (min-width: 978px) {
  .cc-sports .category__title img {
    position: absolute;
    right: 100%;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */

  /* If text alignment is center, give p .item--issue left and right margin */
  /*  */

  /* If title alignment is center, remove margin-left from ol and ul */
  /*  */

.cc-sports blockquote {
  border-left-color: #cccccc;
}

.cc-sports .item__title a {
  color: #000000;
}
.cc-sports .item__title a:hover,
.cc-sports .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

.cc-sports p a,
.cc-sports ul li a {
  color: #000000;
}
.cc-sports p a:hover,
.cc-sports p a:active,
.cc-sports ul li a:hover,
.cc-sports ul li a:active {
  color: #262626;
}

.cc-sports .item__footer {
  color: #454547;
}
.cc-sports .item__footer a {
  color: #000000;
}
.cc-sports .item__footer a:hover,
.cc-sports .item__footer a:active {
  color: #262626;
}


  /* Divider (formally .item__line but we can have <hr>'s inside .item--issue so apply to all) */
  /*  */
.cc-sports hr {
  background-color: #cccccc;
  color: #cccccc;
}

  /* Sponsored category footer on issue page */
  /*  */
.cc-sports.category__footer h2 {
  border: 1px solid #454547;
}
.cc-sports.category__footer a {
  color: #000000;
}
.cc-sports.category__footer a:hover,
.cc-sports.category__footer a:focus {
  color: #000000;
}

/* Issue pager and pagination */
/*  */
.issue__pager,
.pagination {
  color: #454547;
}

.issue__pager li > a,
.issue__pager li > span,
.pagination li > a,
.pagination li > span {
  border-color: #454547;
}

.issue__pager li a:hover,
.issue__pager li a:focus,
.pagination li a:hover,
.pagination li a:focus {
  border-color: rgba(69,69,71,0.4);
}

.issue__pager li .icon,
.pagination li .icon {
  color: #A1A8B2;
}
.issue__pager .active a,
.issue__pager .active span,
.pagination .active a,
.pagination .active span {
  border-color: #000000;
  color: #000000;
}

/* When on mobile, don't highlight active as this acts as summary */
/*  */
@media (max-width: 760px) {
  .issue__pager .active span,
  .pagination .active span {
    color: #6a6f75;
  }
}


/* Call to actions in the header colors */
/*  */
.cta--header {
  color: rgba(255,255,255,0.9);
}

/* Header with image */
/*  */
.header--withimage .cta--header {
  /* From two possible background colors (black at 40%, black at 5%), choose */
  /* the one that has most contrast with the publication header text color. */
  background-color: rgba(0,0,0,0.4);
}

/* Style input with border when flat color */
/*  */

.cta--header .cta-tabs .cta-tabs-title {
  color: rgba(255,255,255,0.6);
}

.cta--header .cta-tabs button {
  color: rgba(255,255,255,0.6);
}
.cta--header .cta-tabs button:hover,
.cta--header .cta-tabs button.active {
  border-top-color: rgba(255,255,255,0.8);
  color: #FFFFFF;
}

.header--withimage .cta--header .btn {
  background-color: #454547;
}
.header--withimage .cta--header .btn:hover,
.header--withimage .cta--header .btn:focus {
  background-color: #424243;
}


/* Subscription pages */
/*  */
.subscription__resubscribe__btn {
  color: #000000;
}
.subscription__resubscribe__btn:hover,
.subscription__resubscribe__btn:focus {
  color: #262626;
}


/* Pages */
/*  */
.page h2:before {
  border-top-color: rgba(69,69,71,0.7);
}
.page__header {
  color: rgba(69,69,71,0.7);
}
.page__header b,
.page__header strong {
  color: rgba(55,55,57,0.7);
}
.page .terms--custom {
  border-top: 1px solid rgba(69,69,71,0.7);
}

/* Sponsorship pages */
/*  */
.sponsorship a {
  color: #000000;
}
.sponsorship a:hover,
.sponsorship a:active {
  color: #262626;
}

.sponsorship__quicklinks {
  color: rgba(69,69,71,0.7);
}
.sponsorship__quicklinks a {
  color: rgba(69,69,71,0.7);
}
.sponsorship__quicklinks a:hover,
.sponsorship__quicklinks a:active {
  color: #3e3e40;
}

.sponsorship__nextavailable.with_divider:before {
  border-top-color: rgba(69,69,71,0.6);
}
.sponsorship__nextavailable h4 {
  color: rgba(69,69,71,0.7);
}
.sponsorship__nextavailable a {
  color: rgba(183,206,60,0.7);
}
.sponsorship__nextavailable a:hover,
.sponsorship__nextavailable a:active {
  color: #a5b936;
}

.sponsorship__pricing {
  background-color: #f0f5fa;
  color: #454547;
}
.sponsorship__pricing .btn {
  background-color: #B7CE3C;
  color: #FFFFFF;
}
.sponsorship__pricing .btn:hover,
.sponsorship__pricing .btn:focus {
  background-color: #a5b936;
  color: #FFFFFF;
}

.sponsorship__availability h2 {
  color: rgba(69,69,71,0.7);
}

.sponsorship__availability section + section:before {
  border-top-color: rgba(69,69,71,0.6);
}

.sponsorship__availability .dates li {
  background-color: #f0f5fa;
  color: #454547;
}

.sponsorship__availability .dates p {
  border-bottom-color: rgba(69,69,71,0.2);
}

.sponsorship__availability .booked p {
  color: #9C9C9C;
}
.sponsorship__availability .booked .booknow span {
  background-color: #9C9C9C;
  color: #FFFFFF;
}

.sponsorship__availability .tentative p {
  color: #FB8A35;
}
.sponsorship__availability .tentative .booknow span {
  background-color: #FB8A35;
  color: #FFFFFF;
}

.sponsorship__availability .available p {
  color: #B7CE3C;
}
.sponsorship__availability .available .booknow a {
  background-color: #B7CE3C;
  color: #FFFFFF;
}
.sponsorship__availability .available .booknow a:hover,
.sponsorship__availability .available .booknow a:focus {
  background-color: #a5b936;
}

.sponsorship__availability__info .tentative {
  color: #FB8A35;
}
.sponsorship__availability__info a {
  color: #B7CE3C;
}
.sponsorship__availability__info a:hover,
.sponsorship__availability__info a:focus {
  color: #a5b936;
}

.sponsorship__details {
  background-color: #f0f5fa;
  color: #454547;
}

.sponsorship__previous li {
  border-top-color: rgba(69,69,71,0.1);
}
@media (min-width: 760px) {
  .sponsorship__previous li {
    border-color: rgba(69,69,71,0.1);
  }
}

.sponsorship__inquiry h3 {
  border-bottom-color: rgba(69,69,71,0.2);
}

/* Home page no issue overwrites */
/*  */
.home--noissue {
  background-color: #454547;
  color: #FFFFFF;
}
.home--noissue body {
  background-color: transparent;
}
.home--noissue .footer {
  background-color: #454547;
  color: #FFFFFF;
}
.home--noissue .footer a {
  color: rgba(255,255,255,0.8);
}
.home--noissue .footer a:hover,
.home--noissue .footer a:active {
  color: #FFFFFF;
}
.home--noissue .footer .i .recaptcha-terms {
  color: rgba(255,255,255,0.5);
}
.home--noissue .footer .i .recaptcha-terms a {
  color: rgba(255,255,255,0.5);
}

.home--noissue .footer .social a svg {
  fill: rgba(255,255,255,0.8);
}
.home--noissue .footer .social a:hover svg {
  fill: #FFFFFF;
}


.header--withimage .header {
  background-image: url(https://dxj7eshgz03ln.cloudfront.net/production/publication/header_background_image/6197/medium_darkened_6e923340-f0b3-45b4-a282-a39864a96cdb.jpg);
}
@media (min-width: 760px) {
  .header--withimage .header {
    background-image: url(https://dxj7eshgz03ln.cloudfront.net/production/publication/header_background_image/6197/large_darkened_6e923340-f0b3-45b4-a282-a39864a96cdb.jpg);
  }
}

/* Home page no issue overwrites with image */
/* ### HARDCODED: to be adjusted when implemented into theme */
/*  */
.home--noissue.header--withimage {
  background-attachment: fixed;
  background-color: transparent;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://dxj7eshgz03ln.cloudfront.net/production/publication/header_background_image/6197/medium_darkened_6e923340-f0b3-45b4-a282-a39864a96cdb.jpg);
}
@media (min-width: 760px) {
  .home--noissue.header--withimage {
    background-image: url(https://dxj7eshgz03ln.cloudfront.net/production/publication/header_background_image/6197/large_darkened_6e923340-f0b3-45b4-a282-a39864a96cdb.jpg);
  }
}

.home--noissue.header--withimage header.header {
  background-image: none;
}
@media (min-width: 760px) {
  .home--noissue.header--withimage header.header {
    background-image: none;
  }
}

.home--noissue.header--withimage body,
.home--noissue.header--withimage header.header,
.home--noissue.header--withimage .footer {
  background-color: transparent !important;
}
