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

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

/* Default .btn */
/*  */
.btn {
  background-color: #000000;
  color: #FFFFFF;
}
.btn:hover,
.btn:focus {
  background-color: #262626;
  color: #FFFFFF;
}

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

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

  color: #FFFFFF;
}

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

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

}

@media (min-width: 760px) {
  .navbar-search .form-control {
    border: 1px solid #000000;
    -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(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 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: #000000;
}

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

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


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

.cc-comment .category__title {
  color: #000000;
  text-align: left;

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

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

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-comment .category__title--lozenge .category__title__text {
  background-color: #000000;
  /* 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: #000000;
}
.cc-comment .item__title a:hover,
.cc-comment .item__title a:focus {
  color: #000000;
}

  /* Embedded link colors */
  /*  */

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

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


  /* 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 #454547;
}
.cc-comment.category__footer a {
  color: #000000;
}
.cc-comment.category__footer a:hover,
.cc-comment.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-sponsorlinks .item__heading {
  color: #ba2a2e;
}

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

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


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

.cc-sponsorlinks .category__title {
  color: #ba2a2e;
  text-align: left;

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

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

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-sponsorlinks .category__title--lozenge .category__title__text {
  background-color: #ba2a2e;
  /* 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-sponsorlinks blockquote {
  border-left-color: #cccccc;
}

.cc-sponsorlinks .item__title a {
  color: #ba2a2e;
}
.cc-sponsorlinks .item__title a:hover,
.cc-sponsorlinks .item__title a:focus {
  color: #952225;
}

  /* Embedded link colors */
  /*  */

.cc-sponsorlinks p a,
.cc-sponsorlinks ul li a {
  color: #ba2a2e;
}
.cc-sponsorlinks p a:hover,
.cc-sponsorlinks p a:active,
.cc-sponsorlinks ul li a:hover,
.cc-sponsorlinks ul li a:active {
  color: #e05054;
}

.cc-sponsorlinks .item__footer {
  color: #454547;
}
.cc-sponsorlinks .item__footer a {
  color: #ba2a2e;
}
.cc-sponsorlinks .item__footer a:hover,
.cc-sponsorlinks .item__footer a:active {
  color: #e05054;
}


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

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

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

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

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


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

.cc-international .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-international .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-international .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-international .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-international blockquote {
  border-left-color: #cccccc;
}

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

  /* Embedded link colors */
  /*  */

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

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


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-international.category__footer h2 {
  border: 1px solid #454547;
}
.cc-international.category__footer a {
  color: #000000;
}
.cc-international.category__footer a:hover,
.cc-international.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-national .item__heading {
  color: #454547;
}

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

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


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

.cc-national .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-national .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-national .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-national .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-national blockquote {
  border-left-color: #cccccc;
}

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

  /* Embedded link colors */
  /*  */

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

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


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-national.category__footer h2 {
  border: 1px solid #454547;
}
.cc-national.category__footer a {
  color: #000000;
}
.cc-national.category__footer a:hover,
.cc-national.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-nswact .item__heading {
  color: #1b75bb;
}

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

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


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

.cc-nswact .category__title {
  color: #1b75bb;
  text-align: left;

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

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

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-nswact .category__title--lozenge .category__title__text {
  background-color: #1b75bb;
  /* 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-nswact blockquote {
  border-left-color: #cccccc;
}

.cc-nswact .item__title a {
  color: #1b75bb;
}
.cc-nswact .item__title a:hover,
.cc-nswact .item__title a:focus {
  color: #165e96;
}

  /* Embedded link colors */
  /*  */

.cc-nswact p a,
.cc-nswact ul li a {
  color: #1b75bb;
}
.cc-nswact p a:hover,
.cc-nswact p a:active,
.cc-nswact ul li a:hover,
.cc-nswact ul li a:active {
  color: #419be1;
}

.cc-nswact .item__footer {
  color: #454547;
}
.cc-nswact .item__footer a {
  color: #1b75bb;
}
.cc-nswact .item__footer a:hover,
.cc-nswact .item__footer a:active {
  color: #419be1;
}


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

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

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

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

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


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

.cc-queensland .category__title {
  color: #bb4d94;
  text-align: left;

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

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

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-queensland .category__title--lozenge .category__title__text {
  background-color: #bb4d94;
  /* 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-queensland blockquote {
  border-left-color: #cccccc;
}

.cc-queensland .item__title a {
  color: #bb4d94;
}
.cc-queensland .item__title a:hover,
.cc-queensland .item__title a:focus {
  color: #963e76;
}

  /* Embedded link colors */
  /*  */

.cc-queensland p a,
.cc-queensland ul li a {
  color: #bb4d94;
}
.cc-queensland p a:hover,
.cc-queensland p a:active,
.cc-queensland ul li a:hover,
.cc-queensland ul li a:active {
  color: #e173ba;
}

.cc-queensland .item__footer {
  color: #454547;
}
.cc-queensland .item__footer a {
  color: #bb4d94;
}
.cc-queensland .item__footer a:hover,
.cc-queensland .item__footer a:active {
  color: #e173ba;
}


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

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

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

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

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


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

.cc-southaustralia .category__title {
  color: #f15858;
  text-align: left;

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

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

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-southaustralia .category__title--lozenge .category__title__text {
  background-color: #f15858;
  /* 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-southaustralia blockquote {
  border-left-color: #cccccc;
}

.cc-southaustralia .item__title a {
  color: #f15858;
}
.cc-southaustralia .item__title a:hover,
.cc-southaustralia .item__title a:focus {
  color: #c14646;
}

  /* Embedded link colors */
  /*  */

.cc-southaustralia p a,
.cc-southaustralia ul li a {
  color: #f15858;
}
.cc-southaustralia p a:hover,
.cc-southaustralia p a:active,
.cc-southaustralia ul li a:hover,
.cc-southaustralia ul li a:active {
  color: #cd4b4b;
}

.cc-southaustralia .item__footer {
  color: #454547;
}
.cc-southaustralia .item__footer a {
  color: #f15858;
}
.cc-southaustralia .item__footer a:hover,
.cc-southaustralia .item__footer a:active {
  color: #cd4b4b;
}


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

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

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

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

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


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

.cc-tasmania .category__title {
  color: #aed12d;
  text-align: left;

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

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

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

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

.cc-tasmania .item__title a {
  color: #aed12d;
}
.cc-tasmania .item__title a:hover,
.cc-tasmania .item__title a:focus {
  color: #8ba724;
}

  /* Embedded link colors */
  /*  */

.cc-tasmania p a,
.cc-tasmania ul li a {
  color: #aed12d;
}
.cc-tasmania p a:hover,
.cc-tasmania p a:active,
.cc-tasmania ul li a:hover,
.cc-tasmania ul li a:active {
  color: #94b226;
}

.cc-tasmania .item__footer {
  color: #454547;
}
.cc-tasmania .item__footer a {
  color: #aed12d;
}
.cc-tasmania .item__footer a:hover,
.cc-tasmania .item__footer a:active {
  color: #94b226;
}


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

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

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

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

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


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

.cc-victoria .category__title {
  color: #f8810b;
  text-align: left;

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

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

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-victoria .category__title--lozenge .category__title__text {
  background-color: #f8810b;
  /* 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-victoria blockquote {
  border-left-color: #cccccc;
}

.cc-victoria .item__title a {
  color: #f8810b;
}
.cc-victoria .item__title a:hover,
.cc-victoria .item__title a:focus {
  color: #c66709;
}

  /* Embedded link colors */
  /*  */

.cc-victoria p a,
.cc-victoria ul li a {
  color: #f8810b;
}
.cc-victoria p a:hover,
.cc-victoria p a:active,
.cc-victoria ul li a:hover,
.cc-victoria ul li a:active {
  color: #d36e09;
}

.cc-victoria .item__footer {
  color: #454547;
}
.cc-victoria .item__footer a {
  color: #f8810b;
}
.cc-victoria .item__footer a:hover,
.cc-victoria .item__footer a:active {
  color: #d36e09;
}


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

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

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

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

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


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

.cc-westernaustralia .category__title {
  color: #feb61f;
  text-align: left;

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

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

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

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

.cc-westernaustralia .item__title a {
  color: #feb61f;
}
.cc-westernaustralia .item__title a:hover,
.cc-westernaustralia .item__title a:focus {
  color: #cb9219;
}

  /* Embedded link colors */
  /*  */

.cc-westernaustralia p a,
.cc-westernaustralia ul li a {
  color: #feb61f;
}
.cc-westernaustralia p a:hover,
.cc-westernaustralia p a:active,
.cc-westernaustralia ul li a:hover,
.cc-westernaustralia ul li a:active {
  color: #d89b1a;
}

.cc-westernaustralia .item__footer {
  color: #454547;
}
.cc-westernaustralia .item__footer a {
  color: #feb61f;
}
.cc-westernaustralia .item__footer a:hover,
.cc-westernaustralia .item__footer a:active {
  color: #d89b1a;
}


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

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

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

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

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


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

.cc-dealernews .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-dealernews .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-dealernews .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-dealernews .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-dealernews blockquote {
  border-left-color: #cccccc;
}

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

  /* Embedded link colors */
  /*  */

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

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


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-dealernews.category__footer h2 {
  border: 1px solid #454547;
}
.cc-dealernews.category__footer a {
  color: #000000;
}
.cc-dealernews.category__footer a:hover,
.cc-dealernews.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-bikesforsale .item__heading {
  color: #000000;
}

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

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


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

.cc-bikesforsale .category__title {
  color: #000000;
  text-align: left;

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

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

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-bikesforsale .category__title--lozenge .category__title__text {
  background-color: #000000;
  /* 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-bikesforsale blockquote {
  border-left-color: #cccccc;
}

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

  /* Embedded link colors */
  /*  */

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

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


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-bikesforsale.category__footer h2 {
  border: 1px solid #454547;
}
.cc-bikesforsale.category__footer a {
  color: #000000;
}
.cc-bikesforsale.category__footer a:hover,
.cc-bikesforsale.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-andfinally .item__heading {
  color: #454547;
}

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

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


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

.cc-andfinally .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-andfinally .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-andfinally .category__title img {
  }
}

  /* If category lozenge is selected for this category header style output styles */
  /*  */
.cc-andfinally .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-andfinally blockquote {
  border-left-color: #cccccc;
}

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

  /* Embedded link colors */
  /*  */

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

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


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

  /* Sponsored category footer on issue page */
  /*  */
.cc-andfinally.category__footer h2 {
  border: 1px solid #454547;
}
.cc-andfinally.category__footer a {
  color: #000000;
}
.cc-andfinally.category__footer a:hover,
.cc-andfinally.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 .form-control {
  border: 1px solid #000000;
  -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: #000000;
}
.header--withimage .cta--header .btn:hover,
.header--withimage .cta--header .btn:focus {
  background-color: #000000;
}


/* 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: #000000;
  color: #FFFFFF;
}
.home--noissue body {
  background-color: transparent;
}
.home--noissue .footer {
  background-color: #000000;
  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;
}
