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

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

/* Default .btn */
/*  */
.btn {
  background-color: #101010;
  color: #ffffff;
}
.btn:hover,
.btn:focus {
  background-color: #363636;
  color: #ffffff;
}

/* Header */
.header {
  background-color: #101010;
  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: #0a0a0a;
}
.header :-ms-input-placeholder {
  color: #0a0a0a;
}
.header ::placeholder {
  color: #0a0a0a;
}

.header .btn,
.btn-primary {
  background-color: #15b57e;

  color: #FFFFFF;
}

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

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

}

@media (min-width: 760px) {
  .navbar-search .form-control {
    border: 1px solid #0e0e0e;
    -webkit-background-clip: padding-box;
  }
}

.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(16,16,16,0.2);
}

.item__heading {
  /* This is .item__heading on search and archives */
  color: #3d64be;
}
.item__footer {
  /* This is .item__footer on search and archives */
  color: rgba(16,16,16,0.7);
}

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

/* If issue date is displayed along with title <time> gets wrapped in an <i> */
/*  */
.issue__heading h1 i {
  color: rgba(16,16,16,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 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-comment .item__heading {
  color: #101010;
}

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

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


.cc-comment {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-comment .category__title {
  color: #101010;
  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-comment .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-comment .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 */
  /*  */
.cc-comment .category__title--lozenge .category__title__text {
  background-color: #101010;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-comment blockquote {
  border-left-color: #cccccc;
}

.cc-comment .item__title a {
  color: #3d64be;
}
.cc-comment .item__title a:hover,
.cc-comment .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-comment p a,
.cc-comment ul li a {
  color: #3d64be;
}
.cc-comment p a:hover,
.cc-comment p a:active,
.cc-comment ul li a:hover,
.cc-comment ul li a:active {
  color: #638ae4;
}

.cc-comment .item__footer {
  color: #101010;
}
.cc-comment .item__footer a {
  color: #3d64be;
}
.cc-comment .item__footer a:hover,
.cc-comment .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-comment.category__footer h2 {
  border: 1px solid #101010;
}
.cc-comment.category__footer a {
  color: #3d64be;
}
.cc-comment.category__footer a:hover,
.cc-comment.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-blogpost {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-blogpost .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 */
  /*  */
}

/* Icons */
/*  */
.cc-blogpost .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-blogpost .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-blogpost .category__title--lozenge .category__title__text {
  background-color: #454547;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-blogpost blockquote {
  border-left-color: #cccccc;
}

.cc-blogpost .item__title a {
  color: #3d64be;
}
.cc-blogpost .item__title a:hover,
.cc-blogpost .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-blogpost p a,
.cc-blogpost ul li a {
  color: #3d64be;
}
.cc-blogpost p a:hover,
.cc-blogpost p a:active,
.cc-blogpost ul li a:hover,
.cc-blogpost ul li a:active {
  color: #638ae4;
}

.cc-blogpost .item__footer {
  color: #101010;
}
.cc-blogpost .item__footer a {
  color: #3d64be;
}
.cc-blogpost .item__footer a:hover,
.cc-blogpost .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-blogpost.category__footer h2 {
  border: 1px solid #101010;
}
.cc-blogpost.category__footer a {
  color: #3d64be;
}
.cc-blogpost.category__footer a:hover,
.cc-blogpost.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-happenings {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-happenings .category__title {
  color: #cb0000;
  text-align: left;

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

/* Icons */
/*  */
.cc-happenings .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-happenings .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-happenings .category__title--lozenge .category__title__text {
  background-color: #cb0000;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-happenings blockquote {
  border-left-color: #cccccc;
}

.cc-happenings .item__title a {
  color: #3d64be;
}
.cc-happenings .item__title a:hover,
.cc-happenings .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-happenings p a,
.cc-happenings ul li a {
  color: #3d64be;
}
.cc-happenings p a:hover,
.cc-happenings p a:active,
.cc-happenings ul li a:hover,
.cc-happenings ul li a:active {
  color: #638ae4;
}

.cc-happenings .item__footer {
  color: #101010;
}
.cc-happenings .item__footer a {
  color: #3d64be;
}
.cc-happenings .item__footer a:hover,
.cc-happenings .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-happenings.category__footer h2 {
  border: 1px solid #101010;
}
.cc-happenings.category__footer a {
  color: #3d64be;
}
.cc-happenings.category__footer a:hover,
.cc-happenings.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-aiandml {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-aiandml .category__title {
  color: #c2a40b;
  text-align: left;

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

/* Icons */
/*  */
.cc-aiandml .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-aiandml .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-aiandml .category__title--lozenge .category__title__text {
  background-color: #c2a40b;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-aiandml blockquote {
  border-left-color: #cccccc;
}

.cc-aiandml .item__title a {
  color: #3d64be;
}
.cc-aiandml .item__title a:hover,
.cc-aiandml .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-aiandml p a,
.cc-aiandml ul li a {
  color: #3d64be;
}
.cc-aiandml p a:hover,
.cc-aiandml p a:active,
.cc-aiandml ul li a:hover,
.cc-aiandml ul li a:active {
  color: #638ae4;
}

.cc-aiandml .item__footer {
  color: #101010;
}
.cc-aiandml .item__footer a {
  color: #3d64be;
}
.cc-aiandml .item__footer a:hover,
.cc-aiandml .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-aiandml.category__footer h2 {
  border: 1px solid #101010;
}
.cc-aiandml.category__footer a {
  color: #3d64be;
}
.cc-aiandml.category__footer a:hover,
.cc-aiandml.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-humanfactors {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-humanfactors .category__title {
  color: #67c230;
  text-align: left;

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

/* Icons */
/*  */
.cc-humanfactors .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-humanfactors .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-humanfactors .category__title--lozenge .category__title__text {
  background-color: #67c230;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-humanfactors blockquote {
  border-left-color: #cccccc;
}

.cc-humanfactors .item__title a {
  color: #3d64be;
}
.cc-humanfactors .item__title a:hover,
.cc-humanfactors .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-humanfactors p a,
.cc-humanfactors ul li a {
  color: #3d64be;
}
.cc-humanfactors p a:hover,
.cc-humanfactors p a:active,
.cc-humanfactors ul li a:hover,
.cc-humanfactors ul li a:active {
  color: #638ae4;
}

.cc-humanfactors .item__footer {
  color: #101010;
}
.cc-humanfactors .item__footer a {
  color: #3d64be;
}
.cc-humanfactors .item__footer a:hover,
.cc-humanfactors .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-humanfactors.category__footer h2 {
  border: 1px solid #101010;
}
.cc-humanfactors.category__footer a {
  color: #3d64be;
}
.cc-humanfactors.category__footer a:hover,
.cc-humanfactors.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-chatbots {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-chatbots .category__title {
  color: #15b57e;
  text-align: left;

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

/* Icons */
/*  */
.cc-chatbots .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-chatbots .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-chatbots .category__title--lozenge .category__title__text {
  background-color: #15b57e;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-chatbots blockquote {
  border-left-color: #cccccc;
}

.cc-chatbots .item__title a {
  color: #3d64be;
}
.cc-chatbots .item__title a:hover,
.cc-chatbots .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-chatbots p a,
.cc-chatbots ul li a {
  color: #3d64be;
}
.cc-chatbots p a:hover,
.cc-chatbots p a:active,
.cc-chatbots ul li a:hover,
.cc-chatbots ul li a:active {
  color: #638ae4;
}

.cc-chatbots .item__footer {
  color: #101010;
}
.cc-chatbots .item__footer a {
  color: #3d64be;
}
.cc-chatbots .item__footer a:hover,
.cc-chatbots .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-chatbots.category__footer h2 {
  border: 1px solid #101010;
}
.cc-chatbots.category__footer a {
  color: #3d64be;
}
.cc-chatbots.category__footer a:hover,
.cc-chatbots.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-design {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-design .category__title {
  color: #60c3a1;
  text-align: left;

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

/* Icons */
/*  */
.cc-design .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-design .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-design .category__title--lozenge .category__title__text {
  background-color: #60c3a1;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-design blockquote {
  border-left-color: #cccccc;
}

.cc-design .item__title a {
  color: #3d64be;
}
.cc-design .item__title a:hover,
.cc-design .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-design p a,
.cc-design ul li a {
  color: #3d64be;
}
.cc-design p a:hover,
.cc-design p a:active,
.cc-design ul li a:hover,
.cc-design ul li a:active {
  color: #638ae4;
}

.cc-design .item__footer {
  color: #101010;
}
.cc-design .item__footer a {
  color: #3d64be;
}
.cc-design .item__footer a:hover,
.cc-design .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-design.category__footer h2 {
  border: 1px solid #101010;
}
.cc-design.category__footer a {
  color: #3d64be;
}
.cc-design.category__footer a:hover,
.cc-design.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-education {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-education .category__title {
  color: #16cad3;
  text-align: left;

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

/* Icons */
/*  */
.cc-education .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-education .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-education .category__title--lozenge .category__title__text {
  background-color: #16cad3;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-education blockquote {
  border-left-color: #cccccc;
}

.cc-education .item__title a {
  color: #3d64be;
}
.cc-education .item__title a:hover,
.cc-education .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-education p a,
.cc-education ul li a {
  color: #3d64be;
}
.cc-education p a:hover,
.cc-education p a:active,
.cc-education ul li a:hover,
.cc-education ul li a:active {
  color: #638ae4;
}

.cc-education .item__footer {
  color: #101010;
}
.cc-education .item__footer a {
  color: #3d64be;
}
.cc-education .item__footer a:hover,
.cc-education .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-education.category__footer h2 {
  border: 1px solid #101010;
}
.cc-education.category__footer a {
  color: #3d64be;
}
.cc-education.category__footer a:hover,
.cc-education.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-health {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-health .category__title {
  color: #00a4ad;
  text-align: left;

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

/* Icons */
/*  */
.cc-health .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-health .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-health .category__title--lozenge .category__title__text {
  background-color: #00a4ad;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-health blockquote {
  border-left-color: #cccccc;
}

.cc-health .item__title a {
  color: #3d64be;
}
.cc-health .item__title a:hover,
.cc-health .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-health p a,
.cc-health ul li a {
  color: #3d64be;
}
.cc-health p a:hover,
.cc-health p a:active,
.cc-health ul li a:hover,
.cc-health ul li a:active {
  color: #638ae4;
}

.cc-health .item__footer {
  color: #101010;
}
.cc-health .item__footer a {
  color: #3d64be;
}
.cc-health .item__footer a:hover,
.cc-health .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-health.category__footer h2 {
  border: 1px solid #101010;
}
.cc-health.category__footer a {
  color: #3d64be;
}
.cc-health.category__footer a:hover,
.cc-health.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-history {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-history .category__title {
  color: #256fc5;
  text-align: left;

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

/* Icons */
/*  */
.cc-history .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-history .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-history .category__title--lozenge .category__title__text {
  background-color: #256fc5;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-history blockquote {
  border-left-color: #cccccc;
}

.cc-history .item__title a {
  color: #3d64be;
}
.cc-history .item__title a:hover,
.cc-history .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-history p a,
.cc-history ul li a {
  color: #3d64be;
}
.cc-history p a:hover,
.cc-history p a:active,
.cc-history ul li a:hover,
.cc-history ul li a:active {
  color: #638ae4;
}

.cc-history .item__footer {
  color: #101010;
}
.cc-history .item__footer a {
  color: #3d64be;
}
.cc-history .item__footer a:hover,
.cc-history .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-history.category__footer h2 {
  border: 1px solid #101010;
}
.cc-history.category__footer a {
  color: #3d64be;
}
.cc-history.category__footer a:hover,
.cc-history.category__footer a:focus {
  color: #315098;
}
/* 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: #2567c5;
}

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

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


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

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

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

/* 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 {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-culture .category__title--lozenge .category__title__text {
  background-color: #2567c5;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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: #3d64be;
}
.cc-culture .item__title a:hover,
.cc-culture .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-culture p a,
.cc-culture ul li a {
  color: #3d64be;
}
.cc-culture p a:hover,
.cc-culture p a:active,
.cc-culture ul li a:hover,
.cc-culture ul li a:active {
  color: #638ae4;
}

.cc-culture .item__footer {
  color: #101010;
}
.cc-culture .item__footer a {
  color: #3d64be;
}
.cc-culture .item__footer a:hover,
.cc-culture .item__footer a:active {
  color: #638ae4;
}


  /* 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 #101010;
}
.cc-culture.category__footer a {
  color: #3d64be;
}
.cc-culture.category__footer a:hover,
.cc-culture.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-process {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-process .category__title {
  color: #007fc2;
  text-align: left;

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

/* Icons */
/*  */
.cc-process .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-process .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-process .category__title--lozenge .category__title__text {
  background-color: #007fc2;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-process blockquote {
  border-left-color: #cccccc;
}

.cc-process .item__title a {
  color: #3d64be;
}
.cc-process .item__title a:hover,
.cc-process .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-process p a,
.cc-process ul li a {
  color: #3d64be;
}
.cc-process p a:hover,
.cc-process p a:active,
.cc-process ul li a:hover,
.cc-process ul li a:active {
  color: #638ae4;
}

.cc-process .item__footer {
  color: #101010;
}
.cc-process .item__footer a {
  color: #3d64be;
}
.cc-process .item__footer a:hover,
.cc-process .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-process.category__footer h2 {
  border: 1px solid #101010;
}
.cc-process.category__footer a {
  color: #3d64be;
}
.cc-process.category__footer a:hover,
.cc-process.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-reality {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-reality .category__title {
  color: #0099ea;
  text-align: left;

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

/* Icons */
/*  */
.cc-reality .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-reality .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-reality .category__title--lozenge .category__title__text {
  background-color: #0099ea;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-reality blockquote {
  border-left-color: #cccccc;
}

.cc-reality .item__title a {
  color: #3d64be;
}
.cc-reality .item__title a:hover,
.cc-reality .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-reality p a,
.cc-reality ul li a {
  color: #3d64be;
}
.cc-reality p a:hover,
.cc-reality p a:active,
.cc-reality ul li a:hover,
.cc-reality ul li a:active {
  color: #638ae4;
}

.cc-reality .item__footer {
  color: #101010;
}
.cc-reality .item__footer a {
  color: #3d64be;
}
.cc-reality .item__footer a:hover,
.cc-reality .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-reality.category__footer h2 {
  border: 1px solid #101010;
}
.cc-reality.category__footer a {
  color: #3d64be;
}
.cc-reality.category__footer a:hover,
.cc-reality.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-remote {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-remote .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 */
  /*  */
}

/* Icons */
/*  */
.cc-remote .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-remote .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-remote .category__title--lozenge .category__title__text {
  background-color: #454547;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-remote blockquote {
  border-left-color: #cccccc;
}

.cc-remote .item__title a {
  color: #3d64be;
}
.cc-remote .item__title a:hover,
.cc-remote .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-remote p a,
.cc-remote ul li a {
  color: #3d64be;
}
.cc-remote p a:hover,
.cc-remote p a:active,
.cc-remote ul li a:hover,
.cc-remote ul li a:active {
  color: #638ae4;
}

.cc-remote .item__footer {
  color: #101010;
}
.cc-remote .item__footer a {
  color: #3d64be;
}
.cc-remote .item__footer a:hover,
.cc-remote .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-remote.category__footer h2 {
  border: 1px solid #101010;
}
.cc-remote.category__footer a {
  color: #3d64be;
}
.cc-remote.category__footer a:hover,
.cc-remote.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-research {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-research .category__title {
  color: #2050bb;
  text-align: left;

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

/* Icons */
/*  */
.cc-research .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-research .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-research .category__title--lozenge .category__title__text {
  background-color: #2050bb;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-research blockquote {
  border-left-color: #cccccc;
}

.cc-research .item__title a {
  color: #3d64be;
}
.cc-research .item__title a:hover,
.cc-research .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-research p a,
.cc-research ul li a {
  color: #3d64be;
}
.cc-research p a:hover,
.cc-research p a:active,
.cc-research ul li a:hover,
.cc-research ul li a:active {
  color: #638ae4;
}

.cc-research .item__footer {
  color: #101010;
}
.cc-research .item__footer a {
  color: #3d64be;
}
.cc-research .item__footer a:hover,
.cc-research .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-research.category__footer h2 {
  border: 1px solid #101010;
}
.cc-research.category__footer a {
  color: #3d64be;
}
.cc-research.category__footer a:hover,
.cc-research.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-securityprivacy {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-securityprivacy .category__title {
  color: #5032da;
  text-align: left;

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

/* Icons */
/*  */
.cc-securityprivacy .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-securityprivacy .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-securityprivacy .category__title--lozenge .category__title__text {
  background-color: #5032da;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-securityprivacy blockquote {
  border-left-color: #cccccc;
}

.cc-securityprivacy .item__title a {
  color: #3d64be;
}
.cc-securityprivacy .item__title a:hover,
.cc-securityprivacy .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-securityprivacy p a,
.cc-securityprivacy ul li a {
  color: #3d64be;
}
.cc-securityprivacy p a:hover,
.cc-securityprivacy p a:active,
.cc-securityprivacy ul li a:hover,
.cc-securityprivacy ul li a:active {
  color: #638ae4;
}

.cc-securityprivacy .item__footer {
  color: #101010;
}
.cc-securityprivacy .item__footer a {
  color: #3d64be;
}
.cc-securityprivacy .item__footer a:hover,
.cc-securityprivacy .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-securityprivacy.category__footer h2 {
  border: 1px solid #101010;
}
.cc-securityprivacy.category__footer a {
  color: #3d64be;
}
.cc-securityprivacy.category__footer a:hover,
.cc-securityprivacy.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-stats {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-stats .category__title {
  color: #8200c2;
  text-align: left;

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

/* Icons */
/*  */
.cc-stats .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-stats .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-stats .category__title--lozenge .category__title__text {
  background-color: #8200c2;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-stats blockquote {
  border-left-color: #cccccc;
}

.cc-stats .item__title a {
  color: #3d64be;
}
.cc-stats .item__title a:hover,
.cc-stats .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-stats p a,
.cc-stats ul li a {
  color: #3d64be;
}
.cc-stats p a:hover,
.cc-stats p a:active,
.cc-stats ul li a:hover,
.cc-stats ul li a:active {
  color: #638ae4;
}

.cc-stats .item__footer {
  color: #101010;
}
.cc-stats .item__footer a {
  color: #3d64be;
}
.cc-stats .item__footer a:hover,
.cc-stats .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-stats.category__footer h2 {
  border: 1px solid #101010;
}
.cc-stats.category__footer a {
  color: #3d64be;
}
.cc-stats.category__footer a:hover,
.cc-stats.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-strategy {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-strategy .category__title {
  color: #626262;
  text-align: left;

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

/* Icons */
/*  */
.cc-strategy .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-strategy .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-strategy .category__title--lozenge .category__title__text {
  background-color: #626262;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-strategy blockquote {
  border-left-color: #cccccc;
}

.cc-strategy .item__title a {
  color: #3d64be;
}
.cc-strategy .item__title a:hover,
.cc-strategy .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-strategy p a,
.cc-strategy ul li a {
  color: #3d64be;
}
.cc-strategy p a:hover,
.cc-strategy p a:active,
.cc-strategy ul li a:hover,
.cc-strategy ul li a:active {
  color: #638ae4;
}

.cc-strategy .item__footer {
  color: #101010;
}
.cc-strategy .item__footer a {
  color: #3d64be;
}
.cc-strategy .item__footer a:hover,
.cc-strategy .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-strategy.category__footer h2 {
  border: 1px solid #101010;
}
.cc-strategy.category__footer a {
  color: #3d64be;
}
.cc-strategy.category__footer a:hover,
.cc-strategy.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-voiceui {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-voiceui .category__title {
  color: #c20056;
  text-align: left;

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

/* Icons */
/*  */
.cc-voiceui .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-voiceui .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-voiceui .category__title--lozenge .category__title__text {
  background-color: #c20056;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-voiceui blockquote {
  border-left-color: #cccccc;
}

.cc-voiceui .item__title a {
  color: #3d64be;
}
.cc-voiceui .item__title a:hover,
.cc-voiceui .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-voiceui p a,
.cc-voiceui ul li a {
  color: #3d64be;
}
.cc-voiceui p a:hover,
.cc-voiceui p a:active,
.cc-voiceui ul li a:hover,
.cc-voiceui ul li a:active {
  color: #638ae4;
}

.cc-voiceui .item__footer {
  color: #101010;
}
.cc-voiceui .item__footer a {
  color: #3d64be;
}
.cc-voiceui .item__footer a:hover,
.cc-voiceui .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-voiceui.category__footer h2 {
  border: 1px solid #101010;
}
.cc-voiceui.category__footer a {
  color: #3d64be;
}
.cc-voiceui.category__footer a:hover,
.cc-voiceui.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-blastfromthepast {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-blastfromthepast .category__title {
  color: #998752;
  text-align: left;

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

/* Icons */
/*  */
.cc-blastfromthepast .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-blastfromthepast .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-blastfromthepast .category__title--lozenge .category__title__text {
  background-color: #998752;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-blastfromthepast blockquote {
  border-left-color: #cccccc;
}

.cc-blastfromthepast .item__title a {
  color: #3d64be;
}
.cc-blastfromthepast .item__title a:hover,
.cc-blastfromthepast .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-blastfromthepast p a,
.cc-blastfromthepast ul li a {
  color: #3d64be;
}
.cc-blastfromthepast p a:hover,
.cc-blastfromthepast p a:active,
.cc-blastfromthepast ul li a:hover,
.cc-blastfromthepast ul li a:active {
  color: #638ae4;
}

.cc-blastfromthepast .item__footer {
  color: #101010;
}
.cc-blastfromthepast .item__footer a {
  color: #3d64be;
}
.cc-blastfromthepast .item__footer a:hover,
.cc-blastfromthepast .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-blastfromthepast.category__footer h2 {
  border: 1px solid #101010;
}
.cc-blastfromthepast.category__footer a {
  color: #3d64be;
}
.cc-blastfromthepast.category__footer a:hover,
.cc-blastfromthepast.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-finally {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-finally .category__title {
  color: #d363dd;
  text-align: left;

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

/* Icons */
/*  */
.cc-finally .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-finally .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-finally .category__title--lozenge .category__title__text {
  background-color: #d363dd;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-finally blockquote {
  border-left-color: #cccccc;
}

.cc-finally .item__title a {
  color: #3d64be;
}
.cc-finally .item__title a:hover,
.cc-finally .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-finally p a,
.cc-finally ul li a {
  color: #3d64be;
}
.cc-finally p a:hover,
.cc-finally p a:active,
.cc-finally ul li a:hover,
.cc-finally ul li a:active {
  color: #638ae4;
}

.cc-finally .item__footer {
  color: #101010;
}
.cc-finally .item__footer a {
  color: #3d64be;
}
.cc-finally .item__footer a:hover,
.cc-finally .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-finally.category__footer h2 {
  border: 1px solid #101010;
}
.cc-finally.category__footer a {
  color: #3d64be;
}
.cc-finally.category__footer a:hover,
.cc-finally.category__footer a:focus {
  color: #315098;
}
/* Search modifier classes */
/*  */

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

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

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


.cc-other {
  background-color: #FFFFFF;
  color: #101010;
  text-align: left;
}

.cc-other .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 */
  /*  */
}

/* Icons */
/*  */
.cc-other .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-other .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-other .category__title--lozenge .category__title__text {
  background-color: #454547;
  /* Lean towards white for the lozenges */
  color: #ffffff;
}

  /* 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-other blockquote {
  border-left-color: #cccccc;
}

.cc-other .item__title a {
  color: #3d64be;
}
.cc-other .item__title a:hover,
.cc-other .item__title a:focus {
  color: #315098;
}

  /* Embedded link colors */
  /*  */

.cc-other p a,
.cc-other ul li a {
  color: #3d64be;
}
.cc-other p a:hover,
.cc-other p a:active,
.cc-other ul li a:hover,
.cc-other ul li a:active {
  color: #638ae4;
}

.cc-other .item__footer {
  color: #101010;
}
.cc-other .item__footer a {
  color: #3d64be;
}
.cc-other .item__footer a:hover,
.cc-other .item__footer a:active {
  color: #638ae4;
}


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-other.category__footer h2 {
  border: 1px solid #101010;
}
.cc-other.category__footer a {
  color: #3d64be;
}
.cc-other.category__footer a:hover,
.cc-other.category__footer a:focus {
  color: #315098;
}

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

.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(16,16,16,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: #3d64be;
  color: #3d64be;
}

/* 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 .form-control {
  border: 1px solid #0e0e0e;
  -webkit-background-clip: padding-box;
}

.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: #15b57e;
}
.header--withimage .cta--header .btn:hover,
.header--withimage .cta--header .btn:focus {
  background-color: #14ac78;
}


/* Subscription pages */
/*  */
.subscription__resubscribe__btn {
  color: #3d64be;
}
.subscription__resubscribe__btn:hover,
.subscription__resubscribe__btn:focus {
  color: #638ae4;
}


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

/* Sponsorship pages */
/*  */
.sponsorship a {
  color: #3d64be;
}
.sponsorship a:hover,
.sponsorship a:active {
  color: #638ae4;
}

.sponsorship__quicklinks {
  color: rgba(16,16,16,0.7);
}
.sponsorship__quicklinks a {
  color: rgba(16,16,16,0.7);
}
.sponsorship__quicklinks a:hover,
.sponsorship__quicklinks a:active {
  color: #0e0e0e;
}

.sponsorship__nextavailable.with_divider:before {
  border-top-color: rgba(16,16,16,0.6);
}
.sponsorship__nextavailable h4 {
  color: rgba(16,16,16,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: #101010;
}
.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(16,16,16,0.7);
}

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

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

.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: #101010;
}

.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: #101010;
  color: #ffffff;
}
.home--noissue body {
  background-color: transparent;
}
.home--noissue .footer {
  background-color: #101010;
  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();
}
@media (min-width: 760px) {
  .header--withimage .header {
    background-image: url();
  }
}

/* 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();
}
@media (min-width: 760px) {
  .home--noissue.header--withimage {
    background-image: url();
  }
}

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