@-webkit-viewport {
	width: device-width;
	zoom: 1.0;
}
@-moz-viewport {
	width: device-width;
	zoom: 1.0;
}
@-ms-viewport {
	width: device-width;
	zoom: 1.0;
}
@-o-viewport {
	width: device-width;
	zoom: 1.0;
}
@viewport {
	width: device-width;
	zoom: 1.0;
}

/*  ------------------------------------------------------
    Variables for easy find and replace
    - - - - - - - - - - - - - - - - - - - - - - - - - - -


	$link:					#0E7BAC;
	$link-hover:			#4FAADE;

	$second-bg-color: #F6F6F6;
	$second-font-color: #707070;
	$table-border-color: #D6D6D6;

	Primary colour
	Blue text: #0E7BAC
	Blue background: #2091d2
	Blue: #40a5d5

	grey-01: #525252
	grey-02: #484848
	grey-03: #4A4A4A

	$body-font:				'HelveticaNeueW01-45Ligh', Helvetica, Arial, sans-serif;
	$heading-font:			'ff-meta-web-pro', Helvetica, sans-serif;


/*  ------------------------------------------------------
    Table of Contents
    for search based navigation
    - - - - - - - - - - - - - - - - - - - - - - - - - - -

		BASE STYLES

		**** Box Model Reset

		**** Typography
		---- Lists
		---- Breadcrumbs
		---- Tag list
		---- Quotations
		---- Text level elements
		---- Links

		**** Content Design Patterns
		---- Buttons
		---- Expando Styles
		---- Content Highlight box
		---- Date Pattern
		---- Site Messages
		---- light tab style
		---- Button Navigation
		---- Toggle Navigation

		**** Images

		**** Forms
		---- Form Help
		---- Form Errors
		---- Horizontal Form
		---- Oldschool Table based form styles
		---- Search Form
		---- Submit Bar
		---- Captcha

		**** Tables
		---- No Layout Table
		---- Stacked on mobile table

		**** Logo Gallery

		**** Helper classes
		---- Clearfix
		---- Floats and positioning
		---- Visually Hidden

		GLOBAL TEMPLATE

		**** Template Layout
		---- Header
		---- footer

		**** Widgets and modules
		---- Related Links
		---- Articles
		---- Article Category Subscribe
		---- Simple Image Gallery
		---- Gallery
		---- Gallery Preview
		---- Job Search
		---- Order Form
		---- Events
		---- Training module
		---- Training List Gallery
		---- Videos
		---- Notification Box

		**** Media Queries

		**** Print styles

------------------------------------------------------ */

/* ------------------------------------------------------
**** Box Model Reset
------------------------------------------------------ */

html {
	-webkit-box-sizing: border-box;
					box-sizing: border-box;
}

*, *:before, *:after {
	-webkit-box-sizing: inherit;
					box-sizing: inherit;
}

/* ------------------------------------------------------
**** Breakpoints
------------------------------------------------------ */

/* BP Smaller */
@media screen and (min-width: 35em) { /* 560px */

}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */

}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */

}

/* BP large */
@media only screen and (min-width: 80em) { /* 1280px */

}

/* BP xlarge */
@media screen and (min-width: 90em) {/* 1440px */

}

/* BP xxlarge */
@media screen and (min-width: 100em) {/* 1600px */

}

/* BP bigBoi */
@media screen and (min-width: 120em) {/* 1920px */

}

/* Legacy MAX width breakpoints */
@media screen and (max-width: 1600px) {}
@media screen and (max-width: 1270px) {}
@media screen and (max-width: 1080px) {}
@media screen and (max-width: 900px) {}
@media screen and (max-width: 830px) {}
@media screen and (max-width: 730px) {}
@media screen and (max-width: 590px) {}
@media screen and (max-width: 400px) {}

/* ------------------------------------------------------
**** Typography
------------------------------------------------------ */

html {
	font-size: 62.5%;
	-ms-text-size-adjust: 100%; /* These two prevent iOS text size adjust after orientation change, without disabling user zoom. */
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	line-height: 1.5;
	font-size: 1.8rem;
	color: #222;
	font-family: 'HelveticaNeueW01-45Ligh', Helvetica, Arial, sans-serif;
	font-weight: normal;
}

@media screen and (max-width: 1600px) {
	body {
		background-size: initial;
	}
}

/* ---- Headings ---- */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	margin: 0;
	text-rendering: optimizeLegibility;
	font-family: 'ff-meta-web-pro', Helvetica, sans-serif;
	font-weight: 400;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
	font-weight: normal;
	line-height: 1.2;
	color: #8a7b7b;
}

p + h1,
p + h2,
p + h3,
p + h4,
p + h5,
p + h6 {
    margin-top: 3rem;
}


h1, .h1 {
	font-size: 3.3rem;
}

h2, .h2 {
	font-size: 3rem;
}

h3, .h3 {
	font-size: 2.4rem;
	color: #0053a0;
}

h4, .h4 {
	font-size: 2rem;
}

h5, .h5 {
	font-size: 1.8rem;
}

h6, .h6 {
	font-size: 1.6rem;
}

.heading-inline {
	display: inline;
	float: left;
	padding: 0;
}

p,
ol,
ul,
dl,
p,
ol,
ul,
dl,
address {
	margin: 15px 0;
	margin: 1.5rem 0;
}

small {
	font-size: 12.8px;
	font-size: 1.28rem;
}

/* ---- Lists ---- */
ul,
ol {
    padding: 0 0 0 2rem;
}

li ul,
li ol {
    margin: 1rem 0;
}


/* 	Decimal counter lists
	eg.
	1. item
		1.1 item
		1.2 item
			1.2.1 item
			1.2.2 item
*/

.ol-counter-list ol {
    list-style-type: none;
    counter-reset: item;
}

.ol-counter-list > li,
.ol-counter-list ol > li {
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
}

.ol-counter-list > li:before,
.ol-counter-list ol > li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.6em;
}

.ol-counter-list li ol > li {
    margin: 0;
}

.ol-counter-list li ol > li:before {
    content: counters(item, ".") " ";
}

/* - inline lists - */

ul.inline,
ol.inline {
	list-style-type: none;
	margin-left: 0;
}
ul.inline > li,
ol.inline > li {
	display: inline-block;
	padding-left: 12px;
	padding-right: 12px;
}

/* - Links list - */
.linklist {
	list-style-type: none;
	padding-left: 0;
}

.linklist a {
	text-decoration: none;
}

.linklist a:before {
	content: "\003e\00a0";
	display: inline-block;
}

.linklist a:hover,
.linklist a:focus {
	text-decoration: underline;
}

/* ---- Breadcrumbs ---- */
.section--breadcrumb {
	-webkit-box-shadow: 0 2px 16px 0px rgba(0,0,0,0.3);
	box-shadow: 0 2px 16px 0px rgba(0,0,0,0.3);
	position: relative;
}
.breadcrumb {
	list-style-type: none;
	margin: 0;
	padding: 14px 0 12px 25px;
	font-size: 13px;
	font-size: 1.3rem;
	color: #FFF;
	background: #369cd6;
	text-transform: uppercase;
}
.breadcrumb--boxed {
	padding-left: 16px;
	padding-right: 16px;
}
.breadcrumb > li {
	display: inline;
	*display: inline;
	*zoom: 1;
}
.breadcrumb > li a {
	color: #FFF;
	text-decoration: none;
}
.breadcrumb > li a:hover {
	text-decoration: underline;
}
.breadcrumb > li:before {
	content: "\00a0\003e\00a0";

	margin: 0 2px;
}
.breadcrumb > li:first-child:before {
	content: none;
}

@media screen and (min-width: 1200px) {
	.breadcrumb {
		padding: 14px 0 12px;
	}
	.breadcrumb--boxed {
		padding-left: 16px;
		padding-right: 16px;
	}
}

/* ---- Quotations ---- */

blockquote {
	margin: 15px 0;
	margin: 1.5rem 0;
	padding: 8px 20px;
	background: #dadada;
	font-style: normal;
}

/* Temporary */
blockquote {
	background: none;
	padding: 0;
}

blockquote small:before {
	content: '\00A0 \2014';
}
blockquote small:after {
	content: '';
}
blockquote.pull-right {
	float: right;
	background-color: transparent;
}
blockquote.pull-right p, blockquote.pull-right small {
	text-align: right;
}
blockquote.pull-right small:before {
	content: '';
}
blockquote.pull-right small:after {
	content: '\00A0 \2014';
}
blockquote cite {
	font-style: normal;
}

q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

/* ---- Txt Helpers ---- */
/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .txt-large {
        font-size: 2.2rem;
    }
}

/* ---- HR ---- */
hr {
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #C1C1C1;
	margin: 2em 0;
	padding: 0;
	clear: right; /* --------!!!! Change this to left if the sidebar is on the right !!!!-------- */
}

/* ---- Tag list ---- */
.tag-list {
	margin: 20px 0;
}
.tag-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-block;
}
.tag-list h4 {
	display: inline-block;
}
.tag-list .tag {
	display: inline-block;
	margin-left: 10px;
}
.tag-list .tag a {
	text-decoration: none;
	color: #FFF;
	background-color: #f8921d;
	display: block;
	padding: 7px 13px;
	line-height: 1.1em;
	font-size: 13px;
	font-size: 1.3rem;
	text-transform: uppercase;
}
.tag-list .tag a:hover,
.tag-list .tag a:focus {
	background-color: #E9820D;
}

dl,
dd {
	margin-bottom: 1.5em;
}

.mainbar dt {
	font-family: 'HelveticaNeueW02-65Medi', Helvetica, Arial, sans-serif;
}

.dl-horizontal {
	*zoom: 1;
}
.dl-horizontal:before, .dl-horizontal:after {
	content: " ";
	display: table;
}
.dl-horizontal:after {
	clear: both;
}
.dl-horizontal dt {
	float: left;
	clear: left;
	width: 30.38869258%;
}
.dl-horizontal dd {
	margin-left: 32.99289258%;
}

/* ---- Text level elements ---- */

abbr[title] {
	border-bottom: 1px dotted #c6bfbf;
	cursor: help;
}

b, strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

ins {
	background-color: #f6f6f6;
	color: #473f3f;
	text-decoration: none;
}

mark {
	background-color: #f6f6f6;
	color: #473f3f;
	font-style: italic;
	font-weight: bold;
}

pre,
code,
kbd,
samp {
	font-family: 'Monaco', 'Courier New', monospace;
	color: #484040;
	background: #f6f6f6;
	padding: 18px 20px;
	margin: 0 -2px;
}

pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -.5em;
}

sub {
	bottom: -.25em;
}


/* ---- Links ---- */

a {
	color: #0E7BB2;
	word-break: break-word;
}

a:hover,
a:active,
a:focus {
	color: #4FAADE;
}

/* Address `outline` inconsistency between Chrome and other browsers. */
a:focus {
	outline: thin dotted;
}

/* Improve readability when focused and also mouse hovered in all browsers. */
a:active,
a:hover {
	outline: 0;
}



/* ------------------------------------------------------
**** Design Patterns
------------------------------------------------------ */

/* ---- Background colours ---- */

/* White */
.bg-white {
	background-color: #fff;
}

/* Lightest grey */
.bg-grey-01 {
	background-color: #E9E9E9;
}

/* Light grey */
.bg-grey-02 {
	background-color: #D8D8D8;
}

/* Mid grey */
.bg-grey-03 {
	background-color: #8D8D8D;
}

/* Blue */
.bg-primary {
	background-color: #2091d2;
}

/* Blue */
.bg-primary-02 {
	background-color: #369cd6;
}

.bg-texture {
	background-color: #2091d2;
	background: #40a5d5 url(../images/2019/bg-blue-box.jpg) no-repeat center top;
	background-size: cover;
}

/* Yellow / Orange */
.bg-accent {
	background-color: #f8921d;
}

.bg-accent-lgt {
	background-color: #FFAE39;
}

.bg-accent-drk {
	background-color: #F17C00;
}

/* ---- reverse text ---- */
.reverse-text {
	color: #ffffff;
}

.reverse-text a {
	color: inherit;
}

.reverse-text a:hover,
.reverse-text a:focus,
.reverse-text a:active {
	color: inherit;
}

.reverse-text h1,
.reverse-text .h1,
.reverse-text h2,
.reverse-text .h2,
.reverse-text h3,
.reverse-text .h3,
.reverse-text h4,
.reverse-text .h4,
.reverse-text h5,
.reverse-text .h5 {
	color: inherit;
}

.reverse-text .button {
	border-color: #fff;
}

.reverse-text .button:hover,
.reverse-text .button:focus,
.reverse-text .button:active {
	background-color: #fff;
	border-color: #fff;
	color: #2091d2;
}

/* ---- Buttons ---- */

.button {
	/* Structure */
	display: inline-block;
	zoom: 1;
	margin-bottom: 0;
	vertical-align: middle;
	text-align: center;
	cursor: pointer;
	/* styles */
	font-weight: normal;
	line-height: 1em;
	color: #fff;
	background-color: #F9A328;
	text-decoration: none;
	border-radius: none;
	border: 2px solid #F9A328;
	padding: 12px 24px;
	font-size: 1.5rem;
	text-transform: uppercase;
	font-family: 'HelveticaNeueW02-65Medi', Helvetica, Arial, sans-serif;
}

/* Firefox: Get rid of the inner focus border */
.button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.button-hover,
.button:hover,
.button:focus {
	background-color: #E18316;
	border-color: #E18316;
	color: #fff;
}

.button-medium {
	font-size: 1.5rem;
	line-height: 1.2;
	padding: 5px 8px 5px;
	margin: -2px 0;
}

.right.button-medium {
	margin-bottom: 0;
}

.button-small {
	font-size: 1.2rem;
	line-height: 8px;
	line-height: 1.2;
	padding: 6px 8px 5px;
	margin: -2px 0
}

.button-medium.button-add,
.button-medium.button-remove {
	padding-left: 18px;
	position: relative;
}

.button-small.button-add,
.button-small.button-remove {
	padding-bottom: 6px;
	padding-left: 18px;
	position: relative;
}

.button-small.button-add:before {
	content: '+';
	margin-right: 5px;
	margin-left: -1px;
	font-weight: bold;
	font-size: 14px;
	line-height: .55;
	display: block;
	position: absolute;
	width: 20px;
	left: 0;
	top: 8px;
}

.button-medium.button-remove:before,
.button-small.button-remove:before {
	content: '-';
	margin-right: 5px;
	margin-left: -1px;
	font-weight: bold;
	font-size: 1.2em;
	line-height: .55;
	display: block;
	position: absolute;
	width: 20px;
	left: 0;
	top: 8px;
}

.button-large {
	padding-left: 48px;
	padding-right: 48px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.button-block,
.button--block {
	display: block;
}

/* Disabled/unavailable button style */

.button[disabled],
.button-disabled,
.button-disabled:hover,
.button-disabled:focus,
.button-disabled:active {
	border: none;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
	filter: alpha(opacity=40);
	-khtml-opacity: 0.40;
	-moz-opacity: 0.40;
	opacity: 0.40;
	cursor: default;
	box-shadow: none;
}

/* Gets the buttons to line up with form inputs when you want them to */

.button.inline {
	margin-bottom: 0.75em;
}

/* Outline button  */
.button--outline {
	background-color: transparent;
	border-color: #F9A328;
	color: #8E8E8E;
}

.button--outline:hover,
.button--outline:focus {
	background-color: #E18316;
	border-color: #E18316;
	color: #fff;
}

/* White Outline button  */
.button--outline-white {
	background-color: transparent;
	border-color: #FFFFFF;
	color: #FFFFFF;
	padding-left: 40px;
	padding-right: 40px;
}

.button--outline-white:hover,
.button--outline-white:focus {
	background-color: #FFFFFF;
	border-color: #FFFFFF;
	color: #E18316;
}

/* ---- Button Icons ---- */
.btn-icon-end:after {
    content: "\00a0";
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
    position: relative;
    background-repeat: no-repeat;
}

.btn-icon-pre:before {
    content: "\00a0";
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    position: relative;
    background-repeat: no-repeat;
}

/* Arrow right */
.btn-icon-end.btn-icon-end-arrow-right:after {
    width: 0;
    height: 0;
    border-left: 9px solid #ffffff;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    top: -1px;
}

/* Twitter */
.btn-icon-pre.btn-icon-pre--twitter:before {
    width: 30px;
    height: 27px;
    background-image: url(../images/2019/icon_twitter.svg);
}

.btn-icon-pre.btn-icon-pre--twitter.btn-icon-hvr-white:hover:before,
.btn-icon-pre.btn-icon-pre--twitter.btn-icon-hvr-white:focus:before {
	background-image: url(../images/2019/icon_twitter-white.svg);
}

/* ---- Expando Styles ---- */

.expando-opener-heading {
	color: #e85505;
	cursor: pointer;
}

.expando-opener-heading:hover {
	color: #ae550d;
}

a.expando-opener-link:before,
.expando-opener-heading:before {
	content:"\003e ";
	margin-right: 5px;
	display: inline-block;
	top: -2px;
	position: relative;
}

.expando-opener-heading.expanded:before {
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.mainbar .expando-opener-heading {
	margin-top: 0.5em;
}

.expando {
	margin-bottom: 1em;
}

.expando.expanded {
	border: none;
	padding: 5px 30px;
	background-color: #f0f0f0;
	color: #505050;
	animation: fadeDown linear 0.3s;
	animation-iteration-count: 1;
	transform-origin: 50% 0%;
	-webkit-animation: fadeDown linear 0.3s;
	-webkit-animation-iteration-count: 1;
	-webkit-transform-origin: 50% 0%;
	-moz-animation: fadeDown linear 0.3s;
	-moz-animation-iteration-count: 1;
	-moz-transform-origin: 50% 0%;
	-o-animation: fadeDown linear 0.3s;
	-o-animation-iteration-count: 1;
	-o-transform-origin: 50% 0%;
	-ms-animation: fadeDown linear 0.3s;
	-ms-animation-iteration-count: 1;
	-ms-transform-origin: 50% 0%;
}

@keyframes fadeDown{
  0% {
    opacity:0;
    transform:  translate(0px,-10px)  ;
  }
  100% {
    opacity:10;
    transform:  translate(0px,0px)  ;
  }
}

@-moz-keyframes fadeDown{
  0% {
    opacity:0;
    -moz-transform:  translate(0px,-10px)  ;
  }
  100% {
    opacity:10;
    -moz-transform:  translate(0px,0px)  ;
  }
}

@-webkit-keyframes fadeDown {
  0% {
    opacity:0;
    -webkit-transform:  translate(0px,-10px)  ;
  }
  100% {
    opacity:10;
    -webkit-transform:  translate(0px,0px)  ;
  }
}

@-o-keyframes fadeDown {
  0% {
    opacity:0;
    -o-transform:  translate(0px,-10px)  ;
  }
  100% {
    opacity:10;
    -o-transform:  translate(0px,0px)  ;
  }
}

@-ms-keyframes fadeDown {
  0% {
    opacity:0;
    -ms-transform:  translate(0px,-10px)  ;
  }
  100% {
    opacity:10;
    -ms-transform:  translate(0px,0px)  ;
  }
}

/* Heading expando list */
.heading-expando-list {
	padding-left: 30px;
}
.heading-expando-list .expando-opener-heading {
    margin: 12px 0;
    margin: 1.2rem 0;

}

/* ---- Content Highlight box ---- */

.content-highlight {
	margin: 15px 0;
	margin: 1.5rem 0;
	padding: 15px 20px 15px;
	background: #EDF4F9; /* Old browsers */
	background: -moz-linear-gradient(top, #D6E9F5 0%, #EDF4F9 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#D6E9F5), color-stop(100%,#EDF4F9)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #D6E9F5 0%,#EDF4F9 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #D6E9F5 0%,#EDF4F9 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #D6E9F5 0%,#EDF4F9 100%); /* IE10+ */
	background: linear-gradient(to bottom, #D6E9F5 0%,#EDF4F9 100%); /* W3C */;
}


/* ---- Date Pattern ---- */

.calendar-date {
	background: #e85505;
	color: #fff;
	border-radius: 6px;
	padding: 0px 0 5px;
	width: 60px;
	text-align: center;
}
.calendar-date-text {
	color: #fff;
	text-decoration: none; /* Used if the date is a link */
	font-size: 24px;
	font-size: 2.4rem;
	line-height: 1;
	margin: 0;
	padding: 0;
}

.calendar-date-text span {
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
	text-transform: uppercase;
}


/* ---- Site Messages ---- */

.messages {
	background: #f6f6f6;
	border: 1px solid #D6D6D6;
	font-family: arial,sans-serif;
	list-style-type: none;
	margin: 15px 0;
	padding: 10px 0;
	-webkit-box-shadow: 0 0 8px 0 #404040;
	box-shadow: 0 0 8px 0 #404040;
}

.messages li {
	margin: 0 0 0 16px;
	padding: 7px 20px 7px 30px;
	vertical-align: bottom;
}

/* ---- light tab style ---- */

/* ALA the Air Quality pop up windows */

.light-tabs {
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
    font-size: 1.6rem;
    border-bottom: 1px solid #e4e4e4;
    display: flex;
}

.light-tabs--right {
    text-align: right;
    float: right;
}

.light-tabs__tab {
    margin: 0 7px 0 0;
    color: rgba(0,0,0,.6);
    text-decoration: none;
    flex: 0 0 auto;
}
.light-tabs__tab:last-child {
	margin-right: 0;
}


.light-tabs__tab button:hover,
.light-tabs__tab button:focus ,
.light-tabs__tab button:active {
    background-color: #efefef;
}


.light-tabs button {
	background-color: #e4e4e4;
	border: none;
	-webkit-appearance: none;
	outline: none;
	padding: 8px 15px 5px;
	border-top: 1px solid #e4e4e4;
	border-left: 1px solid #e4e4e4;
	border-right: 1px solid #e4e4e4;
}


.light-tabs__tab[data-selected='true'] button {
	background-color: #FFF;
}

/* ---- Button Navigation ---- */

/* ALA the Air Quality pop up windows */

.btn-nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.btn-nav__item {
    margin: 0 5px 4px 0;
    border-radius: 4px;
    background: #fff;
    opacity: .7;
}
.btn-nav__item:last-child {
	margin-right: 0;
}

.btn-nav__item a {
    display: block;
    background: #2091d2;
    padding: 4px 7px 3px;
    color: #fff;
    font-family: 'HelveticaNeueW02-65Medi', Helvetica, Arial, sans-serif;
    text-decoration: none;
    border-radius: 4px;
}

.btn-nav__item:hover,
.btn-nav__item--on {
    opacity: 1;
}



/* ---- Toggle Navigation ---- */

/* ALA the Air Quality widget */

.toggle {
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #C1C1C1;
    border-radius: 4px;
    overflow: hidden;

    background: #eaf3f8;
    background: -webkit-linear-gradient(#eaf3f8 0%, #ffffff 100%);
    background: -o-linear-gradient(#eaf3f8 0%, #ffffff 100%);
    background: linear-gradient(#eaf3f8 0%, #ffffff 100%);
    display: inline-block;
}
.toggle__item {
    float: left;
    overflow: hidden;
}
.toggle__item a {
    color: inherit;
    text-decoration: none;
    display: block;
    padding: 5px 20px;
    transition: all 200ms ease-in-out;
}
.toggle__item a:hover,
.toggle__item a:focus
.toggle__item a:active {
    background: #41adde;
    color: #ffffff;
}
.toggle__item.toggle__item--on {
    padding: 5px 20px;
    color: inherit;
    background: #F5921F;
    color: #ffffff;
    border-radius: 3px;
}
.toggle__item:first-child {
    border-radius: 0 3px 3px 0;
    margin-right: 1px;
}
.toggle__item:last-child {
    border-radius: 3px 0 0 3px;
}

/* ------------------------------------------------------
**** Images
------------------------------------------------------ */


img {
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

/*

Old school image left and right are more generic now so we can use them on anything

You can find them in the helper classes section

*/

/* ------------------------------------------------------
**** Forms
------------------------------------------------------ */
/* ---- Form Placeholder ---- */
::-webkit-input-placeholder {
    color: #8E8E8E;
}

::-moz-placeholder {
    color: #8E8E8E;
}

:-ms-input-placeholder {
    color: #8E8E8E;
}

:-moz-placeholder {
    color: #8E8E8E;
}

.placeholder-text {
    color: #8E8E8E;
}

form {
	margin: 0 0 1.5em 0;
}

form.form-extra-info {
	margin: 0;
}

form ul {
	list-style-type: none;
	margin: 0 0 1.5em 0;
	padding: 0;
}

fieldset {
	margin-bottom: 1.5em;
	padding: 0;
	border-width: 0;
}
fieldset:last-of-type {
	margin-bottom: 0;
}

legend {
	display: block;
	width: 100%;
	margin-bottom: 15px;
	*margin-left: -7px;
	padding: 0;
	border: 0;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5em;
	white-space: normal;
}
legend small {
	font-size: 1.125em;
	color: #625757;
}

label,
input,
button,
select,
textarea {
	font-family: sans-serif;
}

label {
	display: block;
	margin-bottom: 0.375em;
	text-align: left;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"] {
	display: inline-block;
	margin: 0 0 0.75em;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5em;
	color: inherit;
	vertical-align: middle;
	background-color: #EFEFEF;
	border: none;
	border-radius: 0;
	padding: 9px 15px 7px;
}

input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"] {
	display: -webkit-inline-flex;
}

input[type="submit"] {
	-webkit-appearance: none;
	border: none;
	outline: none;
}

input,
textarea {
	width: 100%;
}

textarea {
	height: auto;
	resize-x: none;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
	background-color: #e5e5e5;
}
textarea:hover,
input[type="text"]:hover,
input[type="password"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="date"]:hover,
input[type="month"]:hover,
input[type="time"]:hover,
input[type="week"]:hover,
input[type="number"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="color"]:hover {
	border-color: #aeaeae;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
	border-color: #828282;
	outline: 0;
	outline: thin dotted \9;
}

input[type="radio"],
input[type="checkbox"] {
	margin: 0 8px 0 16px;
	margin: 0 0.5em 0 1em;
	margin-top: 6px \9;  /* IE8-9 */
	line-height: normal;
}

input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
	width: auto;
}

select {
	width: 100%;
	background: #e5e5e5;
}
html.lt-ie9 select {
	background: #e5e5e5;
}


select[multiple],
select[size] {
	height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	font-size: 1.5rem;
	color: #ccc;
}

.radio,
.checkbox {
	min-height: 1.5em;
}

.radio input[type="radio"],
.checkbox input[type="checkbox"] {
	float: left;
	margin-right: 10px;
}

.controls > .radio:first-child,
.controls > .checkbox:first-child {
	padding-top: 5px;
}

.radio.inline,
.checkbox.inline {
	display: inline-block;
	padding-top: 5px;
	margin-bottom: 0;
	vertical-align: middle;
}

.radio.inline + .radio.inline,
.checkbox.inline + .checkbox.inline {
	margin-left: 12px;
}

.input-mini {
	width: 60px;
}

.input-small {
	width: 90px;
}

.input-medium {
	width: 150px;
}

.input-large {
	width: 210px;
}

.input-xlarge {
	width: 270px;
}

.input-xxlarge {
	width: 530px;
}

input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
	opacity: .25;
}

.form-actions {
	margin-top: 1.5em;
	margin-bottom: 1.5em;
	padding: 0.5em 24px 1.5em;
	*zoom: 1;
}
.form-actions:before, .form-actions:after {
	content: " ";
	display: table;
}
.form-actions:after {
	clear: both;
}

[placeholder]:focus::-webkit-input-placeholder {
	opacity: 0;
	transition: opacity .5s .5s ease;
}

/* ---- form help ---- */

.help-block,
.help-inline {
	color: #625757;
	font-size: 12.8px;
	font-size: 1.28rem;
	line-height: 1.4;
}

.help-block {
	display: block;
	margin-bottom: 0.75em;
}

.help-inline {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	vertical-align: middle;
	padding-left: 12px;
}

.help-block,
.help-inline {
	color: #625757;
}

.help-block {
	display: block;
	margin-bottom: 0.75em;
}

.help-inline {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	vertical-align: middle;
	padding-left: 24px;
}

/* ---- Form Errors ---- */

.has-error {

	background: #fae8e7;
	padding: 10px 20px;
	margin: 0 -20px;
}
.has-error input {
	border-color: #B94A48;
}

.has-error .help-block,
.has-error .help-inline {
	color: #B94A48;
	font-weight: bold;
	font-style: italic;
}


/* ---- Horizontal Form ---- */

.form-horizontal {
	/*controls*/
	/*input*/
}
.form-horizontal .control-group {
	margin-bottom: 1.5em;
	*zoom: 1;
}
.form-horizontal .control-group:before, .form-horizontal .control-group:after {
	content: " ";
	display: table;
}
.form-horizontal .control-group:after {
	clear: both;
}
.form-horizontal .control-label {
	float: left;
	width: 49%;
	padding-top: 5px;
	padding-right: 24px;
	text-align: right;
}
.form-horizontal .controls {
	*display: inline-block;
	margin-left: 49%;
	*margin-left: 0;
	*padding-left: 24px;
}
.form-horizontal .controls:first-child {
	*padding-left: 24px;
}
.form-horizontal .help-block {
	margin-bottom: 0;
}
.form-horizontal input + .help-block,
.form-horizontal select + .help-block,
.form-horizontal textarea + .help-block {
	margin-top: 0.75em;
}
.form-horizontal .form-actions {
	padding-left: 49%;
}

.form-horizontal input,
.form-horizontal textarea,
.form-horizontal select {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	margin-bottom: 0;
	vertical-align: middle;
}
.form-horizontal .hide {
	display: none;
}
.form-horizontal label,
.form-horizontal .btn-group {
	display: inline-block;
}
.form-horizontal .control-group {
	margin-bottom: 0.75em;
}
.form-horizontal legend + .control-group {
	margin-top: 1.5em;
	-webkit-margin-top-collapse: separate;
}

/* Oldschool Attractive default form styles */

table.form-section,
table.checkbox-list {
	border-collapse: collapse;
	border: 1px #d7d7d7 solid;
	margin-bottom: 30px;
	width: 100%;
}
table.form-section * {
	margin-bottom: 0;
}
table.form-section .datepicker {
	width: 25%;
}

table.form-section tr,
table.checkbox-list tr {
	border-bottom: 1px solid #efede9;
}
table.form-section tr:last-child,
table.checkbox-list tr:last-child {
	border-bottom: 0;
}

table.form-section th,
table.form-section tr > th:first-child {
	width: 200px;
	padding: 20px 10px 10px 15px;
	vertical-align: top;
	border: none;
	background: none;
	font-size: 18px;
	font-size: 1.8rem;
}

table.form-section td,
table.checkbox-list td {
	width: auto;
	padding: 12px 8px;
	vertical-align: top;
	border: none;
}

table.form-section td.field-info {
	vertical-align: middle;
	width: 150px;
}

table.checkbox-list td.check {
	width: 10px;
	text-align: center;
}

table.form-section span.s {
	display: block;
	margin: 15px 0 0 0;
	background: url("../images/arw_blue.gif") no-repeat scroll left center transparent;
	padding: 0 0 0 22px;
}

table.form-section table.checkbox-list {
	margin: 0;
}

span.field-error:before {
  content: none;
}
.form-section .field-info span {
	color: #000;
	font-size: 11px;
	font-size: 1.1rem;
	margin: 0;
	background: #f2f2f2;
}

/* Field alerts */
span.field-error {
	border-right: none !important;
	font-size: 12px !important;
	padding: 6px 9px !important;
}


/* Messages */
ul.messages {
	padding: 10px 0 10px 0;
	margin: 10px 0 10px 0;
	list-style-type: none;
	font-family: arial, sans-serif;
	font-size: 12px;
	font-size: 1.2rem;
	border: none;
	background-color: #EEEEDE;
	zoom: 1;
	box-shadow: none;
}

ul.messages li {
	display: block;
	vertical-align: bottom;
	margin: 0px;
	margin-left: 10px;
	padding: 5px 20px 4px 30px;
}

ul.messages li.confirm {
	color: #090;
	list-style-type: none;
}

ul.messages li.error {
	color: #900;
	list-style-type: none;
}


/* ---- form help ---- */

.help-block,
.help-inline {
	color: #625757;
	font-size: 12.8px;
	font-size: 1.28rem;
	line-height: 1.4;
}

.help-block {
	display: block;
	margin-bottom: 0.75em;
}

.help-inline {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	vertical-align: middle;
	padding-left: 12px;
}

.help-block,
.help-inline {
	color: #625757;
}

.help-block {
	display: block;
	margin-bottom: 0.75em;
}

.help-inline {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	vertical-align: middle;
	padding-left: 24px;
}

/* ---- Form Errors ---- */

.has-error {

	background: #fae8e7;
	padding: 10px 20px;
	margin: 0 -20px;
}
.has-error input {
	border-color: #B94A48;
}

.has-error .help-block,
.has-error .help-inline {
	color: #B94A48;
	font-weight: bold;
	font-style: italic;
}

/* -- Bespoke dropdown -- */
.field-element--pseudo-dropdown {
    position: relative;
}

.pseudo-dropdown {
		border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    border-left: 1px solid #EDECEA;
    border-right: 1px solid #EDECEA;
    padding-left: 20px;
    background-image: url(../images/2019/icon_chevron.svg);
    background-repeat: no-repeat;
    background-position: center right 20px;
    background-size: 14px auto;
    padding-right: 40px;
    height: 50px;
    padding-top: 15px;
    padding-bottom: 14px;
    background-color: #ffffff;
    color: #8E8E8E;
    display: block;
    width: 100%;
    outline: none;
		-webkit-appearance: none;
		font-size: 1.5rem;
		text-transform: uppercase;
		font-family: 'HelveticaNeueW02-65Medi', Helvetica, Arial, sans-serif;
}

.pseudo-dropdown p {
    white-space: nowrap;
		overflow: hidden;
    margin: 0;
}

.field-element-bespoke-dropdown {
    height: 0;
    overflow: hidden;
    position: absolute;
    z-index: 500;
    left: 0;
    top: 50px;
}

.field-element--pseudo-dropdown.active .field-element-bespoke-dropdown {
    height: auto;
    overflow: visible;
}

.field-element-bespoke-dropdown-wrapper {
    background-color: #EDECEA;
		color: #8E8E8E;
		border-top: 1px solid #979797;
		border-bottom: 1px solid #979797;
		border-left: 1px solid #979797;
		border-right: 1px solid #979797;
    z-index: 500;
    margin-top: -1px;
    width: 100%;
		min-width: 207px;
		position: relative;
}

.field-element--date .field-element-bespoke-dropdown {
	left: auto;
	right: 0;
}

.field-element-bespoke-dropdown ul {
    list-style-type: none;
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
		margin-bottom: 0;
		font-size: 1.5rem;
		text-transform: uppercase;
		font-family: 'HelveticaNeueW02-65Medi', Helvetica, Arial, sans-serif;
}

.field-element-bespoke-dropdown .pseudo-dropdown-item {
    padding-left: 40px;
    padding-right: 20px;
    padding-top: 6px;
    padding-bottom: 4px;
    position: relative;
		z-index: 1;
		background-position: center left 20px;
		background-size: 15px auto;
		background-repeat: no-repeat;
}

.field-element-bespoke-dropdown .pseudo-dropdown-item:hover,
.field-element-bespoke-dropdown .pseudo-dropdown-item:focus {
		background-image: url(../images/2019/icon_tick.svg);
		color: #4A4A4A;
}

.field-element-bespoke-dropdown .dropdown-default {
		background-image: url(../images/2019/icon_tick.svg);
		color: #4A4A4A;
}

.field-element--pseudo-dropdown.active .pseudo-dropdown {
	background-color: #EDECEA;
	color: #232323;
	border-bottom: 1px solid #EDECEA;
	border-top: 1px solid #979797;
	border-left: 1px solid #979797;
	border-right: 1px solid #979797;
	background-image: url(../images/2019/icon_chevron-dark.svg);
}


.field-element--pseudo-dropdown.active .field-input:after {
	content: "\00a0";
	position: absolute;
	top: 48px;
	z-index: 501;
	left: 1px;
	right: 1px;
	height: 3px;
	background-color: #EDECEA;
}

.pseudo-dropdown-heading {
	padding-left: 40px;
	padding-right: 20px;
	padding-top: 6px;
	padding-bottom: 4px;
	position: relative;
	z-index: 1;
	color: #232323;
}

.pseudo-dropdown-heading .pseudo-dropdown-item {
	padding-left: 10px;
	padding-right: 0;
	color: #8E8E8E;
}

.pseudo-dropdown-heading .pseudo-dropdown-item:hover,
.pseudo-dropdown-heading .pseudo-dropdown-item:focus {
		background-image: url(../images/2019/icon_tick.svg);
		color: #232323;
}

.pseudo-dropdown-heading .pseudo-dropdown-item.dropdown-default {
		background-image: url(../images/2019/icon_tick.svg);
		color: #232323;
}

.field-element-bespoke-dropdown .pseudo-dropdown-heading ul {
	padding: 0;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
	.field-element-bespoke-dropdown-wrapper {
		min-width: 200px;
	}
}


/* ---- Horizontal Form ---- */

.form-horizontal {
	/*controls*/
	/*input*/
}
.form-horizontal .control-group {
	margin-bottom: 1.5em;
	*zoom: 1;
}
.form-horizontal .control-group:before, .form-horizontal .control-group:after {
	content: " ";
	display: table;
}
.form-horizontal .control-group:after {
	clear: both;
}
.form-horizontal .control-label {
	float: left;
	width: 49%;
	padding-top: 5px;
	padding-right: 24px;
	text-align: right;
}
.form-horizontal .controls {
	*display: inline-block;
	margin-left: 49%;
	*margin-left: 0;
	*padding-left: 24px;
}
.form-horizontal .controls:first-child {
	*padding-left: 24px;
}
.form-horizontal .help-block {
	margin-bottom: 0;
}
.form-horizontal input + .help-block,
.form-horizontal select + .help-block,
.form-horizontal textarea + .help-block {
	margin-top: 0.75em;
}
.form-horizontal .form-actions {
	padding-left: 49%;
}

.form-horizontal input,
.form-horizontal textarea,
.form-horizontal select {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	margin-bottom: 0;
	vertical-align: middle;
}
.form-horizontal .hide {
	display: none;
}
.form-horizontal label,
.form-horizontal .btn-group {
	display: inline-block;
}
.form-horizontal .control-group {
	margin-bottom: 0.75em;
}
.form-horizontal legend + .control-group {
	margin-top: 1.5em;
	-webkit-margin-top-collapse: separate;
}

/* ---- Submit Bar ---- */

.submit-bar {
	text-align: right;
	background: #f6f6f6;
	padding: 14px;
	border-top: 1px #D6D6D6 dashed;
}

.submit-bar a {
	margin-right: 20px;
}

/* Search Form */
.search {
	padding: 32px;

	box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.search h2 {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;

	margin-bottom: 0.5em;
    font-size: 2rem;
    color: #fff;
}

.mainbar .search--internal h2 {
	margin-top: 0;
	color: #fff;
}

.search h2 label {
	font-family: 'ff-meta-web-pro', Helvetica, sans-serif;
	margin: 0;
}

.search__form {
	float: right;
	position: relative;
	margin: 0;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
	box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
    flex-wrap: wrap;

	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
}

.search__form .field-element {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.search__form  .field-element--stretch {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 100%;
	-ms-flex: 0 1 100%;
	flex: 0 1 100%;
}

.search__form  .field-element--submit {
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 50px;
	-ms-flex: 0 1 50px;
	flex: 0 1 50px;
}

.search__form input {
	margin: 0;
	background: #FFF;
	color: #727272;
	height: 50px;
	font-family: 'ff-meta-web-pro', Helvetica, sans-serif;

}

.search__form input[type="submit"] {
	text-indent: -9999px;
	background-image: url(../images/2019/icon_search-white.svg);
	background-position: center center;
	background-repeat: no-repeat;
	width: 50px;
	height: 50px;
	padding: 0;
	background-color: #F9A328;
}

.search__form input[type="submit"]:hover {
	background-color: #E18316;
}

.search__form .field-input div[name="search"] {
    position: relative;
}

.search__form .srch-active input[type="text"]  {
	background-color: #EDECEA;
    border-top: 1px solid #979797;
    border-bottom: 1px solid #EDECEA;
    border-left: 1px solid #979797;
    border-right: 1px solid #979797;
    color: #222;
}

.srch-active:after {
    content: "\00a0";
    position: absolute;
    top: 49px;
    z-index: 501;
    left: 1px;
    right: 1px;
    height: 3px;
    background-color: #EDECEA;
}

/* Autocomplete dropdown */
#search-autocomplete {
	background: #fff;
	position: absolute;
    left: 0;
    top: 50px;
	z-index: 100;
    width: 100%;
}

#search-autocomplete ul {
    position: relative;
    background-color: #EDECEA;
    color: #8E8E8E;
    border-top: 1px solid #979797;
    border-bottom: 1px solid #979797;
    border-left: 1px solid #979797;
    border-right: 1px solid #979797;
    font-family: 'ff-meta-web-pro', Helvetica, sans-serif;
}

#search-autocomplete ul,
#search-autocomplete li {
	margin: 0;
    padding: 0;
}
#search-autocomplete a {
	display: block;
	padding: 5px 14px;
	color: #222;
	text-decoration: none;
}
#search-autocomplete a:hover,
#search-autocomplete li.on a {
    background: #2091d2;
    color: #fff;
}

/* BP Smaller */
@media screen and (min-width: 35em) { /* 560px */
	.search__form {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}

	.search h2 {
		font-size: 3rem;
	}

	.search__form .field-element {
		-webkit-box-flex: 0;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}

	.search__form .field-element--stretch {
		-webkit-box-flex: 1;
		-webkit-flex: 1 1 auto;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
	.search h2 {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 auto;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		padding-right: 40px;
	}

	.search__form {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
	.search {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		height: 114px;
		margin-top: -57px;
	}

	.search--internal {
		margin-top: 0;
	}

	.search h2 {
		line-height: 50px;
		font-size: 2rem;
		margin-bottom: 0;
	}

	.search h2 label {
		margin: 0;
	}
}

/* BP large */
@media only screen and (min-width: 80em) { /* 1280px */
	.search {
		padding: 48px;
		height: 146px;
		margin-top: -73px;
	}

	.search--internal {
		margin-top: 0;
	}

	.search h2 {
		font-size: 3rem;
	}
}



/* ---- Search Form ---- */

input.search-query {
	margin-bottom: 0;
	padding-right: 14px;
	padding-right: 4px \ 9;
	padding-left: 14px;
	padding-left: 4px \9;
	border-radius: 0;

}

.form-search .input-append .search-query,
.form-search .input-prepend .search-query {
	border-radius: 0;
}

.form-search .input-append .search-query {
	border-radius: 14px 0 0 14px;
}

.form-search .input-append .btn {
	border-radius: 0 14px 14px 0;
}

.form-search .input-prepend .search-query {
	border-radius: 0 14px 14px 0;
}

.form-search .input-prepend .btn {
	border-radius: 14px 0 0 14px;
}

.form-search {
	/*radio*/
}
.form-search inputgs
.form-search textarea,
.form-search select {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	margin-bottom: 0;
	vertical-align: middle;
}
.form-search .hide {
	display: none;
}
.form-search label,
.form-search .btn-group {
	display: inline-block;
}
.form-search .radio,
.form-search .checkbox {
	margin-bottom: 0;
	padding-left: 0;
	vertical-align: middle;
}
.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"] {
	float: left;
}
.form-search .radio input[type="radio"] margin,
.form-search .checkbox input[type="checkbox"] margin {
	right: 3px;
	left: 0;
}
.form-search .control-group {
	margin-bottom: 0.75em;
}
.form-search legend + .control-group {
	margin-top: 1.5em;
	-webkit-margin-top-collapse: separate;
}


/* ---- Captcha ---- */

.captcha {
	background: #f6f6f6;
	margin: 5px 0px;
	padding: 10px;
	width: 90%;
	border: 1px #D6D6D6 solid;
}

.captcha .captcha-info, .captcha .info {
	width: 20px;
	float: right;
}
.captcha .captcha-info, .captcha .info a {
	text-decoration: none;
}
.captcha .captcha-info .captcha-icon {
	width: 16px;
	height: 16px;
	margin-bottom: 16px;
}

.captcha .captcha-img {
	width: 200px;
	margin-bottom: 10px;
}

.captcha .captcha-input {
	width: 200px;
}


/* ------------------------------------------------------
**** Tables
------------------------------------------------------ */

table img {
	max-width: none;
}

/* Responsive tables */
table:not(.checkbox-list) {
	overflow: auto;
	overflow-y: hidden;
	overflow-x: auto;
	display: block;
	border: none;
}

table:not(.jCalendar) {
	width: 100%;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.2em;
	margin: 20px 0;
}
table:not(.jCalendar) caption {
	text-align: left;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.4em;
	padding-bottom: 13px;
}
table:not(.jCalendar) th {
	font-weight: normal;
	font-family: 'HelveticaNeueW02-65Medi', Helvetica, Arial, sans-serif;
	background: #F0F0F0;
	font-size: 16px;
	font-size: 1.6rem;
}
table:not(.jCalendar) td {
	font-size: 15px;
	font-size: 1.5rem;
}
table:not(.jCalendar) th,
table:not(.jCalendar) td {
	border-top: 1px solid #d7d7d7 !important;
	border-right: 1px solid #d7d7d7 !important;
	text-align: left;
}
table:not(.jCalendar) th,
table:not(.jCalendar) td,
td.field-info, table.form-section td.field-info {
	padding: 11px 18px;
	text-align: left;
}
table:not(.jCalendar) tr th:first-child,
table:not(.jCalendar) tr td:first-child {
	border-left: 1px solid #d7d7d7 !important;
}
table:not(.jCalendar) tr:last-child th,
table:not(.jCalendar) tr:last-child td {
	border-bottom: 1px solid #d7d7d7;
}

/* Better looking buttons in tables */
table:not(.jCalendar) td > .button:only-child {
	display: block;
}

/* Small tables */
table.table-small:not(.jCalendar) th {
	font-size: 13px;
	font-size: 1.3rem;
}

table.table-small:not(.jCalendar),
table.table-small:not(.jCalendar) td {
	font-size: 12px;
	font-size: 1.2rem;
}
table.table-small:not(.jCalendar) th,
table.table-small:not(.jCalendar) td {
	padding: 7px 13px;
}


/* Extra Small tables */
table.table-xsmall:not(.jCalendar) th {
	font-size: 13px;
	font-size: 1.3rem;
}

table.table-xsmall:not(.jCalendar),
table.table-xsmall:not(.jCalendar) td {
	font-size: 12px;
	font-size: 1.2rem;
}
table.table-xsmall:not(.jCalendar) th,
table.table-xsmall:not(.jCalendar) td {
	padding: 6px 8px 5px;
}

@media screen and (max-width: 730px) {
	table:not(.jCalendar) {
		font-size: 13px;
		font-size: 1.3rem;
	}
	table.form-section > tbody > tr {
		display: block;
	}
	table.form-section > tbody > tr > th,
	table.form-section > tbody > tr > td {
		display: block;
		width: 100% !important;
		padding: 15px 25px 10px 25px !important;
	}
	table.form-section:not(.jCalendar) tr th:first-child,
	table.form-section:not(.jCalendar) tr td:first-child,
	table.form-section:not(.jCalendar) th, table.form-section:not(.jCalendar) td {
		border: none !important;
	}
}

/* Mobiles - fluid */
@media screen and (max-width: 590px) {
	/* Responsive tables */
	table:not(.checkbox-list):not(.form-section):not(.jCalendar) {
		overflow: auto;
		overflow-y: hidden;
		overflow-x: auto;
		display: block;
		width: 100%;
	}
}

@media screen and (max-width: 580px) {
	table:not(.jCalendar) th,
	table:not(.jCalendar) td,
	td.field-info, table.form-section td.field-info {
		padding: 6px 11px;
	}
	table:not(.jCalendar) th {
		font-size: 1.5rem;
	}

	table:not(.jCalendar) td {
		font-size: 1.3rem;
	}
}

/* ---- No Layout Table ---- */

.table__no-styles {
	border-collapse: separate;
	border: none;
}

.table__no-styles th,
.table__no-styles td {
	padding: 0;
	border: 0;
	background: none;
}

/* ---- Stacked on mobile table ---- */

@media screen and (max-width: 580px) {
	.table--stacked th,
	.table--stacked td {
		display: block;
		width: 100%;
		border: 1px solid #d7d7d7;
		border-bottom: 0;
	}
}




/* ------------------------------------------------------
**** Logo Gallery
------------------------------------------------------ */

.logo-gallery .logo {
	float: left;
	padding: 0 10px;
	margin: 15px 1.6665% 15px 1.6665%;
	border: 1px solid #cccccc;
	width: 30%;
}

.logo-gallery .logo-wrap {
	position: relative;
	width: 100%;
	height: 200px;
	display: table-cell;
	vertical-align:middle;
}

.logo-gallery .logo-wrap:before {
	content: "";
	display: block;
	padding-top: 0%;
}

.logo-wrap img {
	width: 100%;
	max-width: 50em;
	height: auto;
	max-height: 100%;
	margin: 0 auto;
}

.logo-details {
	text-align: center;
}


/* ------------------------------------------------------
**** Helper classes
------------------------------------------------------ */

/* ---- Clearfix ---- */

.clear {
	height: 0;
	clear: both;
	display: block;
}

.-clearfix:before,
.-clearfix:after,
.expando:before,
.expando:after {
	content: " ";
	display: table;
}

.-clearfix:after,
.expando:after {
	clear: both;
}

.-clearfix,
.expando {
	*zoom: 1;
}

/* Image Replacement */
.-ir {
	background-color: transparent;
	border: 0;
	overflow: hidden;
	*text-indent: -9999px;
}

.-ir:before {
	content: "";
	display: block;
	width: 0;
	height: 150%;
}

.-hidden {
	display: none !important;
	visibility: hidden;
}

/* ---- vis-hidden ---- */

.-vis-hidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.-vis-hidden.focusable:active,
.-vis-hidden.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}

/* BP max-smaller */
@media screen and (max-width: 34.938em) { /* 559px */
	.-vis-hidden-max-xsm {
		border: 0;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}
}

/* BP max-small */
@media screen and (max-width: 47.96em) { /* 767px */
	.-vis-hidden-max-sm {
		border: 0;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
	.-vis-hidden-min-sm {
		border: 0;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}
}

/* BP max-medium */
@media screen and (max-width: 61.9375em) { /* 991px */
	.-vis-hidden-max-md {
		border: 0;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}
}

/* BP MD exclusive | 768px - 991px */
@media screen and (min-width: 48em) and (max-width: 61.9375em) {
	.col-sm-0 {
		border: 0;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}
}

/* BP max-large */
@media screen and (max-width: 79.9375em) { /* 1279px */
	.-vis-hidden-max-lg {
		border: 0;
		clip: rect(0 0 0 0);
		height: 1px;
		margin: -1px;
		overflow: hidden;
		padding: 0;
		position: absolute;
		width: 1px;
	}
}

.-invisible {
	visibility: hidden;
}

/* Angle Brackets */
.-r-arrow-after:after {
	content: "\00a0\003e";
}
.-r-arrow-before:before {
	content: "\003e\00a0";
}
.-l-arrow-after:after {
	content: "\00a0\003c";
}
.-l-arrow-before:before {
	content: "\003c\00a0";
}

/* ---- Floats and positioning ---- */

.left {
	margin: 0 30px 15px 0;
	float: left;
}

.right {
	margin: 0 0 15px 30px;
	float: right;
}

.center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.content-align--right {
	text-align: right;
}

/* ---- Clearfix ---- */

.clear {
	height: 0;
	clear: both;
	display: block;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	*zoom: 1;
}

/* Ellipsis */
.-ellipsis-2:after {
	content: "..";
}
.-ellipsis-3:after {
	content: "...";
}


/* ------------------------------------------------------
**** Template Layout
------------------------------------------------------ */

* {
	margin: 0;
}

html,
body {
	height: 100%; /* Req for sticky footer */
}

#wrap {
	width: 100%;
	position: relative;
	overflow-x: hidden;
}


/* ---- Container ---- */
.container {
	max-width: 1200px;
	width: 88%;
	margin: 0 auto;
	position: relative;
}

.container--wide {
	width: 88%;
	max-width: 1540px;
	margin: 0 auto;
}

.container--full {
	width: 100%;
	max-width: 1540px;
	margin: 0 auto;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
	.container,
	.container--wide {
			width: 92%;
	}

	.container--full {
			width: 100%;
	}

	/* brkpnt specific */
	.container-sm {
		max-width: 1200px;
		width: 88%;
		margin: 0 auto;
		position: relative;
	}
}


/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
	/* brkpnt specific */
	.container-md {
		max-width: 1200px;
		width: 92%;
		margin: 0 auto;
		position: relative;
	}
}

/* ---- Sections ---- */
.section {
	padding-top: 36px;
	padding-bottom: 36px;
}

/* Small */
.section--small {
	padding-top: 18px;
	padding-bottom: 18px;
}

/* Large */
.section--large {
	padding-top: 54px;
	padding-bottom: 54px;
}

/* No padding */
.section--0 {
	padding-top: 0;
	padding-bottom: 0;
}

/* top only */
.section--t {
	padding-top: 36px;
	padding-bottom: 0;
}

.section--t-lg {
	padding-top: 54px;
	padding-bottom: 0;
}

/* bottom only */
.section--b {
	padding-top: 0;
	padding-bottom: 36px;
}

.section--b-lg {
	padding-top: 0;
	padding-bottom: 54px;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
	.section {
			padding-top: 72px;
			padding-bottom: 72px;
	}

	.section--small {
			padding-top: 45px;
			padding-bottom: 45px;
	}

	.section--large {
			padding-top: 108px;
			padding-bottom: 108px;
	}

	/* none */
	.section--0 {
			padding-top: 0;
			padding-bottom: 0;
	}

	/* top only */
	.section--t {
			padding-top: 72px;
			padding-bottom: 0;
	}

	.section--t-lg {
			padding-top: 108px;
			padding-bottom: 0;
	}

	/* bottom only */
	.section--b {
			padding-top: 0;
			padding-bottom: 72px;
	}

	.section--b-lg {
			padding-top: 0;
			padding-bottom: 108px;
	}

	/* brkpnt specific */
	.section-sm {
			padding-top: 72px;
			padding-bottom: 72px;
	}

	.section--large-sm {
			padding-top: 108px;
			padding-bottom: 108px;
	}

	.section--0-sm {
			padding-top: 0;
			padding-bottom: 0;
	}

	.section--vw-sm {
			padding-top: 4vw;
			padding-bottom: 4vw;
	}
}

/* ---- Section inline title and CTA ---- */
.section__title-cta h1,
.section__title-cta h2,
.section__title-cta h3,
.section__title-cta h4,
.section__title-cta h5 {
	display: inline-block;
}

.section__title-cta p {
	display: inline-block;
	float: right;
	margin-top: 0;
}

/* ---- Header ---- */

.header {
	background: #FFF;
	border-bottom: 1px solid #A2A2A2;
	padding: 12px 0 0;
	height: 90px;
}

/* BP Smaller */
@media screen and (min-width: 48em) { /* 768px */
	.header {
		padding: 8px 0 0;
		height: 162px;
		display: block;
	}
}

/* Logo */
.logo {
	float: left;
	padding: 10px 0 0;
	opacity: 1;

	transition: opacity 600ms cubic-bezier(.6,-0.28,.74,.05);
}

.logo a {
	display: block;
}

.logo img {
	height: 100px;
	width: 91px;
}

.logo img:hover {
	opacity: 0.9;
}

@media screen and (max-width: 830px) {
	.logo {
		padding: 9px 0 0 0;
	}
}

/* Mobiles - fluid */
@media screen and (max-width: 767px) {
	.logo {
		padding: 0;
	}
	.logo img {
		height: 68px;
		width: 62px;
	}
}

/* Search site form */
.search-site {
	float: right;
	position: relative;
	margin: 8px 55px 0 0;
	width: 209px;
}
.search-site input {
	margin: 0;
	padding-right: 66px;
	height: 42px;
	background: #FFF;
	background: #EDEDED;
}
.search-site input[type="submit"] {
	text-indent: -9999px;
	background-image: url(../images/icon-search.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #f5921f;
	width: 47px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	-webkit-appearance: none;
	border: none;
	outline: none;
	-webkit-transition: all 250ms ease-in;   -moz-transition: all 250ms ease-in;   -ms-transition: all 250ms ease-in;   -o-transition: all 250ms ease-in;   transition: all 250ms ease-in;
}
.search-site input[type="submit"]:hover {
	background-color: #E18316;
}

/* Mobiles - fluid */
@media screen and (max-width: 590px) {
	.search-site {
		margin-right: 0;
	}
}

@media screen and (max-width: 400px) {
	.search-site {
		width: 60%;
		margin: 8px 0 0;
	}
}


/* Navigation */
.nav {
	position: absolute;
	top: 123px;
	width: 100%;
	z-index: 9;
	-webkit-box-shadow: 0 2px 16px 0px rgba(0,0,0,0.3);
	box-shadow: 0 2px 16px 0px rgba(0,0,0,0.3);
}
.nav ul {
	list-style: none;
}
.main-navigation a {
	text-decoration: none;
}

.zippmenu-box a {
	color: #0E7BB2;
	display: block;
	padding: 5px 13px;
	line-height: 1.2em;
	font-size: 15px;
	font-size: 1.5rem;
}
.zippmenu-box a:hover {
	background: #eaf1f7;
}
.zippmenu-tablet-close {
	position: absolute;
	bottom: 0;
	right: 0;
	text-indent: -9999px;
	height: 37px;
	background: #f5921f url(../images/2019/icon_close.svg) no-repeat center center !important;
	width: 37px;
}


/* Fixed nav */
.nav.fixed {
	position: fixed;
	top: 0;
	left: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.nav.fixed .main-navigation {
	-webkit-box-shadow: 0 2px 16px 0px rgba(0,0,0,0.3);
	box-shadow: 0 2px 16px 0px rgba(0,0,0,0.3);
}



.nav.fixed .main-navigation {
	max-width: 1200px;
	width: 92%;
	margin-left: auto;
	margin-right: auto;
}


/* Zippmenu */
/* Fundamental styles to make it all work */
.zippmenu-box {
	position: fixed;
	display: none;
	background: none;
	border: none;
	margin: 0;
	padding: 50px 0 35px;
	width: 100%;
	left: 0;
	top: 161px;
	right: 0;
	margin: auto;
	white-space: normal;
	-webkit-box-shadow: 0 20px 23px 14px rgba(0,0,0,0.5);
	box-shadow: 0 20px 23px 14px rgba(0,0,0,0.5);
	background: rgb(234,241,247); /* Old browsers */ background: -moz-linear-gradient(top, rgba(234,241,247,1) 0%, rgba(255,255,255,1) 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(234,241,247,1)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, rgba(234,241,247,1) 0%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, rgba(234,241,247,1) 0%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, rgba(234,241,247,1) 0%,rgba(255,255,255,1) 100%); /* IE10+ */ background: linear-gradient(to bottom, rgba(234,241,247,1) 0%,rgba(255,255,255,1) 100%); /* W3C */;
	z-index: -1;
}
.nav.fixed .zippmenu-box {
	top: 30px !important;
}
.zippmenu ul {
	display: none;
}
.zippmenu-col {
	float: left;
	width: 25%;
	text-align: left;
	padding: 25px 26px 13px;
}
.zippmenu-col h3 {
	color: #000;
	border-bottom: 1px solid #d7d7d7;
	padding-top: 0;
	margin-top: 0;
	padding-bottom: 12px;
	font-size: 22px;
	font-size: 2.2rem;
}
.zippmenu-box ul {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
}


.zippmenu-col.feature-col {
	background: #FFF;
	border: 1px solid #d7d7d7;
	color: #585959;
}
.zippmenu-col.feature-col h3 {
	font-size: 26px;
	font-size: 2.6rem;
	border-bottom: none;
	padding-bottom: 1px;
}
.zippmenu-col.feature-col .feature-col-img {
	padding-bottom: 4px;
}

/* Search Button */
.top-nav--search {
	position: absolute;
	top: 5px;
    right: 325px;
	text-indent: -9999px;
	width: 40px;
	height: 40px;
	-webkit-transition: all 250ms ease-in;
    -moz-transition: all 250ms ease-in;
    -ms-transition: all 250ms ease-in;
    -o-transition: all 250ms ease-in;
    transition: all 250ms ease-in;
}
.top-nav--search img {
	display: block;
	padding: 9px 8px 7px;
}

.top-nav--search a {
	display: block;
	position: relative;
	width: 40px;
	height: 40px;
}
.top-nav--search a:after {
	content: "\00a0";
	position: absolute;
	bottom: 6px;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #E18316;
}
.top-nav--search a:hover:after,
.top-nav--search a:focus:after,
.top-nav--search a:active:after {
	left: 5px;
	width: calc(100% - 10px);
}

/* Home Button */
.nav > ul > li:first-child {
	display: table;
	position: absolute;
	top: -119px;
    right: 275px;
    width: 50px;
	height: 40px;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 32px;
    background: #fff url(../images/2019/icon_home.svg) no-repeat center left 19px !important;
}
.nav > ul > li:first-child a {
    vertical-align: middle;
    display: table-cell;
    word-break: normal;
    font-size: 19px;
    font-size: 1.9rem;
	padding: 0 5px;

	height: 40px;
	width: 40px;
	text-indent: -9999px;
	overflow: hidden;
}

.nav > ul > li:first-child a,
.nav > ul > li:nth-child(2) a,
.nav > ul > li:nth-child(3) a,
.nav > ul > li:nth-child(4) a {
	position: relative;
	line-height: 18px;
}

.nav > ul > li:first-child a:after {
	content: "\00a0";
	position: absolute;
	bottom: 5px;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #E18316;
}

.nav > ul > li:first-child a:hover:after,
.nav > ul > li:first-child a:focus:after,
.nav > ul > li:first-child a:active:after {
	left: 8px;
	width: calc(100% - 13px);
}

.nav > ul > li:first-child:before {
	content: " | ";
	margin: 0 0 0 3px;
	vertical-align: -webkit-baseline-middle;
	display: block;
	padding-top: 6px;
}


/* Sub menu */
.nav > ul > li:nth-child(2),
.nav > ul > li:nth-child(3),
.nav > ul > li:nth-child(4) {
	position: absolute;
	top: -106px;
	background: none;
	width: auto;
	float: none;
}

.nav > ul > li:nth-child(2) a:after,
.nav > ul > li:nth-child(3) a:after,
.nav > ul > li:nth-child(4) a:after {
	content: "\00a0";
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #E18316;
}

.nav > ul > li:nth-child(2).on,
.nav > ul > li:nth-child(3).on,
.nav > ul > li:nth-child(4).on {
	background-color: transparent;
}
.nav > ul > li:nth-child(2) a,
.nav > ul > li:nth-child(3) a,
.nav > ul > li:nth-child(4) a {
	font-size: 16px;
	font-size: 1.6rem;
	padding: 0;
	vertical-align: top;
	height: auto;
	display: block;
	word-break: normal;
	white-space: nowrap;
	color: #5f5f5f;
}

.nav > ul > li:nth-child(2) a:before,
.nav > ul > li:nth-child(3) a:before,
.nav > ul > li:nth-child(4) a:before {
	content: " | ";
	margin: 0 7px;
}

.nav > ul > li:nth-child(2) {
	right: 189px;
}
.nav > ul > li:nth-child(3) {
	right: 108px;
}
.nav > ul > li:nth-child(4) {
	right: 0px;
}
.nav > ul > li:nth-child(2):hover,
.nav > ul > li:nth-child(3):hover,
.nav > ul > li:nth-child(4):hover {
	background-color: transparent;
}

.nav > ul > li:nth-child(2) a:hover:after,
.nav > ul > li:nth-child(2) a:focus:after,
.nav > ul > li:nth-child(2) a:active:after,s
.nav > ul > li:nth-child(3) a:hover:after,
.nav > ul > li:nth-child(3) a:focus:after,s
.nav > ul > li:nth-child(3) a:active:after,
.nav > ul > li:nth-child(4) a:hover:after,
.nav > ul > li:nth-child(4) a:focus:after,
.nav > ul > li:nth-child(4) a:active:after {
	left: 22px;
	width: calc(100% - 22px);
}

/* First level */
.nav > ul {
	background: #2091d2;
	padding: 0;
	margin: 0;
	display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.nav > ul > li {
	display: inline-block;
	-webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
	text-align: center;
	background: #2091d2 url(../images/nav-sep.png) no-repeat left center;
	-webkit-transition: all 250ms ease-in;
	-moz-transition: all 250ms ease-in;
	-ms-transition: all 250ms ease-in;
	-o-transition: all 250ms ease-in;
	transition: all 250ms ease-in;
}
.nav > ul > li.on {
	background-color: #0f82c4;
}
.nav > ul > li:nth-child(5) {
	background-image: none;
}
.nav > ul > li > a {
	color: #FFF;
	font-family: 'ff-meta-web-pro', Helvetica, sans-serif;
	display: block;
	padding: 15px 20px;
	font-size: 2.1rem;
	line-height: 1.1;
	height: 100%;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	        align-items: center;

}
.nav > ul > li:hover {
	background-color: #0f82c4;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
	.nav > ul > li:first-child {
		background-position: top 10px left 19px !important;
	}
}

@media only screen and (min-width: 62em) { /* 992px */

}

@media screen and (max-width: 1080px) {
	.zippmenu-box {
		padding: 50px 0 10px;
	}
	.zippmenu-col.feature-col {
		display: none;
	}
	.zippmenu-col {
		width: 33.3333%;
	}

	.nav > ul > li > a {
		word-break: normal;
		font-size: 1.9rem;
		line-height: 1.1;
	}
}

@media screen and (max-width: 830px) {
	.nav > ul > li > a {
		font-size: 15px;
		font-size: 1.5rem;
		line-height: 18px;
		padding-left: 15px;
		padding-right: 15px;
	}
}

/* Mobiles - fluid */
@media screen and (max-width: 767px) {
	.top-nav--search {
		opacity: 0;
	}
	.zippmenu-box {
		display: block;
		position: static;
		background: none;
		color: #FFF;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.zippmenu-col {
		width: 100%;
		float: none;
	}
	.zippmenu-box h3 {
		display: none;
	}
}

/* ---- Content ---- */
.content {
	padding: 0 0 40px;
	background: #fff;
	margin-top: 0;
}

/* ---- Footer quicklinks ---- */
.section--quicklinks h3 {
	color: #000;
	font-size: 2.4rem;
	padding-bottom: 2.5rem;
}
.section--quicklinks ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 1.6rem;
}
.section--quicklinks ul a:before {
	content: "\003e\00a0";
}
.section--quicklinks ul a {
	color: #4d4d4d;
	text-decoration: none;
	display: block;
	line-height: 2.5em;
	-webkit-transition: all 150ms ease-in;
	-moz-transition: all 150ms ease-in;
	-ms-transition: all 150ms ease-in;
	-o-transition: all 150ms ease-in;
	transition: all 150ms ease-in;
}
.section--quicklinks ul a:hover {
	background-color: #fbfbf8;
	padding-left: 10px;
}
.section--quicklinks li {
	border-bottom: 1px solid #c1c1c1;
}
.section--quicklinks .footer__links-list:last-child li:last-child {
	border-bottom: none;
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
	.section--quicklinks .footer__links-list li:last-child {
		border-bottom: none;
	}
}
/* ---- Footer ---- */
/* icon decal */
.icon-decal-anchor {
	position: relative;
}

.icon-decal {
	position: absolute;
	top: -60px;
	left: calc(50% - 40px);
	width: 80px;
	height: 80px;
	border-radius: 40px;
	padding: 13px;
}

.icon-decal svg {
	width: 54px;
	height: 54px;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
	.icon-decal {
	    top: -85px;
    	left: 0;
	}
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
	.icon-decal {
	    top: -132px;
    	left: 0;
		width: 120px;
		height: 120px;
		border-radius: 60px;
		padding: 22px;
	}

	.icon-decal svg {
		width: 76px;
		height: 76px;
	}
}

/* BP large */
@media only screen and (min-width: 80em) { /* 1280px */
	.icon-decal {
		left: 40px;
	}
}

/* Newsletter  */
.section--newsletter {

}

.section--newsletter .txt-large {
	text-align: center;
	padding-top: 30px;
	color: #fff;
}

.footer__newsletter-form {
    background-color: #FFAE39;
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
	flex-direction: row;
	margin-bottom: 0;
}

.footer__newsletter-form ::-webkit-input-placeholder {
    color: #F17C00;
}

.footer__newsletter-form ::-moz-placeholder {
    color: #F17C00;
}

.footer__newsletter-form :-ms-input-placeholder {
    color: #F17C00;
}

.footer__newsletter-form :-moz-placeholder {
    color: #F17C00;
}

.footer__newsletter-form input[type="text"] {
    -webkit-appearance: none;
    background-color: rgba(255,255,255,0.5);
    color: #4A4A4A;
    display: block;
    width: 100%;
    outline: none;
    border: none;
    font-size: 1.5rem;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    line-height: 1.2;
    height: auto;
    margin-bottom: 0;
}

.footer__newsletter-form input[type="submit"] {
    -webkit-appearance: none;
    background-color: #F17C00;
    color: #fff;
    outline: none;
    border: none;
    -webkit-box-flex: 1;
	-webkit-flex: 1 1 80px;
	    -ms-flex: 1 1 80px;
            flex: 1 1 80px;
	font-family: 'HelveticaNeueW02-65Medi', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
    font-size: 1.5rem;
    padding-top: 40px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 8px;
    background-image: url(../images/2019/icon_newsletter.svg);
    background-size: 28px auto;
    background-repeat: no-repeat;
    background-position: center top 10px;
    box-shadow: none;
    height: auto;
}

/* BP Smaller */
@media screen and (min-width: 35em) { /* 560px */
    .footer__newsletter-form input[type="text"] {
        font-size: 1.8rem;
        padding-top: 18px;
        padding-left: 18px;
        padding-right: 18px;
        padding-bottom: 18px;
    }
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
	.section--newsletter {
		margin-top: 0;
	}

    .section--newsletter .txt-large {
		text-align: left;
		font-size: 1.8rem;
		padding-left: 32px;
		padding-right: 24px;
		padding-top: 6px;
		padding-bottom: 6px;
		margin-bottom: 0;
		margin-top: 0;
	}
}

/* BP medium */
@media only screen and (min-width: 62em) { /* 992px */
    .section--newsletter .txt-large {
		padding-left: 45px;
	}

	.section--newsletter {
	    padding-top: 65px;
    	padding-bottom: 65px;
	}
}

/* BP large */
@media only screen and (min-width: 80em) { /* 1280px */
    .section--newsletter .txt-large {
        padding-left: 98px;
		font-size: 2.2rem;
		padding-top: 14px;
		padding-bottom: 14px;
    }

    .footer__newsletter-form input[type="text"] {
        font-size: 2.5rem;
        padding-top: 32px;
        padding-left: 32px;
        padding-right: 32px;
        padding-bottom: 32px;
    }

    .footer__newsletter-form input[type="submit"] {
        -webkit-flex: 1 1 100px;
            -ms-flex: 1 1 100px;
                flex: 1 1 100px;
		background-size: 36px auto;
		padding-top: 48px;
        background-position: center top 18px;
    }
}

.section--footer {
	padding: 36px 0;
}

.footer__img--sa-gov a {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 172px;
}

.section--footer .copyright {
	margin: 0;
	padding-top: 28px;
	color: #e5faff;
	font-size: 1.3rem;
	text-align: center;
}
.section--footer .copyright a {
	color: #e5faff;
	text-decoration: none;
}
.section--footer .copyright a:hover {
	text-decoration: underline;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
	.footer__img--sa-gov {
		-webkit-box-flex: 0;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}

	.section--footer .copyright {
		font-size: 1.6rem;
		float: left;
		padding-top: 0;
	}
}


/* Alerts */
.alert {
	background: #ffae39;
	width: 93%;
	position: relative;
	margin: 20px 0;
	padding: 18px 66px 18px 22px;
	background-repeat: no-repeat;
	background-position: right center;
}
.alert h3 {
	margin: 0 0 5px;
	font-size: 21px;
	font-size: 2.1rem;
	color: #FFF;
}
.alert p {
	margin: 0;
	color: #FFF;
}
.alert a {
	color: #FFF;
}
.alert .alert-large {
	font-size: 21px;
	font-size: 2.1rem;
}
.alert .alert-link {
	background: #f17c00;
	font-family:'HelveticaNeueW02-65Medi', Helvetica, Arial, sans-serif;
	display: inline-block;
	position: relative;
	left: -22px;
	bottom: -18px;
	max-width: 100%;
	margin-top: -6px;
}
.alert .alert-link-side {
	position: absolute;
	left: 100%;
	top: 0;
	width: 0;   height: 0;
	border-bottom: 42px solid transparent;

	border-left: 13px solid #f17c00;
}
.alert .alert-link a {
	color: #FFF;
	text-decoration: none;
	display: block;
	padding: 9px 9px 9px 22px;
	-webkit-transition: all 100ms ease-in;
	-moz-transition: all 100ms ease-in;
	-ms-transition: all 100ms ease-in;
	-o-transition: all 100ms ease-in;
	transition: all 100ms ease-in;
}
.alert .alert-link a:hover {
	color: #000;
}
.alert .alert-side {
	content: " ";
	position: absolute;
	left: 100%;
	top: 0;
	width: 0;   height: 0;
	border-top: 80px solid transparent;
	border-bottom: 80px solid transparent;
	border-left: 21px solid #ffae39;
}
.alert:after {
	position: absolute;
	background: #f17c00;
	width: 52px;
	height: 52px;
	top: 50%;
	right: 0;
	border-radius: 100px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: center center;

	-moz-transform: translate(0px, -50%);
	-webkit-transform: translate(0px, -50%);
	-o-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}
.alert.phone:after {
	content: '\00a0';
	background-image: url(../images/2019/icon_phone.png);
}
.alert.calculator:after {
	content: '\00a0';
	background-image: url(../images/2019/icon_calculator.svg);
}
.alert.computer:after {
	content: '\00a0';
	background-image: url(../images/2019/icon_computer.svg);
}
.alert.beach-water-advice:after {
	content: '\00a0';
	background-image: url(../images/2019/icon_beach-water-advice.svg);
}

/* Side alert */
.alert.side-alert.side-alert-visible {
	left: 0;
	cursor: default;
}
.alert.side-alert.side-alert-hidden {
	left: -200px;
}
.side-alert-close {
	background: url(../images/2019/icon_close.svg) no-repeat left top;
	padding: 0;
	position: absolute;
	top: 13px;
	right: 10px;
	width: 19px;
	height: 19px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	text-indent: -9999px;
	-webkit-transition: opacity 250ms cubic-bezier(0.660, 0.830, 0.395, 0.930);
	-moz-transition: opacity 250ms cubic-bezier(0.660, 0.830, 0.395, 0.930);
	-o-transition: opacity 250ms cubic-bezier(0.660, 0.830, 0.395, 0.930);
	transition: opacity 250ms cubic-bezier(0.660, 0.830, 0.395, 0.930);
	border: none;
}
.alert.side-alert.side-alert-hidden .side-alert-close {
	opacity: 0;
	right: 500px;
}
.alert.side-alert.side-alert-visible .side-alert-close {
	opacity: 1;
	right: 10px;
}
.alert.side-alert.side-alert-visible .side-alert-close:hover {
	opacity: 0.8;
}

.alert.side-alert {
	position: absolute;
	top: 230px;
	left: 0;
	width: 270px;
	z-index: 5;
	-webkit-transition: all 250ms cubic-bezier(0.660, 0.830, 0.395, 0.930);
	-moz-transition: all 250ms cubic-bezier(0.660, 0.830, 0.395, 0.930);
	-o-transition: all 250ms cubic-bezier(0.660, 0.830, 0.395, 0.930);
	transition: all 250ms cubic-bezier(0.660, 0.830, 0.395, 0.930);
	cursor: pointer;
}

@media screen and (max-width: 991px) {
	.alert.side-alert {
		top: auto;
		left: auto !important;
		width: 100%;
		position: relative;
		margin: -35px 0 60px;
		padding: 18px 82px 18px 22px;
		background-position: 95% 50%;
	}

	.alert:after {
		right: 20px;
	}
	.alert.side-alert .side-alert-close,
	.alert.side-alert .alert-side {
		display: none;
	}
}

/* Mobiles - fluid */
@media screen and (max-width: 590px) {
	.alert .alert-side {
		display: none;
	}
	.alert {
		background-position: right 20px center;
		padding-right: 90px;
	}
}

/* ------------------------------------------------------
**** Widgets

Widgets & Modules that ship with sprout.
If they don't they belong in seperate partial file

------------------------------------------------------ */

/* ---- Related Links ---- */
.widget-RelatedLinks {
	margin-bottom: 25px;
}
.widget-RelatedLinks ul {
	padding: 0;
	margin:  0;
}
.widget-RelatedLinks li {
	list-style: none;
	position: relative;
}
.widget-RelatedLinks a {
	text-decoration: none;
	-webkit-transition: all 150ms ease-out;
	-moz-transition: all 150ms ease-out;
	-o-transition: all 150ms ease-out;
	transition: all 150ms ease-out;
	position: relative;
	color: #0E7BB2;
	display: block;
	border-bottom: 1px solid #C1C1C1;
}

/* Depth 1 */
.widget-RelatedLinks li.depth1 {
}
.widget-RelatedLinks li.depth1 > a {
	padding: 10px 10px 10px 25px;
	font-size: 16px;
	font-size: 1.6rem;
}
.widget-RelatedLinks li.depth1.on > a {
	color: #000;
	background-color: #f7f7f7;
}
.widget-RelatedLinks li.depth1 > a:hover,
.widget-RelatedLinks li.depth1 > a:focus {
	padding-left: 30px;
	background: #f7f7f7;
}
.widget-RelatedLinks li.depth1 > a:before {
	content: "\003e\00a0";
	margin-left: -15px;
}

/* Depth 2 */
.widget-RelatedLinks li.depth2 {
}
.widget-RelatedLinks li.depth2 > a {
	padding: 7px 20px 8px 35px;
	font-size: 14px;
	font-size: 1.5rem;
}
.widget-RelatedLinks li.depth2.on > a {
	color: #000;
	background: #f7f7f7;
}
.widget-RelatedLinks li.depth2 > a:hover,
.widget-RelatedLinks li.depth2 > a:focus {
	padding-left: 40px;
	background: #f7f7f7;
}
.widget-RelatedLinks li.depth2 > a:before {
	content: "-\00a0";
	margin-left: -9px;
}

/* Depth 3 */
.widget-RelatedLinks li.depth3 {
}
.widget-RelatedLinks li.depth3 > a {
	padding: 5px 50px 7px;
	font-size: 13px;
	font-size: 1.3rem;
}
.widget-RelatedLinks li.depth3.on > a {
	color: #000;
	background: #f7f7f7;
}
.widget-RelatedLinks li.depth3 > a:hover,
.widget-RelatedLinks li.depth3 > a:focus {
	padding-left: 50px;
	background: #f7f7f7;
}



/* ---- Articles ---- */

.widget-ArticlesList .article {
	border-bottom: 1px #D6D6D6 dashed;
	margin: 15px 0;
	margin: 1.5rem 0;
	padding: 0 0 10px;
}

.widget-ArticlesList .article > h3 {
	margin-bottom: 0;
}

.widget-ArticlesList .article p.date {
	font-size: 15px;
	font-size: 1.5rem;
	color: #707070;
	margin: 0;
}

.widget-ArticlesList .article-img {
	float: right;
	width: 100px;
	margin: 15px 0;
	margin: 1.5rem 0;
}
.widget-ArticlesList .article-text {
	margin-right: 140px;
}

/* Left aligned */
.widget-ArticlesList.left-aligned .article-img {
	float: left;
}
.widget-ArticlesList.left-aligned .article-text {
	margin-left: 140px;
	margin-right: 0;
}


/* ---- Article Category Subscribe ---- */

.widget-ArticleCategorySubscribe .form-section {
	margin-bottom: 15px;
	margin-bottom: 1.5rem;
}

/* Sidebar */
.widget-ArticlesList .sidebar-article {
	border-bottom: 1px #D6D6D6 dashed;
}
.widget-ArticlesList .sidebar-article:first-child {
	border-top: 1px #D6D6D6 dashed;
}
.widget-ArticlesList .sidebar-article h4 {
	margin-top: 1.5rem;
	margin-top: 15px;
}
.widget-ArticlesList .sidebar-article p.date {
	font-size: 15px;
	font-size: 1.3rem;
	color: #707070;
	margin: 16px 0 -4px;
	margin: -1.6rem 0 -0.4rem;
}

/* Date list for sidebar */
.widget-ArticleDateList h3 {
	margin-bottom: -5px;
}
.widget-ArticleDateList h4 {
	margin-top: 15px;
}



/* ---- Simple Image Gallery ---- */


.widget-GallerySimple {
	margin: 15px -10px;
}

.widget-GallerySimple h3 {
	padding: 10px;
}

.widget-GallerySimple .gallery-simple-thumb {
	width: 33.333%;
	padding: 10px;
	float: left;
}
.widget-GallerySimple .gallery-simple-thumb img {
	width: 100%;
}



/* ---- Gallery ----
&  ---- Gallery Preview ---- */
.widget-Gallery, .widget-GalleryPreview {
	margin: 15px 0;
	margin: 1.5rem 0;
}
.widget-Gallery a img, .widget-GalleryPreview a img {
	width: 100%;
}
.widget-Gallery .g2-thumb, .widget-GalleryPreview .g2-thumb {
	position: relative;
	width: 22%;
	height: auto;
	max-width: 100%;
	margin: 0 4% 20px 0;
	float: left;
}
.widget-Gallery div:nth-child(2n+4), .widget-GalleryPreview div:nth-child(2n+4) {
	margin-right: 0;
}
.widget-Gallery .g2-thumb:hover p.name, .widget-GalleryPreview .g2-thumb:hover p.name {
	display: block;
}
.widget-Gallery p.name, .widget-GalleryPreview p.name {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 10px;
	width: 100%;
	height: 100%;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.7);
}
.widget-Gallery p.name a, .widget-GalleryPreview p.name a {
	display: block;
	height: 100%;
	color: #FFF;
	text-decoration: none;
}
.widget-GalleryPreview p.show-all {
	margin-top: 0;
}


/* ---- Job Adverts ---- */
.widget-JobSearch table {
	border: 1px solid #D6D6D6;
}
.widget-JobSearch tr {
	background: #f6f6f6;
}
.widget-JobSearch td {
	border: none;
}
.widget-JobSearch .category_id {
	width: 40%;
}


/* ---- Order Form ---- */
.widget-OrderForm .product {
	width: 30%;
	margin-right: 5%;
	float: left;
}
.widget-OrderForm .product:nth-child(3n+3) {
	margin-right: 0;
}


/* ---- Events ---- */

/* ---- Training module ---- */
.training-slides {
	position: relative;
	padding: 0;
	margin: 0;
	background: #303030;
}

.training-slides-survey {
	margin: auto;
	display: block;
	padding: 32px;
	background: #ffffff;
	height: 100%;
}

.training-slides-survey .button {
	vertical-align: inherit;
}

.training-slides-survey {
	min-height: 203.38px;
}
.training-slides-survey__question {
	border: 1px solid #c1c1c1;
	color: #717171;
	padding: 21px;
	margin-bottom: 2em;
}
.training-slides-survey__question h3 {
	margin-top: 0;
	margin-bottom: 12px;
}
.training-slides-survey label {
	font-family: 'HelveticaNeueW01-45Ligh', Helvetica, Arial, sans-serif;
}

.training-slides .slick-slide img {
	margin: auto;
}

.training-slides_slide--video iframe {
	margin: auto;
	display: block;
	width: 100%;
	max-width: 720px;
	min-height: 203.38px;
	height: 100%;
	max-height: 480px;
}

@supports(display: grid) {
	.training-slides .training-slides_slide--video,
	.slick-initialized .slick-slide.training-slides_slide--video {
		display: grid;
	}
	.training-slides-survey {
		display: grid;
    justify-content: start;
    align-content: center;
	}
}

/* slick arrows */
.training-slides .slick-prev,
.training-slides .slick-next {
	width: 40px;
	height: 40px;
	z-index: 99;
	border-radius: 20px;
	background-color: rgba(0,0,0,0.33);
	background-size: auto 24px;
	background-repeat: no-repeat;
	background-position: center center;
	opacity:0.75;
}
.training-slides .slick-prev:before,
.training-slides .slick-next:before {
	content: none;
}
.training-slides .slick-prev {
	left: 0;
	background-image: url(../images/icon_arrow-left-large.svg);
}
.training-slides .slick-next {
	right: 0;
	background-image: url(../images/icon_arrow-right-large.svg);
}

/* disabled  */
.training-slides .slick-disabled {
	opacity: 0.33;
}

/* hover and focus */
.training-slides .slick-prev:hover,
.training-slides .slick-prev:focus,
.training-slides .slick-next:hover,
.training-slides .slick-next:focus {
	background-color: rgba(0,0,0,0.33);
	background-size: auto 24px;
	background-repeat: no-repeat;
	background-position: center center;
	opacity:1;
}
.training-slides .slick-disabled:hover,
.training-slides .slick-disabled:focus {
	opacity: 0.33;
}
.training-slides .slick-prev:hover,
.training-slides .slick-prev:focus {
	background-image: url(../images/icon_arrow-left-large.svg);
}
.training-slides .slick-next:hover,
.training-slides .slick-next:focus {
	background-image: url(../images/icon_arrow-right-large.svg);
}
@media screen and (min-width: 581px) {
	.training-slides-survey {
		padding: 64px;
	}
	.training-slides_slide--video iframe {
		min-height: 370.84px;
	}
	.training-slides-survey {
		min-height: 370.84px;
	}
}

@media screen and (min-width: 730px) {
	/* slick arrows */
	.training-slides .slick-prev {
		left: -40px;
	}
	.training-slides .slick-next {
		right: -40px;
	}
	.training-slides .slick-prev,
	.training-slides .slick-next {
		width: 64px;
		height: 64px;
		border-radius: 32px;
	}
	.training-slides_slide--video iframe {
		width:  100%;
		min-height: 448.88px;
		max-width: none;
		max-height: none;
	}
	.training-slides-survey {
		min-height: 448.88px;
	}
}

@media screen and (min-width: 1260px) {
	/* slick arrows */
	.training-slides .slick-prev,
	.training-slides .slick-next {
		background-size: auto 32px;
	}
	/* hover and focus */
	.training-slides .slick-prev:hover,
	.training-slides .slick-prev:focus,
	.training-slides .slick-next:hover,
	.training-slides .slick-next:focus {
		background-size: auto 32px;
	}
	.training-slides .slick-prev {
		left: 0;
	}
	.training-slides .slick-next {
		right: 0;
	}
	.training-slides_slide--video iframe {
		width: 880px;
		min-height: 587px;
	}
	.training-slides-survey {
		max-width: 880px;
		min-height: 587px;
	}
}

/* ---- Training List Gallery  ---- */
.children-gallery {
	list-style-type: none;
	padding: 0;
	margin: 1.5em 0 0;
}
.pg-link {
	display: block;
	text-decoration: none;
	padding: 25px 25px 40px;
}
.pg-item {
	background: #eaf3f8;
	background: -moz-linear-gradient(top, #eaf3f8 0%, #ffffff 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eaf3f8), color-stop(100%,#ffffff));
	background: -webkit-linear-gradient(top, #eaf3f8 0%,#ffffff 100%);
	background: -o-linear-gradient(top, #eaf3f8 0%,#ffffff 100%);
	background: -ms-linear-gradient(top, #eaf3f8 0%,#ffffff 100%);
	background: linear-gradient(to bottom, #eaf3f8 0%,#ffffff 100%);
	position: relative;
	border: 1px solid #C1C1C1;
}

.pg-item + .pg-item {
	margin-top: 24px;
}

.pg-item img {
	margin-left: auto;
	margin-right:auto;
	display: block;
}

.widget-TrainingListGallery .pg-item h3 {
	margin: 0.5em 0 0;
	color: #000;
	font-size: 25px;
	font-size: 2.5rem;
	text-decoration: none;
}
.widget-TrainingListGallery p {
	margin: 0.5em 0;
	color: #5f5f5f;
}
.widget-TrainingListGallery .read-more {
	float: right;
	margin: 7px 0 -31px 0;
}
.widget-TrainingListGallery .read-more span {
	color: #0E7BB2;
}

.widget-TrainingListGallery .view-links {
	background: #38d8ff;
	text-indent: -9999px;
	background-image: url(../images/icon_e-learning.svg);
	background-position: 35px 9px;
	background-repeat: no-repeat;
	height: 40px;
	width: 74px;
	position: absolute;
	left: 0px;
	bottom: 0px;
	padding: 0;
	outline: none;
	-webkit-appearance: none;
	border: none;
}
.widget-TrainingListGallery .view-links:after {
	content: " ";
	position: absolute;
	left: 100%;
	top: 0;
	width: 0;
	height: 0;
	border-bottom: 40px solid transparent;
	border-left: 13px solid #38d8ff;
	-webkit-transition: all 250ms ease-in;
	-moz-transition: all 250ms ease-in;
	-ms-transition: all 250ms ease-in;
	-o-transition: all 250ms ease-in;
	transition: all 250ms ease-in;
}

@media screen and (min-width: 730px) {
	.pg-item {
		width: calc(50% - 12px);
		float: left;
		margin-bottom: 24px;
	}
	.pg-item + .pg-item {
		margin-top: 0;
	}
	.pg-item:nth-child(odd) {
		margin-right: 24px;
	}
	@supports(display: grid) {
		.children-gallery {
			display: grid;
			grid-template-columns: 1fr 1fr;
			grid-gap: 24px;
		}
		.pg-item {
			width: 100%;
			margin: 0;
		}
		.pg-item:nth-child(odd) {
			margin-right: 0;
		}
		.pg-link {
			display: flex;
			flex-flow: column wrap;
			height: 100%;
		}
		.widget-TrainingListGallery .read-more {
			align-self: flex-end;
			margin-top: auto;
		}
	}
}

@media screen and (min-width: 1260px) {
	.pg-item {
		width: calc(33% - 8px);
		margin-right: 16px;
	}
	.pg-item:nth-child(odd) {
		margin-right: 16px;
	}
	.pg-item:nth-child(3n+0) {
		margin-right: 0;
	}
	.pg-link {
		padding-bottom: 40px;
	}
	.pg-item__details {
		position: absolute;
		background-color: #ffffff;
		bottom: 0;
		left: 0;
		right: 0;
		height: 0;
		padding-left: 25px;
		padding-right: 25px;
		z-index: 1;
		overflow: hidden;
		-webkit-transition: height 250ms ease-in;
		-moz-transition: height 250ms ease-in;
		-ms-transition: height 250ms ease-in;
		-o-transition: height 250ms ease-in;
		transition: height 250ms ease-in;
	}
	.pg-item__details > *:last-child {
			padding-bottom: 40px;
	}
	.pg-link:hover .pg-item__details,
	.pg-link:focus .pg-item__details {
		height: 100%;
	}
	.widget-TrainingListGallery .read-more,
	.view-links {
		z-index: 2;
	}
	.widget-TrainingListGallery .read-more {
    margin: 0;
    position: absolute;
    right: 25px;
    bottom: 8px;
	}
	.widget-TrainingListGallery .pg-item h3 {
		margin: 30px 0 15px 0;
		margin: 3rem 0 1.5rem 0;
	}
	@supports(display: grid) {
		.children-gallery {
			display: grid;
			grid-template-columns: 1fr 1fr 1fr;
			grid-gap: 24px;
		}
		.pg-item {
			width: 100%;
			margin: 0;
		}
		.pg-item:nth-child(3n+0) {
			margin-right: 0;
		}
	}
}


/* ---- Videos ---- */
.widget-Video {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px; height: 0; overflow: hidden;
}

.widget-Video iframe,
.widget-Video object,
.widget-Video embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



/* ---- IFrames ---- */
.widget-IFrame iframe {
	width: 100%;
	height: 200px;
	border: none;
}

.iframe-body {
	padding: 10px 30px;
}


/* ---- Events Listing Page ---- */

.event-list-item {
	border-top: 1px dashed #808080;
	padding: 20px 0 10px
}

.event-list-item:first-child {
	border-top: 0;
}

.event-list-image {
	width: 28%;
	float: right;
	text-align: right;
}
.event-list-image img {
	max-width: 100%;
}

.event-list-date {
	float: left;
}

.event-list-info {
	margin: 0 30% 0 80px;
}

/* ---- Event Details Page ---- */


.event-search-form {
	background: #f6f6f6;
	display: block;
	padding: 16px 20px;
	margin: 20px 0;
}

.event-map {
	width: 40%;
	float: right;
	text-align: right;
	margin-top: 15px;
}
.event-map img {
	max-width: 100%;
	height: auto;
}

.event-details {
	width: 58%;
	margin-top: 15px;
}
.event-details-date {
	float: left;
}

.event-details-info {
	margin: 0 0 0 80px;
}

.event-description {
	margin: 20px 0;
}



/* ---- Search form (inline in content NOT the header form) ---- */
.search-form {
	padding-top: 25px;
	padding-bottom: 25px;
}

.search-form label {
	color: #000;
	font-size: 1.5px;
	font-size: 1.5rem;
}

#pubreg .bootstrap p,
#pubreg .bootstrap li {
	font-size: 1.5rem;
}

#pubreg .bootstrap .radio-inline input[type="radio"] {
    bottom: 4px !important;
}

#pubreg .bootstrap .form-horizontal .radio,
#pubreg .bootstrap .form-horizontal .checkbox {
	min-height: 15px;
}

#pubreg .bootstrap .form-horizontal .radio,
#pubreg .bootstrap .form-horizontal .checkbox,
#pubreg .bootstrap .form-horizontal .radio-inline,
#pubreg .bootstrap .form-horizontal .checkbox-inline {
    padding-top: 0;
}

.search-form textarea,
.search-form select,
.search-form input[type="text"],
.search-form input[type="password"],
.search-form input[type="datetime"],
.search-form input[type="datetime-local"],
.search-form input[type="date"],
.search-form input[type="month"],
.search-form input[type="time"],
.search-form input[type="week"],
.search-form input[type="number"],
.search-form input[type="email"],
.search-form input[type="url"],
.search-form input[type="search"],
.search-form input[type="tel"],
.search-form input[type="color"] {
	background-color: #fff;
	line-height: 2;
}

.search-form select {
	height: 48px;
}

@media screen and (min-width: 730px) {
	.search-form-column {
		float: left;
		width: 48.5%;
		margin-left: 3%;
	}
	.search-form-first-column {
		margin-left: 0;
	}
}

/* ---- Search results ---- */
.search-no-results {
	text-align: center;
}

.search-results {
	background-color: #f0f0f0;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
}

.search-result {
	background-color: #fff;
	padding: 15px;
	border-left: 1px solid #d7d7d7;
	border-right: 1px solid #d7d7d7;
}

.search-result:first-of-type {
	border-top: 1px solid #d7d7d7;
}

.search-result:last-of-type {
	border-bottom: 1px solid #d7d7d7;
}

.search-result h2,
.mainbar .search-result h2 {
	margin-top: 0;
}
.search-result--breadcrumb {
	font-size: 0.8em;
	color: #006621;
	margin: 0;
}

.search-result--breadcrumb {
	font-size: 0.8em;
}

/* BP small */
@media screen and (min-width: 48em) { /* 768px */
	.search-result--breadcrumb {
		font-size: 1em;
	}
}

.search-result--summary {
	margin-top: 0;
}

/* ---- Search tabs ---- */
.search-tabs {
    list-style: none;
	padding-top: 15px;
	padding-left: 15px;
	padding-right: 15px;
	margin-top: 30px;
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 0;
	background-color: #f0f0f0;
}
.search-tabs li {
	display: inline-block;
	margin-right: 2px;
}
.search-tabs a {
    display: block;
    position: relative;
    padding: 8px 10px 8px;
    text-decoration: none;
    color: #717171;
    font-size: 15px;
	font-size: 1.5rem;
}
.search-tabs a:hover,
.search-tabs a:focus {
	color: #0E7BB2;
}
.search-tabs li.on a {
	color: #222;
	border-top: 1px solid #d7d7d7;
	border-left: 1px solid #d7d7d7;
	border-right: 1px solid #d7d7d7;
	background-color: #fff;
}
.search-tabs li.on a:hover,
.search-tabs li.on a:focus {
	color: #0E7BB2;
}
.search-tabs li.on a:after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 4px;
	background-color: #fff;
}
.search-tabs .search-tabs--count {
	font-size: 14px;
	font-size: 1.5rem;
	margin-left: 3px;
	color: #717171;
}
.search-tabs .search-tabs--count:before {
	content: "(";
}
.search-tabs .search-tabs--count:after {
	content: ")";
}
/* BP Smaller */
@media screen and (min-width: 35em) { /* 560px */
	.search-tabs a {
		padding: 12px 14px 12px;;
		font-size: 17px;
		font-size: 1.7rem;
	}
	.search-tabs li {
		display: inline-block;
		margin-right: 10px;
	}
}

/* ---- Search pagination ---- */
.search-paginate {
	text-align: center;
	margin: 30px 0 15px 0;
	padding: 10px 15px;
	background: #f8f8f8;
}
	.search-paginate .page {
		background: #81C1E6;
		color: #fff;
		padding: 3px 12px;
		text-decoration: none;
		margin: 0 2px;
	}
	.search-paginate .page.on {
		background: #2091D2;
	}
	.search-paginate .page-prev {
		float: left;
	}
	.search-paginate .page-next {
		float: right;
	}


/* Document search redirect button */
.widget-DocumentSearch.orientation-tall {
	padding: 1em;
	background: #f7f7f7;
	border: 1px solid #e8e8e8;
	text-align: center;
}


/* ---- Notification box ---- */
/* stale content warning */
.message-box {
	background-color: #ccc;
	padding: 5px 20px 20px;
	vertical-align: middle;
}

.message-box--error {
	color: #FFF;
	background: #ca0000;
}

.message-box__form,
.message-box__form select,
.message-box__form input,
.message-box__form label {
	margin: 0;
}

.message-box__form .button {
	min-height: 34px;
}

html ul.messages {
	padding: 0;
	margin: 0;
	list-style-type: none;
	font-family: 'ff-meta-web-pro', Helvetica, sans-serif;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 18px;
	border: none;
	background-color: #f9f6f1;
	zoom: 1;
	text-align: center;
}

html ul.messages li {
	display: block;
	vertical-align: top;
	padding: 5px 30px;
	width: 100%;
	margin: 0 0 20px !important;
	border: none;
}
html ul.messages li:before, html ul.messages li:after {
	content: " - ";
}

html ul.messages li.confirm {
	color: #FFF;
	background: #31a100;
	list-style-type: none;
}

html ul.messages li.error {
	color: #FFF;
	background: #ca0000;
	list-style-type: none;
	margin: 30px 0 0;
}
html .mainbar ul.messages li.error {
	margin: 0 0 30px;
}


/* smallish screens */

@media screen and (max-width: 480px) {

	/* Visual indicator of breakpoints */

	.event-details,
	.event-map {
		width: 100%;
	}

	.event-map {
		text-align: center;
		float: none;
	}

	.event-details-date {
		float: none;
		margin: 20px auto;
	}

	.event-details-info {
		margin: 0;
	}
}


.mfp-inline-holder .mfp-content {
    max-width: 800px;
    background-color: #fff;
    padding: 1em;
}


/* ------------------------------------------------------
**** Add-on styles
------------------------------------------------------ */

/* ---- slick slider ---- */
/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;

    position: absolute;
    bottom: 0;
    z-index: 1;

    display: block;

    width: 36px;
    height: 36px;
    padding: 0;

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background-color: transparent;

    background-repeat: no-repeat;
    background-position: center center;
    background-size: 12px auto;
    background-image: url(../images/2019/icon_arrow.svg);
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: .25;
}


.slick-prev:before,
.slick-next:before {
    content: none;
}

.slick-prev {
    left: 20px;
    top: auto;
    bottom: calc(50% - 14px);
}

.slick-next {
    right: 20px;
    top: auto;
    bottom: calc(50% - 14px);
    transform: rotate(180deg);
}

[dir='rtl'] .slick-prev:before,
[dir='rtl'] .slick-next:before {
    display: block;
    font-family: 'slick';
    font-size: 40px;
    line-height: 1;
    opacity: .75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[dir='rtl'] .slick-prev {
    left: auto; right: 0
}

[dir='rtl'] .slick-prev:before {
    content: '→';
}

[dir='rtl'] .slick-next {
    right: auto;
    left: 0;
}

[dir='rtl'] .slick-next:before {
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 1.8rem;
}


.slick-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 8px;
}

.slick-slider .slick-dots li {
    position: relative;
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    padding: 0;
    cursor: pointer;
}

.slick-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 8px;
    height: 8px;
    padding: 4px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    overflow: hidden;
}

.slick-slider .slick-dots li button:hover,
.slick-slider .slick-dots li button:focus {
    outline: none;
}

.slick-slider .slick-dots li button:hover:before,
.slick-slider .slick-dots li button:focus:before {
    opacity: 0.75;
}

.slick-slider .slick-dots li button:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 8px;
    height: 8px;
    content: '';
    background-color: #fff;
    opacity: 0.33;
    border-radius: 20px;
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.slick-slider .slick-dots li.slick-active button:before {
    opacity: 1;
}


/* ------------------------------------------------------
**** Print styles
------------------------------------------------------ */

@media print {
	* {
		background: transparent !important;
		color: #000 !important; /* Black prints faster: h5bp.com/s */
		box-shadow: none !important;
		text-shadow: none !important;
	}

	/* Links fun */
	a,
	a:visited {
		text-decoration: underline;
	}
	a[href]:after {
		content: " (" attr(href) ")";
	}
	abbr[title]:after {
		content: " (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}

	/* Various other tweaks */
	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	thead {
		display: table-header-group; /* h5bp.com/t */
	}
	tr,
	img {
		page-break-inside: avoid;
	}
	img {
		max-width: 100% !important;
	}
	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}
	h2,
	h3 {
		page-break-after: avoid;
	}

	/* Open expandos */
	.expando {
		display: block !important;
	}
	.expando-opener-para,
	.expando-closer-para {
		display: none !important;
	}

	/* Nuke some stuff */
	header,
	footer,
	div.more-links,
	div.sidebar,
	ul.breadcrumb {
		display: none !important;
	}

	/* Nuke layout from content area */
	html,
	body,
	.content,
	.mainbar,
	.container {
		float: none !important;
		margin: 0 !important;
		padding: 0 !important;
		position: static !important;
		width: auto !important;
		height: auto !important;
		max-width: 99999px !important;
		max-height: 99999px !important;
		min-width: 0 !important;
		min-height: 0 !important;
	}

	/* Make margins nice */
	@page {
		margin: 2cm 1cm;
	}
}
