/*
# Settings (_settings)
*/
/*
## Variables

### General

$phi: 1.618033988749 - Golden ratio
*/
/*
### Colours

<span style="color: #333">$colour-base - #333</span> <span style="background: #333; color: #FFF;">&nbsp;$colour-base - #333&nbsp;</span>

<span style="color: #339">$colour-highlight - #339</span> <span style="background: #339; color: #FFF;">&nbsp;$colour-highlight - #339&nbsp;</span>

<span style="color: #339">$colour-link - #339</span> <span style="background: #339; color: #FFF;">&nbsp;$colour-link - #339&nbsp;</span>
*/
/*
### Fonts

$font-size - 13

$line-height - 1.4

<span style="font-family: sans-serif;">$font-base - sans-serif</span>

<span style="font-family: sans-serif;">$font-header - sans-serif</span>
*/
/*
### Layout

$width - 960

$columns - 24

$gutter - 12
*/
/*
## Functions

### em($size: $font-size, $context: $fs)

Will convert a pixel based size to an em value.
First value is the target size, the second value is the font-size of the context it is in.

Examples:
`em(26)` // 2em if base font-size is 13px
`em(18, 12)` // 1.5em
*/
/*
### lh($size: $font-size, $context: $fs)

Will provide the same function as 'em' above buth without appending 'em' to the result.
This makes it more suitable to use as a line-height value.

Examples:
`lh(26)` // 2 if base font-size is 13px
`lh(18, 12)` // 1.5
*/
/*
### fluid($columns: 1, $total-columns: $columns)

Will provide the % result of the first value divided by the second.
Suitable for working out columns and general % values.

Examples:
`fluid(2, 6)` // 12.5%
`fluid(10px, 960px)` // 1.041666666666667%
*/
/*
## Mixins

Mixins must to be called using @include (scss) or + (sass)

### vendor($property, $value)

Add vendor prefixes to a property and provide the value for the property

`@include vendor(box-shadow, 0 0 10px 0 #000);`

Outputs:
`-webkit-box-shadow: 0 0 10px 0 #000`
`-moz-box-shadow: 0 0 10px 0 #000`
`-ms-box-shadow: 0 0 10px 0 #000`
`-o-box-shadow: 0 0 10px 0 #000`
`box-shadow: 0 0 10px 0 #000`
*/
/*
### list-reset

Resets current list only

<pre>
ul {
	@include list-reset;
}
</pre>

Outputs:
<pre>
ul {
	margin: 0;
	padding: 0;
}
ul > li {
	list-style: none;
	list-style-image: none;
}
</pre>
*/
/*
### list-reset-full

Reset current and all child lists

<pre>
ul {
	@include list-reset-full;
}
</pre>

Outputs:
<pre>
ul, ul ul, ul ol {
	margin: 0;
	padding: 0;
}
ul li {
	list-style: none;
	list-style-image: none;
}

</pre>
*/
/*
### clearfix

Clear an elements floated children

<pre>
div {
	@include clearfix;
}
</pre>

Outputs:
<pre>
div {
	*zoom: 1;
}
div:before, div:after {
	content: "";
	display: table;
}
div:after {
	clear: both;
}
</pre>
*/
/*
### keyframes($name)

Set animation keyframes over multiple browser extensions

<pre>
.box {
	@include keyframes(my-animation) {
		0% { opacity: 0; }
		100% { opacity: 1; }
	}
}
</pre>

Outputs:
<pre>
.box {
	@-webkit-keyframes my-animation {
	  0%   { opacity: 0; }
	  100% { opacity: 1; }
	}
	@-moz-keyframes my-animation {
	  0%   { opacity: 0; }
	  100% { opacity: 1; }
	}
	@-ms-keyframes my-animation {
	  0%   { opacity: 0; }
	  100% { opacity: 1; }
	}
	@-o-keyframes my-animation {
	  0%   { opacity: 0; }
	  100% { opacity: 1; }
	}
	@keyframes my-animation {
	  0%   { opacity: 0; }
	  100% { opacity: 1; }
	}
}
</pre>
*/
/*
### hidden-full

Completely hide an element

<pre>
div {
	@include hidden-full;
}
</pre>

Outputs:
<pre>
div {
	display: none !important;
	visibility: hidden;
}
</pre>
*/
/*
### max($maxwidth: $width)

A simple max-width media query

<pre>
div {
	@include max(768px) {
		display: none;
	}
}
</pre>

Outputs:
<pre>
@media (max-width: 768px) {
	div {
		display: none;
	}
}
</pre>
*/
/*
### min($minwidth: $width)

A simple min-width media query

<pre>
div {
	@include min(768px) {
		display: block;
	}
}
</pre>

Outputs:
<pre>
@media (min-width: 768px) {
	div {
		display: block;
	}
}
</pre>
*/
/*
### minmax($minwidth: $width, $maxwidth: $width)

A min-max-width media query.
USeful for getting around respond.js issues in IE8

<pre>
div {
	@include minmax(768px) {
		display: block;
	}
}
</pre>

Outputs:
<pre>
@media (min-width: 768px) {
	div {
		display: block;
	}
}
</pre>
*/
/*
### pixel-ratio($pixelratio: 2, $basedpi: 96)

A simple pixel-ratio media query

$basedpi is used for fine control over the dpi query value

<pre>
div {
	@include pixel-ratio {
		background-image: url(image@2x.png);
	}
}
</pre>

Outputs:
<pre>
@media
	(-webkit-min-device-pixel-ratio: 2),
	(   min--moz-device-pixel-ratio: 2),
	(     -o-min-device-pixel-ratio: 2/1),
	(        min-device-pixel-ratio: 2),
	(                min-resolution: 192dpi),
	(                min-resolution: 2dppx) {
		div {
			background-image: url(image@2x.png);
		}
	}
</pre>
*/
/*
### generate($width: 10px, $height: 10px, $position: static)

Create generic styling for :before/:after

$height / $width / $position all control their namesake CSS properties

<pre>
div:after {
	@include generate;
}
</pre>

Outputs:
<pre>
div:after {
	content: "";
	overflow: hidden;
	text-indent: -9999em;
	display: block;
	width: 10px;
	height: 10px;
	position: static;
}
</pre>
*/
/*
### opacity($o: 0.5)

Handle standard & IE opacity

<pre>
div {
	@include opacity(.75);
}
</pre>

Outputs:
<pre>
div {
	opacity: .75;
	filter: alpha(opacity=75);
}
</pre>
*/
/*
### border-radius($val: 10px)

Friendly interface to vendor(border-radius)
*/
/*
### box-shadow($val: 0 0 10px #000)

Friendly interface to vendor(box-shadow)
*/
/*
### box-shadows($shadow1, $shadow2, $shadow3, $shadow4, $shadow5, $shadow6)

Allow multiple box-shadows (up to 6) via a mixin
*/
/*
### gradient($direction:vertical, $start-color: #fff, $start-position: 0%, $end-color: #000, $end-position: 100%)

Create horizontal / vertical gradients

Note : Does not include IE9 data uri support

<pre>
div {
	@include gradient($start-color: #F00, $end-color: #0F0);
}
</pre>

Outputs:
<pre>
div {
	background-image: -moz-linear-gradient(top, #F00 0%, #0F0 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F00), color-stop(100%, #0F0));
	background-image: -webkit-linear-gradient(top, #F00 0%, #0F0 100%);
	background-image: -o-linear-gradient(top, #F00 0%, #0F0 100%);
	background-image: -ms-linear-gradient(top, #F00 0%, #0F0 100%);
	background-image: linear-gradient(to bottom, #F00 0%, #0F0 100%);
	background-repeat: repeat-y;
}
</pre>
*/
/*
### transform($arguments)

Friendly interface to vendor(transform) w/backface-visibility: hidden
*/
/*
### transition($arguments)

Friendly interface to vendor(transition)
*/
/*
### perspective($val: 0)

Friendly interface to vendor(perspective)
*/
/*
### perspective-origin($val: 50% 50%)

Friendly interface to vendor(perspective-origin)
*/
/*
### transform-origin($val: 50% 50%)

Friendly interface to vendor(transform-origin)
*/
/*
### transform-style($val: preserve-3d)

Friendly interface to vendor(transform-style)
*/
/*
### Placeholders
*/
/*
### boxes($cols: 3, $gutter: 10px, $selector: ".col")

Set the container and its children (as  selected by the selector argument) to be a set of columns.
*/
/*
## Extend

Use these placeholder styles with @extend.

### %debug

Used to highlight items via background-color.
Can be useful for debugging.
*/
/*
### %ellipsis

If the element has overflowing text the text will be truncated and an ellipsis appended to the end.
*/
/*
### %ir

Use when setting an element such as an input button to use a background-image.

Not recommended to use this method unless necessary.
Try and use appropriate elements where possible (`<input type="image" />` for example).
*/
/*
### %clearfix

@extend interface for @include clearfix;
*/
.box, .box-base, .box-highlight, .grid-gallery .text, .grid-images .text, .block-base, .block-highlight, .grid, .grid-signposts.four-column, .grid-articles, .grid-gallery, .grid-images, .grid-videos, .grid-wide, .grid-signposts.two-column, .form-item, .tabs-links, .wrap, .header-site, .split-2, .diary-blocks, .split-3, .form-feedback .col-wrap, .form-comment .col-wrap, .nav-footer, .form-search, .banner, .home-boxes, .post, .articles-filter, .article-featured, .form-newsletter, .timeline .months, .grid-team, .grid-team .text, .grid-team .popup, .diary-content, .diary-content .links .col, .info-balls, .contact-columns, .crime-plan .tabs-pane .inner, .crime-plan .read-plan, .crime-plan .priorities .priority-banner, .crime-plan .priorities .priority-success {
  *zoom: 1; }
  .box:before, .box-base:before, .box-highlight:before, .grid-gallery .text:before, .grid-images .text:before, .block-base:before, .block-highlight:before, .grid:before, .grid-signposts.four-column:before, .grid-articles:before, .grid-gallery:before, .grid-images:before, .grid-videos:before, .grid-wide:before, .grid-signposts.two-column:before, .form-item:before, .tabs-links:before, .wrap:before, .header-site:before, .split-2:before, .diary-blocks:before, .split-3:before, .form-feedback .col-wrap:before, .form-comment .col-wrap:before, .nav-footer:before, .form-search:before, .banner:before, .home-boxes:before, .post:before, .articles-filter:before, .article-featured:before, .form-newsletter:before, .timeline .months:before, .grid-team:before, .grid-team .text:before, .grid-team .popup:before, .diary-content:before, .diary-content .links .col:before, .info-balls:before, .contact-columns:before, .crime-plan .tabs-pane .inner:before, .crime-plan .read-plan:before, .crime-plan .priorities .priority-banner:before, .crime-plan .priorities .priority-success:before, .box:after, .box-base:after, .box-highlight:after, .grid-gallery .text:after, .grid-images .text:after, .block-base:after, .block-highlight:after, .grid:after, .grid-signposts.four-column:after, .grid-articles:after, .grid-gallery:after, .grid-images:after, .grid-videos:after, .grid-wide:after, .grid-signposts.two-column:after, .form-item:after, .tabs-links:after, .wrap:after, .header-site:after, .split-2:after, .diary-blocks:after, .split-3:after, .form-feedback .col-wrap:after, .form-comment .col-wrap:after, .nav-footer:after, .form-search:after, .banner:after, .home-boxes:after, .post:after, .articles-filter:after, .article-featured:after, .form-newsletter:after, .timeline .months:after, .grid-team:after, .grid-team .text:after, .grid-team .popup:after, .diary-content:after, .diary-content .links .col:after, .info-balls:after, .contact-columns:after, .crime-plan .tabs-pane .inner:after, .crime-plan .read-plan:after, .crime-plan .priorities .priority-banner:after, .crime-plan .priorities .priority-success:after {
    content: "";
    display: table; }
  .box:after, .box-base:after, .box-highlight:after, .grid-gallery .text:after, .grid-images .text:after, .block-base:after, .block-highlight:after, .grid:after, .grid-signposts.four-column:after, .grid-articles:after, .grid-gallery:after, .grid-images:after, .grid-videos:after, .grid-wide:after, .grid-signposts.two-column:after, .form-item:after, .tabs-links:after, .wrap:after, .header-site:after, .split-2:after, .diary-blocks:after, .split-3:after, .form-feedback .col-wrap:after, .form-comment .col-wrap:after, .nav-footer:after, .form-search:after, .banner:after, .home-boxes:after, .post:after, .articles-filter:after, .article-featured:after, .form-newsletter:after, .timeline .months:after, .grid-team:after, .grid-team .text:after, .grid-team .popup:after, .diary-content:after, .diary-content .links .col:after, .info-balls:after, .contact-columns:after, .crime-plan .tabs-pane .inner:after, .crime-plan .read-plan:after, .crime-plan .priorities .priority-banner:after, .crime-plan .priorities .priority-success:after {
    clear: both; }

/*
### %list-reset

@extend interface for @include list-reset;
*/
.tabs-links, .paging ul, .pagination ul, .search-paging, .carousel-wrap .carousel, .articles-filter .tags ul, .post-comments .quip-comment-list, .documents, .listing-diary, .representation ul, .crime-plan .hero ul, .plan_filter_bytime, .plan_filter_bycategory, .plan_filter_bysubcat {
  margin: 0;
  padding: 0; }
  .tabs-links > li, .paging ul > li, .pagination ul > li, .search-paging > li, .carousel-wrap .carousel > li, .articles-filter .tags ul > li, .post-comments .quip-comment-list > li, .documents > li, .listing-diary > li, .representation ul > li, .crime-plan .hero ul > li, .plan_filter_bytime > li, .plan_filter_bycategory > li, .plan_filter_bysubcat > li {
    list-style: none;
    list-style-image: none; }

/*
### %list-reset-full

@extend interface for @include list-reset-full;
*/
/*
# Normalize (_normalize)

normalize.css v1.0.1 | MIT License | git.io/normalize

Global reset. This file should not be edited.

*/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

*, *:after, *:before {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  -ms-box-sizing: inherit;
  -o-box-sizing: inherit;
  box-sizing: inherit;
  background-repeat: no-repeat; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block; }

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden] {
  display: none; }

html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */ }

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

body {
  margin: 0; }

a:focus {
  outline: 2px solid #C64D37;
  outline-offset: 4px; }

a:active,
a:hover {
  outline: 0; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

h2 {
  font-size: 1.5em;
  margin: 0.83em 0; }

h3 {
  font-size: 1.17em;
  margin: 1em 0; }

h4 {
  font-size: 1em;
  margin: 1.33em 0; }

h5 {
  font-size: 0.83em;
  margin: 1.67em 0; }

h6 {
  font-size: 0.75em;
  margin: 2.33em 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

blockquote {
  margin: 1em 40px; }

dfn {
  font-style: italic; }

mark {
  background: #ff0;
  color: #000; }

p,
pre {
  margin: 1em 0; }

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em; }

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

q {
  quotes: none; }

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

small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0 0 0 40px; }

menu,
ol,
ul {
  padding: 0 0 0 40px; }

nav ul, nav ol {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0; }
nav a {
  text-decoration: none; }

img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */ }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 0; }

form {
  margin: 0; }

fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */ }

button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */ }

button,
input {
  line-height: normal; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */ }

button[disabled],
input[disabled] {
  cursor: default; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */ }

input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */ }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
  resize: vertical; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td {
  vertical-align: top; }

/*
# Base styles: opinionated defaults (_base)
*/
/*
 * Web Fonts from fontspring.com
 *
 * All OpenType features and all extended glyphs have been removed.
 * Fully installable fonts can be purchased at http://www.fontspring.com
 *
 * The fonts included in this stylesheet are subject to the End User License you purchased
 * from Fontspring. The fonts are protected under domestic and international trademark and 
 * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or
 * distributing this font software.
 *
 * (c) 2010-2014 Fontspring
 *
 *
 *
 *
 * The fonts included are copyrighted by the vendor listed below.
 *
 * Vendor:      FontSite Inc.
 * License URL: http://www.fontspring.com/fflicense/fontsite
 *
 *
 */
@font-face {
  font-family: 'function_pro_bookbold';
  src: url("/site/fonts/FunctionPro-Bold-webfont.eot");
  src: url("/site/fonts/FunctionPro-Bold-webfont.eot?#iefix") format("embedded-opentype"), url("/site/fonts/FunctionPro-Bold-webfont.woff") format("woff"), url("/site/fonts/FunctionPro-Bold-webfont.ttf") format("truetype"), url("/site/fonts/FunctionPro-Bold-webfont.svg#function_pro_bookbold") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'function_pro_demi';
  src: url("/site/fonts/FunctionPro-Demi-webfont.eot");
  src: url("/site/fonts/FunctionPro-Demi-webfont.eot?#iefix") format("embedded-opentype"), url("/site/fonts/FunctionPro-Demi-webfont.woff") format("woff"), url("/site/fonts/FunctionPro-Demi-webfont.ttf") format("truetype"), url("/site/fonts/FunctionPro-Demi-webfont.svg#function_prodemi") format("svg");
  font-weight: normal;
  font-style: normal; }
#tinymce {
  border-right: 1px dotted #CCC;
  max-width: 696px; }

html,
button,
input,
select,
textarea {
  color: #2E6EB8;
  font-family: "Gill Sans W01 Book", sans-serif; }

body.site {
  font-family: "Gill Sans W01 Book", sans-serif;
  font-size: 0.9375em;
  line-height: 1.3;
  word-wrap: break-word; }
  body.site > div[style*="position: absolute"] {
    overflow: hidden; }

::-moz-selection {
  background: #2E6EB8;
  color: #FFF;
  text-shadow: none; }

::selection {
  background: #2E6EB8;
  color: #FFF;
  text-shadow: none; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

img {
  vertical-align: middle; }

fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/*
 * Text Reset
 */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "function_pro_demi", sans-serif;
  font-weight: 500;
  margin: 0 0 .5em; }

h1,
.h1 {
  font-size: 2em;
  line-height: 1.2; }
  @media (min-width: 768px) {
    h1,
    .h1 {
      font-size: 3.3333333333em; } }

h2,
.h2 {
  font-size: 1.3333333333em;
  line-height: 1.2;
  margin-bottom: 1em; }
  h2 img,
  .h2 img {
    margin-right: 14px; }
  h2 .sub,
  .h2 .sub {
    color: #2E6EB8;
    display: block;
    text-transform: none; }

p {
  margin: 0 0 1em; }

b,
strong {
  font-family: "GillSansW01-DisplayBold_709822", sans-serif;
  font-weight: normal; }

/*
 * Links
 */
a {
  color: #2E6EB8;
  text-decoration: underline; }
  a:hover {
    text-decoration: none; }

/* Text Alignment */
.justifyleft {
  text-align: left; }

.justifyright {
  text-align: right; }

.justifyfull {
  text-align: justify; }

.justifycentre {
  text-align: center; }

.left {
  float: left; }

.right {
  float: right; }

.clear {
  clear: both; }

/* Text Styling */
.highlight {
  color: #2E6EB8;
  font-family: "GillSansW01-DisplayBold_709822", sans-serif;
  font-size: 1.3333333333em;
  line-height: 1.2; }

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0; }

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px; }
  .ir:before {
    content: "";
    display: block;
    width: 0;
    height: 100%; }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden; }

.hide {
  display: none; }

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
##  Object styles (_objects)

### Images
*/
img {
  display: inline-block;
  height: auto;
  max-width: 100%; }
  .oldie img {
    max-width: none; }
  img.right {
    clear: right;
    float: right;
    margin: 0 0 16px 16px; }
  img.left {
    clear: left;
    float: left;
    margin: 0 16px 16px 0; }
  img[style*="left"] {
    clear: left;
    margin: 0 16px 16px 0; }
  img[style*="right"] {
    clear: right;
    margin: 0 0 16px 16px; }

figure {
  display: inline-block;
  height: auto;
  max-width: 100%; }
  .oldie figure {
    max-width: none; }
  figure.right {
    clear: right;
    float: right;
    margin: 0 0 16px 16px; }
  figure.left {
    clear: left;
    float: left;
    margin: 0 16px 16px 0; }
  figure figcaption {
    background: white;
    background: rgba(46, 110, 184, 0.1);
    line-height: 1.5;
    padding: 0 0.5em; }
  figure.main-image {
    width: 335px;
    max-width: 100%; }

table {
  max-width: 100%; }

.table {
  width: 100%;
  margin-bottom: 1em; }
  .table thead td, .table th {
    background: #B85B00;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 5px;
    border: 1px solid #B85B00;
    border-right: 1px solid #fff; }
    .table thead td:last-child, .table th:last-child {
      border-right: 1px solid #B85B00; }
  .table tbody td {
    padding: 5px;
    border: 1px solid #B85B00; }
  .table tbody tr:nth-child(even) td {
    background: white;
    background: rgba(184, 91, 0, 0.15);
    color: #2E6EB8; }

.button, .form .btn {
  background: #B85B00;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  color: #FFF;
  display: inline-block;
  padding: .5em 1em;
  -webkit-transition: background-color 0.3s linear;
  -moz-transition: background-color 0.3s linear;
  -ms-transition: background-color 0.3s linear;
  -o-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear; }
  .button:hover, .form .btn:hover {
    background: #522900; }

.lnk-arrow, .lnk-arrow-highlight, .lnk-arrow-white, .lnk-email, .lnk-email-alt, .lnk-email-white, .lnk-twitter {
  background: url(/site/images/icons/highlight/roundal-arrow.svg) no-repeat scroll left center;
  background-size: 15px 16px;
  border: none;
  cursor: pointer;
  display: inline-block;
  font-size: 0.9333333333em;
  padding-left: 22px;
  text-decoration: none;
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear; }
  .no-svg .lnk-arrow, .no-svg .lnk-arrow-highlight, .no-svg .lnk-arrow-white, .no-svg .lnk-email, .no-svg .lnk-email-alt, .no-svg .lnk-email-white, .no-svg .lnk-twitter {
    background-image: url(/site/images/icons/highlight/roundal-arrow.png); }
  .lnk-arrow:before, .lnk-arrow-highlight:before, .lnk-arrow-white:before, .lnk-email:before, .lnk-email-alt:before, .lnk-email-white:before, .lnk-twitter:before {
    background-image: url(/site/images/icons/highlight/roundal-arrow.svg); }
    .no-svg .lnk-arrow:before, .no-svg .lnk-arrow-highlight:before, .no-svg .lnk-arrow-white:before, .no-svg .lnk-email:before, .no-svg .lnk-email-alt:before, .no-svg .lnk-email-white:before, .no-svg .lnk-twitter:before {
      background-image: url(/site/images/icons/highlight/roundal-arrow.png); }
  .lnk-arrow:hover, .lnk-arrow-highlight:hover, .lnk-arrow-white:hover, .lnk-email:hover, .lnk-email-alt:hover, .lnk-email-white:hover, .lnk-twitter:hover {
    background-image: url(/site/images/icons/highlight/roundal-arrow.svg);
    color: #B85B00;
    text-decoration: underline; }
    .no-svg .lnk-arrow:hover, .no-svg .lnk-arrow-highlight:hover, .no-svg .lnk-arrow-white:hover, .no-svg .lnk-email:hover, .no-svg .lnk-email-alt:hover, .no-svg .lnk-email-white:hover, .no-svg .lnk-twitter:hover {
      background-image: url(/site/images/icons/highlight/roundal-arrow.png); }
  .lnk-arrow.open, .open.lnk-arrow-highlight, .open.lnk-arrow-white, .open.lnk-email, .open.lnk-email-alt, .open.lnk-email-white, .open.lnk-twitter {
    background-image: url(/site/images/icons/roundal-arrow-down.svg);
    background-size: 16px 15px; }
    .no-svg .lnk-arrow.open, .no-svg .open.lnk-arrow-highlight, .no-svg .open.lnk-arrow-white, .no-svg .open.lnk-email, .no-svg .open.lnk-email-alt, .no-svg .open.lnk-email-white, .no-svg .open.lnk-twitter {
      background-image: url(/site/images/icons/roundal-arrow-down.png); }
    .lnk-arrow.open:hover, .open.lnk-arrow-highlight:hover, .open.lnk-arrow-white:hover, .open.lnk-email:hover, .open.lnk-email-alt:hover, .open.lnk-email-white:hover, .open.lnk-twitter:hover {
      background-image: url(/site/images/icons/highlight/roundal-arrow-down.svg);
      background-size: 16px 15px; }
      .no-svg .lnk-arrow.open:hover, .no-svg .open.lnk-arrow-highlight:hover, .no-svg .open.lnk-arrow-white:hover, .no-svg .open.lnk-email:hover, .no-svg .open.lnk-email-alt:hover, .no-svg .open.lnk-email-white:hover, .no-svg .open.lnk-twitter:hover {
        background-image: url(/site/images/icons/highlight/roundal-arrow-down.png); }

.lnk-arrow-right {
  background: url(/site/images/icons/roundal-arrow.svg) no-repeat scroll right center;
  background-size: 15px 16px;
  border: none;
  display: inline-block;
  font-size: 0.9333333333em;
  padding-right: 22px;
  text-decoration: none; }
  .no-svg .lnk-arrow-right {
    background-image: url(/site/images/icons/roundal-arrow.png); }
  .lnk-arrow-right:hover {
    background-image: url(/site/images/icons/highlight/roundal-arrow.svg);
    color: #B85B00;
    text-decoration: underline; }
    .no-svg .lnk-arrow-right:hover {
      background-image: url(/site/images/icons/highlight/roundal-arrow.png); }

.lnk-arrow-highlight {
  background-image: url(/site/images/icons/highlight/roundal-arrow.svg);
  color: #B85B00; }
  .no-svg .lnk-arrow-highlight {
    background-image: url(/site/images/icons/highlight/roundal-arrow.png); }
  .lnk-arrow-highlight:hover {
    background-image: url(/site/images/icons/roundal-arrow.svg);
    color: #2E6EB8; }
    .no-svg .lnk-arrow-highlight:hover {
      background-image: url(/site/images/icons/roundal-arrow.png); }

.lnk-arrow-white {
  background-image: url(/site/images/icons/white/roundal-arrow.svg);
  color: #FFF; }
  .no-svg .lnk-arrow-white {
    background-image: url(/site/images/icons/white/roundal-arrow.png); }
  .lnk-arrow-white:hover {
    color: #FFF;
    background-image: url(/site/images/icons/white/roundal-arrow.svg); }
    .no-svg .lnk-arrow-white:hover {
      background-image: url(/site/images/icons/white/roundal-arrow.png); }

.lnk-email, .lnk-email-alt, .lnk-email-white {
  background-image: url(/site/images/icons/email.svg);
  background-size: 16px 12px; }
  .no-svg .lnk-email, .no-svg .lnk-email-alt, .no-svg .lnk-email-white {
    background-image: url(/site/images/icons/email.png); }
  .lnk-email:before, .lnk-email-alt:before, .lnk-email-white:before {
    background-image: url(/site/images/icons/highlight/email.svg); }
    .no-svg .lnk-email:before, .no-svg .lnk-email-alt:before, .no-svg .lnk-email-white:before {
      background-image: url(/site/images/icons/highlight/email.png); }
  .lnk-email:hover, .lnk-email-alt:hover, .lnk-email-white:hover {
    background-image: url(/site/images/icons/highlight/email.svg); }
    .no-svg .lnk-email:hover, .no-svg .lnk-email-alt:hover, .no-svg .lnk-email-white:hover {
      background-image: url(/site/images/icons/highlight/email.png); }

.lnk-email-alt {
  background-image: url(/site/images/icons/alt/email.svg);
  color: #EAF2F9; }
  .no-svg .lnk-email-alt {
    background-image: url(/site/images/icons/alt/email.png); }
  .lnk-email-alt:hover {
    background-image: url(/site/images/icons/alt/email.svg); }
    .no-svg .lnk-email-alt:hover {
      background-image: url(/site/images/icons/alt/email.png); }

.lnk-email-white {
  background-image: url(/site/images/icons/white/email.svg);
  color: #EAF2F9; }
  .no-svg .lnk-email-white {
    background-image: url(/site/images/icons/white/email.png); }
  .lnk-email-white:hover {
    background-image: url(/site/images/icons/white/email.svg); }
    .no-svg .lnk-email-white:hover {
      background-image: url(/site/images/icons/white/email.png); }

.lnk-twitter {
  background-image: url(/site/images/icons/twitter.svg);
  background-size: 17px 13px; }
  .no-svg .lnk-twitter {
    background-image: url(/site/images/icons/twitter.png); }
  .lnk-twitter:before {
    background-image: url(/site/images/icons/highlight/twitter.svg); }
    .no-svg .lnk-twitter:before {
      background-image: url(/site/images/icons/highlight/twitter.png); }
  .lnk-twitter:hover {
    background-image: url(/site/images/icons/highlight/twitter.svg); }
    .no-svg .lnk-twitter:hover {
      background-image: url(/site/images/icons/highlight/twitter.png); }

.lnk-contact, .lnk-contact-email, .lnk-contact-phone {
  display: block;
  font-family: "GillSansW01-DisplayBold_709822", sans-serif;
  text-decoration: none; }
  .lnk-contact:hover, .lnk-contact-email:hover, .lnk-contact-phone:hover {
    text-decoration: underline; }

.lnk-contact-email {
  background: url(/site/images/icons/contact/email.svg) no-repeat left center;
  background-size: 19px 12px;
  padding-left: 22px; }
  .no-svg .lnk-contact-email {
    background-image: url(/site/images/icons/contact/email.png); }

.lnk-contact-phone {
  background: url(/site/images/icons/contact/phone.svg) no-repeat left center;
  background-size: 18px 18px;
  padding-left: 22px; }
  .no-svg .lnk-contact-phone {
    background-image: url(/site/images/icons/contact/phone.png); }

.box, .box-base, .box-highlight, .grid-gallery .text, .grid-images .text {
  border: 1px solid #2E6EB8;
  margin-bottom: 24px;
  padding: 12px; }
  @media (min-width: 768px) {
    .box, .box-base, .box-highlight, .grid-gallery .text, .grid-images .text {
      padding: 24px; } }

.box-base {
  background: #2E6EB8; }
  .box-base,
  .box-base a {
    color: #FFF; }
  .box-base .lnk-arrow, .box-base .lnk-arrow-highlight, .box-base .lnk-arrow-white, .box-base .lnk-email, .box-base .lnk-email-alt, .box-base .lnk-email-white, .box-base .lnk-twitter, .box-base .lnk-arrow-right {
    background-image: url(/site/images/icons/white/roundal-arrow.svg); }
    .no-svg .box-base .lnk-arrow, .no-svg .box-base .lnk-arrow-highlight, .no-svg .box-base .lnk-arrow-white, .no-svg .box-base .lnk-email, .no-svg .box-base .lnk-email-alt, .no-svg .box-base .lnk-email-white, .no-svg .box-base .lnk-twitter,
    .no-svg .box-base .lnk-arrow-right {
      background-image: url(/site/images/icons/white/roundal-arrow.png); }
    .box-base .lnk-arrow:hover, .box-base .lnk-arrow-highlight:hover, .box-base .lnk-arrow-white:hover, .box-base .lnk-email:hover, .box-base .lnk-email-alt:hover, .box-base .lnk-email-white:hover, .box-base .lnk-twitter:hover, .box-base .lnk-arrow-right:hover {
      color: inherit;
      background-image: url(/site/images/icons/white/roundal-arrow.svg); }
      .no-svg .box-base .lnk-arrow:hover, .no-svg .box-base .lnk-arrow-highlight:hover, .no-svg .box-base .lnk-arrow-white:hover, .no-svg .box-base .lnk-email:hover, .no-svg .box-base .lnk-email-alt:hover, .no-svg .box-base .lnk-email-white:hover, .no-svg .box-base .lnk-twitter:hover, .no-svg .box-base .lnk-arrow-right:hover {
        background-image: url(/site/images/icons/white/roundal-arrow.png); }

.box-highlight, .grid-gallery .text, .grid-images .text {
  background: #2E6EB8;
  color: #FFF; }
  .box-highlight, .grid-gallery .text, .grid-images .text,
  .box-highlight a,
  .grid-gallery .text a,
  .grid-images .text a {
    color: #FFF;
    text-decoration: none; }
    .box-highlight:hover, .grid-gallery .text:hover, .grid-images .text:hover,
    .box-highlight a:hover,
    .grid-gallery .text a:hover,
    .grid-images .text a:hover {
      text-decoration: underline; }
  .box-highlight .lnk-arrow, .grid-gallery .text .lnk-arrow, .grid-images .text .lnk-arrow, .box-highlight .lnk-arrow-highlight, .grid-gallery .text .lnk-arrow-highlight, .grid-images .text .lnk-arrow-highlight, .box-highlight .lnk-arrow-white, .grid-gallery .text .lnk-arrow-white, .grid-images .text .lnk-arrow-white, .box-highlight .lnk-email, .grid-gallery .text .lnk-email, .grid-images .text .lnk-email, .box-highlight .lnk-email-alt, .grid-gallery .text .lnk-email-alt, .grid-images .text .lnk-email-alt, .box-highlight .lnk-email-white, .grid-gallery .text .lnk-email-white, .grid-images .text .lnk-email-white, .box-highlight .lnk-twitter, .grid-gallery .text .lnk-twitter, .grid-images .text .lnk-twitter, .box-highlight .lnk-arrow-right, .grid-gallery .text .lnk-arrow-right, .grid-images .text .lnk-arrow-right {
    background-image: url(/site/images/icons/white/roundal-arrow.svg); }
    .no-svg .box-highlight .lnk-arrow, .no-svg .grid-gallery .text .lnk-arrow, .grid-gallery .no-svg .text .lnk-arrow, .no-svg .grid-images .text .lnk-arrow, .grid-images .no-svg .text .lnk-arrow, .no-svg .box-highlight .lnk-arrow-highlight, .no-svg .grid-gallery .text .lnk-arrow-highlight, .grid-gallery .no-svg .text .lnk-arrow-highlight, .no-svg .grid-images .text .lnk-arrow-highlight, .grid-images .no-svg .text .lnk-arrow-highlight, .no-svg .box-highlight .lnk-arrow-white, .no-svg .grid-gallery .text .lnk-arrow-white, .grid-gallery .no-svg .text .lnk-arrow-white, .no-svg .grid-images .text .lnk-arrow-white, .grid-images .no-svg .text .lnk-arrow-white, .no-svg .box-highlight .lnk-email, .no-svg .grid-gallery .text .lnk-email, .grid-gallery .no-svg .text .lnk-email, .no-svg .grid-images .text .lnk-email, .grid-images .no-svg .text .lnk-email, .no-svg .box-highlight .lnk-email-alt, .no-svg .grid-gallery .text .lnk-email-alt, .grid-gallery .no-svg .text .lnk-email-alt, .no-svg .grid-images .text .lnk-email-alt, .grid-images .no-svg .text .lnk-email-alt, .no-svg .box-highlight .lnk-email-white, .no-svg .grid-gallery .text .lnk-email-white, .grid-gallery .no-svg .text .lnk-email-white, .no-svg .grid-images .text .lnk-email-white, .grid-images .no-svg .text .lnk-email-white, .no-svg .box-highlight .lnk-twitter, .no-svg .grid-gallery .text .lnk-twitter, .grid-gallery .no-svg .text .lnk-twitter, .no-svg .grid-images .text .lnk-twitter, .grid-images .no-svg .text .lnk-twitter,
    .no-svg .box-highlight .lnk-arrow-right,
    .no-svg .grid-gallery .text .lnk-arrow-right,
    .grid-gallery .no-svg .text .lnk-arrow-right,
    .no-svg .grid-images .text .lnk-arrow-right,
    .grid-images .no-svg .text .lnk-arrow-right {
      background-image: url(/site/images/icons/white/roundal-arrow.png); }
    .box-highlight .lnk-arrow:hover, .grid-gallery .text .lnk-arrow:hover, .grid-images .text .lnk-arrow:hover, .box-highlight .lnk-arrow-highlight:hover, .grid-gallery .text .lnk-arrow-highlight:hover, .grid-images .text .lnk-arrow-highlight:hover, .box-highlight .lnk-arrow-white:hover, .grid-gallery .text .lnk-arrow-white:hover, .grid-images .text .lnk-arrow-white:hover, .box-highlight .lnk-email:hover, .grid-gallery .text .lnk-email:hover, .grid-images .text .lnk-email:hover, .box-highlight .lnk-email-alt:hover, .grid-gallery .text .lnk-email-alt:hover, .grid-images .text .lnk-email-alt:hover, .box-highlight .lnk-email-white:hover, .grid-gallery .text .lnk-email-white:hover, .grid-images .text .lnk-email-white:hover, .box-highlight .lnk-twitter:hover, .grid-gallery .text .lnk-twitter:hover, .grid-images .text .lnk-twitter:hover, .box-highlight .lnk-arrow-right:hover, .grid-gallery .text .lnk-arrow-right:hover, .grid-images .text .lnk-arrow-right:hover {
      color: inherit;
      background-image: url(/site/images/icons/white/roundal-arrow.svg); }
      .no-svg .box-highlight .lnk-arrow:hover, .no-svg .grid-gallery .text .lnk-arrow:hover, .grid-gallery .no-svg .text .lnk-arrow:hover, .no-svg .grid-images .text .lnk-arrow:hover, .grid-images .no-svg .text .lnk-arrow:hover, .no-svg .box-highlight .lnk-arrow-highlight:hover, .no-svg .grid-gallery .text .lnk-arrow-highlight:hover, .grid-gallery .no-svg .text .lnk-arrow-highlight:hover, .no-svg .grid-images .text .lnk-arrow-highlight:hover, .grid-images .no-svg .text .lnk-arrow-highlight:hover, .no-svg .box-highlight .lnk-arrow-white:hover, .no-svg .grid-gallery .text .lnk-arrow-white:hover, .grid-gallery .no-svg .text .lnk-arrow-white:hover, .no-svg .grid-images .text .lnk-arrow-white:hover, .grid-images .no-svg .text .lnk-arrow-white:hover, .no-svg .box-highlight .lnk-email:hover, .no-svg .grid-gallery .text .lnk-email:hover, .grid-gallery .no-svg .text .lnk-email:hover, .no-svg .grid-images .text .lnk-email:hover, .grid-images .no-svg .text .lnk-email:hover, .no-svg .box-highlight .lnk-email-alt:hover, .no-svg .grid-gallery .text .lnk-email-alt:hover, .grid-gallery .no-svg .text .lnk-email-alt:hover, .no-svg .grid-images .text .lnk-email-alt:hover, .grid-images .no-svg .text .lnk-email-alt:hover, .no-svg .box-highlight .lnk-email-white:hover, .no-svg .grid-gallery .text .lnk-email-white:hover, .grid-gallery .no-svg .text .lnk-email-white:hover, .no-svg .grid-images .text .lnk-email-white:hover, .grid-images .no-svg .text .lnk-email-white:hover, .no-svg .box-highlight .lnk-twitter:hover, .no-svg .grid-gallery .text .lnk-twitter:hover, .grid-gallery .no-svg .text .lnk-twitter:hover, .no-svg .grid-images .text .lnk-twitter:hover, .grid-images .no-svg .text .lnk-twitter:hover, .no-svg .box-highlight .lnk-arrow-right:hover, .no-svg .grid-gallery .text .lnk-arrow-right:hover, .grid-gallery .no-svg .text .lnk-arrow-right:hover, .no-svg .grid-images .text .lnk-arrow-right:hover, .grid-images .no-svg .text .lnk-arrow-right:hover {
        background-image: url(/site/images/icons/white/roundal-arrow.png); }

.box-wrap .box, .box-wrap .box-base, .box-wrap .box-highlight, .box-wrap .grid-gallery .text, .grid-gallery .box-wrap .text, .box-wrap .grid-images .text, .grid-images .box-wrap .text {
  border-bottom: none;
  margin-bottom: 0; }
  .box-wrap .box:last-child, .box-wrap .box-base:last-child, .box-wrap .box-highlight:last-child, .box-wrap .grid-gallery .text:last-child, .grid-gallery .box-wrap .text:last-child, .box-wrap .grid-images .text:last-child, .grid-images .box-wrap .text:last-child {
    border-bottom: 1px solid #2E6EB8;
    margin-bottom: 24px; }

.info-box, .promo-box {
  color: #FFF;
  margin-bottom: 30px; }
  .info-box h2, .promo-box h2 {
    background-color: #2E6EB8;
    background-repeat: no-repeat;
    font-size: 1.3333333333em;
    line-height: 1.2;
    margin-bottom: 0;
    padding: 9px 12px; }
    .info-box h2, .promo-box h2,
    .info-box h2 a,
    .promo-box h2 a {
      color: #FFF;
      text-decoration: none; }
    @media (min-width: 1056px) {
      .info-box h2[class*=icon-], .promo-box h2[class*=icon-] {
        padding-left: 52px; } }
  .info-box .lnk-box, .promo-box .lnk-box {
    background: white url(/site/images/icons/roundal-arrow.svg) no-repeat 12px center;
    background: rgba(46, 110, 184, 0.2) url(/site/images/icons/roundal-arrow.svg) no-repeat 12px center;
    background-size: 15px 16px;
    border: none;
    display: block;
    line-height: 2;
    text-decoration: none;
    padding: 4px 4px 4px 34px;
    text-align: left;
    -webkit-transition: background-color 0.3s linear, color 0.3s linear;
    -moz-transition: background-color 0.3s linear, color 0.3s linear;
    -ms-transition: background-color 0.3s linear, color 0.3s linear;
    -o-transition: background-color 0.3s linear, color 0.3s linear;
    transition: background-color 0.3s linear, color 0.3s linear;
    width: 100%; }
    .no-svg .info-box .lnk-box, .no-svg .promo-box .lnk-box {
      background-image: url(/site/images/icons/roundal-arrow.png); }
    .info-box .lnk-box:hover, .promo-box .lnk-box:hover {
      background: #2E6EB8 url(/site/images/icons/white/roundal-arrow.svg) no-repeat 12px center;
      color: #FFF; }
      .no-svg .info-box .lnk-box:hover, .no-svg .promo-box .lnk-box:hover {
        background-image: url(/site/images/icons/white/roundal-arrow.png); }
  .info-box .inner, .promo-box .inner {
    background: #2E6EB8;
    padding: 0 12px 12px; }
    .info-box .inner a, .promo-box .inner a {
      color: #FFF;
      text-decoration: none; }
      .info-box .inner a:hover, .promo-box .inner a:hover {
        text-decoration: underline; }
  @media (min-width: 1056px) {
    .info-box.diary h2, .diary.promo-box h2 {
      background-image: url(/site/images/icons/diary.svg);
      background-position: 12px center;
      background-size: 21px 14px;
      padding-left: 52px; }
      .no-svg .info-box.diary h2, .no-svg .diary.promo-box h2 {
        background-image: url(/site/images/icons/diary.png); } }
  .info-box.diary .inner, .diary.promo-box .inner {
    background-position: center center;
    background-size: 100% 100%;
    background-size: cover;
    min-height: 155px; }
  @media (min-width: 1056px) {
    .info-box.twitter h2, .twitter.promo-box h2 {
      background-image: url(/site/images/icons/feed-twitter.svg);
      background-position: 13px center;
      background-repeat: no-repeat;
      background-size: 24px 19px;
      padding-left: 52px; }
      .no-svg .info-box.twitter h2, .no-svg .twitter.promo-box h2 {
        background-image: url(/site/images/icons/feed-twitter.png); } }
  .info-box.twitter .slick-loading .slick-list, .twitter.promo-box .slick-loading .slick-list {
    background: #2E6EB8 url(/site/images/ajax-loader-feed.gif) center center no-repeat; }
  .info-box.twitter .slick-slider, .twitter.promo-box .slick-slider {
    margin-bottom: 0; }
  @media (min-width: 1056px) {
    .info-box.news h2, .news.promo-box h2 {
      background-image: url(/site/images/icons/megaphone.svg);
      background-position: 0 4px;
      background-repeat: no-repeat;
      background-size: 47px 46px;
      padding-left: 52px; }
      .no-svg .info-box.news h2, .no-svg .news.promo-box h2 {
        background-image: url(/site/images/icons/megaphone-small.png); } }
  @media (min-width: 1056px) {
    .info-box.poll h2, .poll.promo-box h2 {
      background-image: url(/site/images/icons/poll.svg);
      background-position: 12px center;
      background-repeat: no-repeat;
      background-size: 29px 29px;
      padding-left: 52px;
      padding-bottom: 14px;
      padding-top: 14px; }
      .no-svg .info-box.poll h2, .no-svg .poll.promo-box h2 {
        background-image: url(/site/images/icons/poll.png); } }
  .info-box.poll .h2, .poll.promo-box .h2 {
    margin-bottom: 10px; }

.promo-box h2 {
  background-color: #B85B00;
  background-position: -1000px center;
  background-repeat: no-repeat; }
  @media (min-width: 1056px) {
    .promo-box h2 {
      background-position: 10px center;
      padding-left: 52px; } }
.promo-box .inner {
  background-color: #B85B00; }
.promo-box.alt h2,
.promo-box.alt .inner {
  background-color: #2E6EB8; }

.block-base, .block-highlight {
  background: white;
  background: rgba(46, 110, 184, 0.15);
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s linear, color 0.3s linear;
  -moz-transition: background-color 0.3s linear, color 0.3s linear;
  -ms-transition: background-color 0.3s linear, color 0.3s linear;
  -o-transition: background-color 0.3s linear, color 0.3s linear;
  transition: background-color 0.3s linear, color 0.3s linear; }
  .block-base[href]:hover, [href].block-highlight:hover {
    background: #2E6EB8;
    color: #FFF;
    text-decoration: none; }
  .block-base h2, .block-highlight h2 {
    background: #2E6EB8;
    color: #FFF;
    margin-bottom: 0;
    padding: 9px; }
    .block-base h2 img, .block-highlight h2 img {
      float: left; }
  .block-base img, .block-highlight img {
    float: right; }
  .block-base .inner, .block-highlight .inner {
    line-height: 1.2;
    padding: 12px;
    letter-spacing: -0.012em; }
    @media (min-width: 768px) {
      .block-base .inner, .block-highlight .inner {
        margin-right: 132px; } }
  @media (min-width: 1056px) {
    .block-base.float, .float.block-highlight {
      float: right;
      margin-left: 12px;
      width: 336px; } }
  .mceContentBody .block-base.float, .mceContentBody .float.block-highlight {
    float: right;
    margin-left: 12px;
    width: 336px; }

.block-highlight {
  background: #EAF2F9;
  color: #2E6EB8; }
  .block-highlight[href]:hover {
    background: #2E6EB8;
    color: #FFF; }
  .block-highlight h2 {
    background-color: #2E6EB8; }

.title-block, .form-newsletter h2 {
  background-color: #2E6EB8;
  background-repeat: no-repeat;
  color: #FFF;
  font-size: 1.3333333333em;
  line-height: 1.2;
  margin-bottom: 0;
  padding: 9px; }

.grid, .grid-signposts.four-column, .grid-articles, .grid-gallery, .grid-images, .grid-videos {
  margin-top: -12px; }
  @media (max-width: 959px) {
    .grid, .grid-signposts.four-column, .grid-articles, .grid-gallery, .grid-images, .grid-videos {
      margin-left: -6px;
      margin-right: -6px; }
      .grid a, .grid-signposts.four-column a, .grid-articles a, .grid-gallery a, .grid-images a, .grid-videos a {
        float: left;
        padding-left: 6px;
        padding-right: 6px;
        width: 50%; }
        .grid a:nth-child(n), .grid-signposts.four-column a:nth-child(n), .grid-articles a:nth-child(n), .grid-gallery a:nth-child(n), .grid-images a:nth-child(n), .grid-videos a:nth-child(n) {
          clear: none; }
        .grid a:nth-child(2n+1), .grid-signposts.four-column a:nth-child(2n+1), .grid-articles a:nth-child(2n+1), .grid-gallery a:nth-child(2n+1), .grid-images a:nth-child(2n+1), .grid-videos a:nth-child(2n+1) {
          clear: left; } }
  @media (min-width: 960px) {
    .grid, .grid-signposts.four-column, .grid-articles, .grid-gallery, .grid-images, .grid-videos {
      margin-left: -6px;
      margin-right: -6px; }
      .grid a, .grid-signposts.four-column a, .grid-articles a, .grid-gallery a, .grid-images a, .grid-videos a {
        float: left;
        padding-left: 6px;
        padding-right: 6px;
        width: 33.3333333333%; }
        .grid a:nth-child(n), .grid-signposts.four-column a:nth-child(n), .grid-articles a:nth-child(n), .grid-gallery a:nth-child(n), .grid-images a:nth-child(n), .grid-videos a:nth-child(n) {
          clear: none; }
        .grid a:nth-child(3n+1), .grid-signposts.four-column a:nth-child(3n+1), .grid-articles a:nth-child(3n+1), .grid-gallery a:nth-child(3n+1), .grid-images a:nth-child(3n+1), .grid-videos a:nth-child(3n+1) {
          clear: left; } }
  @media (min-width: 1056px) {
    .grid, .grid-signposts.four-column, .grid-articles, .grid-gallery, .grid-images, .grid-videos {
      margin-left: -6px;
      margin-right: -6px; }
      .grid a, .grid-signposts.four-column a, .grid-articles a, .grid-gallery a, .grid-images a, .grid-videos a {
        float: left;
        padding-left: 6px;
        padding-right: 6px;
        width: 25%; }
        .grid a:nth-child(n), .grid-signposts.four-column a:nth-child(n), .grid-articles a:nth-child(n), .grid-gallery a:nth-child(n), .grid-images a:nth-child(n), .grid-videos a:nth-child(n) {
          clear: none; }
        .grid a:nth-child(4n+1), .grid-signposts.four-column a:nth-child(4n+1), .grid-articles a:nth-child(4n+1), .grid-gallery a:nth-child(4n+1), .grid-images a:nth-child(4n+1), .grid-videos a:nth-child(4n+1) {
          clear: left; } }
  .grid a, .grid-signposts.four-column a, .grid-articles a, .grid-gallery a, .grid-images a, .grid-videos a {
    color: #B85B00;
    display: block;
    padding-top: 12px;
    text-decoration: none; }

.grid-wide, .grid-signposts.two-column {
  margin-top: -12px; }
  @media (max-width: 959px) {
    .grid-wide, .grid-signposts.two-column {
      margin-left: -6px;
      margin-right: -6px; }
      .grid-wide a, .grid-signposts.two-column a {
        float: left;
        padding-left: 6px;
        padding-right: 6px;
        width: 50%; }
        .grid-wide a:nth-child(n), .grid-signposts.two-column a:nth-child(n) {
          clear: none; }
        .grid-wide a:nth-child(2n+1), .grid-signposts.two-column a:nth-child(2n+1) {
          clear: left; } }
  @media (min-width: 960px) {
    .grid-wide, .grid-signposts.two-column {
      margin-left: -6px;
      margin-right: -6px; }
      .grid-wide a, .grid-signposts.two-column a {
        float: left;
        padding-left: 6px;
        padding-right: 6px;
        width: 50%; }
        .grid-wide a:nth-child(n), .grid-signposts.two-column a:nth-child(n) {
          clear: none; }
        .grid-wide a:nth-child(2n+1), .grid-signposts.two-column a:nth-child(2n+1) {
          clear: left; } }
  .grid-wide a, .grid-signposts.two-column a {
    color: #B85B00;
    display: block;
    padding-top: 12px;
    text-decoration: none; }

.video-wrapper.left, .video-wrapper.right {
  width: 50%; }
.video-wrapper.left {
  clear: left;
  float: left;
  margin-right: 12px; }
.video-wrapper.right {
  clear: right;
  float: right;
  margin-left: 12px; }
.video-wrapper.wide {
  margin-left: -12px;
  margin-right: -12px; }
  @media (min-width: 768px) {
    .video-wrapper.wide {
      margin-bottom: 24px;
      margin-left: -24px;
      margin-right: -24px; } }
.video-wrapper .img {
  cursor: pointer;
  margin-bottom: 12px;
  position: relative; }
  .video-wrapper .img:before {
    background: url(/site/images/icons/video.svg) no-repeat center center;
    content: "";
    height: 69px;
    margin: -34px 0 0 -34px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 69px; }
    .no-svg .video-wrapper .img:before {
      background-image: url(/site/images/icons/video.png); }
.video-wrapper a {
  display: block;
  margin-bottom: 12px; }

.video {
  margin-bottom: 12px;
  padding-bottom: 56.25%;
  position: relative;
  width: 100%; }
  .video iframe {
    background-image: url(/site/images/ajax-loader.gif);
    background-position: center center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }

.transcript .inner {
  border: 1px solid #CCC;
  font-family: monospace;
  font-size: 0.8em;
  line-height: 1.3333333333;
  max-height: 120px;
  overflow: auto;
  padding: 10px; }

.showhide {
  height: 0;
  overflow: hidden;
  position: relative;
  -webkit-transition: height 0.3s linear;
  -moz-transition: height 0.3s linear;
  -ms-transition: height 0.3s linear;
  -o-transition: height 0.3s linear;
  transition: height 0.3s linear; }

.hero-title {
  font-family: "function_pro_bookbold", sans-serif;
  font-size: 10vw;
  margin-bottom: 24px;
  text-align: center;
  text-transform: uppercase; }
  @media (min-width: 500px) {
    .hero-title {
      font-size: 3.3333333333em; } }

.overlay {
  background: url(/site/images/white-50.png);
  background: rgba(255, 255, 255, 0.5);
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -ms-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  width: 100%;
  z-index: 1000;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -ms-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear; }
  .overlay.hide {
    display: none; }
  .overlay.show {
    opacity: 1; }

.overlay-box, .overlay-newsletter, .grid-team .popup {
  background: #FFF;
  opacity: 0;
  padding: 10px;
  position: absolute;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -ms-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  width: 100%;
  z-index: 1010; }
  @media (min-width: 768px) {
    .overlay-box, .overlay-newsletter, .grid-team .popup {
      left: 50%;
      margin-left: -250px;
      width: 500px; } }
  .overlay-box.hide, .hide.overlay-newsletter, .grid-team .hide.popup {
    display: none; }
  .overlay-box.show, .show.overlay-newsletter, .grid-team .show.popup {
    opacity: 1; }
  .overlay-box .close, .overlay-newsletter .close, .grid-team .popup .close {
    background-color: transparent;
    background-image: none;
    border: none;
    font-weight: 700;
    font-size: 1.2em;
    padding: 0;
    position: absolute;
    top: 0;
    right: 5px; }

.cookie {
  height: 0;
  line-height: 30px;
  overflow: hidden;
  position: relative;
  background: #2E6EB8;
  -webkit-transition: height 0.3s linear;
  -moz-transition: height 0.3s linear;
  -ms-transition: height 0.3s linear;
  -o-transition: height 0.3s linear;
  transition: height 0.3s linear; }
  .cookie,
  .cookie a {
    color: #FFF; }
  .cookie a {
    font-weight: 700; }
  .cookie .inner {
    text-align: center;
    border-bottom: 1px solid #2E6EB8; }
  .cookie .lnk-accept-cookies {
    cursor: pointer;
    margin-left: 10px; }
  .cookie.show {
    height: 32px; }
  .cookie.hide {
    display: none !important;
    visibility: hidden; }

textarea,
[type="text"],
[type="password"],
[type="datetime"],
[type="datetime-local"],
[type="date"],
[type="month"],
[type="time"],
[type="week"],
[type="number"],
[type="email"],
[type="url"],
[type="search"],
[type="tel"],
[type="color"] {
  border: 1px solid #BABABA;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  -moz-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  -ms-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  -o-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  line-height: 1.5333333333;
  padding: 5px 10px;
  width: 100%; }

textarea {
  line-height: 1.2; }

select {
  width: 100%; }

.checkbox label,
.radiobutton label {
  margin-left: 3px;
  vertical-align: middle; }
.checkbox input,
.radiobutton input {
  vertical-align: middle; }

:-moz-placeholder {
  color: #2E6EB8;
  opacity: .75; }

::-moz-placeholder {
  color: #2E6EB8;
  opacity: .75; }

::-webkit-input-placeholder {
  color: #2E6EB8;
  opacity: .75; }

:-ms-input-placeholder {
  color: #2E6EB8;
  opacity: .75; }

.niceselect-wrapper {
  background: #FFF;
  border: 1px solid #BABABA;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  -moz-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  -ms-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  -o-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  display: block;
  line-height: 1.8666666667;
  overflow: hidden;
  padding: 0 32px 0 10px;
  position: relative;
  /* This is applied when the user tabs to focus or hovers on a nice select element */
  /* Creates the arrow and positions it to the right */
  /* Make sure the line-height matches the height of .niceSelect including padding */
  /* The height must match the overall height of .niceSelect including padding */ }
  .niceselect-wrapper.focus, .niceselect-wrapper:hover {
    border: 1px solid #333; }
  .niceselect-wrapper:after {
    border-top: 12px solid #B85B00;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    content: "^";
    display: block;
    height: 0;
    margin-top: -6px;
    position: absolute;
    right: 10px;
    text-indent: -99999em;
    top: 50%;
    width: 0;
    z-index: 5; }
  .niceselect-wrapper .niceselect-text {
    display: block; }
  .niceselect-wrapper.niceselect-default .niceselect-text {
    color: #2E6EB8; }
  .niceselect-wrapper select {
    border: 1px solid #eee;
    bottom: 0;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 10; }

.form {
  margin: 0 auto 24px;
  max-width: 480px; }
  .form fieldset > div {
    margin-bottom: 12px; }
  .form .actions {
    margin-bottom: 12px;
    text-align: right; }

.form-item,
.form-buttons {
  margin-bottom: 12px; }
  .form-item:last-child,
  .form-buttons:last-child {
    margin-bottom: 0; }

.form-item label {
  display: block; }

.form-buttons {
  text-align: right; }

.form-errors {
  background: #FEE;
  border: 1px solid #F00;
  color: #F00;
  margin-bottom: 10px;
  padding: 10px; }
  .form-errors :last-child {
    margin-bottom: 0; }

.form-success {
  background: #EFE;
  border: 1px solid #0C0;
  color: #090;
  margin-bottom: 10px;
  padding: 10px; }
  .form-success :last-child {
    margin-bottom: 0; }

.error {
  color: #F00; }

#responsive_recaptcha {
  border: 1px solid #bababa;
  border-radius: 0;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  -moz-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  -ms-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  -o-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  padding: 5px;
  position: relative;
  overflow: auto;
  max-width: 480px; }
  #responsive_recaptcha,
  #responsive_recaptcha a {
    color: #FFF; }
  #responsive_recaptcha img,
  #responsive_recaptcha #recaptcha_image {
    width: 100% !important;
    height: auto !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box; }
  #responsive_recaptcha a {
    text-decoration: none; }
  #responsive_recaptcha .solution {
    margin-top: 0.5em;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    color: #2E6EB8;
    display: block; }
    @media (min-width: 480px) {
      #responsive_recaptcha .solution {
        float: left;
        width: 66%; } }
    #responsive_recaptcha .solution input {
      display: block;
      width: 100%;
      margin: 0.5em auto;
      -webkit-appereance: none;
      font: inherit;
      font-size: 150%;
      outline: none; }
      @media (min-width: 480px) {
        #responsive_recaptcha .solution input {
          margin: 0.35em auto;
          width: 100%; } }
      #responsive_recaptcha .solution input:focus {
        border-color: #CCC; }
  #responsive_recaptcha .options {
    font-size: 0.7333333333em;
    margin-top: 0.5em;
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    border-radius: 0.5em;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box; }
    @media (min-width: 480px) {
      #responsive_recaptcha .options {
        float: right;
        width: 34%;
        padding-left: 0.5em; } }
    #responsive_recaptcha .options a {
      background-color: #B85B00;
      display: block;
      padding: 0.5em;
      border-top: 1px solid #2E6EB8;
      border-left: 1px solid #2E6EB8;
      border-right: 1px solid #2E6EB8; }
      #responsive_recaptcha .options a:first-child {
        border-radius: 0.5em 0.5em 0 0; }
      #responsive_recaptcha .options a:last-child {
        border-radius: 0 0 0.5em 0.5em;
        border-bottom: 1px solid #2E6EB8; }

.tabs, .tabs-related, .tabs-related-narrow {
  margin-bottom: 24px;
  position: relative; }

.tabs-links {
  font-family: "function_pro_demi", sans-serif;
  margin-bottom: -1px;
  text-transform: uppercase; }
  @media (min-width: 768px) {
    .tabs-links {
      margin-left: -4px;
      margin-right: -4px; } }
  @media (min-width: 768px) {
    .tabs-links li {
      float: left;
      padding-left: 4px;
      padding-right: 4px;
      width: 33.33333333%; } }
  .tabs-links a {
    background-color: #B85B00;
    border: 1px solid #B85B00;
    border-bottom-color: transparent;
    color: #FFF;
    display: block;
    font-size: 0.9333333333em;
    line-height: 1.5;
    padding: 9px 6px;
    text-align: center;
    text-decoration: none;
    outline: 0;
    -webkit-transition: background-color 0.3s linear, color 0.3s linear;
    -moz-transition: background-color 0.3s linear, color 0.3s linear;
    -ms-transition: background-color 0.3s linear, color 0.3s linear;
    -o-transition: background-color 0.3s linear, color 0.3s linear;
    transition: background-color 0.3s linear, color 0.3s linear; }
    .tabs-links a:hover {
      background-color: #FFF;
      border-color: #2E6EB8;
      border-bottom: 0;
      color: #2E6EB8; }
  .tabs-links .active {
    background-color: #FFF;
    border-color: #2E6EB8;
    border-bottom: none;
    color: #2E6EB8;
    padding-bottom: 10px; }

.tabs-pane {
  border: 1px solid #2E6EB8;
  left: -10000px;
  position: absolute;
  width: 100%; }
  .tabs-pane.show {
    display: block;
    position: static; }
  .tabs-pane .inner {
    background-color: #FFF;
    color: #2E6EB8;
    padding: 24px 0; }

.paging ul, .pagination ul, .search-paging {
  font-family: "function_pro_demi", sans-serif;
  font-size: 1.2em;
  margin-bottom: 12px;
  text-align: right; }
  @media (min-width: 960px) {
    .paging ul, .pagination ul, .search-paging {
      font-size: 0.8em; } }
  .paging ul li, .pagination ul li, .search-paging li {
    display: inline; }
  .paging ul a, .pagination ul a, .search-paging a {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    color: #FFF;
    display: inline-block;
    height: 24px;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    width: 24px; }
    @media (min-width: 960px) {
      .paging ul a, .pagination ul a, .search-paging a {
        height: 16px;
        line-height: 16px;
        width: 16px; } }
    .paging ul a:hover, .pagination ul a:hover, .search-paging a:hover {
      text-decoration: underline; }
  .paging ul img, .pagination ul img, .search-paging img {
    vertical-align: top; }
  .paging ul .next, .pagination ul .next, .search-paging .next,
  .paging ul .prev,
  .pagination ul .prev,
  .search-paging .prev {
    font-size: 1.0666666667em;
    margin: 0 4px; }
    .paging ul .next a, .pagination ul .next a, .search-paging .next a,
    .paging ul .prev a,
    .pagination ul .prev a,
    .search-paging .prev a {
      background: #EAF2F9;
      color: #2E6EB8;
      position: relative;
      text-indent: -999em;
      -webkit-transition: background-color 0.3s linear;
      -moz-transition: background-color 0.3s linear;
      -ms-transition: background-color 0.3s linear;
      -o-transition: background-color 0.3s linear;
      transition: background-color 0.3s linear; }
      .paging ul .next a:hover, .pagination ul .next a:hover, .search-paging .next a:hover,
      .paging ul .prev a:hover,
      .pagination ul .prev a:hover,
      .search-paging .prev a:hover {
        text-decoration: none; }
      .paging ul .next a:before, .pagination ul .next a:before, .search-paging .next a:before,
      .paging ul .prev a:before,
      .pagination ul .prev a:before,
      .search-paging .prev a:before {
        border-color: transparent #2E6EB8;
        border-style: solid;
        border-width: 4px 6px;
        content: "";
        height: 8px;
        margin: -4px 0 0 0;
        top: 50%;
        position: absolute;
        -webkit-transition: border-color 0.3s linear;
        -moz-transition: border-color 0.3s linear;
        -ms-transition: border-color 0.3s linear;
        -o-transition: border-color 0.3s linear;
        transition: border-color 0.3s linear; }
  .paging ul .next a:before, .pagination ul .next a:before, .search-paging .next a:before {
    border-right-width: 0;
    right: 4px; }
  .paging ul .prev a:before, .pagination ul .prev a:before, .search-paging .prev a:before {
    border-left-width: 0;
    left: 4px; }
  .paging ul .active, .pagination ul .active, .search-paging .active {
    background: #FFF;
    color: #2E6EB8; }
  .paging ul .control a, .pagination ul .control a, .search-paging .control a {
    background: #EAF2F9; }
  .paging ul .unused, .pagination ul .unused, .search-paging .unused {
    display: none; }
  .paging ul.base a, .pagination ul.base a, .base.search-paging a {
    color: #2E6EB8; }
  .paging ul.base .next a, .pagination ul.base .next a, .base.search-paging .next a,
  .paging ul.base .prev a,
  .pagination ul.base .prev a,
  .base.search-paging .prev a {
    background: #2E6EB8;
    color: #FFF; }
    .paging ul.base .next a:before, .pagination ul.base .next a:before, .base.search-paging .next a:before,
    .paging ul.base .prev a:before,
    .pagination ul.base .prev a:before,
    .base.search-paging .prev a:before {
      border-color: transparent #FFF; }
    .paging ul.base .next a:hover, .pagination ul.base .next a:hover, .base.search-paging .next a:hover,
    .paging ul.base .prev a:hover,
    .pagination ul.base .prev a:hover,
    .base.search-paging .prev a:hover {
      background: #FFF;
      color: #2E6EB8; }
      .paging ul.base .next a:hover:before, .pagination ul.base .next a:hover:before, .base.search-paging .next a:hover:before,
      .paging ul.base .prev a:hover:before,
      .pagination ul.base .prev a:hover:before,
      .base.search-paging .prev a:hover:before {
        border-color: transparent #2E6EB8; }
  .paging ul.base .active, .pagination ul.base .active, .base.search-paging .active {
    background: #B85B00;
    color: #FFF; }

.carousel-wrap {
  overflow: hidden;
  position: relative; }
  .carousel-wrap .carousel {
    position: relative; }
  .carousel-wrap .carousel-item {
    float: left; }

.hover {
  cursor: pointer; }

.small {
  font-size: 0.6em; }

.xsmall {
  font-size: 0.5333333333em; }

.large {
  font-size: 1.0666666667em; }

.xlarge {
  font-size: 1.3333333333em; }

.colour-highlight {
  color: #B85B00; }

.hr-highlight {
  border-color: #B85B00; }

@media only screen and (max-width: 768px) {
  .gt-ie9 .tbl-mobile, .gt-ie9 .tbl-mobile table, .gt-ie9 .tbl-mobile tbody, .gt-ie9 .tbl-mobile tr, .gt-ie9 .tbl-mobile td {
    display: block; }
  .gt-ie9 .tbl-mobile thead, .gt-ie9 .tbl-mobile th {
    display: none; } }

/* ShareThis */
.sharethis span {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -ms-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-loading .slick-list {
    background: #fff url(/site/images/ajax-loader.gif) center center no-repeat; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-list,
.slick-track,
.slick-slide,
.slick-slide img {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  zoom: 1; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  .slick-slide img {
    display: block; }
    .slick-slide img.slick-loading {
      background: white url(/site/images/ajax-loader.gif) center center no-repeat;
      padding-bottom: 100%; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("/site/fonts/slick.eot");
  src: url("/site/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/site/fonts/slick.woff") format("woff"), url("/site/fonts/slick.ttf") format("truetype"), url("/site/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:focus,
  .slick-next:focus {
    outline: none; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }

.slick-prev:before, .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  .slick-prev:before {
    content: '\8592'; }

.slick-next {
  right: -25px; }
  .slick-next:before {
    content: '\8594'; }

/* Dots */
.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0px;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0px 5px;
    padding: 0px;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0;
      font-size: 0;
      color: transparent;
      padding: 5px;
      cursor: pointer;
      outline: none; }
      .slick-dots li button:focus {
        outline: none; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: '\8226';
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      opacity: 0.75; }

/* Preload images */
body:after {
  content: url(/site/images/lightbox/close.png) url(/site/images/lightbox/loading.gif) url(/site/images/lightbox/prev.png) url(/site/images/lightbox/next.png);
  display: none; }

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none; }

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal; }

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px; }

.lightbox a img {
  border: none; }

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px; }

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-container {
  padding: 4px; }

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0; }

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(/site/images/lightbox/loading.gif) no-repeat; }

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10; }

.lb-container > .nav {
  left: 0; }

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); }

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block; }

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(/site/images/lightbox/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(/site/images/lightbox/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px; }

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-data {
  padding: 0 4px;
  color: #ccc; }

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em; }

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em; }

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999; }

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(/site/images/lightbox/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s; }

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

.content table caption {
  font-family: "GillSansW01-DisplayBold_709822", sans-serif;
  font-weight: normal;
  margin-bottom: 1em; }
.content table td, .content table th {
  vertical-align: top;
  padding: 5px;
  border: 1px solid #2E6EB8; }
  .content table td p, .content table th p {
    margin-bottom: 0; }
.content table th {
  background: #2E6EB8;
  color: white;
  font-family: "GillSansW01-DisplayBold_709822", sans-serif;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid white; }
  .content table th:last-child {
    border: 1px solid #2E6EB8; }

/*
	=========
	No Script
	=========
*/
.site-alert {
  background: #FFF;
  border-bottom: 2px solid #F00;
  display: block;
  font-family: sans-serif;
  font-size: 0.8em;
  left: 0;
  padding: 5px 0;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 100; }

/* No Script */
.full {
  position: relative;
  width: 100%; }

.footer-padding {
  padding-bottom: 70px; }

.wrap, .header-site {
  margin-left: 5%;
  margin-right: 5%;
  width: 90%; }
  @media (min-width: 1056px) {
    .wrap, .header-site {
      margin: auto;
      width: 960px; } }

@media (min-width: 768px) {
  .left-col {
    float: left;
    padding-bottom: 1px;
    padding-right: 30px; } }

@media (min-width: 768px) {
  .main-col {
    float: left; } }

.mobile-col-1 {
  width: 25%; }

.mobile-col-2 {
  width: 50%; }

.mobile-col-3 {
  width: 75%; }

.mobile-col-4 {
  width: 100%; }

@media (min-width: 768px) {
  .tablet-col-1 {
    width: 12.5%; } }

@media (min-width: 768px) {
  .tablet-col-2 {
    width: 25%; } }

@media (min-width: 768px) {
  .tablet-col-3, .left-col {
    width: 37.5%; } }

@media (min-width: 768px) {
  .tablet-col-4 {
    width: 50%; } }

@media (min-width: 768px) {
  .tablet-col-5, .main-col {
    width: 62.5%; } }

@media (min-width: 768px) {
  .tablet-col-6 {
    width: 75%; } }

@media (min-width: 768px) {
  .tablet-col-7 {
    width: 87.5%; } }

@media (min-width: 768px) {
  .tablet-col-8 {
    width: 100%; } }

@media (min-width: 960px) {
  .desktop-col-1 {
    width: 8.3333%; } }

@media (min-width: 960px) {
  .desktop-col-2 {
    width: 16.6666%; } }

@media (min-width: 960px) {
  .desktop-col-3, .left-col {
    width: 25%; } }

@media (min-width: 960px) {
  .desktop-col-4 {
    width: 33.3333%; } }

@media (min-width: 960px) {
  .desktop-col-5 {
    width: 41.6666%; } }

@media (min-width: 960px) {
  .desktop-col-6 {
    width: 50%; } }

@media (min-width: 960px) {
  .desktop-col-7 {
    width: 58.3333%; } }

@media (min-width: 960px) {
  .desktop-col-8 {
    width: 66.6666%; } }

@media (min-width: 960px) {
  .desktop-col-9, .main-col {
    width: 75%; } }

@media (min-width: 960px) {
  .desktop-col-10 {
    width: 83.3333%; } }

@media (min-width: 960px) {
  .desktop-col-11 {
    width: 91.6666%; } }

@media (min-width: 960px) {
  .desktop-col-12 {
    width: 100%; } }

@media (min-width: 768px) {
  .mobile-only, .nav-select {
    display: none; } }

.tablet-only {
  display: none; }
  @media (min-width: 768px) {
    .tablet-only {
      display: block; } }
  @media (min-width: 960px) {
    .tablet-only {
      display: none; } }

.desktop-only {
  display: none; }
  @media (min-width: 960px) {
    .desktop-only {
      display: block; } }

@media (min-width: 960px) {
  .not-desktop {
    display: none; } }

.tablet-only-ib {
  display: none; }
  @media (min-width: 768px) {
    .tablet-only-ib {
      display: inline-block; } }
  @media (min-width: 960px) {
    .tablet-only-ib {
      display: none; } }

.desktop-only-ib {
  display: none; }
  @media (min-width: 960px) {
    .desktop-only-ib {
      display: inline-block; } }

.block-base img, .block-highlight img, .left-col, .tablet-up, .nav-main, .nav-secondary, .nav-side {
  display: none; }
  @media (min-width: 768px) {
    .block-base img, .block-highlight img, .left-col, .tablet-up, .nav-main, .nav-secondary, .nav-side {
      display: block; } }

.desktop-up, .articles-filter .title {
  display: none; }
  @media (min-width: 960px) {
    .desktop-up, .articles-filter .title {
      display: block; } }

.split-2, .diary-blocks {
  margin-left: -6px;
  margin-right: -6px; }
  .split-2 .col-1, .diary-blocks .col-1,
  .split-2 .col-2,
  .diary-blocks .col-2 {
    padding-left: 6px;
    padding-right: 6px; }
  @media (min-width: 768px) {
    .split-2 .col-1, .diary-blocks .col-1 {
      float: left;
      width: 50%; } }

.split-3, .form-feedback .col-wrap, .form-comment .col-wrap {
  margin-left: -6px;
  margin-right: -6px; }
  .split-3 .col-1, .form-feedback .col-wrap .col-1, .form-comment .col-wrap .col-1,
  .split-3 .col-2,
  .form-feedback .col-wrap .col-2,
  .form-comment .col-wrap .col-2,
  .split-3 .col-3,
  .form-feedback .col-wrap .col-3,
  .form-comment .col-wrap .col-3 {
    padding-left: 6px;
    padding-right: 6px; }
  @media (min-width: 768px) {
    .split-3 .col-1, .form-feedback .col-wrap .col-1, .form-comment .col-wrap .col-1 {
      float: left;
      width: 33.333333%; } }
  @media (min-width: 768px) {
    .split-3 .col-2, .form-feedback .col-wrap .col-2, .form-comment .col-wrap .col-2 {
      float: left;
      width: 66.666666%; } }

/*
	=======
	Modules
	=======

	Module level CSS should be placed in this file.
	Modules are self-contained sections of markup.
	Modules can exist with other modules.
	Modules can often include objects.

	EXAMPLES::

	"Site Header" would be a module.

	"Top Navigation" may exist within the "Site Header" markup but it is capable of existing as its own module and so should be done separately.
*/
.skip-section {
  position: absolute;
  top: auto;
  left: -999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999; }
  .skip-section .screen-reader-text {
    display: inline-block;
    font-size: 1em;
    color: #EAF2F9; }
    .skip-section .screen-reader-text:focus {
      outline-color: #EAF2F9; }
    .skip-section .screen-reader-text + .screen-reader-text {
      margin-left: 20px; }
  .skip-section.show {
    top: auto;
    left: auto;
    width: 80%;
    height: auto;
    padding: 8px 5px;
    margin: 0 10% 10px;
    border: 2px solid #2E6EB8;
    border-radius: 15px;
    text-align: center;
    z-index: 999;
    background-color: #B85B00;
    overflow: auto; }
  @media (min-width: 768px) {
    .skip-section.show {
      width: 40%;
      margin-left: 30%;
      margin-right: 30%; } }

/*
	===========
	Site Header
	===========
*/
.bottom {
  background: #EAF2F9;
  padding: 1px 0; }

#google_translate_element {
  padding: 0 4px; }
  #google_translate_element select {
    width: auto; }
  #google_translate_element img {
    margin: 0;
    vertical-align: text-top; }
  #google_translate_element .goog-te-gadget,
  #google_translate_element .goog-logo-link {
    color: #2E6EB8; }

.header-site {
  margin-bottom: 24px;
  position: relative;
  z-index: 50; }
  .header-site .logo {
    display: block;
    margin-bottom: 10px;
    text-align: center; }
    @media (min-width: 768px) {
      .header-site .logo {
        float: left; } }
    @media (min-width: 1056px) {
      .header-site .logo {
        margin-top: -50px; } }
  .header-site .social {
    margin-bottom: 12px;
    text-align: center; }
    @media (min-width: 768px) {
      .header-site .social {
        float: right;
        margin-bottom: 0;
        padding-top: 1px;
        padding-right: 18px;
        text-align: left; } }
    .header-site .social a {
      background: #2E6EB8;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      -o-border-radius: 50%;
      border-radius: 50%;
      display: inline-block;
      margin: 0 2px;
      height: 33px;
      -webkit-transition: background-color 0.3s linear;
      -moz-transition: background-color 0.3s linear;
      -ms-transition: background-color 0.3s linear;
      -o-transition: background-color 0.3s linear;
      transition: background-color 0.3s linear;
      vertical-align: top;
      width: 33px; }
      .header-site .social a:hover {
        background-color: #235a86; }
    .header-site .social .linkedin {
      background-image: url(/site/images/icons/social/linkedin.svg);
      background-size: 33px 33px; }
      .no-svg .header-site .social .linkedin {
        background-image: url(/site/images/icons/social/linkedin.png); }
    .header-site .social .facebook {
      background-image: url(/site/images/icons/social/facebook.svg);
      background-size: 33px 33px; }
      .no-svg .header-site .social .facebook {
        background-image: url(/site/images/icons/social/facebook.png); }
    .header-site .social .twitter {
      background-image: url(/site/images/icons/social/twitter.svg);
      background-size: 33px 33px; }
      .no-svg .header-site .social .twitter {
        background-image: url(/site/images/icons/social/twitter.png); }
    .header-site .social .youtube {
      background-image: url(/site/images/icons/social/youtube.png);
      background-size: 33px 33px; }
      .no-svg .header-site .social .youtube {
        background-image: url(/site/images/icons/social/youtube.png); }
  .header-site .information {
    background: white;
    background: rgba(46, 110, 184, 0.1);
    height: 38px; }
    .header-site .information .niceselect-wrapper {
      line-height: 35px; }
      @media (min-width: 768px) {
        .header-site .information .niceselect-wrapper {
          width: 294px; } }
  .header-site ~ .wrap, .header-site ~ .header-site,
  .header-site ~ .footer-padding {
    position: relative;
    z-index: 10; }

/* Site Header */
/*
	===========
	Site Footer
	===========
*/
.footer-site {
  background-color: #EAF2F9; }

.footer-inner {
  background-image: url(/site/images/background/footer.png);
  background-position: center bottom;
  padding-bottom: 124px; }

.footer-newsletter {
  margin-bottom: 24px; }
  @media (min-width: 768px) {
    .footer-newsletter {
      float: right;
      margin-bottom: 0;
      width: 300px; } }
  .footer-newsletter .form-newsletter .close {
    display: none; }

.footer-site .bottom {
  background: #2E6EB8; }

/* Site Footer */
/*
	==========
	Navigation
	==========
*/
.nav-main {
  border-bottom: 3px solid #2E6EB8;
  clear: both;
  font-family: "Gill Sans W01 Medium", sans-serif;
  text-align: center;
  position: relative;
  z-index: 20; }
  .nav-main > ul {
    display: table;
    margin-bottom: -3px;
    width: 100%; }
    .nav-main > ul > li {
      border-left: 1px solid #2E6EB8;
      display: table-cell;
      vertical-align: middle;
      text-transform: uppercase; }
      .nav-main > ul > li:first-child {
        border-left: none; }
        .nav-main > ul > li:first-child > a {
          padding-left: 0; }
      .nav-main > ul > li:last-child > a {
        padding-right: 0; }
      .nav-main > ul > li > a {
        padding: 5px 0; }
        @media (min-width: 768px) {
          .nav-main > ul > li > a {
            padding: 3px 5px; } }
  .nav-main li.open > a, .nav-main li:hover > a {
    border-bottom-color: #2E6EB8;
    color: #2E6EB8; }
  .nav-main li.open > .nav-dropdown, .nav-main li:hover > .nav-dropdown {
    display: block;
    left: auto; }
    .nav-main li.open > .nav-dropdown.align-right, .nav-main li:hover > .nav-dropdown.align-right {
      left: auto;
      right: 0; }
  .nav-main li li {
    text-transform: none; }
  .nav-main a {
    border-bottom: 3px solid transparent;
    display: block;
    margin-bottom: 2px;
    -webkit-transition: border-bottom-color 0.3s linear, color 0.3s linear;
    -moz-transition: border-bottom-color 0.3s linear, color 0.3s linear;
    -ms-transition: border-bottom-color 0.3s linear, color 0.3s linear;
    -o-transition: border-bottom-color 0.3s linear, color 0.3s linear;
    transition: border-bottom-color 0.3s linear, color 0.3s linear; }
    .nav-main a:hover {
      text-decoration: none; }
  .nav-main .active > a {
    border-bottom-color: #2E6EB8;
    color: #2E6EB8; }

.nav-dropdown {
  background: #2E6EB8;
  border: 1px solid #2E6EB8;
  display: block;
  left: -999em;
  margin-top: 3px;
  padding: 22px;
  position: absolute;
  text-align: left;
  top: 100%;
  width: 100%; }
  @media (min-width: 818px) {
    .nav-dropdown {
      width: 740px; } }
  .lt-ie9 .nav-dropdown {
    margin-top: 0; }
  .nav-dropdown,
  .nav-dropdown a {
    color: #fff; }
  .nav-dropdown img {
    float: right;
    margin-top: 30px; }
    .nav-dropdown img + .inner {
      margin-right: 246px; }
  .nav-dropdown ul {
    margin: 0; }
  .nav-dropdown li {
    background: transparent;
    border-bottom: 3px solid #fff;
    display: block;
    float: none;
    height: auto;
    margin: 0;
    padding: 0; }
  .nav-dropdown a {
    border-bottom: none;
    margin-bottom: 0;
    padding: 3px 5px; }
    @media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
      .nav-dropdown a {
        background-size: 5px 9px; } }
    .nav-dropdown a:hover {
      background: #fff;
      color: #2E6EB8 !important; }
  .nav-dropdown .description,
  .nav-dropdown .menu {
    float: left;
    width: 50%; }
  .nav-dropdown .title {
    border-bottom: 1px solid #fff;
    font-family: "function_pro_demi", sans-serif;
    font-size: 1.3333333333em;
    line-height: 1;
    padding-bottom: 10px;
    margin-bottom: 10px; }
  .nav-dropdown .description {
    text-transform: none; }
  .nav-dropdown .desc-title {
    margin-bottom: 11px;
    text-transform: uppercase; }
  .nav-dropdown .menu {
    padding-right: 30px; }
  .nav-dropdown .active > a {
    background: #FFF;
    border-bottom: none; }

.nav-secondary {
  font-size: 0.8666666667em;
  line-height: 2;
  margin-bottom: 34px;
  text-align: right; }
  .nav-secondary li {
    display: inline-block;
    margin-left: 1px;
    text-transform: uppercase; }
  .nav-secondary a {
    background: #B85B00;
    color: #FFF;
    display: block;
    padding: 0 9px;
    -webkit-transition: background-color 0.3s linear;
    -moz-transition: background-color 0.3s linear;
    -ms-transition: background-color 0.3s linear;
    -o-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear; }
    .nav-secondary a:hover {
      background-color: #984d02;
      text-decoration: none; }

.nav-select {
  background: url(/site/images/navicon.svg) no-repeat 10px center;
  background-color: white;
  background-color: rgba(46, 110, 184, 0.1);
  background-size: 20px 20px;
  border-bottom: 3px solid #2E6EB8;
  margin-bottom: 12px;
  padding: 4px 5px 4px 40px; }
  .nav-select label {
    display: none;
    font-size: 1.0666666667em;
    margin-bottom: 4px;
    text-align: center; }
  .nav-select select {
    display: block;
    width: 100%; }
  .nav-select .niceselect-wrapper {
    line-height: 35px; }

.nav-side {
  margin-bottom: 30px; }
  .nav-side ul ul {
    border-top: 1px solid #2E6EB8; }
    .nav-side ul ul li {
      border-bottom: 1px solid #2E6EB8;
      font-family: "GillSansW01-BookItalic", sans-serif; }
      .nav-side ul ul li:last-child {
        border-bottom: none; }
    .nav-side ul ul a {
      padding-left: 15px; }
      .nav-side ul ul a:hover {
        background: #EAF2F9;
        color: #2E6EB8; }
  .nav-side li {
    border-bottom: 3px solid #2E6EB8; }
  .nav-side a {
    display: block;
    padding: 5px;
    -webkit-transition: background-color 0.3s linear, color 0.3s linear;
    -moz-transition: background-color 0.3s linear, color 0.3s linear;
    -ms-transition: background-color 0.3s linear, color 0.3s linear;
    -o-transition: background-color 0.3s linear, color 0.3s linear;
    transition: background-color 0.3s linear, color 0.3s linear; }
    .nav-side a:hover {
      background: #2E6EB8;
      color: #FFF;
      text-decoration: none; }
  .nav-side .active > a {
    background: #2E6EB8;
    color: #FFF; }
  .nav-side .active > ul {
    border-top-color: #FFF; }
  .nav-side .active .active > a {
    background: #EAF2F9;
    color: #2E6EB8; }

.nav-terms {
  display: inline-block;
  font-size: 0.8666666667em;
  line-height: 2.2307692308;
  vertical-align: middle; }
  .nav-terms a {
    color: #FFF;
    margin-right: 4px; }
    .nav-terms a:hover {
      text-decoration: underline; }
  .nav-terms .phone,
  .nav-terms .email {
    background-position: left center;
    background-repeat: no-repeat;
    margin-left: 20px;
    padding-left: 20px; }
  .nav-terms .phone {
    background-image: url(/site/images/icons/phone.svg);
    background-size: 14px 14px; }
    .nav-terms .phone .no-svg {
      background-image: url(/site/images/icons/phone.png); }
  .nav-terms .email {
    background-image: url(/site/images/icons/white/email.svg);
    background-size: 15px 10px; }
    .nav-terms .email .no-svg {
      background-image: url(/site/images/icons/white/email.png); }

@media (min-width: 768px) {
  .nav-footer-wrap {
    margin-right: 320px; } }

.nav-footer {
  margin-left: -10px;
  margin-right: -10px;
  line-height: 1.6; }
  .nav-footer .col {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 50%; }
    .nav-footer .col:nth-child(n) {
      clear: none; }
    .nav-footer .col:nth-child(2n+1) {
      clear: left; }
  @media (min-width: 768px) {
    .nav-footer {
      margin-left: -10px;
      margin-right: -10px; }
      .nav-footer .col {
        float: left;
        padding-left: 10px;
        padding-right: 10px;
        width: 33.3333333333%; }
        .nav-footer .col:nth-child(n) {
          clear: none; }
        .nav-footer .col:nth-child(3n+1) {
          clear: left; } }
  .nav-footer ul {
    font-size: 0.9333333333em; }
  .nav-footer h3 {
    font-size: 1.0666666667em;
    margin-bottom: 0; }
  .nav-footer ul a {
    color: #2E6EB8; }
    .nav-footer ul a:hover {
      text-decoration: underline; }
  .nav-footer .col {
    margin-bottom: 32px; }

/* Navigation */
/*
	======
	Search
	======
*/
.form-search {
  margin-bottom: 12px;
  border: 1px solid #BABABA;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  -moz-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  -ms-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  -o-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25) inset; }
  @media (min-width: 768px) {
    .form-search {
      float: right;
      width: 33.3333%; } }
  .form-search [type=text] {
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    line-height: 24px;
    color: #B85B00; }
    .form-search [type=text]:-moz-placeholder {
      color: #B85B00; }
    .form-search [type=text]::-moz-placeholder {
      color: #B85B00; }
    .form-search [type=text]::-webkit-input-placeholder {
      color: #B85B00; }
    .form-search [type=text]:-ms-input-placeholder {
      color: #B85B00; }
  .form-search [type=image] {
    float: right; }
  .form-search .form-item,
  .form-search .form-buttons {
    margin-bottom: 0; }
  .form-search .form-item {
    height: 0;
    margin-right: 30px; }
  .form-search .form-buttons {
    float: right;
    margin: 7px 5px; }

/* Search */
/*
	========
	Carousel
	========
*/
.carousel .slick-prev,
.carousel .slick-next {
  background: #EAF2F9;
  border: 1px solid #2E6EB8;
  height: 66px;
  margin-top: -33px;
  padding: 0;
  top: 50%;
  width: 16px; }
  @media (min-width: 768px) {
    .carousel .slick-prev,
    .carousel .slick-next {
      width: 36px; } }
  .carousel .slick-prev:before, .carousel .slick-next:before {
    border-color: transparent #B85B00;
    border-style: solid;
    border-width: 7px 13px;
    content: "";
    display: block;
    height: 14px;
    margin-top: -7px;
    position: absolute;
    top: 50%;
    -webkit-transition: border-color 0.3s linear;
    -moz-transition: border-color 0.3s linear;
    -ms-transition: border-color 0.3s linear;
    -o-transition: border-color 0.3s linear;
    transition: border-color 0.3s linear; }
    .lt-ie9 .carousel .slick-prev:before,
    .lt-ie9 .carousel .slick-next:before {
      top: 0; }
  .carousel .slick-prev:hover:before,
  .carousel .slick-next:hover:before {
    border-color: transparent #2E6EB8; }
.carousel .slick-prev {
  -webkit-border-radius: 33px 0 0 33px;
  -moz-border-radius: 33px 0 0 33px;
  -ms-border-radius: 33px 0 0 33px;
  -o-border-radius: 33px 0 0 33px;
  border-radius: 33px 0 0 33px;
  border-right: none;
  left: -15px; }
  @media (min-width: 768px) {
    .carousel .slick-prev {
      left: -35px; } }
  .carousel .slick-prev:before {
    border-left-width: 0;
    left: 50%;
    margin-left: -7px; }
.carousel .slick-next {
  border-left: none;
  -webkit-border-radius: 0 33px 33px 0;
  -moz-border-radius: 0 33px 33px 0;
  -ms-border-radius: 0 33px 33px 0;
  -o-border-radius: 0 33px 33px 0;
  border-radius: 0 33px 33px 0;
  right: -15px; }
  @media (min-width: 768px) {
    .carousel .slick-next {
      right: -35px; } }
  .carousel .slick-next:before {
    border-right-width: 0;
    right: 50%;
    margin-right: -7px; }

/* Carousel */
/*
	======
	Slider
	======
*/
.slider {
  margin: 0 -1px; }
  .slider.slick-loading {
    margin: 0; }
    .slider.slick-loading .slick-list {
      background-color: #EAF2F9;
      background-image: url(/site/images/ajax-slider-loader.gif); }
  .slider img {
    display: none;
    float: left;
    max-width: 140px; }
    @media (min-width: 768px) {
      .slider img {
        display: block; } }
  .slider p {
    font-size: 1.3333333333em;
    line-height: 1.2; }
    .slider p,
    .slider p a {
      color: #2E6EB8; }
  .slider .slick-prev,
  .slider .slick-next {
    background: #EAF2F9;
    border: 1px solid #2E6EB8;
    height: 66px;
    margin-top: -33px;
    padding: 0;
    top: 50%;
    width: 16px; }
    @media (min-width: 768px) {
      .slider .slick-prev,
      .slider .slick-next {
        width: 36px; } }
    .slider .slick-prev:before, .slider .slick-next:before {
      border-color: transparent #B85B00;
      border-style: solid;
      border-width: 7px 13px;
      content: '';
      height: 14px;
      margin-top: -7px;
      position: absolute;
      top: 50%;
      -webkit-transition: border-color 0.3s linear;
      -moz-transition: border-color 0.3s linear;
      -ms-transition: border-color 0.3s linear;
      -o-transition: border-color 0.3s linear;
      transition: border-color 0.3s linear; }
      .lt-ie9 .slider .slick-prev:before,
      .lt-ie9 .slider .slick-next:before {
        top: 0; }
    .slider .slick-prev:hover:before,
    .slider .slick-next:hover:before {
      border-color: transparent #2E6EB8; }
  .slider .slick-prev {
    -webkit-border-radius: 33px 0 0 33px;
    -moz-border-radius: 33px 0 0 33px;
    -ms-border-radius: 33px 0 0 33px;
    -o-border-radius: 33px 0 0 33px;
    border-radius: 33px 0 0 33px;
    border-right: none;
    left: -15px; }
    @media (min-width: 768px) {
      .slider .slick-prev {
        left: -35px; } }
    .slider .slick-prev:before {
      border-left-width: 0;
      left: 50%;
      margin-left: -7px; }
  .slider .slick-next {
    border-left: none;
    -webkit-border-radius: 0 33px 33px 0;
    -moz-border-radius: 0 33px 33px 0;
    -ms-border-radius: 0 33px 33px 0;
    -o-border-radius: 0 33px 33px 0;
    border-radius: 0 33px 33px 0;
    right: -15px; }
    @media (min-width: 768px) {
      .slider .slick-next {
        right: -35px; } }
    .slider .slick-next:before {
      border-right-width: 0;
      right: 50%;
      margin-right: -7px; }
  .slider .slide {
    overflow: hidden; }
    .slider .slide:first-child .slide-inner {
      border-left: none; }
  .slider .slide-inner {
    border-left: 1px solid #2E6EB8;
    min-height: 125px;
    padding: 0 25px; }
  @media (min-width: 768px) {
    .slider .slide-text {
      margin-left: 148px; } }
  .slider .title {
    margin-bottom: .5em; }
    .slider .title a {
      text-decoration: none; }
      .slider .title a:hover {
        text-decoration: underline; }
  .slider .intro {
    font-size: 0.9333333333em; }
  .tabs .slider .slick-prev, .tabs-related .slider .slick-prev, .tabs-related-narrow .slider .slick-prev,
  .tabs .slider .slick-next,
  .tabs-related .slider .slick-next,
  .tabs-related-narrow .slider .slick-next {
    background-color: #FFF; }

/* Slider */
/*
	===========
	Breadcrumbs
	===========
*/
.breadcrumbs {
  font-size: 0.8666666667em;
  padding: 11px 10px; }
  @media (min-width: 768px) {
    .breadcrumbs {
      text-align: right; } }
  .breadcrumbs a,
  .breadcrumbs span {
    margin-left: 8px; }
    .breadcrumbs a:before,
    .breadcrumbs span:before {
      border-color: transparent #B85B00;
      border-style: solid;
      border-width: 3px 0 3px 5px;
      content: "";
      display: inline-block;
      height: 0;
      margin-right: 8px; }
    .breadcrumbs a:first-child,
    .breadcrumbs span:first-child {
      margin-left: 0; }
      .breadcrumbs a:first-child:before,
      .breadcrumbs span:first-child:before {
        content: none; }
  .breadcrumbs a {
    text-decoration: none; }

/* Breadcrumbs */
/*
	======
	Banner
	======
*/
.banner {
  background: #EAF2F9;
  color: #2E6EB8;
  border: 1px solid #2E6EB8;
  -webkit-transition: background-color 0.3s linear;
  -moz-transition: background-color 0.3s linear;
  -ms-transition: background-color 0.3s linear;
  -o-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear; }
  .banner:hover {
    background: #2E6EB8;
    color: #fff; }
    .banner:hover .lnk-arrow, .banner:hover .lnk-arrow-highlight, .banner:hover .lnk-arrow-white, .banner:hover .lnk-email, .banner:hover .lnk-email-alt, .banner:hover .lnk-email-white, .banner:hover .lnk-twitter {
      background-image: url(/site/images/icons/white/roundal-arrow.svg);
      color: #FFF; }
  .banner img {
    width: 100%; }
    @media (min-width: 960px) {
      .banner img {
        float: left;
        width: 68.75%; } }
    @media (min-width: 1056px) {
      .banner img {
        width: auto; } }
  .banner h2 {
    margin-bottom: 10px; }
  .banner p {
    font-size: 1.0666666667em;
    line-height: 1.2;
    margin-bottom: 0; }
    @media (min-width: 1056px) {
      .banner p {
        font-size: 1.3333333333em; } }
  .banner .text {
    padding: 24px 24px 50px;
    position: relative; }
    @media (min-width: 960px) {
      .banner .text {
        margin-left: 68.75%; } }
    @media (min-width: 1056px) {
      .banner .text {
        margin-left: 660px;
        min-height: 280px; } }
  .banner a {
    bottom: 18px;
    left: 24px;
    position: absolute; }

/* Banner */
/*
	==========
	Home Boxes
	==========
*/
@media (min-width: 768px) {
  .home-boxes {
    margin-left: -16px;
    margin-right: -16px; }
    .home-boxes .col {
      float: left;
      padding-left: 16px;
      padding-right: 16px;
      width: 33.3333333333%; }
      .home-boxes .col:nth-child(n) {
        clear: none; }
      .home-boxes .col:nth-child(3n+1) {
        clear: left; } }
.home-boxes h2 {
  background-color: #2E6EB8;
  background-repeat: no-repeat;
  font-size: 1.3333333333em;
  line-height: 1.2;
  margin-bottom: 0;
  padding: 9px;
  text-transform: uppercase; }
  .home-boxes h2,
  .home-boxes h2 a {
    color: #FFF; }
  .home-boxes h2 a {
    text-decoration: none; }
    .home-boxes h2 a:hover {
      text-decoration: underline; }
  @media (min-width: 1056px) {
    .home-boxes h2 {
      padding-left: 52px; } }
.home-boxes .lnk-block {
  background: #EAF2F9 url(/site/images/icons/highlight/roundal-arrow.svg) no-repeat 12px center;
  background: #EAF2F9 url(/site/images/icons/highlight/roundal-arrow.svg) no-repeat 12px center;
  background-size: 15px 16px;
  display: block;
  line-height: 2;
  text-decoration: none;
  padding: 4px 4px 4px 34px;
  -webkit-transition: background-color 0.3s linear, color 0.3s linear;
  -moz-transition: background-color 0.3s linear, color 0.3s linear;
  -ms-transition: background-color 0.3s linear, color 0.3s linear;
  -o-transition: background-color 0.3s linear, color 0.3s linear;
  transition: background-color 0.3s linear, color 0.3s linear; }
  .no-svg .home-boxes .lnk-block {
    background-image: url(/site/images/icons/highlight/roundal-arrow.png); }
  .home-boxes .lnk-block:hover {
    background: #2E6EB8 url(/site/images/icons/white/roundal-arrow.svg) no-repeat 12px center;
    color: #FFF; }
    .no-svg .home-boxes .lnk-block:hover {
      background-image: url(/site/images/icons/white/roundal-arrow.png); }
.home-boxes .col {
  margin-bottom: 12px; }
  @media (min-width: 768px) {
    .home-boxes .col {
      margin-bottom: 24px; } }
.home-boxes .inner {
  display: block; }
  @media (min-width: 768px) {
    .home-boxes .inner {
      height: 155px; } }
  .home-boxes .inner a {
    color: #2E6EB8;
    text-decoration: none; }
    .home-boxes .inner a:hover {
      text-decoration: underline; }
@media (min-width: 1056px) {
  .home-boxes .contact h2 {
    background-image: url(/site/images/icons/phone.svg);
    background-position: 16px center;
    background-size: 17px 16px; }
    .no-svg .home-boxes .contact h2 {
      background-image: url(/site/images/icons/phone.png); } }
.home-boxes .contact .inner {
  background: #B85B00;
  color: #FFF;
  padding: 15px; }
@media (min-width: 1056px) {
  .home-boxes .diary h2 {
    background-image: url(/site/images/icons/diary.svg);
    background-position: 12px center;
    background-size: 21px 14px; }
    .no-svg .home-boxes .diary h2 {
      background-image: url(/site/images/icons/diary.png); } }
.home-boxes .diary .inner {
  background-position: center center;
  background-size: 100% 100%;
  background-size: cover;
  min-height: 155px; }
@media (min-width: 1056px) {
  .home-boxes .meet h2 {
    background-image: url(/site/images/icons/video.svg);
    background-position: 0 center;
    background-size: 45px 45px; }
    .no-svg .home-boxes .meet h2 {
      background-image: url(/site/images/icons/video.png); } }
.home-boxes .meet time {
  color: #B85B00;
  display: block;
  font-size: 0.875em;
  padding-top: 7px; }
  @media (min-width: 1056px) {
    .home-boxes .meet time {
      font-size: 0.7em; } }
.home-boxes .meet .inner {
  color: #2E6EB8;
  font-size: 1.0666666667em;
  padding: 0; }
  @media (min-width: 1056px) {
    .home-boxes .meet .inner {
      font-size: 1.3333333333em; } }
  .home-boxes .meet .inner .desc {
    font-size: 0.6666666667em;
    display: block; }
  .home-boxes .meet .inner .fb_iframe_widget {
    max-height: 155px;
    overflow: hidden; }
.home-boxes .tweet a {
  color: #FFF; }
@media (min-width: 1056px) {
  .home-boxes .twitter h2 {
    background-image: url(/site/images/icons/white/feed-twitter.svg);
    background-position: 12px center;
    background-size: 24px 19px; }
    .no-svg .home-boxes .twitter h2 {
      background-image: url(/site/images/icons/white/feed-twitter.png); } }
.home-boxes .twitter .inner {
  background-color: #656669;
  color: #FFF;
  padding: 15px; }
.home-boxes .twitter .slick-loading {
  margin: 0; }
.home-boxes .twitter .slick-slider {
  margin-bottom: 0; }

/* Home Boxes */
/*
	=======
	Content
	=======
*/
/*
	=============
	Content Boxes
	=============
*/
.box-contact {
  background-image: url(/site/images/icons/phone.svg);
  background-repeat: no-repeat;
  background-position: 16px 14px;
  background-size: 17px 16px;
  padding-left: 52px;
  padding-top: 10px;
  padding-bottom: 10px; }
  .no-svg .box-contact {
    background-image: url(/site/images/icons/phone.png); }
  .box-contact a {
    float: right; }

/*
	===========
	Content Bar
	===========
*/
.content-bar, .feedbar, .msgbar {
  background: #2E6EB8;
  color: #FFF;
  margin-bottom: 24px;
  padding: 12px 0; }

/*
	=======
	Feedbar
	=======
*/
.feedbar {
  bottom: 0;
  left: 0;
  margin-bottom: 0;
  width: 100%;
  z-index: 100; }
  @media (min-width: 960px) {
    .feedbar {
      position: fixed; } }
  .feedbar a {
    color: #FFF;
    text-decoration: none; }
    .feedbar a:hover {
      text-decoration: underline; }
  .feedbar .title {
    background: url(/site/images/icons/megaphone.svg) no-repeat left center;
    background-size: 47px 46px;
    padding-left: 52px;
    color: #FFF;
    font-size: 1.3333333333em;
    line-height: 2.3;
    -webkit-transition: color 0.3s linear;
    -moz-transition: color 0.3s linear;
    -ms-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear; }
    @media (min-width: 768px) {
      .feedbar .title {
        float: left; } }
    .no-svg .feedbar .title {
      background-image: url(/site/images/icons/megaphone-small.png); }
    .feedbar .title:hover {
      color: #EAF2F9; }
    .feedbar .title.twitter {
      background: url(/site/images/icons/feed-twitter.svg) no-repeat left center;
      background-size: 24px 19px;
      line-height: 1.6;
      padding-left: 32px; }
      .no-svg .feedbar .title.twitter {
        background-image: url(/site/images/icons/feed-twitter.png); }
  @media (min-width: 768px) {
    .feedbar .feed {
      margin-left: 165px; } }
  .feedbar .slick-slider {
    margin-bottom: 0; }
  .feedbar .slick-loading .slick-list {
    background: #2E6EB8 url(/site/images/ajax-loader-feed.gif) center center no-repeat; }

/* Feedbar */
/*
	===========
	Message bar
	==========
*/
.msgbar {
  font-size: 1.3333333333em;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase; }
  .msgbar .slick-loading .slick-list {
    background: #2E6EB8 url(/site/images/ajax-loader-feed.gif) center center no-repeat; }

/* Message bar */
/*
	========
	Articles
	========
*/
@media (min-width: 768px) {
  .post .image {
    float: left;
    max-width: 180px; } }
@media (min-width: 768px) {
  .post .image + .text {
    margin-left: 200px; } }

.articles-filter {
  background: #EAF2F9;
  margin-bottom: 70px;
  padding: 10px;
  position: relative; }
  @media (min-width: 768px) {
    .articles-filter {
      padding: 20px; } }
  .articles-filter:after {
    border-color: #EAF2F9 transparent;
    border-style: solid;
    border-width: 29px 29px 0;
    content: "";
    left: 50%;
    margin-left: -29px;
    position: absolute;
    top: 100%; }
  .articles-filter .archive + * {
    margin-top: 12px; }
  .articles-filter .archive:last-child {
    margin-bottom: 0; }
  @media (min-width: 768px) {
    .articles-filter .archive {
      display: inline-block;
      width: 200px; } }
  .articles-filter .title {
    background: white;
    background: rgba(46, 110, 184, 0.25);
    float: left;
    padding: 8px;
    width: 100px; }
    @media (min-width: 960px) {
      .articles-filter .title + .tags {
        margin-left: 106px; } }
  .articles-filter .tags {
    font-size: 0.9333333333em;
    line-height: 1.2857142857;
    margin-bottom: 5px;
    text-align: center; }
    .articles-filter .tags:last-child {
      margin-bottom: 0; }
    .articles-filter .tags ul {
      width: 100%; }
      @media (min-width: 1060px) {
        .articles-filter .tags ul {
          display: table; } }
      .articles-filter .tags ul:hover li:not(.active) {
        background: white;
        background: rgba(184, 91, 0, 0.25); }
        .articles-filter .tags ul:hover li:not(.active):first-child {
          background: white;
          background: rgba(46, 110, 184, 0.25); }
      .articles-filter .tags ul:hover li:hover {
        background: #B85B00; }
        .articles-filter .tags ul:hover li:hover:first-child {
          background: #2E6EB8; }
    .articles-filter .tags li {
      background: #B85B00;
      margin-bottom: 2px;
      -webkit-transition: background-color 0.3s linear;
      -moz-transition: background-color 0.3s linear;
      -ms-transition: background-color 0.3s linear;
      -o-transition: background-color 0.3s linear;
      transition: background-color 0.3s linear;
      vertical-align: middle; }
      @media (min-width: 768px) {
        .articles-filter .tags li {
          display: inline-block;
          margin-bottom: 4px; } }
      @media (min-width: 1060px) {
        .articles-filter .tags li {
          border-right: 6px solid #DEDBE9;
          display: table-cell;
          height: 35px;
          margin-bottom: 0; } }
      .articles-filter .tags li:first-child {
        background: #2E6EB8; }
      .articles-filter .tags li:last-child {
        border-right: 0; }
    .articles-filter .tags a {
      color: #FFF;
      display: block;
      min-width: 54px;
      padding: 8px;
      text-decoration: none; }
      @media (min-width: 1060px) {
        .articles-filter .tags a {
          padding: 0 2px; } }
    .articles-filter .tags .type-news:after,
    .articles-filter .tags .type-blog:after {
      content: "";
      display: inline-block;
      margin-left: 10px;
      vertical-align: middle; }
    .articles-filter .tags .tag-active li:not(.active) {
      background: white;
      background: rgba(184, 91, 0, 0.25); }
      .articles-filter .tags .tag-active li:not(.active):first-child {
        background: white;
        background: rgba(46, 110, 184, 0.25); }
    .articles-filter .tags .type-news:after {
      background-image: url(/site/images/icons/community.svg);
      background-size: 25px 19px;
      height: 19px;
      width: 25px; }
      .no-svg .articles-filter .tags .type-news:after {
        background-image: url(/site/images/icons/community.png); }
    .articles-filter .tags .type-blog:after {
      background-image: url(/site/images/icons/diary.svg);
      background-size: 21px 14px;
      height: 14px;
      width: 21px; }
      .no-svg .articles-filter .tags .type-blog:after {
        background-image: url(/site/images/icons/diary.png); }

.article-featured {
  margin-bottom: 80px; }
  .article-featured img {
    float: left;
    margin-top: 4px; }
    .article-featured img + .text {
      margin-left: 350px; }
  .article-featured h2 {
    margin-bottom: 8px; }
    .article-featured h2 a {
      color: #2E6EB8;
      text-decoration: none; }
  .article-featured time {
    color: #2E6EB8;
    display: block;
    font-family: "function_pro_demi", sans-serif;
    margin-bottom: 8px; }
  .article-featured .news time {
    background: url(/site/images/icons/base/community.svg) no-repeat right center; }
    .no-svg .article-featured .news time {
      background-image: url(/site/images/icons/base/community.png); }
  .article-featured .blog time {
    background: url(/site/images/icons/base/diary.svg) no-repeat right center; }
    .no-svg .article-featured .blog time {
      background-image: url(/site/images/icons/base/diary.png); }

.post-comments h2 {
  background: url(/site/images/icons/comments.svg) no-repeat 0 center;
  background-size: 31px 29px;
  line-height: 1.45;
  padding-left: 50px; }
  .no-svg .post-comments h2 {
    background-image: url(/site/images/icons/comments.png); }
.post-comments h3,
.post-comments .quip-comment-right,
.post-comments .quip-comment-meta {
  display: none; }
.post-comments .quip-comment-list li {
  border-bottom: 1px solid #FFF;
  margin-bottom: 18px;
  padding-bottom: 18px; }
  .post-comments .quip-comment-list li:last-child {
    margin-bottom: 0; }
.post-comments .quip-comment-text :last-child {
  margin-bottom: 0; }

.article .headline {
  font-size: 2em; }
.article time {
  padding-right: 32px; }
.article.news time {
  background: url(/site/images/icons/base/community.svg) no-repeat right center;
  background-size: 25px 19px; }
  .no-svg .article.news time {
    background-image: url(/site/images/icons/base/community.png); }
.article.blog time {
  background: url(/site/images/icons/base/diary.svg) no-repeat right center;
  background-size: 21px 14px; }
  .no-svg .article.blog time {
    background-image: url(/site/images/icons/base/diary.png); }

.post-add-comment h2 {
  background: url(/site/images/icons/keyboard.png) no-repeat 0 center;
  background-size: 32px 28px;
  line-height: 1.6;
  padding-left: 50px; }

.posted-on {
  color: #B85B00;
  display: block;
  font-family: "function_pro_demi", sans-serif;
  font-size: 1.3333333333em;
  margin-bottom: 16px; }

/* Articles */
/*
	====
	Tabs
	====
*/
.tabs-related {
  margin-bottom: 0;
  padding: 15px; }
  .tabs-related .tabs-links li {
    width: 25%; }
  .tabs-related .tabs-links a {
    text-align: left; }

.tabs-related-narrow {
  margin-bottom: 0;
  padding: 15px; }
  @media (min-width: 768px) {
    .tabs-related-narrow .tabs-links li {
      width: 33.33333333%; } }
  .tabs-related-narrow .tabs-links a {
    text-align: left; }

/* Tabs */
/*
	=====
	Forms
	=====
*/
.form-newsletter {
  background: #B85B00; }
  .form-newsletter .close {
    display: block;
    width: 25px;
    height: 29px;
    background: url(/site/images/icons/x.png) no-repeat 0 0;
    position: absolute;
    top: -10px;
    right: -10px;
    text-indent: -999em;
    z-index: 100; }
  .form-newsletter h2 {
    position: relative;
    padding-left: 80px; }
    .form-newsletter h2:before {
      background: url(/site/images/icons/megaphone.svg) no-repeat 0 0;
      background-size: 71px 69px;
      content: "";
      left: 0;
      position: absolute;
      top: -20px;
      width: 71px;
      height: 69px; }
      .no-svg .form-newsletter h2:before {
        background-image: url(/site/images/icons/megaphone.png); }
  .form-newsletter fieldset {
    padding: 20px 24px; }
  .form-newsletter button {
    background: transparent url(/site/images/icons/white/roundal-arrow.svg) no-repeat left center;
    background-size: 15px 16px;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    color: #FFF;
    padding-left: 22px;
    text-transform: uppercase; }
    .no-svg .form-newsletter button {
      background-image: url(/site/images/icons/white/roundal-arrow.png); }
    .form-newsletter button:hover {
      color: #2E6EB8;
      color: #BDD8EE;
      background: url(/site/images/icons/white/roundal-arrow.svg) no-repeat scroll left center;
      text-decoration: underline; }
      .no-svg .form-newsletter button:hover {
        background-image: url(/site/images/white/icons/roundal-arrow.png); }
  .form-newsletter label.error {
    background: #FEE;
    border: 1px solid #F00;
    display: block !important;
    padding: 0 4px; }
  .form-newsletter .content {
    color: #FFF;
    font-size: 1.3333333333em;
    padding: 16px 0 16px 16px; }
    @media (min-width: 768px) {
      .form-newsletter .content {
        float: left;
        width: 236px; } }
    @media (min-width: 768px) {
      .form-newsletter .content + fieldset {
        margin-left: 236px; } }
    .form-newsletter .content a {
      color: #fff;
      text-decoration: underline; }
      .form-newsletter .content a:hover {
        text-decoration: none; }
  .form-newsletter .alert-success {
    background-color: #7A3307;
    border-color: #7A3307;
    color: #FFF; }

.footer-newsletter .content {
  font-size: 1em;
  padding: 20px 24px 0 24px; }
  @media (min-width: 768px) {
    .footer-newsletter .content {
      float: none;
      width: auto; } }
  @media (min-width: 768px) {
    .footer-newsletter .content + fieldset {
      margin-left: 0; } }

.form-feedback {
  background: #EAF2F9; }
  .form-feedback textarea {
    height: 82px;
    min-height: 82px; }
  .form-feedback .col-1,
  .form-feedback .col-2 {
    margin-bottom: 12px; }
    @media (min-width: 768px) {
      .form-feedback .col-1,
      .form-feedback .col-2 {
        margin-bottom: 0; } }
  .form-feedback .col-wrap {
    margin-bottom: 16px; }

.form-comment textarea {
  height: 82px;
  min-height: 82px; }
.form-comment .recaptcha {
  float: left; }

/* Forms */
/*
	=========
	ShareThis
	=========
*/
.sharethis {
  clear: both;
  position: relative;
  z-index: 0; }
  .sharethis.extra-spacing {
    margin-bottom: 60px; }
  .sharethis .st_sharethis_large:after {
    content: "Share this content"; }
  .sharethis .st_sharethis_large .stButton {
    background: #2E6EB8 url(/site/images/icons/sharethis.svg) no-repeat 8px center;
    background-size: 15px 23px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    height: 33px;
    margin-right: 8px;
    -webkit-transition: background-color 0.3s linear;
    -moz-transition: background-color 0.3s linear;
    -ms-transition: background-color 0.3s linear;
    -o-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
    vertical-align: middle;
    width: 33px; }
    .sharethis .st_sharethis_large .stButton:hover {
      background-color: #B85B00; }
    .no-svg .sharethis .st_sharethis_large .stButton {
      background-image: url(/site/images/icons/sharethis.png); }
    .sharethis .st_sharethis_large .stButton span {
      display: none; }

/* ShareThis */
/*
	========
	Timeline
	========
*/
.timeline h2 {
  background: #2E6EB8 url(/site/images/icons/watch.svg) no-repeat 14px center;
  color: #FFF;
  margin-bottom: 0;
  padding: 9px 9px 9px 42px; }
  .timeline h2 .title {
    float: left; }
  .timeline h2 .month {
    clear: both;
    display: block; }
    @media (min-width: 768px) {
      .timeline h2 .month {
        clear: none;
        margin-left: 232px; } }
    @media (min-width: 960px) {
      .timeline h2 .month {
        margin-left: 332px; } }
.timeline img {
  display: block;
  margin: 0 auto 12px; }
  @media (min-width: 960px) {
    .timeline img {
      float: left; } }
  @media (min-width: 960px) {
    .timeline img + .text {
      margin-left: 350px; } }
.timeline .content {
  display: none; }
  .timeline .content.show {
    display: block; }
.timeline .text {
  margin-bottom: 12px; }
.timeline .months-wrap {
  bottom: -12px;
  clear: both;
  margin: 0 -12px;
  overflow: auto;
  position: relative; }
  @media (min-width: 768px) {
    .timeline .months-wrap {
      bottom: -24px; } }
  @media (min-width: 960px) {
    .timeline .months-wrap {
      overflow: hidden; } }
.timeline .months {
  font-family: "function_pro_demi", sans-serif;
  letter-spacing: -0.12%;
  min-width: 660px;
  text-align: center; }
  @media (min-width: 960px) {
    .timeline .months {
      min-width: none; } }
  .timeline .months a {
    color: #2E6EB8;
    float: left;
    text-decoration: none;
    width: 8.3333%; }
    .timeline .months a:after {
      background: #2E6EB8;
      content: "";
      display: block;
      margin: auto;
      height: 10px;
      width: 2px; }
  .timeline .months span {
    display: block;
    line-height: 2;
    margin: 0 7px; }
  .timeline .months .active {
    color: #FFF; }
    .timeline .months .active span {
      background: #2E6EB8; }

/* Timeline */
/*
	========
	Overlays
	========
*/
.overlay-newsletter {
  background: #2E6EB8;
  left: 0;
  margin: 0;
  padding: 3px;
  width: 100%; }
  @media (min-width: 768px) {
    .overlay-newsletter {
      left: 50%;
      margin-left: -270px;
      width: 540px; } }

.overlay-video {
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25);
  -o-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.25); }
  .overlay-video .inner {
    padding: 12px; }
  @media (min-width: 768px) {
    .overlay-video {
      left: 50%;
      margin-left: -350px;
      width: 700px;
      background: #EAF2F9;
      color: #fff; } }

/* Overlays */
/*
	=====
	Grids
	=====
*/
.grid-signposts h2 {
  font-size: 1.0666666667em;
  height: 2.4em;
  overflow: hidden; }
.grid-signposts a {
  -webkit-transition: color 0.3s linear;
  -moz-transition: color 0.3s linear;
  -ms-transition: color 0.3s linear;
  -o-transition: color 0.3s linear;
  transition: color 0.3s linear; }
  .grid-signposts a:hover {
    color: #FFF; }
    .grid-signposts a:hover .inner {
      background-color: #B85B00;
      background-image: url(/site/images/icons/white/star.svg); }
      .no-svg .grid-signposts a:hover .inner {
        background-image: url(/site/images/icons/white/star.png); }
.grid-signposts .intro {
  height: 2.8em;
  overflow: hidden; }
.grid-signposts .inner {
  background: #FFF url(/site/images/icons/star.svg) no-repeat 12px 14px;
  background-size: 30px 30px;
  display: block;
  padding: 55px 12px 12px;
  -webkit-transition: background-color 0.3s linear;
  -moz-transition: background-color 0.3s linear;
  -ms-transition: background-color 0.3s linear;
  -o-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear; }
  .grid-signposts .inner:before {
    background-image: url(/site/images/icons/white/star.svg); }
    .no-svg .grid-signposts .inner:before {
      background-image: url(/site/images/icons/white/star.png); }
  .no-svg .grid-signposts .inner {
    background-image: url(/site/images/icons/star.png); }

.grid-articles {
  position: relative; }
  .grid-articles:before {
    background: url(/site/images/icons/megaphone.svg) no-repeat 0 0;
    background-size: 104px 103px;
    content: "";
    height: 103px;
    position: absolute;
    top: -95px;
    width: 104px;
    left: -18px; }
    .no-svg .grid-articles:before {
      background-image: url(/site/images/icons/megaphone-large.png); }
  .grid-articles a {
    color: #2E6EB8;
    -webkit-transition: color 0.3s linear;
    -moz-transition: color 0.3s linear;
    -ms-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear; }
    .grid-articles a:hover time {
      color: #FFF; }
    .grid-articles a:hover .inner {
      background: #2E6EB8;
      color: #FFF; }
  .grid-articles h2 {
    font-size: 0.9333333333em;
    height: 8.4em; }
  .grid-articles time {
    color: #2E6EB8;
    display: block;
    font-family: "function_pro_demi", sans-serif;
    -webkit-transition: color 0.3s linear;
    -moz-transition: color 0.3s linear;
    -ms-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear; }
  .grid-articles .inner {
    background: #FFF;
    display: block;
    padding: 12px;
    -webkit-transition: background-color 0.3s linear;
    -moz-transition: background-color 0.3s linear;
    -ms-transition: background-color 0.3s linear;
    -o-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear; }
  .grid-articles .news time {
    background: url(/site/images/icons/base/community.svg) no-repeat right center; }
    .no-svg .grid-articles .news time {
      background-image: url(/site/images/icons/base/community.png); }
  .grid-articles .blog time {
    background: url(/site/images/icons/base/diary.svg) no-repeat right center; }
    .no-svg .grid-articles .blog time {
      background-image: url(/site/images/icons/base/diary.png); }
  .grid-articles + .pagination ul {
    margin-bottom: 0;
    margin-top: 12px; }

.grid-gallery {
  margin-bottom: 24px; }
  .grid-gallery a {
    position: relative; }
    .grid-gallery a:after {
      background: #FFF url(/site/images/icons/arrow-diag.svg) no-repeat center center;
      background-size: 11px 11px;
      bottom: 0;
      content: "";
      height: 22px;
      position: absolute;
      right: 6px;
      width: 22px; }
      .no-svg .grid-gallery a:after {
        background-image: url(/site/images/icons/arrow-diag.png); }
    .grid-gallery a:hover .text {
      opacity: 1;
      filter: alpha(opacity=100); }
  .grid-gallery h3 {
    margin-bottom: 0;
    overflow: hidden; }
  .grid-gallery .inner {
    position: relative; }
  .grid-gallery .text {
    background: #B85B00;
    color: #FFF;
    height: 100%;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    padding: 12px;
    position: absolute;
    top: 0;
    -webkit-transition: opacity 0.3s linear;
    -moz-transition: opacity 0.3s linear;
    -ms-transition: opacity 0.3s linear;
    -o-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
    width: 100%; }

.grid-images a:hover .text {
  opacity: 1;
  filter: alpha(opacity=100); }
.grid-images h3 {
  height: 3.6em;
  margin-bottom: 0;
  overflow: hidden; }
.grid-images .inner {
  position: relative; }
.grid-images .text {
  background: #B85B00;
  color: #FFF;
  height: 100%;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  padding: 12px;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -ms-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  width: 100%; }

.grid-videos a:hover .text {
  background-color: #2E6EB8;
  color: #FFF; }
.grid-videos .img {
  position: relative; }
  .grid-videos .img:before {
    background: url(/site/images/icons/video.svg) no-repeat center center;
    content: "";
    height: 69px;
    margin: -34px 0 0 -34px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 69px; }
    .no-svg .grid-videos .img:before {
      background-image: url(/site/images/icons/video.png); }
.grid-videos .text {
  background: #EAF2F9;
  color: #2E6EB8;
  line-height: 1.2;
  padding: 13px 11px;
  -webkit-transition: background-color 0.3s linear, color 0.3s linear;
  -moz-transition: background-color 0.3s linear, color 0.3s linear;
  -ms-transition: background-color 0.3s linear, color 0.3s linear;
  -o-transition: background-color 0.3s linear, color 0.3s linear;
  transition: background-color 0.3s linear, color 0.3s linear;
  min-height: 60px; }

@media (min-width: 768px) {
  .grid-team {
    margin-left: -8px;
    margin-right: -8px; }
    .grid-team .team-member {
      float: left;
      padding-left: 8px;
      padding-right: 8px;
      width: 50%; }
      .grid-team .team-member:nth-child(n) {
        clear: none; }
      .grid-team .team-member:nth-child(2n+1) {
        clear: left; } }
@media (min-width: 960px) {
  .grid-team {
    margin-left: -8px;
    margin-right: -8px; }
    .grid-team .team-member {
      float: left;
      padding-left: 8px;
      padding-right: 8px;
      width: 33.3333333333%; }
      .grid-team .team-member:nth-child(n) {
        clear: none; }
      .grid-team .team-member:nth-child(3n+1) {
        clear: left; } }
.grid-team a {
  display: block; }
.grid-team .text,
.grid-team .links {
  padding: 12px; }
.grid-team .name,
.grid-team .job {
  line-height: 1.2; }
.grid-team .team-member {
  margin-bottom: 16px; }
.grid-team .text {
  background: #2E6EB8;
  color: #FFF; }
.grid-team .job {
  color: #EAF2F9;
  margin-bottom: 10px; }
.grid-team .links {
  background: white;
  background: rgba(46, 110, 184, 0.25); }
  .grid-team .links a {
    display: block;
    line-height: 1.2;
    margin-bottom: 8px;
    text-transform: none;
    word-wrap: break-word; }
    .grid-team .links a:last-child {
      margin-bottom: 0; }
.grid-team .linkedin {
  background: url(/site/images/icons/linkedin.svg) no-repeat;
  float: left;
  height: 26px;
  margin-right: 9px;
  margin-top: 4px;
  width: 25px; }
  .no-svg .grid-team .linkedin {
    background-image: url(/site/images/icons/linkedin.png); }
  .grid-team .linkedin ~ .name,
  .grid-team .linkedin ~ .job {
    margin-left: 34px; }
.grid-team .popup {
  background: #B85B00;
  border: 5px solid #2E6EB8;
  color: #FFF;
  margin-left: -270px;
  padding: 0;
  width: 540px; }
  .grid-team .popup h2 {
    background: #2E6EB8;
    margin-bottom: 0;
    padding: 9px 16px; }
  .grid-team .popup a {
    text-transform: none; }
  .grid-team .popup img {
    margin-bottom: 12px; }
  .grid-team .popup .col {
    float: left;
    padding: 16px;
    width: 50%; }
  .grid-team .popup .job {
    line-height: 26px; }
  .grid-team .popup .linkedin {
    margin-top: 0; }

/* Grids */
/*
	=======
	Filters
	=======
*/
.filter {
  margin-bottom: 16px;
  text-align: right; }
  .filter > .niceselect-wrapper,
  .filter > select {
    display: inline-block;
    text-align: left;
    width: 220px; }

/* Filters */
/*
	=========
	Downloads
	=========
*/
.downloads section {
  margin-bottom: 24px; }
.downloads .lnk-all {
  margin-right: 34px;
  margin-right: 2.2666666667em; }

.documents {
  display: table;
  margin-bottom: 8px;
  width: 100%; }
  .documents li {
    display: table-row;
    -webkit-transition: background-color 0.3s linear, color 0.3s linear;
    -moz-transition: background-color 0.3s linear, color 0.3s linear;
    -ms-transition: background-color 0.3s linear, color 0.3s linear;
    -o-transition: background-color 0.3s linear, color 0.3s linear;
    transition: background-color 0.3s linear, color 0.3s linear; }
    .documents li:hover {
      background: #2E6EB8; }
      .documents li:hover,
      .documents li:hover time {
        color: #FFF; }
      .documents li:hover .lnk-arrow, .documents li:hover .lnk-arrow-highlight, .documents li:hover .lnk-arrow-white, .documents li:hover .lnk-email, .documents li:hover .lnk-email-alt, .documents li:hover .lnk-email-white, .documents li:hover .lnk-twitter {
        background-image: url(/site/images/icons/white/roundal-arrow.svg);
        color: #FFF; }
        .documents li:hover .lnk-arrow .no-svg, .documents li:hover .lnk-arrow-highlight .no-svg, .documents li:hover .lnk-arrow-white .no-svg, .documents li:hover .lnk-email .no-svg, .documents li:hover .lnk-email-alt .no-svg, .documents li:hover .lnk-email-white .no-svg, .documents li:hover .lnk-twitter .no-svg {
          background-image: url(/site/images/icons/white/roundal-arrow.png); }
  .documents h3 {
    font-size: 1.3333333333em;
    margin-bottom: 0; }
  .documents time {
    color: #2E6EB8;
    font-family: "function_pro_demi", sans-serif;
    -webkit-transition: color 0.3s linear;
    -moz-transition: color 0.3s linear;
    -ms-transition: color 0.3s linear;
    -o-transition: color 0.3s linear;
    transition: color 0.3s linear; }
  .documents .cell {
    border-bottom: 3px solid #2E6EB8;
    display: table-cell;
    padding: 3px 2px;
    vertical-align: middle; }
    .documents .cell:last-child {
      text-align: right; }

/* Downloads */
/*
	=====
	Diary
	=====
*/
.listing-diary {
  border-top: 3px solid #2E6EB8;
  margin-bottom: 30px; }
  .listing-diary li {
    border-bottom: 3px solid #2E6EB8; }
  .listing-diary time {
    color: #B85B00;
    float: left;
    font-family: "function_pro_demi", sans-serif;
    line-height: 2.2857142857;
    text-indent: 5px; }
  .listing-diary h3 {
    cursor: pointer;
    font-size: 1.3333333333em;
    line-height: 1.6;
    margin-bottom: 0;
    margin-left: 100px; }
  .listing-diary .details {
    height: 0;
    overflow: hidden;
    position: relative;
    -webkit-transition: height 0.3s linear;
    -moz-transition: height 0.3s linear;
    -ms-transition: height 0.3s linear;
    -o-transition: height 0.3s linear;
    transition: height 0.3s linear; }
  .listing-diary .inner {
    background: url(/site/images/icons/folder.svg) no-repeat 7px 8px;
    background-size: 40px 32px;
    padding: 8px 0 1px 100px;
    position: relative; }
    .no-svg .listing-diary .inner {
      background-image: url(/site/images/icons/folder.png); }
  .listing-diary .label {
    color: #B85B00;
    font-family: "function_pro_demi", sans-serif; }
  .listing-diary .close {
    background: transparent;
    border-color: transparent transparent #2E6EB8;
    border-style: solid;
    border-width: 0 11px 11px;
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -11px; }

.diary-blocks {
  margin-bottom: 30px; }

.representation ul {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  -ms-column-count: 2;
  -o-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  -ms-column-gap: 10px;
  -o-column-gap: 10px;
  column-gap: 10px; }
.representation li {
  margin-bottom: 12px; }
.representation .text {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  -ms-column-count: 2;
  -o-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  -ms-column-gap: 10px;
  -o-column-gap: 10px;
  column-gap: 10px; }

@media (min-width: 768px) {
  .diary-content .video-wrapper {
    float: left;
    padding-right: 6px;
    width: 50%; } }
@media (min-width: 768px) {
  .diary-content .video-wrapper + .content {
    margin-left: 50%;
    padding-left: 6px; } }
.diary-content .links {
  border-top: 1px solid #EAF2F9;
  padding-top: 12px; }
  .diary-content .links a {
    margin-bottom: 8px; }
  @media (min-width: 768px) {
    .diary-content .links .col {
      float: left; } }
  @media (min-width: 768px) {
    .diary-content .links .col:first-child {
      width: 45%; } }
  @media (min-width: 768px) {
    .diary-content .links .col:last-child {
      width: 55%; } }

/* Diary */
/*
	=============
	Alert Message
	=============
*/
.alert-message {
  background: #B85B00;
  color: #FFF;
  line-height: 1.2;
  margin: 0 -12px 30px;
  padding: 8px 12px;
  -webkit-transition: background-color 0.3s linear;
  -moz-transition: background-color 0.3s linear;
  -ms-transition: background-color 0.3s linear;
  -o-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear; }
  @media (min-width: 768px) {
    .alert-message {
      margin: 0 -24px 30px;
      padding: 12px 24px; } }
  .alert-message:hover {
    background-color: #2E6EB8; }
  .alert-message a {
    float: right;
    margin-top: 15px; }
  .alert-message .text {
    font-family: "function_pro_demi", sans-serif;
    font-size: 1.3333333333em;
    margin-right: 160px; }

/* Alert Message */
/*
	=====
	Balls
	=====
*/
.balls {
  margin-left: -6px;
  margin-right: -6px;
  text-align: center; }
  .balls,
  .balls a {
    color: #FFF; }
  .balls img {
    max-height: 30px;
    vertical-align: middle;
    width: auto; }
    @media (min-width: 768px) {
      .balls img {
        max-height: none;
        vertical-align: text-bottom;
        width: auto; } }
  .balls .ball {
    display: inline-block;
    padding-left: 6px;
    padding-right: 6px;
    width: 50%; }
    @media (min-width: 768px) {
      .balls .ball {
        width: 25%; } }
    .balls .ball:nth-child(2n) .inner {
      background-color: #B85B00; }
  .balls .inner {
    background: #2E6EB8;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    display: block;
    padding-bottom: 100%;
    position: relative; }
  .balls .ball-content {
    padding-top: 13px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
    @media (min-width: 768px) {
      .balls .ball-content {
        padding-top: 26px; } }
  .balls .top {
    font-family: "function_pro_bookbold", sans-serif;
    font-size: 1.3333333333em;
    height: 2.5em;
    line-height: 2.5;
    margin-bottom: 4px; }
    @media (min-width: 768px) {
      .balls .top {
        font-size: 3.3333333333em;
        height: 1.6em;
        line-height: 1.6; } }

/* Balls */
/*
	==========
	Info Balls
	==========
*/
.info-balls {
  clear: both;
  margin-bottom: 24px;
  text-align: center; }
  .info-balls img {
    vertical-align: top; }
  .info-balls .ball {
    display: inline-block;
    min-width: 160px;
    max-width: 200px;
    width: 48%; }
    @media (min-width: 900px) {
      .info-balls .ball {
        width: 33%; } }
    @media (min-width: 960px) {
      .info-balls .ball {
        width: 24%; } }
    .info-balls .ball:nth-child(2n) .inner {
      background-color: #B85B00; }
  .info-balls .inner {
    background: #2E6EB8;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    padding-bottom: 100%;
    position: relative; }
    .info-balls .inner,
    .info-balls .inner a {
      color: #FFF;
      text-decoration: none; }
      .info-balls .inner:hover,
      .info-balls .inner a:hover {
        text-decoration: underline; }
  .info-balls .inner-content {
    padding: 30px 10px 10px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .info-balls .top {
    font-family: "function_pro_bookbold", sans-serif;
    font-size: 3.3333333333em;
    line-height: 1.2; }

/* Info Balls */
/*
	=======
	Contact
	=======
*/
.contact-process {
  margin-left: auto;
  margin-right: auto;
  max-width: 402px; }
  .contact-process .niceselect-wrapper {
    line-height: 2.1333333333; }
  .contact-process .niceselect-text {
    color: #2E6EB8; }

.contacts .inner {
  background: #B85B00;
  padding: 18px 12px; }
  .contacts .inner,
  .contacts .inner a {
    color: #FFF; }
  .contacts .inner :last-child {
    margin-bottom: 0; }
  .contacts .inner h3 {
    margin-bottom: 8px; }

.contact-columns {
  margin-left: -5px;
  margin-top: -5px; }
  .contact-columns .col-addr,
  .contact-columns .col-tel {
    padding-left: 5px;
    padding-right: 5px; }
    @media (min-width: 768px) {
      .contact-columns .col-addr,
      .contact-columns .col-tel {
        float: left; } }
  @media (min-width: 768px) {
    .contact-columns .col-addr {
      width: 100%; } }
  @media (min-width: 768px) {
    .contact-columns .col-tel {
      width: 50%; } }

/* Contact */
/*
	===========
	Infographic
	===========
*/
@media (min-width: 900px) {
  .ig {
    border: 2px solid #B85B00;
    border-radius: 50%;
    margin: 50px auto 130px;
    position: relative;
    text-align: center;
    width: 704px;
    height: 704px; } }
.ig .bubble {
  background-color: #B85B00;
  background-position: left center;
  color: #FFF;
  display: block;
  font-family: "GillSansW01-DisplayBold_709822", sans-serif;
  font-size: 1.2em;
  line-height: 1.2;
  height: 100px;
  padding-left: 200px;
  -webkit-transition: background-color 0.3s, left 0.3s, top 0.3s;
  -moz-transition: background-color 0.3s, left 0.3s, top 0.3s;
  -ms-transition: background-color 0.3s, left 0.3s, top 0.3s;
  -o-transition: background-color 0.3s, left 0.3s, top 0.3s;
  transition: background-color 0.3s, left 0.3s, top 0.3s;
  z-index: 30; }
  @media (min-width: 900px) {
    .ig .bubble {
      border-radius: 50%;
      padding-top: 125px;
      padding-left: 0;
      position: absolute;
      width: 206px;
      height: 206px; } }
  .ig .bubble:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle; }
  .ig .bubble:hover {
    text-decoration: none; }
  .ig .bubble:nth-child(1) {
    background-image: url(/site/images/infographic/bubble-1.svg);
    background-size: 161px 97px;
    left: -23px;
    top: 47px; }
    @media (min-width: 900px) {
      .ig .bubble:nth-child(1) {
        background-position: 14px 19px; } }
    .no-svg .ig .bubble:nth-child(1) {
      background-image: url(/site/images/infographic/bubble-1.png); }
    .ig .bubble:nth-child(1) .bubble-count {
      left: -18px;
      top: 60px; }
    .ig .bubble:nth-child(1):hover {
      background-color: #2E6EB8; }
  .ig .bubble:nth-child(2) {
    background-color: #2E6EB8;
    background-image: url(/site/images/infographic/bubble-2.svg);
    background-size: 168px 98px;
    left: 253px;
    top: -80px; }
    @media (min-width: 900px) {
      .ig .bubble:nth-child(2) {
        background-position: 15px 6px;
        padding-top: 110px; } }
    .no-svg .ig .bubble:nth-child(2) {
      background-image: url(/site/images/infographic/bubble-2.png); }
    .ig .bubble:nth-child(2) .bubble-count {
      background-color: #2E6EB8;
      left: 157px;
      top: 16px; }
    .ig .bubble:nth-child(2):hover {
      background-color: #B85B00; }
  .ig .bubble:nth-child(3) {
    background-color: #9B55A9;
    background-image: url(/site/images/infographic/bubble-3.svg);
    background-position: 55px center;
    background-size: 73px 89px;
    left: 524px;
    top: 56px; }
    @media (min-width: 900px) {
      .ig .bubble:nth-child(3) {
        background-position: center 23px; } }
    .no-svg .ig .bubble:nth-child(3) {
      background-image: url(/site/images/infographic/bubble-3.png); }
    .ig .bubble:nth-child(3) .bubble-count {
      background-color: #9B55A9;
      left: 175px;
      top: 63px; }
    .ig .bubble:nth-child(3):hover {
      background-color: #2E6EB8; }
  .ig .bubble:nth-child(4) {
    background-color: #2E6EB8;
    background-image: url(/site/images/infographic/bubble-4.svg);
    background-size: 168px 98px;
    left: 587px;
    top: 353px; }
    @media (min-width: 900px) {
      .ig .bubble:nth-child(4) {
        background-position: 0 39px;
        padding-top: 119px; } }
    .no-svg .ig .bubble:nth-child(4) {
      background-image: url(/site/images/infographic/bubble-4.png); }
    .ig .bubble:nth-child(4) .bubble-count {
      left: -25px;
      top: 95px; }
    .ig .bubble:nth-child(4):hover {
      background-color: #B85B00; }
  .ig .bubble:nth-child(5) {
    background-color: #9B55A9;
    background-image: url(/site/images/infographic/bubble-5.svg);
    background-size: 172px 98px;
    left: 394px;
    top: 587px; }
    @media (min-width: 900px) {
      .ig .bubble:nth-child(5) {
        background-position: 0 36px;
        padding-top: 134px; } }
    .no-svg .ig .bubble:nth-child(5) {
      background-image: url(/site/images/infographic/bubble-5.png); }
    .ig .bubble:nth-child(5) .bubble-count {
      background-color: #9B55A9;
      left: 182px;
      top: 78px; }
    .ig .bubble:nth-child(5):hover {
      background-color: #B85B00; }
  .ig .bubble:nth-child(6) {
    background-image: url(/site/images/infographic/bubble-6.svg);
    background-size: 71px 76px;
    left: 90px;
    top: 582px; }
    @media (min-width: 900px) {
      .ig .bubble:nth-child(6) {
        background-position: center 28px;
        padding-top: 118px; } }
    .no-svg .ig .bubble:nth-child(6) {
      background-image: url(/site/images/infographic/bubble-6.png); }
    .ig .bubble:nth-child(6) .bubble-count {
      left: -24px;
      top: 92px; }
    .ig .bubble:nth-child(6):hover {
      background-color: #2E6EB8; }
  .ig .bubble:nth-child(7) {
    background-color: #2E6EB8;
    background-image: url(/site/images/infographic/bubble-7.svg);
    background-size: 86px 79px;
    left: -95px;
    top: 342px; }
    @media (min-width: 900px) {
      .ig .bubble:nth-child(7) {
        background-position: center 51px;
        padding-top: 150px; } }
    .no-svg .ig .bubble:nth-child(7) {
      background-image: url(/site/images/infographic/bubble-7.png); }
    .ig .bubble:nth-child(7) .bubble-count {
      left: 172px;
      top: 49px; }
    .ig .bubble:nth-child(7):hover {
      background-color: #B85B00; }
  .ig .bubble.fade {
    z-index: 10; }
    .ig .bubble.fade,
    .ig .bubble.fade .bubble-count {
      background-color: #CCC; }
    .ig .bubble.fade:nth-child(1) {
      background-image: url(/site/images/infographic/bubble-1-grey.svg); }
      .no-svg .ig .bubble.fade:nth-child(1) {
        background-image: url(/site/images/infographic/bubble-1-grey.png); }
    .ig .bubble.fade:nth-child(2) {
      background-image: url(/site/images/infographic/bubble-2-grey.svg); }
      .no-svg .ig .bubble.fade:nth-child(2) {
        background-image: url(/site/images/infographic/bubble-2-grey.png); }
    .ig .bubble.fade:nth-child(5) {
      background-image: url(/site/images/infographic/bubble-5-grey.svg); }
      .no-svg .ig .bubble.fade:nth-child(5) {
        background-image: url(/site/images/infographic/bubble-5-grey.png); }
  .ig .bubble.active:nth-child(1) {
    top: 5px;
    left: -62px; }
  .ig .bubble.active:nth-child(2) {
    top: -143px;
    left: 253px; }
  .ig .bubble.active:nth-child(3) {
    top: 20px;
    left: 564px; }
  .ig .bubble.active:nth-child(4) {
    top: 351px;
    left: 636px; }
  .ig .bubble.active:nth-child(5) {
    top: 605px;
    left: 415px; }
  .ig .bubble.active:nth-child(6) {
    top: 600px;
    left: 68px; }
  .ig .bubble.active:nth-child(7) {
    top: 335px;
    left: -144px; }
  .ig .bubble span {
    display: inline-block;
    vertical-align: middle; }
.ig .bubble-count {
  background-color: #B85B00;
  border: 2px solid #FFF;
  border-radius: 50%;
  display: none;
  font-family: "function_pro_demi", sans-serif;
  font-size: 1.4444444444em;
  line-height: 46px;
  position: absolute;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 50px;
  height: 50px; }
  @media (min-width: 900px) {
    .ig .bubble-count {
      display: block; } }
.ig .bubble-content {
  background-color: #B85B00;
  background-image: url(/site/images/infographic/key.svg);
  background-position: center 26px;
  background-size: 48px 60px;
  border: 1px solid #2E6EB8;
  color: #FFF;
  font-family: "GillSansW01-DisplayBold_709822", sans-serif;
  font-size: 1.0666666667em;
  opacity: 0;
  padding: 15px;
  top: 50%;
  left: 50%;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 20; }
  @media (min-width: 900px) {
    .ig .bubble-content {
      border-radius: 50%;
      margin: -308px 0 0 -308px;
      width: 616px;
      height: 616px;
      padding: 84px;
      position: absolute; } }
  .no-svg .ig .bubble-content {
    background-image: url(/site/images/infographic/key.png); }
  .ig .bubble-content,
  .ig .bubble-content a {
    color: #FFF; }
  .ig .bubble-content.show {
    opacity: 1; }
  .ig .bubble-content.hide {
    display: none; }
  .ig .bubble-content a {
    text-decoration: underline; }
  .ig .bubble-content .title {
    color: #C9A2CD;
    font-family: "function_pro_demi", sans-serif;
    font-size: 3.125em;
    margin-bottom: 16px; }
.ig .bubble-close {
  font-family: "Gill Sans W01 Medium", sans-serif;
  left: 0;
  position: absolute;
  text-align: center;
  bottom: 20px;
  width: 100%; }
  .ig .bubble-close button {
    background-color: transparent;
    background-image: none;
    border: none;
    color: #FFF;
    padding: 0; }
.ig .video-wrapper {
  background-image: url(/site/images/ajax-loader.gif);
  background-position: center center;
  border-radius: 15px;
  margin: 15px auto;
  overflow: hidden;
  position: relative;
  width: 340px;
  z-index: 10; }
  @media (min-width: 900px) {
    .ig .video-wrapper {
      margin: 254px auto 0; } }
  .ig .video-wrapper .video {
    margin-bottom: 0; }
  .ig .video-wrapper .c1,
  .ig .video-wrapper .c2,
  .ig .video-wrapper .c3,
  .ig .video-wrapper .c4 {
    background-image: url(/site/images/background/video-corners.png);
    height: 15px;
    width: 15px;
    pointer-events: none;
    position: absolute;
    z-index: 100; }
  .ig .video-wrapper .c1 {
    background-position: 0 0;
    top: 0;
    left: 0; }
  .ig .video-wrapper .c2 {
    background-position: -15px 0;
    top: 0;
    right: 0; }
  .ig .video-wrapper .c3 {
    background-position: 0 -15px;
    bottom: 0;
    left: 0; }
  .ig .video-wrapper .c4 {
    background-position: -15px -15px;
    bottom: 0;
    right: 0; }

/* Infographic */
/*
	======
	Crime plan
	======
*/
.crime-plan a {
  color: #484749; }
.crime-plan .tabs-links {
  margin-bottom: 0; }
  .crime-plan .tabs-links a {
    background-color: #484749;
    color: #FFF;
    border: 0;
    font-size: 1.2em; }
    @media (max-width: 999px) {
      .crime-plan .tabs-links a {
        font-size: 0.9333333333em; } }
    .crime-plan .tabs-links a:hover {
      background: #1D817A;
      color: #fff; }
  .crime-plan .tabs-links .active {
    background-color: #1D817A;
    position: relative;
    color: #fff; }
    .crime-plan .tabs-links .active:after {
      content: '';
      position: absolute;
      bottom: -13px;
      left: 50%;
      margin-left: -5px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 10px 5px 0 5px;
      border-color: #1D817A transparent transparent transparent;
      z-index: 10; }
.crime-plan .tabs-pane {
  border: 0;
  border-top: 3px solid #1D817A; }
  .crime-plan .tabs-pane .inner {
    color: #484749;
    margin-top: 1px;
    padding-top: 0; }
.crime-plan h2 {
  color: #1D817A;
  margin: 0;
  padding: 30px 0;
  font-size: 2.6666666667em;
  text-transform: uppercase; }
.crime-plan h3 {
  font-size: 1.6em;
  font-family: "Gill Sans W01 Light", sans-serif; }
.crime-plan .intro {
  background: #5E7F2E;
  margin: 0;
  padding: 15px;
  color: #fff;
  font-size: 1.0666666667em;
  font-weight: bold; }
  .crime-plan .intro.left {
    margin: 0 3%;
    width: 47%; }
.crime-plan .tv-content {
  margin: 0 3%;
  width: 41%; }
  .crime-plan .tv-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.2em;
    text-transform: uppercase; }
  .crime-plan .tv-content p {
    font-size: 0.9333333333em; }
.crime-plan .roundels {
  background: url(/site/images/crimeplan/roundel-bg.png) no-repeat center top;
  margin: 30px 0 10px 0;
  padding: 0 40px;
  width: 68%; }
  @media (max-width: 999px) {
    .crime-plan .roundels {
      width: 100%; } }
  .crime-plan .roundels .roundel {
    background: #1D817A;
    border: 1px solid #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 105px 10px;
    padding: 0 22px;
    height: 160px;
    width: 160px;
    color: #fff;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    vertical-align: top; }
    .crime-plan .roundels .roundel .container {
      background: 0;
      position: relative;
      top: 50%;
      transform: translateY(-50%); }
      .lt-ie9 .crime-plan .roundels .roundel .container {
        top: 20px; }
    .crime-plan .roundels .roundel img {
      display: block;
      margin: 5px auto; }
    .crime-plan .roundels .roundel .large {
      display: block;
      font-size: 2.6666666667em; }
.crime-plan .tv-map {
  margin: 20px auto; }
  @media (min-width: 1000px) {
    .crime-plan .tv-map {
      float: left;
      margin: 50px 0 0 20px; } }
.crime-plan .read-plan p {
  background: #1D817A;
  margin: 50px 0;
  padding: 0 30px;
  height: 150px;
  width: 41.5625%;
  color: #fff; }
  @media (max-width: 999px) {
    .crime-plan .read-plan p {
      margin: 0;
      height: 210px; } }
  .crime-plan .read-plan p span {
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%); }
    .lt-ie9 .crime-plan .read-plan p span {
      top: 30px; }
.crime-plan .read-plan .image {
  background: #1D817A;
  padding: 3px;
  width: 16.875%;
  color: #fff;
  text-decoration: none; }
  .crime-plan .read-plan .image span {
    background: url(/site/images/icons/white/roundal-arrow.svg) no-repeat 10px center/15px 16px;
    display: block;
    padding: 8px 5px 5px 22px;
    font-size: 0.8em;
    font-weight: bold; }
    .no-svg .crime-plan .read-plan .image span {
      background: url(/site/images/icons/white/roundal-arrow.png) no-repeat 10px center; }
  .crime-plan .read-plan .image:hover span {
    color: #fff;
    text-decoration: underline; }
.crime-plan .read-plan.left-aligned {
  background: #1D817A;
  color: #fff;
  text-align: left; }
  .crime-plan .read-plan.left-aligned .image {
    margin: 0 30px 0 0;
    width: auto;
    text-align: center; }
  .crime-plan .read-plan.left-aligned h3 {
    margin-top: 60px;
    font-size: 1.3333333333em; }
    @media (max-width: 959px) {
      .crime-plan .read-plan.left-aligned h3 {
        margin-top: 20px; } }
  .crime-plan .read-plan.left-aligned ul {
    padding-left: 1em;
    overflow: hidden; }
.crime-plan .hero {
  background: url(/site/images/crimeplan/banner-bg.jpg) no-repeat right bottom;
  margin: 0 0 10px 0;
  padding: 25px 0 0 56%;
  min-height: 345px;
  width: 100%;
  color: #1D817A; }
  @media (max-width: 999px) {
    .crime-plan .hero {
      padding-left: 50%; } }
  @media (max-width: 869px) {
    .crime-plan .hero {
      padding-left: 42%; } }
  .crime-plan .hero ul li {
    margin: 0 0 0.5em 0;
    font-weight: bold; }
.crime-plan .subtabs {
  margin: 0 0 -1px 0; }
.crime-plan .subtabs-links {
  text-transform: none; }
  .crime-plan .subtabs-links li {
    width: 20%; }
  .crime-plan .subtabs-links a {
    background: #484749;
    border: 0;
    font-size: 1.0666666667em; }
    @media (max-width: 999px) {
      .crime-plan .subtabs-links a {
        padding-top: 3px;
        padding-bottom: 3px;
        font-size: 0.9333333333em; } }
    .crime-plan .subtabs-links a:after {
      display: none; }
.crime-plan .subtabs-pane {
  border: 0;
  margin: 0 0 30px 0; }
  .crime-plan .subtabs-pane .inner {
    background: #c6dda1;
    padding: 0;
    overflow: hidden; }
  .crime-plan .subtabs-pane .left {
    background: #1D817A;
    margin: 0 0 -9969px 0;
    padding: 30px 30px 9999px 30px;
    width: 45%;
    color: #fff;
    text-align: left; }
  .crime-plan .subtabs-pane .right {
    position: relative;
    padding: 30px 30px 20px 46px;
    width: 55%;
    text-align: left; }
    .crime-plan .subtabs-pane .right:before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      margin-top: -16px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 16px 0 16px 16px;
      border-color: transparent transparent transparent #1D817A; }
    .crime-plan .subtabs-pane .right p {
      margin: 10px 0 40px 0;
      font-size: 2.2666666667em;
      line-height: 50px; }
    .crime-plan .subtabs-pane .right .large {
      font-size: 2.6666666667em; }
    .crime-plan .subtabs-pane .right .lnk-arrow, .crime-plan .subtabs-pane .right .lnk-arrow-highlight, .crime-plan .subtabs-pane .right .lnk-arrow-white, .crime-plan .subtabs-pane .right .lnk-email, .crime-plan .subtabs-pane .right .lnk-email-alt, .crime-plan .subtabs-pane .right .lnk-email-white, .crime-plan .subtabs-pane .right .lnk-twitter {
      background-image: url(/site/images/icons/highlight2/roundal-arrow.svg); }
  .crime-plan .subtabs-pane ul {
    padding-left: 1em;
    font-weight: bold; }
.crime-plan .priorities {
  margin: 0; }
  .crime-plan .priorities .slick-prev,
  .crime-plan .priorities .slick-next {
    background-repeat: no-repeat;
    background-position: left top;
    top: 123px;
    top: 50px;
    height: 30px;
    width: 17px; }
    .crime-plan .priorities .slick-prev:before,
    .crime-plan .priorities .slick-next:before {
      display: none; }
  .crime-plan .priorities .slick-next {
    background-image: url(/site/images/crimeplan/next.png);
    right: 0; }
  .crime-plan .priorities .slick-prev {
    background-image: url(/site/images/crimeplan/prev.png);
    left: 690px;
    left: 500px; }
    @media (max-width: 1049px) {
      .crime-plan .priorities .slick-prev {
        left: 52%; } }
  .crime-plan .priorities .priorities-slide-1 {
    background-color: #007CAD; }
  .crime-plan .priorities .priorities-slide-2 {
    background-color: #E90249; }
  .crime-plan .priorities .priorities-slide-3 {
    background-color: #00807E; }
  .crime-plan .priorities .priorities-slide-4 {
    background-color: #A36700; }
  .crime-plan .priorities .priorities-slide-5 {
    background-color: #4C841F; }
  .crime-plan .priorities .priorities-slide-6 {
    background-color: #fff; }
  .crime-plan .priorities .priority-banner {
    overflow: hidden;
    position: relative; }
    .crime-plan .priorities .priority-banner img {
      margin-bottom: 0; }
      @media (max-width: 1049px) {
        .crime-plan .priorities .priority-banner img {
          margin-left: -100px; } }
      @media (max-width: 959px) {
        .crime-plan .priorities .priority-banner img {
          display: none; } }
  .crime-plan .priorities .priority-title {
    color: #FFF;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    left: 0;
    padding: 20px; }
  .crime-plan .priorities .priority-content {
    background-color: #FFF;
    margin-left: 50%;
    padding-bottom: 20px;
    padding-left: 20px;
    position: relative;
    min-height: 300px; }
    .crime-plan .priorities .priority-content h3 {
      margin: 0 0 40px 0;
      color: #1D817A;
      line-height: 1; }
    .crime-plan .priorities .priority-content p,
    .crime-plan .priorities .priority-content ul {
      margin: 0 0 5px 0;
      text-align: left;
      overflow: hidden; }
    .crime-plan .priorities .priority-content ul {
      margin: 0;
      padding-left: 1em;
      color: #484749; }
      .crime-plan .priorities .priority-content ul span {
        color: #1D817A; }
  .crime-plan .priorities .priority-number {
    display: inline-block;
    font-size: 5.3333333333em;
    font-weight: bold; }
  .crime-plan .priorities .priority-success {
    background: #484749;
    padding: 20px 0;
    color: #fff; }
    .crime-plan .priorities .priority-success h2 {
      background: 0;
      padding-bottom: 10px; }
    .crime-plan .priorities .priority-success h3 {
      margin: 0 0 40px 0;
      font-family: "Gill Sans W01 Light", sans-serif; }
    .crime-plan .priorities .priority-success img {
      margin: 0; }
  .crime-plan .priorities .measurement {
    background: #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 20px 30px;
    padding: 0 32px;
    height: 220px;
    width: 220px;
    color: #484749;
    font-size: 0.8666666667em;
    line-height: 1.2;
    vertical-align: top; }
    .crime-plan .priorities .measurement .container {
      position: relative;
      top: 50%;
      transform: translateY(-50%); }
      .lt-ie9 .crime-plan .priorities .measurement .container {
        top: 20px; }
    .crime-plan .priorities .measurement img {
      display: block;
      margin: 0 auto 10px auto; }

.crime-plan-mobile {
  display: none;
  margin: 0 0 20px 0; }
  @media (max-width: 439px) {
    .crime-plan-mobile .read-plan.left-aligned {
      padding: 0 20px; }
      .crime-plan-mobile .read-plan.left-aligned .image {
        float: none;
        display: block;
        margin: 0 auto;
        width: 162px; } }

@media (max-width: 767px) {
  .crime-plan-desktop {
    display: none; }

  .crime-plan-mobile {
    display: block; } }
/* Crime plan */
/* Plan / Performance */
.plan_filter_bytime, .plan_filter_bycategory, .plan_filter_bysubcat {
  align-items: stretch;
  display: flex;
  justify-content: center;
  margin-left: -10px;
  margin-right: -10px; }
  .plan_filter_bytime li, .plan_filter_bycategory li, .plan_filter_bysubcat li {
    align-items: stretch;
    display: flex;
    padding: 10px; }

.cat-graph {
  visibility: hidden;
  display: none;
  margin: auto;
  position: relative;
  width: 100%;
  height: 160px;
  width: 176px; }
  @media (min-width: 470px) {
    .cat-graph {
      display: block;
      visibility: visible; } }
  .cat-graph + button {
    margin-top: -20px; }
  .cat-graph[data-value="0"], .cat-graph[data-value=""] {
    visibility: hidden; }
  .cat-graph:before, .cat-graph:after {
    background-size: 20px;
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    bottom: 25%;
    z-index: 10; }
  .cat-graph:before {
    background-image: url(/site/images/icons/white/nay.png);
    left: 12%; }
  .cat-graph:after {
    background-image: url(/site/images/icons/white/yay.png);
    right: 12%; }

.plan + * {
  margin-top: 20px; }

.plan_filter_bytime__active {
  background-color: #B85B00;
  color: #FFF; }

.plan_filter_bytime {
  flex-wrap: wrap; }
  .plan_filter_bytime li {
    width: 100%; }
    @media (min-width: 600px) {
      .plan_filter_bytime li {
        width: 33.3333%; } }
    @media (min-width: 768px) {
      .plan_filter_bytime li {
        width: 16.6666%; } }
  .plan_filter_bytime .button, .plan_filter_bytime .form .btn, .form .plan_filter_bytime .btn {
    display: block;
    width: 100%; }

.plan_filter_bycategory {
  flex-wrap: wrap; }
  .plan_filter_bycategory li {
    display: block;
    width: 50%; }
    @media (min-width: 768px) {
      .plan_filter_bycategory li {
        width: 33.3333%; } }
    @media (min-width: 1024px) {
      .plan_filter_bycategory li {
        width: 20%; } }
  .plan_filter_bycategory img {
    display: block;
    margin: 0 auto 10px; }
  .plan_filter_bycategory button {
    background-color: transparent;
    background-image: none;
    border: none;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    border-radius: 5px;
    color: #FFF;
    font-weight: 700;
    font-size: 1.2em;
    padding: 10px;
    position: relative;
    transition: all 0.3s;
    width: 100%; }
  .plan_filter_bycategory .plan_filter_bycategory_bg {
    background-color: #B85B00;
    border-radius: 5px;
    opacity: 0.5;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: opacity 0.3s;
    z-index: 10; }
  .plan_filter_bycategory .plan_filter_bycategory_inner {
    display: block;
    position: relative;
    z-index: 20; }
  .plan_filter_bycategory .plan_filter_bycategory__active button {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    color: #FFF; }
  .plan_filter_bycategory .plan_filter_bycategory__active .plan_filter_bycategory_bg {
    opacity: 1; }

.plan_filter_bysubcat {
  display: none; }
  .plan_filter_bysubcat.plan_filter_bysubcat__show {
    display: flex; }
  .plan_filter_bysubcat li {
    width: 14.2857%;
    min-width: 150px; }
    @media (min-width: 1024px) {
      .plan_filter_bysubcat li {
        width: 14.2857%; } }
  .plan_filter_bysubcat button {
    background-color: #B85B00;
    background-image: none;
    border: none;
    border-radius: 5px;
    color: #FFF;
    opacity: 0.5;
    padding: 10px;
    width: 100%; }
  .plan_filter_bysubcat .plan_filter_bysubcat__active button {
    opacity: 1; }
  .plan_filter_bysubcat.plan_filter_bysubcat__alwaysvisible {
    display: flex; }

.plan_articles_group {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -10px;
  margin-right: -10px; }

.plan_articles_article {
  align-items: stretch;
  display: flex;
  padding: 10px;
  width: 100%; }
  @media (min-width: 480px) {
    .plan_articles_article {
      width: 50%; } }
  @media (min-width: 1024px) {
    .plan_articles_article {
      width: 25%; } }

.plan_articles_article__outofdate {
  display: none; }

.plan_articles_article__notactive {
  opacity: 0.5; }

.plan_articles_article_inner {
  background-color: #B85B00;
  border-radius: 5px;
  color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  text-decoration: none;
  width: 100%; }
  .plan_articles_article_inner h2 {
    font-size: 1.0666666667em; }

.plan_articles_article_date {
  font-size: 0.8em;
  text-align: right; }

.plan_articles_article_content {
  display: none;
  visibility: hidden; }

.plan_articles_content {
  padding: 10px;
  width: 100%; }
  .plan_articles_content p {
    margin: 0; }
    .plan_articles_content p + p {
      margin-top: 1.4em; }
    .plan_articles_content p:last-child {
      clear: both; }
  .plan_articles_content li p:last-child {
    clear: none; }
  .plan_articles_content img {
    max-width: 50%; }
  .plan_articles_content .video-wrapper img {
    max-width: 100%; }

.plan_articles_content_inner {
  border: 1px solid #B85B00;
  border-radius: 5px;
  padding: 10px; }

.tn3-text-bg {
  display: none; }

/*# sourceMappingURL=styles.css.map */
