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


	$link:					#e85505;
	$link-hover:			#ae550d;

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

	$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
------------------------------------------------------ */

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


/* ------------------------------------------------------
**** 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: 24px;
	line-height: 2.4rem;
	font-size: 16px;
	font-size: 1.6rem;
	color: #222;
	font-family: 'HelveticaNeueW01-45Ligh', Helvetica, Arial, sans-serif;
	font-weight: normal;
}


/* ---- 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;
	color: #8a7b7b;
}


h1, .h1 {
	line-height: 36px;
	line-height: 3.6rem;
	font-size: 28px;
	font-size: 2.8rem;
}

h2, .h2 {
	margin: 30px 0 15px 0;
	margin: 3rem 0 1.5rem 0;
	font-size: 29px;
	font-size: 2.9rem;
}

h3, .h3 {
	margin: 30px 0 15px 0;
	margin: 3rem 0 1.5rem 0;
	font-size: 20px;
	font-size: 2rem;
	color: #0053a0;
}

h4, .h4 {
	margin: 30px 0 15px 0;
	margin: 3rem 0 1.5rem 0;
	font-size: 16px;
	font-size: 1.6rem;
}

h5, .h5 {
	margin: 30px 0 15px 0;
	margin: 3rem 0 1.5rem 0;
	font-size: 14px;
	font-size: 1.4rem;
}

h6, .h6 {
	margin: 22px 0 15px 0;
	margin: 2.2rem 0 1.5rem 0;}

	.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 20px;
		padding: 0 0 0 2rem;
	}


	li ul,
	li ol {
		list-style-type: none;
		margin: 1rem 0;
	}

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

	/* ---- Breadcrumbs ---- */

	.breadcrumb {
		list-style-type: none;
		margin: 0;
		padding: 14px 0 12px 360px;
		font-size: 13px;
		font-size: 1.3rem;
		color: #FFF;
		background: #369cd6;
		text-transform: uppercase;
		-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);
	}
	.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;
	}

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

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

	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 {
			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

Reusable bits of badass code that we probably use a lot

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

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

.button {
	/* Structure */
	display: inline-block;
	*display: inline; /*IE 6/7*/
	zoom: 1;
	margin-bottom: 0;
	vertical-align: middle;
	text-align: center;
	cursor: pointer;
	/* styles */
	font-weight: normal;
	line-height: 1em;
	color: #fff;
	background-color: #f5921f;
	text-decoration: none;
	border-radius: 3px;
	border: none;
	font-size: 100%;
	*font-size: 90%; /*IE 6/7 - To reduce IE's oversized button text*/
	*overflow: visible; /*IE 6/7 - Because of IE's overly large left/right padding on buttons */
	padding: 8px 9px;
}

/* 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;
	color: #fff;
}

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

.button-small {
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 8px;
	line-height: 0.8rem;
	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: 5px;
}

.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: 6px;
}

.button-large {
	font-size: 20px;
	font-size: 2rem;
	padding: 15px 18px 10px;
}

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


/* ---- 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);

}
.expando.expanded {
	border: 1px solid #E5E5E5;
	padding: 5px 30px;
	background-color: #FAFAFA;
	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;

}

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

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

.content-highlight {
	margin: 15px 0;
	margin: 1.5rem 0;
	padding: 15px 20px 15px;
	background: #f6f6f6;
}


/* ---- 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 {
	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: 14px;
	font-size: 1.4rem;
	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;
}


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

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: 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.4rem;
	}

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

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

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

.container {
	max-width: 1230px;
	margin: 0 auto;
	position: relative;
}

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

.header {
	background: #FFF;
	padding: 8px 0 0;
	border-bottom: 1px solid #A2A2A2;
	height: 162px;
}
/* Logo */
.logo {
	float: left;
	padding: 9px 0 0 66px;
}
.logo img:hover {
	opacity: 0.9;
}
/* 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;
}


/* Navigation */
.nav {
	position: absolute;
	top: 123px;
	width: 100%;
	z-index: 9;
}
.nav .container {
	-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/icon-close.png) no-repeat center center !important;
	width: 37px;
}


/* Fixed nav */
.nav.fixed {
	position: fixed;
	top: 0;
	left: 0;
}


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

/* Home Button */
.nav > .container > ul > li:first-child {
	position: absolute;
	top: -115px;
	right: 0;
	text-indent: -9999px;
	width: 47px;
	height: 42px;
	background: #f5921f url(../images/icon-home.png) no-repeat center center !important;
}
.nav > .container > ul > li:first-child:hover {
	background-color: #E18316 !important;
}
.nav > .container > ul > li:first-child a {
	height: auto;
}

/* Sub menu */
.nav > .container > ul > li:nth-child(2),
.nav > .container > ul > li:nth-child(3),
.nav > .container > ul > li:nth-child(4)
{
	position: absolute;
	top: -106px;
	background: none;
	width: auto;
	float: none;
}
.nav > .container > ul > li:nth-child(2).on,
.nav > .container > ul > li:nth-child(3).on,
.nav > .container > ul > li:nth-child(4).on {
	background-color: transparent;
}
.nav > .container > ul > li:nth-child(2) a,
.nav > .container > ul > li:nth-child(3) a,
.nav > .container > 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 > .container > ul > li:nth-child(3) a:before,
.nav > .container > ul > li:nth-child(4) a:before {
	content: " | ";
	margin: 0 7px;
}

.nav > .container > ul > li:nth-child(2) {
	right: 479px;
}
.nav > .container > ul > li:nth-child(3) {
	right: 398px;
}
.nav > .container > ul > li:nth-child(4) {
	right: 290px;
}
.nav > .container > ul > li:nth-child(2):hover,
.nav > .container > ul > li:nth-child(3):hover,
.nav > .container > ul > li:nth-child(4):hover {
	background-color: transparent;
}




/* First level */
.nav > .container > ul {
	display: block;
	padding: 0;
	margin: 0;
}
.nav > .container > ul > li {
	float: left;
	width: 20%;
	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 > .container > ul > li.on {
	background-color: #0f82c4;
}
.nav > .container > ul > li:nth-child(5) {
	background-image: none;
}
.nav > .container > ul > li > a {
	color: #FFF;
	font-family: 'ff-meta-web-pro', Helvetica, sans-serif;
	display: block;
	padding: 15px 0;
	font-size: 21px;
	font-size: 2.1rem;
}
.nav > .container > ul > li:hover {
	background-color: #0f82c4;
}
.nav > .container > ul > li:nth-child(5) {
	width: 205px;
}
.nav > .container > ul > li:nth-child(6) {
	width: 282px;
}
.nav > .container > ul > li:nth-child(7) {
	width: 277px;
}
.nav > .container > ul > li:nth-child(8) {
	width: 276px;
}
.nav > .container > ul > li:nth-child(9) {
	width: 190px;
}



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

/* ---- More links ---- */
.more-links {
	background: #f2f2e9;
	color: #4d4d4d;
	padding-bottom: 40px;
}
.more-links button, .more-links html input[type="button"], .more-links input[type="reset"], .more-links input[type="submit"] {
	background: #f5921f;
}
.more-links button:hover, .more-links html input[type="button"]:hover, .more-links input[type="reset"]:hover, .more-links input[type="submit"]:hover {
	background-color: #E18316;
}
.more-links .find-out-more-heading {
	text-align: center;
	overflow: hidden;
	margin: 0;
}
.more-links h2 {
	color: #000;
	margin: 0 auto;
	text-align: center;
	padding: 50px 0 0;
	display: inline-block;
	position: relative;
}
.more-links h2:before {
	content: " ";
	width: 500%;
	border-top: 1px solid #c1c1c1;
	position: absolute;
	bottom: 8px;
	left: -510%;
}
.more-links h2:after {
	content: " ";
	width: 500%;
	border-top: 1px solid #c1c1c1;
	position: absolute;
	bottom: 8px;
	right: -510%;
}
.more-links h3 {
	color: #000;
	font-size: 26px;
	font-size: 2.6rem;
}
.more-links-left {
	float: left;
	width: 330px;
	margin-right: 30px;
}
.enews {
	width: 93%;
}
.enews h3 {
	border-bottom: 1px solid #c1c1c1;
	padding-bottom: 20px;
}
.enews-signup {
	position: relative;
	margin: 0;
	padding: 0;
}
.enews-signup input {
	margin: 0;
	padding-right: 59px;
	color: #000;
	background-color: #FFF;
	-webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,0.2);
	box-shadow: 0 0 2px 1px rgba(0,0,0,0.2);
}
.enews-signup input[type="submit"] {
	background-image: url(../images/icon-arrow-right.png);
	background-repeat: no-repeat;
	background-position: center center;
	text-indent: -9999px;
	position: absolute;
	top: 0;
	right: 0;
	width: 42px;
	height: 102%;
	padding: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.more-links-right {
	float: left;
	width: 870px;
}
.more-links-right h3 {
	padding-bottom: 5px;
}
.more-links-right ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.more-links-right ul a:before {
	content: "\003e\00a0";
}
.more-links-right 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;
}
.more-links-right ul a:hover {
	background-color: #fbfbf8;
	padding-left: 10px;
}
.more-links-right li {
	border-bottom: 1px solid #c1c1c1;
	width: 31%;
}
.more-links-right li:first-child {
	border-top: 1px solid #c1c1c1;
}
.more-links-right li.reset {
	border-top: 1px solid #c1c1c1;
	margin-top: -18em;
}
.more-links-right li.column2 {
	margin-left: 34.5%;
}
.more-links-right li.column3 {
	margin-left: 69%;
}
.more-links-right li.twitter a {
	background-image: url(../images/icon-twitter-grey.png);
	background-repeat: no-repeat;
	background-position: right center;
}
.more-links-right li.twitter a:hover {
	background-position: right 10px center;
}

/* ---- Footer ---- */

.footer {
	background: #2091d2;
	padding: 40px 0;
}
.footer .sa-gov {
	float: left;
	margin-right: 160px;
}
.footer .copyright {
	float: left;
	margin: 0;
	padding-top: 28px;
	color: #e5faff;
}
.footer .copyright a {
	color: #e5faff;
	text-decoration: none;
}
.footer .copyright a:hover {
	text-decoration: underline;
}

@media screen and (min-width: 1000px) {
	.footer .copyright {
		float: right;
		padding-top: 0;
	}
}


/* Alerts */
.alert {
	background: #f8921d;
	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: #e9820d;
	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 #e9820d;
}
.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 #f8921d;
}
.alert.phone {
	background-image: url(../images/alert-icon-phone.png);
}
.alert.calculator {
	background-image: url(../images/alert-icon-calculator.png);
}
.alert.computer {
	background-image: url(../images/alert-icon-computer.png);
}
.alert.beach-water-advice {
	background-image: url(../images/alert-icon-beach-water-advice.png);
}

/* 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/icon-close.png) 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;
}

/* ------------------------------------------------------
**** 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.4rem;
}
.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 p.date {
	font-size: 15px;
	font-size: 1.3rem;
	color: #707070;
	margin: 16px 0 -4px;
	margin: -1.6rem 0 -0.4rem;
}

.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 {
}
	.search-form input.button {
		float: right;
	}
	@media screen and (min-width: 730px) {
		.search-form-column {
			float: left;
			width: 30%;
			margin-left: 3%;
		}
		.search-form-first-column {
			margin-left: 0;
		}
	}

/* ---- Search results ---- */
.search-no-results {
	text-align: center;
}
.search-result {
}
	.search-result--breadcrumb {
		font-size: 90%;
		color: #006621;
	}

/* ---- Search tabs ---- */
.search-tabs {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    border-bottom: 1px solid #d7d7d7;
}
.search-tabs li {
	display: inline-block;
	margin-right: 10px;
}
.search-tabs a {
	display: block;
	padding: 0 14px 12px;
	text-decoration: none;
	color: #717171;
	font-size: 17px;
	font-size: 1.7rem;
}
.search-tabs a:hover,
.search-tabs a:focus {
	color: #222;
}
.search-tabs li.on a {
	color: #0E7BB2;
	border-bottom: 3px solid #0E7BB2;
}
.search-tabs .search-tabs--count {
	font-size: 14px;
	font-size: 1.4rem;
	margin-left: 3px;
	color: #717171;
}
.search-tabs .search-tabs--count:before {
	content: "(";
}
.search-tabs .search-tabs--count:after {
	content: ")";
}

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



/* ------------------------------------------------------
**** 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.banner,
	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;
	}
}



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