/* ******************************
Base styles for CER sites
21/09/2018 CER branding styles - colours, spacing etc.
********************************* */
/*primary colours*/
.bg-pri-grey100 {
                background-color:#383A42;
                color:#ffffff !important;
}
.bg-pri-grey75 {
                background-color:#63666A;
                color:#ffffff !important;  /*limit use: text colour best for a11y but still barely passes*/
}
.bg-pri-grey50 {
                background-color:#a3a5a8;
                color:#000000 !important;
}
.bg-pri-grey25 {
                background-color:#c7c9c7;
                color:#000000 !important;
}
.bg-pri-grey10 {
                background-color:#dfe0de;
                color:#000000 !important;
}

.bg-pri-blue100 {
                background-color:#003D4C;
                color:#ffffff !important;
}
.bg-pri-blue75 {
                background-color:#005874;
                color:#ffffff !important;
}
.bg-pri-blue50 {
                background-color:#007396;
                color:#ffffff !important; /*limit use: text colour best for a11y but still barely passes*/
}
.bg-pri-blue25 {
                background-color:#00a7d3;
                color:#000000 !important;
}
.bg-pri-blue10 {
                background-color:#82c5d8;
                color:#000000 !important;
}

/*secondary colours*/
.bg-sec-aqua100 {
                background-color:#006d68;
                color:#ffffff !important; /*limit use: text colour best for a11y but still barely passes*/
}
.bg-sec-aqua75 {
                background-color:#00968F;
                color:#000000 !important; /*limit use: text colour best for a11y but still barely passes*/
}
.bg-sec-aqua50 {
                background-color:#41bfb6;
                color:#000000 !important;
}
.bg-sec-aqua25 {
                background-color:#86d0cb;
                color:#000000 !important;
}
.bg-sec-aqua10 {
                background-color:#bfe3d8;
                color:#000000 !important;
}

.bg-sec-biege100 {
                background-color:#696158;
                color:#ffffff !important;
}
.bg-sec-biege75 {
                background-color:#8c857b;
                color:#000000 !important; /*limit use: text colour best for a11y but still barely passes*/
}
.bg-sec-biege50 {
                background-color:#ede939;
                color:#000000 !important;
}
.bg-sec-biege25 {
                background-color:#d2ce9e;
                color:#000000 !important;
}
.bg-sec-biege10 {
                background-color:#eeebe0;
                color:#000000 !important;
}

/*spacing*/
.pad {
 padding: 15px;
}
.pad-top {
	padding-top: 15px;
}
.pad-right {
	padding-right: 15px;
}
.pad-bottom {
	padding-bottom: 15px;
}
.pad-left {
	padding-left: 15px;
}
.nopad {
	padding: 0px !important;
}

.margin {
 padding: 20px;
}
.margin-top {
	padding-top: 20px;
}
.margin-right {
	padding-right: 20px;
}
.margin-bottom {
	padding-bottom: 20px;
}
.margin-left {
	padding-left: 20px;
}
.nomargin {
	margin:0 !important;
}

/*21/09/2018 JB: styles for a box with a darker background + pointed edge*/
div.box2 {
  background-color:#C7C9C7;
  color:#000000;
}
.box-edge {
  border-radius: 10px 10px 10px 0;
}
  @media (max-width: 870px) {
  .box-edge {
  border-radius: 0 10px 0 0;
  }
}

/*21/09/2018 JB: new step box to align the heading and steps*/
.infobox-heading {
	padding: 10px 20px;
	width: 30%;
}

.infobox-steps {
  float: left;
  margin-left: 20px;
  width: 60%;
  padding: 5px;
}
@media (max-width: 870px) {
  .infobox-heading {
    width: 100% !important;
  }

  .infobox-steps {
  	float:none;
  	margin:auto;
  	padding:0px;
  	width: 100% !important;
  }
}


/* 2018-07-10 || Added extra styling for non-stepped boxes. */
.boxOfSteps.fullWidth {
   display: block;
   width: 80%;
}
.boxOfSteps .infoBox {
  position: relative;
  background: white;
  border-radius: 10px 10px 10px 0px;
  margin: 10px -5px;
  /* padding: 10px; */
  transition: .07s ease-in-out;
  height: auto;
  text-align: left;
}
.boxOfSteps h3 {
  color: #006884 !important;
}
.boxOfSteps .stepBox.active {
  background: #005874;
}
.boxOfSteps .stepBox.active * {
  color: white;
}
@media (max-width: 992px) {
  .boxOfSteps .stepBox {
    height: auto;
  }
}
@media (max-width: 768px) {
  /* Use the below selector if we want to move the anchor from the outside of the .stepBox, to inside it.
  .boxOfSteps :nth-child(1n) :nth-child(n+2):nth-last-child(n+2) :nth-child(1n)::after {
     Use the below selector if we want to move the anchor from the col-* to outside of the .stepBox.
 .boxOfSteps :nth-child(1n) :nth-child(n+2):nth-last-child(n+3) :nth-child(1n) > :nth-child(1n)::after {
 */
 /*
    .boxOfSteps .row [class^="col"]:nth-child(n+2):nth-last-child(n+3)::after {
 */
 .boxOfSteps .nextLine {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    z-index: 1;
    border-left: 2px solid black;
    height: 20px;
  }
  /* 2018-07-10 || Added extra styling for non-stepped boxes. */
  .boxOfSteps.fullWidth {
  width: 100%;
 }
}
.boxOfSteps a .stepBox:hover {
  background: #82C5D8;
}
.boxOfSteps a .stepBox:hover * {
  color: #072B31;
}
.boxOfSteps .stepBox * {
  font-size: 12px !important;
  line-height: 1.3 !important;
  color: rgb(56, 58, 66);
}
.boxOfSteps .stepBox strong {
  font-size: 14px;
  font-family: museosans500;
  margin: 4px 0 2px;
  display: inline-block;
  color: #006884;
}

/* ******************************
Corporate plan 2018-20
2018-08-22
Styling CSS for the 2018-20 Corporate Plan
********************************* */

.corpPlan-2018 {
	margin: 30px 0;
}

.corpPlan-2018 > * {
    margin: 40px 0;
}

.corpPlan-2018 h1,
.corpPlan-2018 h2,
.corpPlan-2018 h3,
.corpPlan-2018 h4,
.corpPlan-2018 h5 {
    all: unset;
    color: #005874 !important;
    position: relative;
    z-index: 10;
		margin: 10px 0 20px;
		line-height: 1.3 !important;
}
.corpPlan-2018 h2 {
	font-size: 30px !important;
}
.corpPlan-2018 h3 {
	font-size: 25px !important;
}
.corpPlan-2018 p,
.corpPlan-2018 ul li {
    position: relative;
    z-index: 10;
}
.corpPlan-2018 ul li {
	list-style-type: none;
}
.corpPlan-2018 ul:not(.nav-tabs) li::before {
	font-family: FontAwesome;
	font-size: 80%;
	content: "\f054";
	display: inline-block;
	margin-left: -16px;
	padding-right: 6px;
}
.corpPlan-2018 > a img {
	width: 100%;
}
.corpPlan-2018 > .photo {
  margin: 10px;
  margin-left: 0;
  margin-right: 50px;
	border-radius: 0 50px 50px 0;
	min-height: 500px;
	min-width: 500px;
	background-size: cover;
}

.corpPlan-2018 > .photo#hills {
	background-image: url('/PublishingImages/corporate-plans/2018-22/Hills.jpg');
	background-position: bottom;
}
.corpPlan-2018 > .photo#windmill {
	background-image: url('/PublishingImages/corporate-plans/2018-22/Windmill.jpg');
	background-position: center;
}
.corpPlan-2018.summaryPage {
	position: relative;
	padding:0 30px 30px;
	background: radial-gradient(#00968F,#005874);
}
.corpPlan-2018.summaryPage::after {
	content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image:url('/PublishingImages/corporate-plans/2018-22/O6DXT81.png');
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: 1400px;
	mix-blend-mode: multiply;
}
.corpPlan-2018.summaryPage > * {
	margin: 0;
}
.corpPlan-2018.summaryPage > span {
	position: relative;
	display: block;
	margin-bottom: 20px;
	padding-top: 20px;
	z-index: 3;
	color: white !important;
	font-family: Museosans300 !important;
	font-size: 120%;
	text-transform: uppercase;
}
.corpPlan-2018.summaryPage .nav-tabs {
	margin: 0 20px;
}
.corpPlan-2018.summaryPage .nav-tabs a {
    background-color: #dfe0de !important;
    border-radius: 5px 5px 0 0;
    margin-right: 4px;
}
.corpPlan-2018.summaryPage .nav-tabs a:hover,
.corpPlan-2018.summaryPage .nav-tabs .active a {
    background-color: white !important;
    border-radius: 5px 5px 0 0;
    margin-right: 4px;
}
.corpPlan-2018.summaryPage .tab-content {
	position: relative;
	padding: 20px;
	background-color: rgba(255,255,255,1);
	border-radius: 20px;
	z-index: 2;
}
.corpPlan-2018.summaryPage .tab-content .previous {
    float: left;
}
.corpPlan-2018.summaryPage .tab-content .next {
    float: right;
}
.corpPlan-2018.summaryPage .btn-container {
    margin-bottom: 10px;
}
.corpPlan-2018.summaryPage .tab-content h2:first-of-type {
	clear: both;
}
.corpPlan-2018.summaryPage .stratYears .row h4 {
    font-family: Museosans300 !important;
		font-size: 20pt !important;
}
.corpPlan-2018.summaryPage .stratYears .row h4 span {
    font-family: Museosans700 !important;
}
.corpPlan-2018 .membersContainer {
	position: relative;
	/*! padding: 10px; */
}
.corpPlan-2018 .membersContainer::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    height: calc(100% - 40px);
    width: calc(100% - 40px);
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}
.corpPlan-2018 .members {
  border-radius: 20px;
  padding: 30px 20px;
  position: relative;
  background-color: #00a7d3;
  background: radial-gradient(#00968F,#005874);
  overflow: hidden;
  margin: 20px 0 10px;
}

.corpPlan-2018 .members::after {
  content:"";
  position: absolute;
  top:0;
  left:0;
  width: 1200px;
  height: 1200px;
  transform: rotate(90deg);
  background-image:url('/PublishingImages/corporate-plans/2018-22/O6DXT81.png');
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 30%;
	mix-blend-mode: multiply;
}
.corpPlan-2018 .members h2 {
  color: white !important;
  position: relative;
	line-height: 1.3 !important;
	font-family: museosans300 !important;
}
.corpPlan-2018 .members h2 span {
  display: block;
}
.corpPlan-2018 .membersContainer .photo {
	position: absolute;
	top: -30px;
	right: calc(20% - 100px);
	height: 200px;
	width: 200px;
	background-size: cover;
	background-position: center;
	border-radius: 20px;
	float: right;
	z-index: 1;
}
.corpPlan-2018 .membersContainer#chair h2 {
	text-transform: uppercase;
}
.corpPlan-2018 .membersContainer#chair .photo {
	background-image: url('/PublishingImages/corporate-plans/2018-22/David.png');
}
.corpPlan-2018 .membersContainer#virginia .photo {
	background-image: url('/PublishingImages/corporate-plans/2018-22/Virginia.png');
}
.corpPlan-2018 .membersContainer#peter .photo {
	background-image: url('/PublishingImages/corporate-plans/2018-22/Peter.png');
}
.corpPlan-2018 .membersContainer#michael .photo {
	background-image: url('/PublishingImages/corporate-plans/2018-22/Michael.png');
}
.corpPlan-2018 .membersContainer#anne .photo {
	background-image: url('/PublishingImages/corporate-plans/2018-22/Anne.png');
}
.corpPlan-2018 .memberaof {
		font-family: Museosans700;
		margin-bottom: 10px;
		display: block;
}
.corpPlan-2018 .overviewContainer * {
    color: white !important;
}
.corpPlan-2018 .overviewContainer {

    padding: 10% 12%;
    position: relative;
		background-color: #00a7d3;
    background: radial-gradient(#00968F,#005874);

}
.corpPlan-2018 .overviewContainer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image:url('/PublishingImages/corporate-plans/2018-22/O6DXT81.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
		mix-blend-mode: multiply;
}
.corpPlan-2018 .overview {
    background: rgba(0,0,0,0.4);
    padding: 5% 15%;
    position: relative;
    z-index: 1;
}
.corpPlan-2018 .overview .largeList {
    font-size: 150%;
		margin: 20px 0 !important;
}
.corpPlan-2018 .overview .largeText {
	font-size: 150%;
	line-height: 1.5;
	padding-top: 10px;
	display: block;
}
.corpPlan-2018 .ourAgencySchemes,
.corpPlan-2018 .stratYears {
    position: relative;
    overflow: hidden;
}
.corpPlan-2018 .ourAgencySchemes::before,
.corpPlan-2018 .stratYears::before {
    content: "";
    position: absolute;
    top: 0;
    right: 75%;
    height: 100%;
    width: 25%;
		background-color: #00a7d3;
    background: radial-gradient(#00968F,#005874);
    border-radius: 20px;
}
.corpPlan-2018 .ourAgencySchemes::after,
.corpPlan-2018 .stratYears::after {
    content: "";
    position: absolute;
    top: 0;
    right: 75%;
    height: 100%;
    width: 25%;
		border-radius: 20px;
    background-image:url('/PublishingImages/corporate-plans/2018-22/O6DXT81.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1200px;
		mix-blend-mode: multiply;
}
.corpPlan-2018 .ourAgencySchemes h2 {
    font-family: Museosans900 !important;
    line-height: 1.1 !important;
}
.corpPlan-2018 .ourAgencySchemes h2 span {
    font-family: Museosans300 !important;
    display: block;
}
.corpPlan-2018 .ourAgencySchemes .quote {
	margin-left:30px;
	font-style: italic;
}
.corpPlan-2018 .ourAgencySchemes .row,
.corpPlan-2018 .stratYears .row {
    position: relative;
}
.corpPlan-2018 .ourAgencySchemes .row [class^=col]:first-child *,
.corpPlan-2018 .stratYears .row [class^=col]:first-child * {
    position: relative;
    z-index: 10;
    color: white !important;
}
.corpPlan-2018 .ourAgencySchemes .row [class^=col]:nth-child(2),
.corpPlan-2018 .stratYears .row [class^=col]:nth-child(2) {
    padding-top: 15px;
		padding-left: 5%;
}
.corpPlan-2018 .ourAgencySchemes .row:nth-child(1n+2) [class^=col]:nth-child(1)::after,
.corpPlan-2018 .stratYears .row:nth-child(1n+2) [class^=col]:nth-child(1)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -8px;
    height: 100%;
    width: 150px;
    border-top: 1px solid white;
    z-index: 2;
}
.corpPlan-2018 .ourAgencySchemes .row:nth-child(1n+2) [class^=col]:nth-child(2)::after,
.corpPlan-2018 .stratYears .row:nth-child(1n+2) [class^=col]:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 8px;
    height: 100%;
    width: 150px;
    border-top: 1px solid #383a42;
    z-index: 2;
}
.corpPlan-2018 .ourAgencySchemes .row [class^=col]:first-child h2,
.corpPlan-2018 .ourAgencySchemes .row [class^=col]:first-child h3,
.corpPlan-2018 .ourAgencySchemes .row [class^=col]:first-child h4,
.corpPlan-2018 .stratYears .row [class^=col]:first-child h2,
.corpPlan-2018 .stratYears .row [class^=col]:first-child h3,
.corpPlan-2018 .stratYears .row [class^=col]:first-child h4 {
    padding: 20px;
    text-align: right;
}
.corpPlan-2018 .stratYears {
    background-color: #c7c9c7;
    border-radius: 20px;
}
.corpPlan-2018 .stratYears .row h3 {
    font-family: Museosans300 !important;
}
.corpPlan-2018 .stratYears .row h3 span {
    font-family: Museosans700 !important;
}
.corpPlan-2018 .stratYears ul {
		padding-right: 20px;
}
.corpPlan-2018 .operating {
		position: relative;
}
.corpPlan-2018 .operating .row {
	overflow: hidden;
}
.corpPlan-2018 .operating h3 {
    color: white !important;
    position: relative;
    z-index: 1;
    padding: 20px 10px;
}
.corpPlan-2018 .operating h4 {
	font-family: museosans700 !important;
	font-size: 20px !important;
}
.corpPlan-2018 .operating #header {
		background-color: #005874;
    background: radial-gradient(#00968F,#005874);
    border-radius: 20px;
    position: relative;
		border-bottom: 1px solid white;
}
.corpPlan-2018 .operating #header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 300px;
    width: 100%;
    background-image:url('/PublishingImages/corporate-plans/2018-22/O6DXT81.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
		mix-blend-mode: multiply;
}
.corpPlan-2018 .operating #header [class^=col]:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    right: -1px;
    height: 100%;
    width: 100%;
    border-right: 1px solid white;
}
.corpPlan-2018 .operating .row:nth-child(1n+2) {
    position: relative;
		padding-top: 10px;
}
.corpPlan-2018 .operating .row:nth-child(1n+2)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 2000px;
    width: 25%;
    background-color: #dfe0de;
}
.corpPlan-2018 .operating .row:nth-child(1n+2) [class^=col]:first-child *{
    color: #383a42 !important;
		padding-top: 20px;
}
.corpPlan-2018 .operating .row:nth-child(1n+3) [class^=col]:nth-child(1)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    border-top: 1px solid white;
}
.corpPlan-2018 .operating .row:nth-child(1n+3) [class^=col]:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    border-top: 1px solid black;
}
.corpPlan-2018 .operating p {
	padding-top: 20px;
}
.corpPlan-2018 .blandPage {
    position: relative;
    overflow: hidden;
    padding-right: 10%;
		margin-top: 0;
}
.corpPlan-2018 .blandPage::before {
    content: "";
    position: absolute;
    bottom: calc(100% - 250px);
    left: 90%;
    height: 100%;
    width: 100%;
		border-radius: 0 0 0 20px;
    background: radial-gradient(#00968F,#005874);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 500px;
}
.corpPlan-2018 .blandPage::after {
    content: "";
    position: absolute;
    bottom: calc(100% - 250px);
    left: 90%;
    height: 100%;
    width: 100%;
		border-radius: 0 0 0 20px;
    background-image:url('/PublishingImages/corporate-plans/2018-22/O6DXT81.png');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 300px;
}
.corpPlan-2018 .blandPage strong {
	color: #005874;
}
.corpPlan-2018 .stratCompliance,
.corpPlan-2018 .stratYears,
.corpPlan-2018 .stratQuote {
	margin: 20px 0;
}
.corpPlan-2018 .stratCompliance {
    background-color: #dfe0de;
    border: 1px solid #63666a;
    border-radius: 20px;
    padding: 20px;
}
.corpPlan-2018 .stratQuote {
  	margin-top: 50px;
    padding: 10px;
    border-top: 1px solid #63666a;
    border-bottom: 1px solid #63666a;
		color: #005874;
}
.corpPlan-2018 .stratQuote span {
	font-family: MuseoSans700;
}
.corpPlan-2018 .stratQuote .photo {
    float: right;
    height: 200px;
    width: 200px;
    margin-top:-30px;
    margin-right: -10px;
		margin-bottom: 20px;
		margin-left: 20px;
    border: 1px solid #63666a;
    border-radius: 20px;
    background-color: white;
		background-size: cover;
    background-position: top center;
}
.corpPlan-2018 .stratQuote .photo#geoff {
	background-image: url('/PublishingImages/corporate-plans/2018-22/geoff.png');
}
.corpPlan-2018 .stratQuote .photo#chris {
	background-image: url('/PublishingImages/corporate-plans/2018-22/chris.png');
	height: 300px;
	width: 250px;
}
.corpPlan-2018 .stratQuote .photo#mark {
	background-image: url('/PublishingImages/corporate-plans/2018-22/mark.png');
	height: 250px;
}
.corpPlan-2018 .stratQuote .photo#shayleen {
	background-image: url('/PublishingImages/corporate-plans/2018-22/shayleen.png');
	height: 250px;
}
.corpPlan-2018 .bold {
    font-family: MuseoSans900;
}

/***** Responsive design CSS ******/

@media (max-width: 768px) {
	.corpPlan-2018 .membersContainer .photo {
		position: initial;
		height: 150px;
		width: 150px;
		margin-bottom: 6px;
		margin-left: 6px;
	}
	.corpPlan-2018 .stratQuote .photo {
		height: 150px;
		width: 150px;
		margin-bottom: 6px;
		margin-left: 6px;
	}
	.corpPlan-2018 .overviewContainer {
		padding: 0%;
	}
	.corpPlan-2018 .overview {
		padding: 20px;
	}
	.corpPlan-2018 .operating .row:nth-child(1n+2)::before {
    background-color: transparent;
	}
	.corpPlan-2018 .operating .row:nth-child(n+3) [class^="col"]:nth-child(2)::after {
		border-top: none;
	}
	.corpPlan-2018 .ourAgencySchemes::before,
	.corpPlan-2018 .stratYears::before {
		background: none;
	}
	.corpPlan-2018 .ourAgencySchemes::after,
	.corpPlan-2018 .stratYears::after {
		background-image: none;
	}
	.corpPlan-2018 .ourAgencySchemes .row:nth-child(n+2) [class^="col"]:nth-child(1)::after,
	.corpPlan-2018 .stratYears .row:nth-child(n+2) [class^="col"]:nth-child(1)::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 1200px;
		height: 1200px;
		transform: rotate(90deg);
		background-image: url('/PublishingImages/corporate-plans/2018-22/O6DXT81.png');
		background-repeat: no-repeat;
		background-position: bottom left;
		background-size: 50%;
		mix-blend-mode: multiply;
	}
	.corpPlan-2018 .ourAgencySchemes .row:nth-child(n+2) [class^="col"]:nth-child(2)::after,
	.corpPlan-2018 .stratYears .row:nth-child(n+2) [class^="col"]:nth-child(2)::after {
		border: none;
	}
	.corpPlan-2018 .ourAgencySchemes .row [class^="col"]:first-child,
	.corpPlan-2018 .stratYears .row [class^="col"]:first-child {
		position: relative;
		overflow: hidden;
	}
	.corpPlan-2018 .ourAgencySchemes .row [class^="col"]:first-child::before,
		.corpPlan-2018 .stratYears .row [class^="col"]:first-child::before {
		  content: "";
	    position: absolute;
	    top: 0;
	    left: 0;
		  width: 100%;
		  height: 100%;
		  background: radial-gradient(#00968F, #003d4C);
	}
	.corpPlan-2018 .ourAgencySchemes .row [class^="col"]:first-child::after,
	.corpPlan-2018 .stratYears .row [class^="col"]:first-child::after {
		  content: "";
	    position: absolute;
	    top: 0;
	    left: 0;
		  width: 1200px;
		  height: 1200px;
		  transform: rotate(90deg);
	    background-image:url('/PublishingImages/corporate-plans/2018-22/O6DXT81.png');
	    background-repeat: no-repeat;
	    background-position: bottom left;
	    background-size: 50%;
			mix-blend-mode: multiply;
	}
	.corpPlan-2018 .ourAgencySchemes .row [class^="col"]:first-child h2,
	.corpPlan-2018 .ourAgencySchemes .row [class^="col"]:first-child h3,
	.corpPlan-2018 .ourAgencySchemes .row [class^="col"]:first-child h4,
	.corpPlan-2018 .stratYears .row [class^="col"]:first-child h2,
	.corpPlan-2018 .stratYears .row [class^="col"]:first-child h3,
	.corpPlan-2018 .stratYears .row [class^="col"]:first-child h4 {
		text-align: left;
	}
	.corpPlan-2018 .stratYears {
		background-color: transparent;
	}
}

/* ******************************
Annual report 2017-18
2018-10-25
Styling CSS for the 2017-18 Annual report
********************************* */

/*
General styling - Headings, text, etc.
*/
.annualreport1718 {
  margin: 20px 0;
}
.annualreport1718 * strong {
  font-family: museosans700;
  font-weight: normal !important;
}
.annualreport1718 h2,
.annualreport1718 h3 {
  font-family: Museosans500 !important;
  color: rgba(16,93,129,1) !important;
  line-height: 1.2;
}
.annualreport1718 h2 {
  font-size: 30pt;
}
.annualreport1718 h3 {
  font-size: 25pt;
}
.annualreport1718 table .fa {
  font-size: 12pt;
}
.annualreport1718 figcaption {
  margin: 10px 0 5px;
  color:rgba(16,93,129,1);
  padding:0;
}
.annualreport1718 figcaption ._00-COND-BLUE {
  font-family: museosans900;
}
.annualreport1718 .extraBold-allCaps {
  text-transform: uppercase;
  font-family: museosans700 !important;
}
.annualreport1718 .tabMark {
  display: block;
  margin-left: 1em;
}
.annualreport1718 .footnotes .fa {
  font-family: fontawesome !important;
}
/*
Table styling, including custom tables
*/
.annualreport1718:not(figure) > table {
  margin-bottom: 20px;
  overflow-x: auto;
  width: 100%;
}
.annualreport1718 table.sr-only {
  top:-99999px;
  left:-99999px;
}
.annualreport1718 .tableHeader {
	background-color:rgba(16,93,129,1);
	padding:20px 0px;
	text-align: center;
	margin-top:20px;
}
.annualreport1718 .tableHeader h2,
.annualreport1718 .tableHeader h3 {
	margin: 0 !important;
	padding: 0 !important;
	color: white !important;
	text-transform: uppercase;
}
.annualreport1718 .complianceColumn h4 {
    background-color: rgba(16,93,129,.6);
    padding: 15px;
    margin: 0 -15px 15px;
}
.annualreport1718 table thead {
	background-color:rgba(16,93,129,1);
	color: white !important;
  border: 1px solid rgba(16,93,129,.8);
  border-collapse: separate;
  vertical-align: bottom;
  text-transform: uppercase;
  font-family: museosans700;
  font-weight: 100;
}
.annualreport1718 table thead h2,
.annualreport1718 table thead h3,
.annualreport1718 table thead h4 {
	margin: 0 !important;
	padding: 0 !important;
	color: white !important;
	text-transform: uppercase;
}
.annualreport1718 table th {
	padding: 7px 8px;
	border: 1px solid  rgba(16,93,129,.8);
}
.annualreport1718 table th a {
  color: white !important;
}
.annualreport1718 table td {
	border: 1px solid rgba(16,93,129,.8);
	border-left: 0px;
	border-right: 0px;
	padding: 2px 10px;
	vertical-align: top;
}
/*
Commenting this out during review, in case it isn't wanted.

.annualreport1718 table.centreAli tr th:nth-child(n+2),
.annualreport1718 table.centreAli tr td:nth-child(n+2) {
  text-align: center;
}
.annualreport1718 table.rightAli tr th:nth-child(n+2),
.annualreport1718 table.rightAli tr td:nth-child(n+2) {
  text-align: right;
}
*/
.annualreport1718 table.vertCol td {
	border: 1px solid rgba(16,93,129,.8);
}
.annualreport1718 table.firstCol tr td:first-child {
  background-color:rgba(16,93,129,.8);
  color: white;
  font-family: museosans300;
}
.annualreport1718 table.firstCol tr td:first-child a {
  color: white !important;
}
.annualreport1718 table.totalCol tr td:last-child,
.annualreport1718 table.totalRow tr:last-child td  {
  font-family: museosans700;
}
.annualreport1718 table.firstColDark tr td:first-child {
  background-color:rgba(16,93,129,1);
  color: white;
  font-family: museosans700;
}
.annualreport1718 table th .footnote {
  color: white;
}
/*
Images, figures, and graphs
*/
.annualreport1718 figure img {
  display: inline-block;
  margin: 5px 0 20px;
  width: 100%;
  max-width: 800px;
}
.annualreport1718 figure#figure1 img {
   max-width: 550px;
}
.annualreport1718 figure#figure2 img {
   max-width: 400px;
   background-color: white;
}
.annualreport1718 figure#figure5 img {
   max-width: 600px;
}
.annualreport1718 figure#figure6 img {
   max-width: 400px;
}
.annualreport1718 figure#figure7 img {
   max-width: 700px;
}
.annualreport1718 figure#figure9 img {
   max-width: 550px;
}
.annualreport1718 figure#figure10 img {
   max-width: 800px;
}
.annualreport1718 figure#figure11 img {
   max-width: 600px;
}
.annualreport1718 figure#figure12 img {
   max-width: 700px;
}
.annualreport1718 figure#figure13 img {
   max-width: 450px;
}
.annualreport1718 figure#figure14 img {
   max-width: 400px;
}
.annualreport1718 figure#figure15 img {
   max-width: 600px;
}
/*
Decorative image on About Us page
*/
.annualreport1718 .decorativeImage {
  width: 100%;
  height: 400px;
  position: relative;
  margin:0 0 50px;
}
.annualreport1718 .decorativeImage#capitalWindFarm {
  background-image: url('/PublishingImages/Annual%20report%202017-18/page_iii_image_Capital_Wind_Farm.jpg');
  background-position-y: 10%;
  background-position-x: 40%;
}
.annualreport1718 .decorativeImage .photoCaption {
  position: absolute;
  top:calc(100% + 5px);
  font-family: museosans100;
  font-style: italic;
}
/*
Custom hand-made elements
*/

/*
Performance page styling
*/
.annualreport1718 .performanceObjective {
  font-family: museosans900;
  text-transform: uppercase;
}
.annualreport1718 table.performanceTable th {
  border: 0px solid rgba(16,93,129,.8);
  font-family: museosans700;
  vertical-align: middle;
}
.annualreport1718 table.performanceTable thead tr:nth-child(2) th {
  font-family: museosans100;
  font-weight: normal;
  text-transform: initial;
}
.annualreport1718 table.performanceTable td {
  border: 1px solid rgba(16,93,129,.8);
}
.annualreport1718 table.performanceTable tr:not(:last-child) p {
  margin: 5px 0;
}
.annualreport1718 table.performanceTable thead tr:last-child th:last-child {
	text-align: center;
	vertical-align: bottom;
	text-transform: uppercase;
}
.annualreport1718 table.performanceTable [colspan="2"] {
  width:20%;
}
.annualreport1718 table.performanceTable tbody tr:nth-child(1) td:nth-child(2),
.annualreport1718 table.performanceTable tbody tr:nth-child(2) td:nth-child(1) {
	font-family: museosans700;
  text-align:center;
}
.annualreport1718 table.performanceTable tbody tr:nth-child(1) td:nth-child(3),
.annualreport1718 table.performanceTable tbody tr:nth-child(2) td:nth-child(2) {
	font-family: museosans500;
  text-align:center;
}
.annualreport1718 table.performanceTable .tableNow {
  background-color: rgba(16,93,129,.4);
  width:15%;
}
.annualreport1718 table.performanceTable .tableThen {
  background-color: rgba(16,93,129,.2);
  width:15%;
}
/*
Specific tables
*/
.annualreport1718 table.figure3 tr td p:last-child {
    padding-left: 40px;
    text-indent: -18px;
}
.annualreport1718 table.gloss td {
	border-left: 0px;
	border-right: 0px;
	border-bottom: 2px solid rgba(16,93,129,.8);
}
.annualreport1718 table.tandf td {
	border: 0px;
	padding:4px;
  border-bottom: 1px solid rgba(16,93,129,.2);
}
.annualreport1718 table.appendixA th {
  background-color: rgba(16,93,129,.8);
  color: white;
  font-family: museosans700;
  font-weight: 500;
  vertical-align: top;
}
.annualreport1718 table.appendixE td p {
  margin: 0;
}
.annualreport1718 table.compliance thead:nth-child(2) {
  background-color: rgba(16,93,129,.8);
  vertical-align: top;
}
.annualreport1718 table.compliance th {
  text-align: center;
}
/*
Our purpose table
*/
.annualreport1718 .purpose {
  width:100%;
  margin: 20px auto;
  border: 1px solid rgba(16,93,129,1);
  display: table;
}
.annualreport1718 .purpose h2,
.annualreport1718 .purpose h3 {
  margin: 0;
  margin-bottom: 10px;
  font-family: Museosans700 !important;
  text-transform: uppercase;
}
.annualreport1718 .purpose p {
	font-family: museosans100;
}
.annualreport1718 .purpose .top,
.annualreport1718 .purpose .bottom {
  padding: 10px;

}
.annualreport1718 .purpose .top {
  background: rgba(16,93,129,1);
  text-align: center;
}
.annualreport1718 .purpose .top > * {
  color: white !important;
}
.annualreport1718 .purpose .top p {
  margin: 0;
}
.annualreport1718 .purpose .top .left,
.annualreport1718 .purpose .top .right {
    width: 50%;
    display: inline-block;
    padding: 0 2px;
}
.annualreport1718 .purpose .top .left {
    text-align: right;
}
.annualreport1718 .purpose .top .right {
    text-align: left;
}
.annualreport1718 .purpose .bottom {
  width: 50%;
  float:left;
}
.annualreport1718 .purpose .bottom.left {
  border-right: 1px solid rgba(16,93,129,1);
}
/*
Chapter pages
*/
.annualreport1718 .chapterPage {
	width: 100%;
	text-align: right;
	padding-right: 30px;
	position: relative;
	overflow: hidden;
	min-height: 800px;
}
.annualreport1718 .chapterPage::before{
  content:" ";
	width:100%;
	height:100%;
	position: absolute;
	top:0;
	left:0;
  background-size: cover;
	background-position: center;
	z-index: 0;
}
.annualreport1718 #chapter1::before {
	background-image: url('/PublishingImages/Annual report 2017-18/chapter1.jpg');
  left:-35%;
}
.annualreport1718 #chapter2::before {
	background-image: url('/PublishingImages/Annual report 2017-18/chapter2.jpg');
  left:-35%;
}
.annualreport1718 #chapter3::before {
	background-image: url('/PublishingImages/Annual report 2017-18/chapter3.jpg');
  left:-35%;
}
.annualreport1718 #chapter4::before {
	background-image: url('/PublishingImages/Annual report 2017-18/chapter4.jpg');
  left:-35%;
}
.annualreport1718 #chapter5::before {
	background-image: url('/PublishingImages/Annual report 2017-18/chapter5.jpg');
  left:-35%;
}
.annualreport1718 #chapter6::before {
	background-image: url('/PublishingImages/Annual report 2017-18/chapter6.jpg');
  left:-35%;
}
.annualreport1718 .chapterPage::after {
	content:" ";
	background-color: rgba(16,93,129,1);
	width:100%;
	height:calc(100% + 300px);
	display: block;
	border-radius: 100% 0 0 40%;
	background-position: left top;
	position: absolute;
	top:-200px;
	left: 20%;
	z-index: 1;
}
.annualreport1718 .chapterPage > * {
	z-index: 2;
  position: relative;
}
.annualreport1718 .chapterPage .title {
  margin-top: 320px;
  margin-right: 110px;
	transform: rotate(-90deg) translatex(100px);
	transform-origin: top right;
	text-align: right;
}
.annualreport1718 .chapterPage .title * {
	line-height: 1 !important;
	text-transform: uppercase !important;
	font-size: 30pt !important;
	color: white !important;
  font-family: museosans100 !important;
}
.annualreport1718 .chapterPage .title .boldBlock {
	display: block;
	font-family: museosans700 !important;
}
.annualreport1718 .chapterPage .title .chapterNumber {
  position: absolute;
  top: 0;
  right: -190px;
  width: 120px;
  display: inline-block;
	transform: rotate(90deg) translatey(-30px) translatex(120px);
  transform-origin: top right;
	font-size: 150pt !important;
}
.annualreport1718 .chapterPage .title .chapterNumber::after {
	content: "";
	background-color: white;
	width: 200px;
	height: 4px;
	position: absolute;
	bottom: 0;
	left: 0;
}
.annualreport1718 .chapterPage .contents {
	margin-right:140px;
	color: white !important;
  display: inline-block;
  margin-left: 25%;
}
.annualreport1718 .chapterPage .contents a {
	color: white !important;
	text-decoration: none;
  position: relative;
  }
.annualreport1718 .chapterPage .contents a:hover {
  background: none;
}
.annualreport1718 .chapterPage .contents a::before {
	content: "";
	background-color: white;
	transition: .2s;
	width: 20px;
	height: 0;
	position: absolute;
	top: 100%;
	right: 0;
}
.annualreport1718 .chapterPage .contents a::after {
	content: "";
	background-color: white;
	transition: .2s;
	width: 0%;
	height: 2px;
	position: absolute;
	top: 100%;
	right: 0;
}
.annualreport1718 .chapterPage .contents a:hover::before {
	height:5px;
}
.annualreport1718 .chapterPage .contents a:hover::after {
	width:100%;
}
.annualreport1718 .chapterPage .chapterQuote {
  position: absolute !important;
  bottom: 20px;
  right: 50px;
  width: 65%;
  color: white;
}
.annualreport1718 .chapterPage .chapterQuote p {
  font-family: museosans100 !important;
  font-size: 13pt;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: 1px;
}
.annualreport1718 .chapterPage .photoCaption {
  position: absolute;
  left:0;
  bottom:0px;
  padding: 5px 10px;
  transform: rotatez(90deg) translatex(-100%);
  transform-origin: bottom left;
  background-color: rgba(255,255,255,.8);
  font-family: museosans300;
  font-weight: 100;
  color: black;
  font-style: italic;
  /* min-width: 300px; */
}
/*
Outcome page
*/
.annualreport1718 .outcome {
  display: table;
  border: 1px solid rgba(16,93,129,.8);
  margin: 20px 0;
}
.annualreport1718 .outcome > div {
  padding: 10px 20px;
}
.annualreport1718 .outcome > h3,
.annualreport1718 .outcome > p {
  padding: 10px 20px 0;
}
.annualreport1718 .outcome h2,
.annualreport1718 .outcome h3,
.annualreport1718 .outcome h4 {
  margin: 0;
  margin-bottom: 10px !important;
  text-transform: uppercase;
}
.annualreport1718 .outcomeHeader {
    background-color: rgba(16,93,129,1);
}
.annualreport1718 .outcomeSubheader {
    background-color: rgba(16,93,129,.8);
}
.annualreport1718 .outcomeHeader > *,
.annualreport1718 .outcomeSubheader > * {
  color:white !important;
}
.annualreport1718 .outcome table {
    margin: -1px !important;
    border-collapse: collapse;
}
.outcome table tr td:first-child {
    background-color: rgba(16,93,129,.8);
    color: white;
}
/*
Highlights page
*/
.annualreport1718 .highlights .block {
	position: relative;
  padding-top: 10px;
}
.annualreport1718 .highlights .block::before  {
	content: "";
	background-color: rgba(16,93,129,1);
	width: 100%;
	height: 4px;
	position: absolute;
	top: 0;
	right: 0;
}
.annualreport1718 .highlights .block::after {
	content: "";
	background-color: rgba(16,93,129,1);
	width: 100px;
	height: 10px;
	position: absolute;
	top: 0;
	right: 0;
}
.annualreport1718 .highlights .stack {
  position: relative;
	display: table;
	width: 100%;
  padding: 10px 0;
	color: rgba(16,93,129,1) !important;
}
.annualreport1718 .highlights .stack::after {
  content: "";
  position: absolute;
  width:85%;
  height:1px;
  background-color: rgba(16,93,129,1);
  bottom: 0;
  right: 0;
}
.annualreport1718 .highlights .stack .left {
	width: 30%;
	display: inline-block;
	text-align: right;
	padding-right:10px;
}
.annualreport1718 .highlights .stack .right {
	width: 70%;
	display: inline-block;
  padding-left: 10px;
  position: relative;
}
.annualreport1718 .highlights .stack .right.blue {
  background-color: rgba(16,93,129,.2);
  font-family: Museosans900;
}
.annualreport1718 .highlights .stack .right:nth-child(2) {
  font-family: Museosans700;
}
/* removing because it's too inconsistent
.annualreport1718 .highlights .stack .left > span:last-child::after {
  content: "";
  position: absolute;
  width:calc(100% + 10px);
  height:1px;
  background-color: rgba(16,93,129,1);
  bottom: 0;
  right:-10px;
}
.annualreport1718 .highlights .stack .right::after {
  content: "";
  position: absolute;
  width:calc(100% + 10px);
  height:1px;
  background-color: rgba(16,93,129,1);
  bottom: -3px;
  right:-10px;
}
*/
.annualreport1718 .highlights .stack .number {
	font-family: Museosans100 !important;
	font-size: 250%;
	line-height: 1;
	position: relative;
}
.annualreport1718 .highlights .stack .small {
  position: relative;
  font-size: 100%;
}
.annualreport1718 .highlights .stack .right .small::before {
  position: absolute;
  content:"";
  bottom:0;
  right:0;
  width:calc(100% + 70px);
  height:1px;
  background-color: rgba(0,88,113,.4);
}
/*
.annualreport1718 .highlights .stack .small::before {
  white-space: pre;
  content: "\A";
}
*/
.annualreport1718 .highlights.mini {
  margin: 10px 0 40px;
  overflow: hidden;
}
.annualreport1718 .highlights.mini .header {
  position: relative;
}
.annualreport1718 .highlights.mini .header * {
  margin: 0 !important;
  padding: 0 !important;
}
.annualreport1718 .highlights.mini .header::before {
  background-color: rgba(0,88,113,.2);
  content: "";
  width: 70%;
  height: 1000px;
  position: absolute;
  top: 100%;
  right: 0;
}
.annualreport1718 .highlights.mini .stack .left .small {
  font-family: museosans500;
  font-style: italic;
}
/*
Feature pages
*/
.annualreport1718 .feature {
    background-color: rgba(16,93,129,.2);
    padding: 10px 30px 20px;
    position: relative;
}
.annualreport1718 .feature::before,
.annualreport1718 .feature::after {
  content:"";
  position: absolute;
  right: 0;
  top: 0;
  background-color: rgba(16,93,129,1);
}
.annualreport1718 .feature::before{
  width:100%;
  height:4px;
}
.annualreport1718 .feature::after {
  width:100px;
  height:10px;
}
.annualreport1718 .feature h2 {
  font-family: museosans100 !important;
  color: rgb(56,58,66) !important;
  text-transform: uppercase;
}
.annualreport1718 .feature .photo {
    width: calc(100% + 60px);
    height: 300px;
    background-size: cover;
    margin: -10px -30px 40px;
    position: relative;
    z-index: 2;
}
.annualreport1718 .feature .photo::before,
.annualreport1718 .feature .photo::after {
  content:"";
  position: absolute;
  right: 0;
  top: 100%;
  background-color: rgba(16,93,129,1);
}
.annualreport1718 .feature .photo::before{
  width:100%;
  height:4px;
}
.annualreport1718 .feature .photo::after {
  width:100px;
  height:10px;
}
.annualreport1718 .feature .photo#nger {
  background-image: url('/PublishingImages/Annual%20report%202017-18/feature_nger.jpg');
}
.annualreport1718 .feature .photo#ret {
  background-image: url('/PublishingImages/Annual%20report%202017-18/feature_ret.jpg');
}
.annualreport1718 .feature .photo#pandp {
  background-image: url('/PublishingImages/Annual%20report%202017-18/feature_pandp.jpg');
  background-position-y: 30%;
}
.annualreport1718 .feature .photo .photoCaption {
  position: absolute;
  left: 30px;
  top:calc(100% + 10px);
  font-family: museosans100;
  font-style: italic;
}

/*
Financial overview columns
*/
.annualreport1718 .financialOverview {
	margin: 0;
	overflow: hidden;
	text-align:center;
}
.annualreport1718 .financialOverview .column {
	width:27%;
	display: inline-block;
	vertical-align: top;
	margin:0;
}
.annualreport1718 .financialOverview .column:nth-child(2) {
	margin:0 3%;
}
.annualreport1718 .financialOverview .column:first-child .top::after {
  background-color: rgba(0,88,113,1);
  content: "";
  width: 1000%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: -100%;
}
.annualreport1718 .financialOverview .column:last-child .top::before {
  background-color: rgba(0,88,113,1);
  content: "";
  width: 1000%;
  height: 6px;
  position: absolute;
  top: calc(100% - 1px);
  left: 100%;
}
.annualreport1718 .financialOverview .column .top *,
.annualreport1718 .financialOverview .column .bottom h3,
.annualreport1718 .financialOverview .column .bottom p {
	margin: 0 !important;
	padding: 0 !important;
}
.annualreport1718 .financialOverview .column .top {
	background-color: rgba(16,93,129,.1);
	padding:8px 10px 10px;
	text-align: center;
	position: relative;
}
.annualreport1718 .financialOverview .column .top h2 {
	text-transform: uppercase;
}

.annualreport1718 .financialOverview .column .bottom {
	background-color: rgba(16,93,129,.2);
	padding:10px 5px;
	position: relative;
  text-align: left;
}
.annualreport1718 .financialOverview .column .bottom ul {
	padding: 0 1.5em;
}
/*
Mobile specific design remapping
*/
@media (max-width: 750px) {
  .annualreport1718 .decorativeImage#capitalWindFarm {
    height:250px;
  }
  .annualreport1718 table.performanceTable [colspan="2"] {
    width:40%;
  }
  .annualreport1718 .chapterPage {
    padding: 0 5%;
  }
  .annualreport1718 .chapterPage::before {
    left:0 !important;
  }
  .annualreport1718 .chapterPage::after {
    left: 0%;
    background-color: rgba(16,93,129,.8);
    border-radius: 0;
  }
  .annualreport1718 .chapterPage .contents {
  	margin-right:0px;
    margin-bottom: 200px;
    margin-left: 0;
  }
  .annualreport1718 .chapterPage .chapterQuote{
    width: 82%;
    right: 5%;
    bottom: 10px;
  }
  .annualreport1718 .chapterPage .title {
  	transform: rotate(0deg) translatex(0px);
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 40px;
  }
  .annualreport1718 .chapterPage .title .chapterNumber {
  	transform: rotate(0deg) translatey(0px) translatex(0px);
    margin-bottom: 20px;
    position: relative;
    right: 0;
  }
  .annualreport1718 .feature {
    padding: 10px 10px 20px;
  }
  .annualreport1718 .feature .photo {
    margin: -10px -10px 50px;
    width: calc(100% + 20px);
    height: 100px;
  }
  .annualreport1718 .purpose .bottom,
  .annualreport1718 .purpose .top .left,
  .annualreport1718 .purpose .top .right {
    width: 100%;
  }
  .annualreport1718 .financialOverview .column {
    width:80%;
  }
  .annualreport1718 .financialOverview .column .top {
    margin-top: 30px;
  }
  .annualreport1718 .financialOverview .column .top::after {
    background-color: rgba(0,88,113,1);
    content: "";
    width: 1000%;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: -100%;
  }
  .annualreport1718 .financialOverview .column:last-child .top::before {
    background-color: transparent;
  }
}


/* ******************************
Social media icons
2018-11-9
Fix an issue with the social media buttons in the footer.
********************************* */

.socialMediaFooter .fa-external-link::before{
display: none !important;
}

/* ******************************
Callout box resize
2019-05-3
There is a Javascript function that will apply this class to any Callout box that intersects with Suggested Reading.
********************************* */
div.box.resized {
  width: calc(100% - 300px);
}

/* ******************************
Landing page boxes
2019-05-29
Copied the CSS for the landing page grid boxes from the intranet.
********************************* */

.landingBoxes {
	max-width:800px;
	margin-left:auto;
	margin-right:auto;
}
.landingBoxes h2 {
	border-bottom: 3px solid #00a7d3;
	padding-bottom:.1em;
	margin-bottom: 1em;
}
#contentBox .landingBoxes a,
#contentBox .landingBoxes a:hover,
#contentBox .landingBoxes a:active,
#contentBox .landingBoxes a:focus {
	text-decoration: none;
}
.boxy {
	color: #005874;
	position: relative;
	width: 100%;
	min-height: 140px !important;
	height: auto;
	text-align: center;
	font-size: 100%;
	border: 1px solid #dfe0de;
	padding:2px;
	transition:.4s ease-out;
	min-height: 150px;
	overflow: hidden;
	margin-bottom:20px;
	display: table;
}
.boxy:hover {
	border: 1px solid transparent;
	color: #ffffff;
	background-color: #005874;
	transition: .05s;
}
.boxy .fa {
	font-size: 300%;
	margin-bottom: .2em;
	/* Uncomment this with animations below
	transition:.4s ease-out; */
}
/* Animated graphics to be discussed at a later date...
.boxy:hover .fa {
	transition:.05s;
	transform: rotate(-35deg) translatex(100px) translatey(-50px) scale(4);
}
*/
.boxy .interior{
	text-align: center;
	width: 100%;
  padding: 30px 0;
}

.boxy p{
	font-size: 1.2em;
	margin:0;
}

/* ******************************
Text for inside boxy's
2018-03-22
This is some extra styling that came about due to a web request.
The styling below is added for the sub-text below the title.
********************************* */
.boxy .subText {
		/* For testing with white boxed text
    background: white;
    color: #005874;
		*/
    padding: 10px 10px 0;
    margin-top: 10px;
		position: relative;
		display: block;
		width: auto;
}

.boxy .subText::before {
    border-top: 2px solid rgba(0,0,0,0.2);
    content: "";
    position: absolute;
    left: 20%;
    width: 60%;
    top: 0;
    height: 0px;
		transition: .05s;
}

.boxy:hover .subText::before {
	border-top: 2px solid rgba(255,255,255,0.35);
}

/* ******************************
Figcaption styling
2019-06-19
Just realised that no defaultstyling existed for Figcaption on the website
********************************* */

figcaption {
    font-size: 12px;
    padding: 5px;
    color:grey;
}

/* ******************************
Button styling
2019-06-19
Some of the styling for the default button on the website is difficult to read. This fixes that.
********************************* */

.button {
    margin: 10px;
    max-width: 400px;
    width: auto;
    float: none;
}

.button > * {
    color: white !important;
}

.button:hover > * {
    color: #007499 !important;
}

/* ******************************
Chevron list steps
2019-06-19
Styling for the chevron list styling used on the Graduate page.
********************************* */

.chevronSteps {
    width:100%;
    margin: 40px 0;
}
.chevronSteps .stepContainer {
    width:100%;
    margin-top: 15px;
    margin-bottom: 15px;
}
.chevronSteps .chevron h3 {
    position: relative;
    text-align: center;
}
.chevronSteps .chevron {
    width:20%;
    padding: 10px 2px;
    display: inline-block;
    position: relative;
}
.chevronSteps .stepContainer:nth-of-type(odd) .chevron {
    background-color: rgba(200,200,200,1);
}
.chevronSteps .stepContainer:nth-of-type(odd) .chevron::before,
.chevronSteps .stepContainer:nth-of-type(odd) .chevron::after {
    content:"";
    position: absolute;
    left:0;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
    width: 100%;
    min-height: 20px;
}
.chevronSteps .chevron::before {
    top:-20px;
    background-image: url('/Style%20Library/Images/2018-grad-chevron-before.svg');
}
.chevronSteps .chevron::after {
    top:calc(100% - 1px);
    background-image: url('/Style%20Library/Images/2018-grad-chevron-after.svg');

}
.chevronSteps .step {
    width:80%;
    display: inline-block;
    padding-left: 20px;
}

/* ******************************
RET admin report 2018
2019-08-07
Styling CSS for the 2018 RET admin report
********************************* */

/* Fonts referenced for testing purposes only. These custom fonts exist in in CERs existing base css file   */

@font-face {
    font-family: MuseoSans100;
    src: url("/Style%20Library/Fonts/MuseoSans100.otf") format("opentype");
}

@font-face {
    font-family: MuseoSans100Italic;
    src: url("/Style%20Library/Fonts/MuseoSans100Italic.otf") format("opentype");
}

@font-face {
    font-family: MuseoSans300;
    src: url("/Style%20Library/Fonts/MuseoSans300.otf") format("opentype");
}

@font-face {
    font-family: MuseoSans300Italic;
    src: url("/Style%20Library/Fonts/MuseoSans300Italic.otf") format("opentype");
}

@font-face {
    font-family: MuseoSans500;
    src: url("/Style%20Library/Fonts/MuseoSans500.otf") format("opentype");
}

@font-face {
    font-family: MuseoSans500Italic;
    src: url("/Style%20Library/Fonts/MuseoSans500Italic.otf") format("opentype");
}

@font-face {
    font-family: MuseoSans700;
    src: url("/Style%20Library/Fonts/MuseoSans700.otf") format("opentype");
}

@font-face {
    font-family: MuseoSans700Italic;
    src: url("/Style%20Library/Fonts/MuseoSans700Italic.otf") format("opentype");
}

@font-face {
    font-family: MuseoSans900;
    src: url("/Style%20Library/Fonts/MuseoSans900.otf") format("opentype");
}

@font-face {
    font-family: MuseoSans900Italic;
    src: url("/Style%20Library/Fonts/MuseoSans900Italic.otf") format("opentype");
}

/* ******************************
REMOVE BEFORE FINAL DELIVERY
******************************* */

/*body {
    overflow-y: scroll;
}

figure img {
    width: 100% !important;
}

.btn-wrapper {
    margin-top: 40px;
}

.btn-default {
    padding: 10px;
    background: #56c7da;
}

.btn-default a {
    color: #000 !important;
}*/

/* ******************************
RET 2018
2019-06-18
Below is the CSS for the RET Report 2018
******************************* */


div.ret2019 {
    font-family: museosans300, 'helvetica neue', arial, sans-serif !important;
    color: #000 !important;
}

div.ret2019 h1 {
    font-family: museosans900, 'helvetica neue', arial, sans-serif !important;
}

div.ret2019 h2 {
    font-size: 1.7em !important;
    font-family: museosans700, 'helvetica neue', arial, sans-serif !important;
}

div.ret2019 h3 {
    font-size: 1.3em !important;
    font-family: museosans700, 'helvetica neue', arial, sans-serif !important;
}

div.ret2019 strong {
    font-family: museosans900, 'helvetica neue', arial, sans-serif !important;
}

div.ret2019 hr {
    width: 10%;
    display: block;
    border-top: 1px solid #000000;
    margin-left: 0;
}

div.ret2019 ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 0.8em;
    margin-block-end: 0.8em;
    margin-inline-start: 15px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}

div.ret2019 ol {
    margin-block-start: 0.8em;
    margin-block-end: 0.8em;
    margin-inline-start: 15px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}

/* Footnotes Styles */

div.ret2019 .footnoteInfo {
    font-size: 0.8em;
}

div.ret2019 .footnoteInfo:before {
    background: transparent !important;
}

div.ret2019 .footnotes ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 0.7em;
    margin-block-end: 0.7em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 13px;
}

div.ret2019 .footnotes ol li {
    padding-bottom: 5px;
}

  div.ret2019 .footnoteInfo ol li {
            margin-left: -12px;
            margin-bottom: 12px;
        }
        div.ret2019 .footnoteInfo ol li .col-xs-1 {
            width: 2%;
        }
        div.ret2019 .footnoteInfo ol li .col-xs-11 {
            width: 95%;
        }
        div.ret2019 .footnoteInfo ol li .anchor-body-link {
            margin-right: 12px;
        }

        @media(max-width: 768px) {
            div.ret2019 .footnoteInfo ol li .col-xs-1 {
                width: 2%;
            }

            div.ret2019 .footnoteInfo ol li .col-xs-11 {
            width: 90%;
        }

        }

/* Highlight Quote Styles  */

div.ret2019 .highlightWrapper {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

div.ret2019 .highlightWrapper img {
    width: 100%;
}

div.ret2019 .highlightWrapper blockquote {
    position: absolute;
    bottom: 30px;
    left: 20px;
    border-left: 3px solid #fff;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    width: 70%;
    font-family: museosans900, 'helvetica neue', arial, sans-serif;
}

div.ret2019 .highlightCaption {
    position: absolute;
    bottom: 20px;
    background: #fff;
    left: 20px;
    font-size: 0.8em;
    padding: 5px 24px 0px 24px;
    font-family: museosans500, 'helvetica neue', arial, sans-serif;
}

/* Highlight Aside Styles  */

div.ret2019 .highlightWrapper .rightBox {
    text-align: right;
    position: relative;
    z-index: 5;
}

div.ret2019 .highlightWrapper aside {
    text-align: left;
    position: relative;
    display: inline-block;
    color: #000;
    width: 70%;
    padding: 5em 2em 5em 2em;
}

div.ret2019 .highlightWrapper aside h3 {
    color: black !important;
    padding: 0.2em 0em 0.5em 0em;
    margin: 0;
}

div.ret2019 .highlightWrapper aside h4 {
    text-transform: uppercase;
    background: #005773;
    color: #fff !important;
    padding: 0.2em 0.5em 0.1em 0.5em;
    font-size: 2em !important;
    display: inline-block;
    margin-bottom: 0;
}

div.ret2019 .highlightWrapper aside span {
    font-family: museosans900, 'helvetica neue', arial, sans-serif;
    margin-left: 5px;
}

div.ret2019 .highlightWrapper aside .asideText {
    background: rgba(255, 255, 255, 0.9);
    padding: 1em;
}

div.ret2019 .highlightWrapper .attribution {
    font-family: museosans900, 'helvetica neue', arial, sans-serif;
    background: #005773;
    color: #fff;
    padding: 0.5em 1em 0em 1em;
    font-size: 1em;
    margin-top: 5em;
    display: inline-block;
    margin-bottom: 0;
}

div.ret2019 .highlightCaption.rotate {
    bottom: auto;
    position: relative;
    transform: rotate(90deg);
    transform-origin: top right;
    background: #000;
    color: #fff;
    display: inline-block;
    right: 0;
}

@media screen and (max-width: 993px) {
    div.ret2019 .highlightWrapper aside {
        width: 100%;
    }
}


/* Chapter Heading Page Styles  */

div.ret2019 .chapterHeading h1 {
    font-family: museosans100, 'helvetica neue', arial, sans-serif;
    text-transform: uppercase;
    text-align: right;
    color: #000;
    border-bottom: none;
    display: block;
}

div.ret2019 .chapterHeading h2 {
    font-family: museosans900, 'helvetica neue', arial, sans-serif !important;
    margin-top: 1.7em;
    color: #000 !important;
    font-size: 2.1em !important;
}

div.ret2019 .chapterHeading .textRow {
 border-right: 60px solid #56c7da;
}

div.ret2019 .chapterHeading .textRow .column {
    padding: 0;
}

div.ret2019 .chapterImage {
    position: relative;
}

div.ret2019 .chapterImage img {
    width: 100%;
    border: 4px solid black;
}

div.ret2019 .boxWrapper {
    margin: 0;
    line-height: 0; /*Added this to fix the large gap appearing on the chapter pages.*/
}

div.ret2019 .chapterTocWrapper {
    border-top: 10px solid #56c7da;
    padding: 0;
}

div.ret2019.chapter2 .chapterTocWrapper {
    border-top: 10px solid #005773;
}


div.ret2019.chapter2 .chapterHeading .textRow {
    border-right: solid 60px #005773;
}

div.ret2019.chapter3 .chapterTocWrapper {
    border-top: 10px solid #00a8d5;
}

div.ret2019.chapter3 .chapterHeading .textRow {
    border-right: solid 60px #00a8d5;
}

div.ret2019.chapter4 .chapterTocWrapper {
    border-top: 10px solid #343741;
}

div.ret2019.chapter4 .chapterHeading .textRow {
    border-right: solid 60px #343741;
}

div.ret2019.chapter5 .chapterTocWrapper {
    border-top: 10px solid #a4a7a9;
}

div.ret2019.chapter5 .chapterHeading .textRow {
    border-right: solid 60px #a4a7a9;
}

div.ret2019.chapter6 .chapterTocWrapper {
    border-top: 10px solid #63676b;
}

div.ret2019.chapter6 .chapterHeading .textRow {
    border-right: solid 60px #63676b;
}

div.ret2019.chapter6 h1 {
    text-transform: none;
}

div.ret2019.chapter6 .chapterToc {
    background: #63666a;
}

div.ret2019.chapter6 .chapterToc a {
    color: #fff;
}

div.ret2019 .chapterToc {
    background: #56c7da;
    color: #000;
    padding: 2em;
    position: absolute;
    top: -10px;
}

div.ret2019 .chapterToc h3 {
    margin: 0px 0px 5px 0px;
}

div.ret2019 .chapterToc ul {
    list-style-type: none;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}

div.ret2019 .chapterToc ul li a {
    color: #000;
}

div.ret2019 .chapterInfographic {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    width: 330px;
    padding: 3em 2em 2em 2em;
    bottom: 0;
    color: #fff;
}

div.ret2019 .chapterInfographic img {
    width: 90px;
    border: none;
}

div.ret2019.chapter2 .chapterInfographic img {
    margin-bottom: 15px;
    width: 80px;
}

div.ret2019.chapter3 .chapterInfographic img {
    margin-bottom: 10px;
}

div.ret2019.chapter4 .chapterInfographic img {
    margin-bottom: 10px;
}

div.ret2019.chapter5 .chapterInfographic img {
    margin-bottom: 10px;
    width: 60px;
}

div.ret2019 .chapterInfographic span {
    font-family: museosans900, 'helvetica neue', arial, sans-serif;
    font-size: 4em;
    line-height: 1;
}

div.ret2019 .chapterInfographic p {
    margin: 0;
    line-height: 1.3;
    font-size: 1.1em;
}

div.ret2019 .chapterInfographic p strong {
    font-size: 1.5em;
}

@media screen and (max-width: 650px) {
    div.ret2019 .chapterInfographic img {
        width: 70px;
    }

    div.ret2019 .chapterInfographic {
        width: 280px;
        padding: 1em 1em 1em 2em;
    }

    div.ret2019 .chapterInfographic span {
        font-size: 3em;
    }
}

/* Pullout quote image backgrounds in order of appearance in document flow */

div.ret2019 #highlightOne {
    background: url(/PublishingImages/Admin%20report%202018/02_capital_wind_farm.jpg) no-repeat;
    background-size: cover;
    height: 400px;
    background-position: 30% 50%;
}

div.ret2019 #highlightTwo {
    background: url(/PublishingImages/Admin%20report%202018/07_wind_power.jpg) no-repeat;
    background-color: #eeeaea;
    background-size: cover;
    background-position-x: calc(50% - 350px);
    position: relative;
    overflow: hidden;
}

div.ret2019 #highlightTwo::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 2000px;
    top: 0;
    right: 0;
    background-image: linear-gradient(to left, #eeeaea 90%, transparent);
}

div.ret2019 #highlightThree {
    background: url(/PublishingImages/Admin%20report%202018/07_rooftop_solar.jpg) no-repeat;
    background-size: cover;
    min-height: 400px;
}

div.ret2019 #highlightFour {
    background: url(/PublishingImages/Admin%20report%202018/09_newcastle_art_gallery.jpg) no-repeat;
    background-size: cover;
    height: 400px;
}

div.ret2019 #highlightFive {
    background: url(/PublishingImages/Admin%20report%202018/09_yates_electrical_services.jpg) no-repeat;
    background-size: cover;
}

div.ret2019 #highlightSix {
    background: url(/PublishingImages/Admin%20report%202018/09_amaroo_school.jpg) no-repeat;
    background-size: cover;
    margin-top: 3em;
}

div.ret2019 #highlightSeven {
    background: url(/PublishingImages/Admin%20report%202018/11_solar_plant.jpg) no-repeat;
    background-size: cover;
}

div.ret2019 #highlightEight {
    background: url(/PublishingImages/Admin%20report%202018/13_neoen_hornsdale_battery.jpg) no-repeat;
    background-size: cover;
}

div.ret2019 #highlightNine {
    background: url(/PublishingImages/Admin%20report%202018/13_rooftop_solar.jpg) no-repeat;
    background-size: cover;
    background-position: 80%;
}

div.ret2019 #highlightTen {
    background: url(/PublishingImages/Admin%20report%202018/15_small_scale_solar.jpg) no-repeat;
    background-size: cover;
}

div.ret2019 #highlightEleven {
    background: url(/PublishingImages/Admin%20report%202018/15_rooftop_solar.jpg) no-repeat;
    background-size: cover;
    margin-top: 3em;
    background-position: 0 55%;
}

div.ret2019 #highlightTwelve {
    background: url(/PublishingImages/Admin%20report%202018/15_small_scale_solar_clean_energy_council.jpg) no-repeat;
    background-size: cover;
    margin-top: 3em;
    background-position: 50% 80%;
}

div.ret2019 #highlightThirteen {
    background: url(/PublishingImages/Admin%20report%202018/15_typing.jpg) no-repeat;
    background-size: cover;
    height: 400px;
}

/* Figures & Tables  */

div.ret2019 figure {
    margin-bottom: 2em;
}

div.ret2019 figcaption {
    font-family: museosans900, 'helvetica neue', arial, sans-serif;
    font-size: 1.2em;
    color: #000;
    padding: 5px 0px 10px 0px;
}

div.ret2019 caption {
    font-family: museosans900, 'helvetica neue', arial, sans-serif;
    font-size: 1.2em;
    color: #000;
    padding: 5px 0px 10px 0px;
}

div.ret2019 table {
    margin-bottom: 2em;
    width: 100%;
}

div.ret2019 thead {
    background: #dfe0de;
    border-bottom: 3px solid #000;
    font-family: museosans900, 'helvetica neue', arial, sans-serif;
}

div.ret2019 tr {
    border-bottom: 1px solid #000;
}

div.ret2019 th,
div.ret2019 td {
    padding: 0.5em;
}

div.ret2019 td {
    vertical-align: top;
}

/* Custom image styles  */

div.ret2019 #sigature {
    width: 220px;
}

div.ret2019 #chair {
    width: 330px;
    border-bottom: 5px solid #56c7da;
    margin-bottom: 2em;
    float: left;
    margin: 5px 20px 20px 0px;
}

@media screen and (max-width: 350px) {
    div.ret2019 #chair {
        width: 250px;
        display: block;
        float: none;
    }
}

div.ret2019 .blueWrap {
    background: #d5eff5;
    padding: 1em;
}

div.ret2019 .blueWrap a {
    color: #000;
    text-decoration: underline;
}

div.ret2019 .blueWrap a:hover {
    text-decoration: none;
}

/* Outcomes 2019  */

#s4-bodyContainer {
    position: relative;
}

div.ret2019 .outcomeBox {
    background: rgba(0, 0, 0, 0.7);
    padding: 1em;
    position: relative;
    color: #fff;
}

div.ret2019 .outcomeBox h3 {
    font-size: 2em !important;
    font-family: museosans900, 'helvetica neue', arial, sans-serif !important;
    margin: 0;
    line-height: 1 !important;
    color: white !important;
}

div.ret2019 .outcomeBox h3 .largeFont {
    font-size: 1.5em !important;
}

div.ret2019 .outcomeBox .arrow {
    width: 30px;
    margin-top: -18px;
}

div.ret2019 .outcomeBox.style2 {
    min-height: 130px;
}

div.ret2019 .outcomeBox.style2 h4 {
    font-size: 2em !important;
    top: 15px !important;
}

div.ret2019 .outcomeBox.style2 .arrow {
    width: 20px;
    margin-top: -12px;
}

div.ret2019 .outcomeBox h4 {
    position: absolute;
    right: 20px;
    top: 5px !important;
    font-size: 3em !important;
    font-family: museosans900, 'helvetica neue', arial, sans-serif !important;
}

div.ret2019 .outcomeBox .animatedIcon {
    width: 30px;
}

div.ret2019 .outcomeBox.style2 .animatedIcon {
    position: absolute;
    bottom: 10px;
    right: 20px;
}

div.ret2019 .outcomeBox.style2 p {
    width: 80%;
}

div.ret2019 .outcomesWrapper {
    background: url(/PublishingImages/Admin%20report%202018/04_outcomes.jpg);
    background-size: cover;
    padding: 2em;
    margin-bottom: 5em;
}

div.ret2019 .outcomesWrapper .row {
    margin-top: 2em;
}

div.ret2019 .outcomesWrapper .primary:after {
    background-color:#fff;
    content: '';
    height: 4px;
    width: 86%;
    position: absolute;
    left: 15px;
    bottom:-15px;
}

/* Had to remove because it didn't work with our website's media queries
@media screen and (min-width: 1200px) {
div.ret2019 .outcomesWrapper .primary:after {
    width: 575px;
}
}

@media screen and (max-width: 993px) {
div.ret2019 .outcomesWrapper .primary:after {
    width: 365px;
}
}
*/
@media screen and (max-width: 993px) {
div.ret2019 .outcomesWrapper .primary:after {
    width: 0px;
}
}

div.ret2019 .outcomesWrapper h1 {
    color: #fff;
}

div.ret2019 .outcomesWrapper h4 {
    color: #56c7da !important;
    line-height: 1 !important;
}

div.ret2019 .subRow {
    margin: 0;
}

@media screen and (max-width: 450px) {
    div.ret2019 #subrowTwo {
    margin-top: 0;
}
}

div.ret2019 .subRow .col-sm-12 {
    padding-left: 4em;
    margin-bottom: 2em;
}

div.ret2019 .subRow .col-sm-12:before {
    border-bottom: 4px solid #fff;
    content: ' ';
    width: 56px;
    height: 223px;
    position: absolute;
    left: 0;
    bottom: 50%;
    border-left: 4px solid #fff;
}

div.ret2019 .subRow .col-sm-12.shorten:before {
    border-bottom: 4px solid #fff;
    content: ' ';
    width: 56px;
    height: 212px;
    position: absolute;
    left: 0;
    bottom: 50%;
    border-left: 4px solid #fff;
}

@media screen and (max-width: 993px) {
div.ret2019 .subRow .col-sm-12.shorten:before {
 height: 400px;
}

div.ret2019 #highlightTwo {
    background-position: 100%;
}

div.ret2019 #highlightTwo::after {
   background-image: none;
}
    }

div.ret2019 .outcomeBox.style2:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    left: -20px;
    top: 40%;
    background: #56c7da;
}

div.ret2019 #box1 .animatedIcon {
    position: absolute;
    right: 20px;
    top: 10px;
    width: 70px;
}

@media screen and (max-width: 450px) {
    div.ret2019 #box1 .animatedIcon {
width: 50px;
    }
}

div.ret2019 #box4 .animatedIcon,
div.ret2019 #box5 .animatedIcon {
    bottom: 30px;
}

div.ret2019 #box6 .animatedIcon {
    bottom: 30px;
    width: 40px;
}

div.ret2019 #box7 .animatedIcon {
    bottom: 15px;
    width: 35px;
}

div.ret2019 #box8 .animatedIcon,
div.ret2019 #box9 .animatedIcon {
    bottom: 25px;
}

div.ret2019 #box10 .animatedIcon,
div.ret2019 #box11 .animatedIcon {
    bottom: 25px;
}

@media screen and (min-width:0\0) {
    /* IE9 and IE10 rule sets go here */
}

@media screen and (max-width: 750px) {
    div.ret2019 .outcomesWrapper .second {
        margin-top: 2em;
    }
/* Removed this style size as it doesn't work with our website.
}

@media screen and (max-width: 450px) {
*/
    div.ret2019 .subRow .col-sm-12:before {
        height: 299px;
    }

 div.ret2019 .outcomeBox .largeFont {
    font-size: 28px !important;
 }

 div.ret2019 .outcomeBox h3 {
    font-size: 1.5em !important;
 }

 div.ret2019 .outcomeBox h4 {
    font-size: 2em !important;
 }

 div.ret2019 .outcomeBox .arrow {
    width: 20px;
    margin-top: -12px;
 }

 div.ret2019 .outcomeBox.style2 h4 {
    font-size: 1.5em !important;
    top: 10px;
 }

 div.ret2019 .outcomeBox.style2 .arrow {
    width: 17px;
 }
}

/* ******************************
Corporate Plan 2019
2019-08-16
Below is the CSS for the Corporate Plan 2019
******************************* */

.corpPlan-2019 > * {
    margin-bottom: 20px;

}
.corpPlan-2019{
	   margin-bottom: 20px;
	margin-top: 20px;
	
}
.corpPlan-2019 h2 {
    font-family: museosans300 !important;
    color: #005874 !important;
    font-size: 20pt !important;
}

.corpPlan-2019 h3 {
    font-family: museosans700 !important;
    color: black !important;
    font-size: 14pt !important;
}

.corpPlan-2019 .bookmark {
    background-color: #005874;
    position: relative;
    height: 150px;
    width: 150px;
    float: right;
    margin-bottom: 50px;
    margin-left: 20px;
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: 50%;
}
.corpPlan-2019 .bookmark::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 150px;
    height: 50px;
    border-top: 50px solid #005874;
    border-right: 75px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 75px solid transparent;
}

.corpPlan-2019 .intro {
    color: #005874 !important;
    font-size: 12pt !important;
}

.corpPlan-2019 .bookmark#engaged {
    background-image: url(/PublishingImages/corporate-plans/2019-23/engaged.png);
}
.corpPlan-2019 .bookmark#efficient {
    background-image: url(/PublishingImages/corporate-plans/2019-23/efficient.png);
}
.corpPlan-2019 .bookmark#trusted {
    background-image: url(/PublishingImages/corporate-plans/2019-23/trusted.png);
}
.corpPlan-2019 .bookmark#secure {
    background-image: url(/PublishingImages/corporate-plans/2019-23/secure.png);
}
.corpPlan-2019 .foreword {
    position: relative;
    float: right;
    padding: 0 4% 0 8%;
    overflow: hidden;
}

.corpPlan-2019 .foreword::before {
    content: "";
    width: 200%;
    height: 60%;
    border: 2px solid silver;
    top: 20%;
    left: 0%;
    position: absolute;
}

.corpPlan-2019 .foreword img {
    z-index: 2;
    position: relative;
}

.corpPlan-2019 .objectivesPurpose {

}

.corpPlan-2019 .objectivesPurpose h2 {
    color: white !important;
    font-family: museosans900 !important;
    font-size: 14pt !important;
    line-height: 1 !important;
    text-transform: uppercase;
}

.corpPlan-2019 .objectivesPurpose .banner {
    background-color: #005874;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    padding-left:50px;
    border: 1px solid white;
}
.corpPlan-2019 .objectivesPurpose .banner::before,
.corpPlan-2019 .objectivesPurpose .quadrants::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 2000px;
    background-color: #383A42;
    top: 0;
    left: 0;
    border: 1px solid white;
}

.corpPlan-2019 .objectivesPurpose .banner h3 {
    color: white !important;
    font-family: museosans100 !important;
    font-size: 40pt !important;
    line-height: 1 !important;
    text-align: center;
    text-transform: uppercase;
    margin-top: 40px;
}

.corpPlan-2019 .objectivesPurpose h2 {
    position: absolute;
    left: 39px;
    bottom: 10px;
    font-family: museosans900 !important;
    font-size: 18pt !important;
    line-height: 1 !important;
    text-transform: uppercase;
    color: white !important;
    transform: rotatez(-90deg);
    transform-origin: bottom left;
}
.corpPlan-2019 .objectivesPurpose .main {
    width: 100%;
    display: inline-block;
}

.corpPlan-2019 .objectivesPurpose .quadrants {
    background-color: #dfe0de;
    position: relative;
    overflow: hidden;
    padding-left: 50px;
    border: 1px solid white;
}

.corpPlan-2019 .objectivesPurpose .quadrants .quad {
    display: inline-block;
    width: 50%;
    position: relative;
    border: 1px solid white;
    min-height: 120px;
    vertical-align: top;
}

.corpPlan-2019 .objectivesPurpose .quadrants .quad:nth-of-type(odd) {
    text-align: right;
    padding-right:10px;
}

.corpPlan-2019 .objectivesPurpose .quadrants .quad:nth-of-type(even) {
    padding-left:10px;
}

.corpPlan-2019 .objectivesPurpose .quadrants .quad img {
    background-color: #005874;
    position: relative;
    height: 120px;
    width: 100px;
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.corpPlan-2019 .objectivesPurpose .quadrants .quad:nth-of-type(odd) img {
    float: left;
    margin-right: 35px;
}
.corpPlan-2019 .objectivesPurpose .quadrants .quad:nth-of-type(even) img {
    float: right;
    margin-left: 35px;
}

.corpPlan-2019 .objectivesPurpose .quadrants .quad img::before {
    content: "";
    width:50px;
    height:100px;
    position: absolute;
    border-top: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 60px solid transparent;
    border-left: 60px solid transparent;
}

.corpPlan-2019 .objectivesPurpose .quadrants .quad#one img {
    background-image: url(/PublishingImages/corporate-plans/2019-23/trusted.png);
}

.corpPlan-2019 .objectivesPurpose .quadrants .quad#two img {
    background-image: url(/PublishingImages/corporate-plans/2019-23/efficient.png);
}

.corpPlan-2019 .objectivesPurpose .quadrants .quad#three img {
    background-image: url(/PublishingImages/corporate-plans/2019-23/engaged.png);
}

.corpPlan-2019 .objectivesPurpose .quadrants .quad#four img {
    background-image: url(/PublishingImages/corporate-plans/2019-23/secure.png);
}

.corpPlan-2019 .objectivesPurpose .quadrants .quad:nth-of-type(odd) img::before {
    left: 100%;
    top: 0;
    border-left: 30px solid #005874;
}

.corpPlan-2019 .objectivesPurpose .quadrants .quad:nth-of-type(even) img::before {
    right: 100%;
    top: 0;
    border-right: 30px solid #005874;
}

.corpPlan-2019 .objectivesPurpose .quadrants .quad h3 {
    font-family: museosans100 !important;
    font-size: 16pt !important;
    color: #005874 !important;
    line-height: 1.3 !important;
    display: inline-block !important;
    margin-top: 20px;
    width: calc(100% - 135px);
}

.corpPlan-2019 table {
    width: 100%;
}

.corpPlan-2019 table th {
    background-color: #005874;
    padding: 4px 6px;
    color: white;
    font-size: 16px;
}

.corpPlan-2019 table td {

    padding-left: 5px !important;
	padding-right: 5px !important;
 
}

.corpPlan-2019 table thead th:last-of-type {
    text-align: right;
}

.corpPlan-2019 table tbody tr:nth-of-type(even) {
    background-color: #dfe0de;
}

.corpPlan-2019 table tbody tr:last-of-type {
    border-bottom: 1px solid #c7c9c7;
}

.corpPlan-2019 table tbody tr td:last-of-type {
    text-align: right;
    border-left: 1px solid #c7c9c7;
    padding: 3px;
}

.corpPlan-2019 .decorativeImage {
    position: relative;
    overflow: hidden;
    margin: 10px 0;
}
.corpPlan-2019 .decorativeImage::before {
    content: "";
    position: absolute;
    width: 40%;
    right: 10%;
    top: 20%;
    height: 400px;
    border: 1px solid white;
}

.corpPlan-2019 .decorativeImage::after {
    content: "";
    position: absolute;
    width: 10%;
    right: 25%;
    top: 5%;
    height: 100px;
    border: 1px solid white;
}

.corpPlan-2019 .decorativeImage img {
    width: 100%;
}

.corpPlan-2019 img.portrait {
    max-width: 400px;
    box-shadow: -10px 10px 15px rgba(0,0,0,0.3);
    margin: 20px 0;
}

.corpPlan-2019 .stratPrior .header {
    background-color: #005874;
    padding: 10px 1.2%;
    border-bottom: 1px solid rgba(125,125,125,.7);
}

.corpPlan-2019 .stratPrior .header h3 {
    color: white !important;
    font-family: museosans700 !important;
    margin: 0 !important;
}

.corpPlan-2019 .stratPrior .conti {
    overflow: hidden;
    display: flex;
}

.corpPlan-2019 .stratPrior .conti h4 {
    border-bottom: 1px solid rgba(125,125,125,.7);
    font-family: museosans700 !important;
    font-size: 14pt !important;
    padding: 0 0 2px 5px;
}

.corpPlan-2019 .stratPrior .conti .objectives {
    width: 20%;
    /*height: 300px;*/
    display: inline-block;
    background-color: #005874;
    flex: 0 1 auto;
    text-align: center;
	padding-left: 5px;
}

.corpPlan-2019 .stratPrior .conti .objectives h4 {
    color: white !important;
    text-align: left;
}

.corpPlan-2019 .stratPrior .conti .objectives img {
    max-width: 65px;
    margin: 5px;
    display: inline-block;
}

.corpPlan-2019 .stratPrior .conti .deliverables {
    width: 40%;
    display: inline-block;
    vertical-align: top;
    flex: 0 1 auto;
}

.corpPlan-2019 .stratPrior .conti .deliverables p {
    display: block;
    position: relative;
    padding: 5px 5px 10px 5px;
}

.corpPlan-2019 .stratPrior .conti .graph {
    width: 40%;
    display: flex;
    vertical-align: top;
    flex: 0 1 auto;
    position: relative;
}

.corpPlan-2019 .stratPrior .conti .graph .column {
    /*width: 25%;*/
    height: 300px;
    display: inline-block;
    border-left: 1px solid rgba(125,125,125,.7);
    flex: 1;
}

.corpPlan-2019 .stratPrior .conti .graph .column p {
    font-family: museosans700 !important;
    margin: 10px 0 0;
    padding-left: 5px;
    border-bottom: 1px solid rgba(125,125,125,.7);
    text-align: center;
}

.corpPlan-2019 .bio {
    background-color: #dfe0de;
    padding: 20px;
	min-height: 270px;
}

.corpPlan-2019 .bio h3 {
    font-family: museosans700;
    font-size: 14pt !important;
    color: #005874 !important;
    display: inline-block;
}

.corpPlan-2019 .bio img {
    float: right;
    max-height: 200px;
    margin: 10px 0 10px 50px;
}

@media screen and (min-width: 992px) {
    .corpPlan-2019 .desktopHidden {
        display: none !important;
        visibility: hidden;
    }
    .corpPlan-2019 .stratPrior .conti p.bar::before {
        content: "";
        position: absolute;
        top: 5px;
        left: 100%;
        height: 30px;
        background-color: #005874;
    }
    .corpPlan-2019 .stratPrior .conti p.bar.some::before {
        width: calc(25% - 15px);
    }

    .corpPlan-2019 .stratPrior .conti p.bar.half::before {
        width: calc(50% - 15px);
    }

    .corpPlan-2019 .stratPrior .conti p.bar.most::before {
        width: calc(75% - 15px);
    }

    .corpPlan-2019 .stratPrior .conti p.bar.full::before {
        width: calc(100% - 15px);
    }

    .corpPlan-2019 .stratPrior .conti p.bar:after {
        content: "";
        position: absolute;
        top: 5px;
        height: 30px;
        width: 30px;
        border-top: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-left: 15px solid #005874;
    }
    .corpPlan-2019 .stratPrior .conti p.bar.some::after {
        left: calc(100% + 25% - 15px);
    }

    .corpPlan-2019 .stratPrior .conti p.bar.half::after {
        left: calc(100% + 50% - 15px);
    }

    .corpPlan-2019 .stratPrior .conti p.bar.most::after {
        left: calc(100% + 75% - 15px);
    }

    .corpPlan-2019 .stratPrior .conti p.bar.full::after {
        left: calc(100% + 100% - 15px);
    }
}

@media screen and (max-width: 992px) {
    .corpPlan-2019 .mobileHidden {
        display: none !important;
        visibility: hidden;
    }
    .corpPlan-2019 .stratPrior .conti {
        display: block;
    }
    .corpPlan-2019 .stratPrior .conti h4 {
        border-bottom: none;
    }
    .corpPlan-2019 .stratPrior .conti .objectives {
        display: block;
        width: 100%;
        height: auto;
        padding: 10px 0;
    }
    .corpPlan-2019 .stratPrior .conti .deliverables {
        display: block;
        width: 100%;
    }
    .corpPlan-2019 .objectivesPurpose .banner h3 {
        font-size: 30pt;
    }
    .corpPlan-2019 .objectivesPurpose .quadrants .quad {
        width: 100%;
    }
    .corpPlan-2019 .stratPrior .conti .deliverables .graph {
        width: 100%;
        display: block;
    }
    .corpPlan-2019 .stratPrior .conti .deliverables .graph .column {
        height: 100px;
        width: 25%;
        border-top: 1px solid rgba(125,125,125,.7);
        border-right: 1px solid rgba(125,125,125,.7);
        border-bottom: 1px solid rgba(125,125,125,.7);
        flex: 0 auto;
    }
    .corpPlan-2019 .stratPrior .conti div.bar::before {
        content: "";
        position: absolute;
        top: 60px;
        left: 0;
        height: 30px;
        background-color: #005874;
    }
    .corpPlan-2019 .stratPrior .conti div.bar.some::before {
        width: calc(25% - 15px);
    }

    .corpPlan-2019 .stratPrior .conti div.bar.half::before {
        width: calc(50% - 15px);
    }

    .corpPlan-2019 .stratPrior .conti div.bar.most::before {
        width: calc(75% - 15px);
    }

    .corpPlan-2019 .stratPrior .conti div.bar.full::before {
        width: calc(100% - 15px);
    }
    .corpPlan-2019 .stratPrior .conti div.bar:after {
        content: "";
        position: absolute;
        height: 30px;
        width: 30px;
        top: 60px;
        border-top: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-left: 15px solid #005874;
    }
    .corpPlan-2019 .stratPrior .conti div.bar.some::after {
        left: calc(25% - 15px);
    }

    .corpPlan-2019 .stratPrior .conti div.bar.half::after {
        left: calc(50% - 15px);
    }

    .corpPlan-2019 .stratPrior .conti div.bar.most::after {
        left: calc(75% - 15px);
    }

    .corpPlan-2019 .stratPrior .conti div.bar.full::after {
        left: calc(100% - 15px);
    }
	

	
}

/* ******************************
END of Corporate Plan 2019
******************************* */

/* ******************************
Highlights blocks
2021-09-17
Styles used in the case studies and content highlight blocks
******************************* */
  .highlights-item{
    clear: both;
    margin: 20px 0px 0px 0px;
  }

  .highlights-item:first-child{
    margin: 0px;
  }
  
  .cer-infoBlock-buttons-block{
    text-transform: uppercase;  /* Fix: We shouldn't be writing the text uppercase when it is meant as a style.*/
    position: relative;
  }

  /* Fix to normalise the position of the two See all buttons */
 #MSOZoneCell_WebPartWPQ2  .cer-infoBlock-buttons-block:last-child{
    top: 8px;
  } 

  /* Reset the news-CSS for these blocks and the p tags */
  .highlights-item p{
      min-height: 0px;
  }

  .highlights-item h3{
    margin: 0px;
}
  
  .highlights-item .cer-infoBlock-buttons-block{
      margin-top: 10px;

  }

  .right .cer-infoBlock-buttons-block{
    clear: both;
    float: right;
  }
  
  .highlights-item .highlights-thumb{
      float: left;
      margin: 0px 0px 10px 0px;
      width: 150px;
      height: 150px;
  }
  
  .test_thumb{
      background-color: darkgrey;
      margin: 0px 0px 10px 0px;
      width: 150px;
      height: 150px;
  }
  
  .highlights-thumb img{
      width: 150px;
      height: 150px;
  }
  

  
  /* Fixes for the cases where a thumbnail is present.
    eg: If a title has a thumb sibling, ensure it's indented for the thumb */
  .highlights-item .highlights-thumb ~ .highlights-title,.highlights-item .highlights-thumb ~ .cer-infoBlock-buttons-block, .highlights-item .highlights-thumb ~ .highlights-body   {
      margin-left: 160px;
  }

/* ******************************
END Highlights blocks
******************************* */



/* ******************************
CER cards
2021-10-12
Styles used in the consultation hub and carbon exchange page.
These styles are for standard "cards" for display in a variety of situations eg: timelines, by themselves, tiled...
******************************* */
.cer-card{      
    padding: 1px;
    width: 100%;
    background-color: transparent;
    position: relative;
    border-radius: 6px;
    transition: 0.3s;
    box-shadow: -1px 8px 8px 9px #e9e9e9;
    top: 12px;
  }

  .cer-card:hover{
    box-shadow: -1px 8px 10px 10px #bbbbbb;
  }

  .step-title-background{
    background-image: linear-gradient(to top right, #2d6b94, #7dc1ee);
    position: relative;
    border-radius: 6px;
  }
  
  .cer-card .step-title{
    height:fit-content;
    position: relative;
  }
  
  .cer-card .step-title h2{
      font-size: 1.5em !important;
      font-weight: 500 !important;
      color: white !important;
      margin: 0px !important;
      line-height: 1.5em !important;
      padding: 5px 5px 5px 10px !important;
  }

/* ******************************
END CER cards
******************************* */


/* ******************************
Consultation hub cards
2021-10-12
Styles used in the consultation hub.
These styles are designed to to augment the existing CER card styles above.
******************************* */
.consultation-hub .cer-card .step-title-background{
    /* custom CSS for the teal background */
}

.consultation-hub .current-projects .cer-card .step-title-background{
    /* custom CSS for the cog */
}

.consultation-hub .past-projects .cer-card .step-title-background{
    /* custom CSS for the tick */
}

.card-info{
    max-width: 800px; /* Set a max width, still allows for fluid shrinking on small screens */
    margin: 10px 10px 40px 0px;
    box-shadow: 0px 4px 8px 0px rgb(0, 0, 0, 0.2); /* Based of the shadows used on the CSF web presence */
    border-radius: 15px;
    transition: 0.3s;
  }
  
  .card-info:hover{ /* helps make the cards act like cards (gives them a send of phyicality) */
      box-shadow: 0px 8px 16px 0px rgb(0, 0, 0, 0.5);
  }
  
  .card-info .card-info-background{
    border-radius: 15px 15px 0px 0px;
    background-color: #005874;
    min-height: 90px;
    }
  
  .card-info .card-info-background .fa{
    color: #fff !important;
    opacity: 50%;
    font-size: 80px;
    padding: 10px;
    float: right;
  }
  .card-info .card-title{
    width: calc(100% - 90px); /* This calculation allows enough space on the right for the icon */
    padding: 1px 1px 1px 20px;
  }
  
  .card-info .card-title h2{
    text-align: left;
    font-weight: 700;
    font-style: normal;
    font-size: 28px;
    color: #fff !important;
   }
  
  /* The margins for the blurb and consultation list  */
  .card-info .card-blurb, .card-info .consultation-list{
    margin: 10px 20px;
  }
  
  .card-info .card-blurb{
    font-weight: 400;
    font-size: 18px !important;
  }

  .card-info .card-blurb p, .card-info .card-blurb li{
    font-weight: inherit;
    font-size: inherit;
  }

  
  .card-info .consultation-list{
      list-style-type: none;
      padding-left: 0px; 
  }

/* ******************************
END Consultation hub cards
******************************* */


/* ******************************
Consultation information blocks 
2021-10-12
These blocks are used inside the consultation hub cards and on the pages for those consultations.
These styles are designed for this kind of code block:

<div class="consultation-info-block">
    <h4 class="title"><i class="fa fa-calendar" aria-hidden="true"></i> Public consultation 1</h4>
    <div class="dates">19/02/21 - 19/3/21</div>
    <div class="status">
        <span class="label label-default">complete</span>
    </div>
</div>

******************************* */

.consultation-info-block{
  margin-bottom: 10px;

}

.consultation-info-block .fa{
    font-size: 1.4em !important;
    padding: 2px;
    margin-right: 2px;
}

.stage-details .consultation-info-block .fa{
  font-size: 1.4em !important;
  padding: 1px;
}
.consultation-info-block .title, .consultation-info-block .dates{
    color: #005874 !important;
    font-size: 1.4em !important;
    padding: 10px;
}

.consultation-info-block .title, .consultation-info-block .dates, .consultation-info-block .status{
    display: inline-block !important;
    font-size: 1.4em !important;
    padding: 0px;
    margin: 0px 20px 0px 0px; 
}




/* Make the info block larger when used as a heading in content (eg on the consultation pages like CERT */
.stage-details .consultation-info-block .title, .stage-details .consultation-info-block .dates, .stage-details .consultation-info-block .status{
    font-size: 1.5em !important;
}

.consultation-info-block .label{
    float: none;   
    /* Fix for the SP search "label" CSS issue */
}

.consultation-info-block-2 .status label{
  width: 20px;
  height: 10px;
}

.learn-button{
  padding: 10px;
  text-align: right;
}

.learn-button .btn, .learn-button .btn:visited{
  color: #fff !important;
  background-color: #005874 !important;
}

.learn-button .btn:hover{
  color: black !important;
  background-color: #a9d6e4 !important;
}

/* ******************************
END Consultation information blocks 
******************************* */

/* ******************************
Timeline
2021-10-12
Styles used in the carbon exchange timeline.
These styles are designed to be used with the CER cards to show a vertical timeline.
******************************* */
  
    .right .step-title h2{
        text-align: right;
        padding: 5px 10px 5px 5px !important;
    }
  
    /* .timeline .container-inner{ */
    .timeline .cer-card{      
        z-index: 5; 
    }
    
    /* The actual timeline (the vertical ruler) */
    .timeline{
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      counter-reset: erf_participation_steps;  
    }
    
    /* The actual timeline (the vertical ruler) */
    .timeline::after{
      content: '';
      position: absolute;
      width: 6px;
      background-color: rgb(241, 236, 236);
      top: 25px;
      bottom: 0;
      left: 50%;
      margin-left: -3px;
    }
    
    /* Container around content */
    .timeline .tcontainer {
      padding: 2px 50px;
      border-top: #2d6b94;
      border-width: thick;
      position: relative;
      background-color: inherit;
      width: 50%;
      border-radius: 6px;
  }
  
  .timeline .content h2{
      padding: auto;
      color: #2d6b94;
  }
    
    /* The circles on the timeline */
   .timeline .tcontainer::after{
      counter-increment: erf_participation_steps;
      content: counter(erf_participation_steps);
      font-weight: bolder;
      text-align: center;
      color: white;
      position: absolute;
      line-height: 50px;
      font-size: 1.6em;
      width: 50px;
      height: 50px;
      right: -25px;
      background-image: linear-gradient(to top right, #2d6b94, #7dc1ee);
      top: 15px;
      border-radius: 50%;
      z-index: 5;
      box-shadow: 4px 4px 5px  #cccbcb;
    }
    
    
    /* Place the container to the left */
    .timeline .left{
      left: 0;
    }
  
    /* Place the container to the right */
    .timeline .right{
      left: 50%;
    }
  
    
    /* Add lines to the left container (pointing right) */
   .timeline .left::before, .timeline .right::before{
      content: " ";
      height: 0px;
      position: absolute;
      background-color: rgb(238, 235, 235);
      top: 35px;
      width: 60px;
      z-index: 1;
      border: solid 4px rgb(238, 235, 235);    
    }
    
   .timeline .left::before{
      right: -1px;
    }
    
   .timeline .right::before{
      left: -1px;
    }
  
    
    /* Fix the circle for containers on the right side */
    .timeline .right::after{
      left: -25px;
    }
     
    
    /* The actual content */
    .timeline .content{
      padding: 20px 30px;
      background-color: rgb(245, 245, 245);
      position: relative;
      border-radius: 6px;
      line-height: 1.4em;
      
  }

/* ******************************
    END timeline
******************************* */

/* ******************************
Stage diagrans (staged progress tracker)
2021-10-12
Styles used in the consultation hub. Shows the progress of a (currently) 6 stage process as a horizontal diagram.
******************************* */


.staged-progress-tracker{  /* ul or ol */
    position: relative;
    list-style: none;
    margin: 0px;
    z-index: 5;
  }

.circle-outlines .fa{
    display: inline-block !important;  /* Fix to allow animating of the font awesome v4.x icons*/
}
  
.circle-outlines {
    height: 45px;
    width: 45px;
    line-height: 38px;
    vertical-align: middle;
    text-align: center;
    background-color: white;
    border-radius: 50%;
    border: 6px solid #a3a5a8;
    display: inline-block;
    font-size:1.8em;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    position:relative;
}

  
/* For all circles that are children of active list items, colour them blue*/

    .staged-progress-tracker .active .circle-outlines, 
    .stage-details.active .title-block .circle-outlines {
        background-color: #005874;
        border: 6px solid #005874;
        color: white;
        font-weight: bold;
    }

    /* Horizontal only */

    .staged-progress-tracker.horizontal li{
        margin: 0px 0px;
        display: inline-block;
        position: relative;
        vertical-align: top;
        text-align: center;
        width: calc(750px/6);
    }

/* Lines on the stages */

    /* Set default colour and style for lines - set them to grey
    Special case: Nested lists must have a line connecting them to the parent.
    */
    .staged-progress-tracker li:not(:first-child) .circle-outlines:before,
    .staged-progress-tracker.vertical .staged-progress-tracker li:first-child .circle-outlines:before  {
    border-width: 5px;
    border-style: solid;
    border-color: #a3a5a8;
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    }

    /* Set active colour for lines - set them to blue.
    Special case: Nested lists must have a line connecting them to the parent.  */
    .staged-progress-tracker li.active:not(:first-child) .circle-outlines:before,
    .staged-progress-tracker.vertical .staged-progress-tracker li.active .circle-outlines:before
        {
        border-color: #005874;
    }


    /* Apply the horizonal lines */
    .staged-progress-tracker.horizontal li:not(:first-child) .circle-outlines:before {
        border-left: none;
        border-bottom: none;
        border-right: none;
        height: 1px;
        top: 13px;
        left: calc(-750px/6);
        width: calc(750px/6);
    }

/* stage titles */

    .staged-progress-tracker .label-block{
        text-align: center;
        padding: 5px;
        margin-top: 15px; 
        margin-bottom: 5px;
        transition: 0.3s;
    }

    .staged-progress-tracker .label-block .main-title{
        font-weight: bold;
    }

    .staged-progress-tracker .label-block .sub-title{
        margin-top: 0px; 
        margin-bottom: 5px;
    }

/* Stage links */

    /* making links stay coloured */

    .staged-progress-tracker a {
        text-decoration: none;
        color: inherit;
    }


    .staged-progress-tracker a .main-title{
        color: inherit;
        text-decoration: underline;
    }


    /* Hover animation */
    .staged-progress-tracker a:hover .label-block{
        background-color: inherit;
        border-collapse: separate; /* Fix to make the radius work */
        border-radius: 10px;
        
      }
      

/* Animation */

    @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
    @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
    @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

    .rotate_animation {

        -webkit-animation:spin 4s linear infinite;
        -moz-animation:spin 4s linear infinite;
        animation:spin 4s linear infinite;
		animation-iteration-count: 5;
    }

/* Stage details */

    .stage-details{
        margin-top: 20px;    
    }

    /* Indent the content for the details blocks */
    .stage-details .content-block{
        margin-left: 75px;
    }

    .stage-details .title-block .title{
        display: inline-block !important;
        margin-left: 10px;
    }


/* ******************************
    END stage diagram
******************************* */

/* ******************************
    START CER charts
******************************* */

.cerChart .panel-title{
    color: white !important;
    font-size: 16px !important;
    line-height: normal !important;
}

.cerChart table{
    border: 1px solid grey;
    border-collapse: collapse;
}

.cerChart thead{
    border: 1px solid grey;
}

.cerChart thead th {
    background-color: lightgray;
    padding: 5px;
}

.cerChart tbody td, .cerChart tbody th{
    padding: 5px 2px;
}

.cerChart tbody tr:nth-child(even){
    background-color: #e6f2ff;
}

.cerChart .about-fig-num{
    display: inline-block;
}

.cerChart .about-fig-num::first-letter{
    text-transform: lowercase;
    /* display: inline-block; */
}

.cerChart .image-frame img{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.cerChart .highcharts-caption{
    display: none;
}

.cerChart .highcharts-title, .cerChart .highcharts-subtitle{
    display:none;
}

.cerChart .title-block{
    text-align: center;
}

.cerChart .title-block h3{
    margin-top: 0px;
}

/* ******************************
    END CER charts
******************************* */

/* 
    START Datatables
*/

/* fix long cells (eg comments or paragraph info ) in listed cells */

.dtr-details li{
    white-space: pre-wrap;
}

/* Darren to add custom css for .cer-table-interactive */

.cer-table-interactive th{
    background-color: #727477;
    color: white;
    font-size: 14px;
}

/* ******************************
    START EVP
******************************* */
.evp-card-wrapper{
  display: inline-block;
  margin-bottom: 16px;
  justify-content: space-evenly;
}

.evp-card-wrapper .card, .evp-card-wrapper .card {

  overflow: hidden;
  float: left;
  width: calc(33% - 10px);
  margin: 10px 12px 10px 0px;
  border-radius: 15px;
  transform-origin: bottom;
  transition: transform .5s, box-shadow 1s;
  box-shadow: 0px 4px 8px 0px rgb(0, 0, 0, 0.2);
  max-width: 285px;
  height: 400px;
  box-sizing: border-box;
}

.card.large{
  overflow: hidden;
  float: none;
  max-width: 700px;
  margin: 40px auto !important;
  height: auto;
  box-sizing: border-box;
  margin: 10px;
  border-radius: 15px;
  transform-origin: bottom;
  transition: transform .5s, box-shadow 1s;
  box-shadow: 0px 4px 8px 0px rgb(0, 0, 0, 0.2);
  text-align: left;
  padding: 30px;
}

.evp-personal-profile {
  margin: 20px;
  border-radius: 15px; 
  box-sizing: border-box;
  text-align: center;
  /* box-shadow: 0px 4px 8px 0px rgb(0, 0, 0, 0.2); */
}


.card.bounce:hover{
  animation-name: bounce;
  animation-timing-function: ease;

  transform: scale(1.02) perspective(0px);
  box-shadow: 0px 8px 16px 0px rgb(0, 0, 0, 0.5);
}

.card-content{
  margin: 20px;
  text-align: center;
}

@media screen and (max-width: 650px) {
  .evp-card-wrapper .card{
    overflow: unset;
	float: unset;
	width: auto;
	margin: 10px 25px 10px 25px;
	max-width: unset;
	height: auto;
	padding-top: 5px;
  }
}

.profile-img{
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  z-index: 999;
  object-position: center top;
  box-shadow: 0px 4px 8px 0px rgb(0 0 0 / 10%);
}

.profile-img:hover{
  animation-name: bounce;
  animation-timing-function: ease;
  box-shadow: 0px 8px 16px 0px rgb(0, 0, 0, 0.5);
  transform: scale(1.02) perspective(0px);
  box-shadow: 0px 4px 8px 0px rgb(0 0 0 / 20%);
}
.pers-profile-img:hover{
  animation-name: bounce;
  animation-timing-function: ease;
  box-shadow: 0px 15px 20px 0px rgb(0, 0, 0, 0.6);
  transform: scale(1.08) perspective(0px);
  box-shadow: 0px 4px 8px 0px rgb(0 0 0 / 20%);
}

.pers-profile-img{
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  z-index: 999;
  object-position: center top;
  box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 20%);
  justify-content: center;
}

.card-about-info{
 text-align: center;
}

.read-more-btn{
  margin-bottom: 0;
  text-decoration: none;
}

.evp-quote{
  max-height: 55px;
  min-height: 55px;
}

.evp-card-wrapper .card .btn{
  padding: 1rem 2.5rem;
  background-color: transparent;
  border-radius: 2rem;
  margin: 1rem 0;
  text-transform: uppercase;
  color: #0081A6;
  justify-content: center;
  transition: all .5s;
  text-decoration: none;
}

.evp-card-wrapper .card .btn:hover{
  transform: translateY(-2px);
  box-shadow: .5rem .5rem 2rem rgba(0,0,0,0.2);
  background-color: #0081A6;
  color: #fff;
}

.evp-card-wrapper .card .btn:active{
  transform: translateY(0);   
  box-shadow: none;
}
