/*
# 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>
*/
/*
### 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)
Allows multiple comma separated values.
*/
/*
### 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;
*/
.form-item, .wrap, .columns, .site-header, .search form, .container, .content-frame, .cta-pod, .form .checkbox-list, .filters {
  *zoom: 1;
}
.form-item:before, .wrap:before, .columns:before, .site-header:before, .search form:before, .container:before, .content-frame:before, .cta-pod:before, .form .checkbox-list:before, .filters:before, .form-item:after, .wrap:after, .columns:after, .site-header:after, .search form:after, .container:after, .content-frame:after, .cta-pod:after, .form .checkbox-list:after, .filters:after {
  content: "";
  display: table;
}
.form-item:after, .wrap:after, .columns:after, .site-header:after, .search form:after, .container:after, .content-frame:after, .cta-pod:after, .form .checkbox-list:after, .filters:after {
  clear: both;
}

/*
### %list-reset

@extend interface for @include list-reset;
*/
.carousel-wrap .carousel, .unstyled-list {
  margin: 0;
  padding: 0;
}
.carousel-wrap .carousel > li, .unstyled-list > 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: thin dotted;
}

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)
*/
html,
button,
input,
select,
textarea {
  color: #002638;
}

body.site {
  font-family: sans-serif;
  font-size: 0.8125em;
  line-height: 1.4;
  word-wrap: break-word;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #F9A02C;
  margin: 24px 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, h2, h3, h4, h5, h6 {
  margin: 0 0 .5em;
}

p {
  margin: 0 0 1em;
}

h1,
.h1 {
  font-size: 2.46154em;
  font-weight: 700;
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 3.07692em;
  }
}

h2 {
  font-size: 1.84615em;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.30769em;
  }
}

h3 {
  font-size: 1.23077em;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.53846em;
  }
}

/*
 * Links
 */
a {
  color: #002638;
}

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

.justifyright {
  text-align: right;
}

.justifyfull {
  text-align: justify;
}

.justifycentre {
  text-align: center;
}

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

.left {
  float: left;
}

.right {
  float: right;
}

.clear {
  clear: both;
}

.full-clear {
  float: left;
  clear: both;
  width: 100%;
}

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

.cf:after {
  clear: both;
}

.three-rounded {
  border-radius: 8px 0 8px 8px;
}

.arrowed:after {
  content: ">";
  position: relative;
  top: 2px;
  padding: 0 0 0 10px;
  font: 1.4em/0.75 'Comic Sans MS', cursive;
}

.lt-ie9 .arrowed:after {
  font-size: 2em;
}

.success {
  background: #CFC;
  border: 1px solid #3C3;
  color: #090;
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 1em;
  padding: 10px;
}

.colour-white {
  color: #FFF;
}

figure {
  border-bottom: 1px dotted #F9A02C;
  margin-bottom: 10px;
  padding-bottom: 30px;
  position: relative;
}
figure figcaption {
  bottom: 0;
  color: #999;
  font-size: 0.92308em;
  font-style: italic;
  left: 0;
  line-height: 1.5;
  padding: 6px 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
figure .fig-img {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .fig-left {
    float: left;
    margin-bottom: 1em;
    margin-right: 1em;
  }
}

@media (min-width: 768px) {
  .fig-right {
    float: right;
    margin-bottom: 1em;
    margin-left: 1em;
  }
}

.button, .button-white, .btn {
  background-color: transparent;
  border: 1px solid #002638;
  color: #002638;
  display: inline-block;
  font-size: 1em;
  padding: 5px 12px;
  position: relative;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -moz-transition: background-color 0.3s, color 0.3s;
  -ms-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.button:hover, .button-white:hover, .btn:hover {
  background-color: #002638;
  color: #FFF;
}
.icon-search.button, .icon-search.button-white, .icon-search.btn {
  padding-right: 33px;
}
.icon-search.button:before, .icon-search.button-white:before, .icon-search.btn:before {
  background-image: url(/site/images/icons/highlight/search.svg);
  background-size: 17px 17px;
  content: '';
  height: 17px;
  width: 17px;
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -8.5px;
}
.icon-search.button:before .no-svg, .icon-search.button-white:before .no-svg, .icon-search.btn:before .no-svg {
  background-image: url(/site/images/icons/highlight/search.png);
}
.large.button, .large.button-white, .large.btn {
  padding: 8px 24px;
}

.button.white {
  background-color: #fff;
}
.button.white:hover {
  background-color: #002638;
}

.button-white {
  border-color: #FFF;
  color: #FFF;
}
.button-white:hover {
  background-color: #FFF;
  color: #002638;
}
.button-white.icon-search:hover:before {
  background-image: url(/site/images/icons/base/search.svg);
}
.button-white.icon-search:hover:before .no-svg {
  background-image: url(/site/images/icons/base/search.png);
}

.btn::-moz-focus-inner {
  /* Remove extra space inside buttons in Firefox */
  border: none;
  padding: 0;
}

.btn-primary {
  background: #ffa200;
  color: #fff;
}

.btn-primary:hover {
  background: #0046ac;
}

.btn-secondary {
  background: #fff;
  color: #0046ac;
}

.btn-secondary:hover {
  background: #0046ac;
  color: #fff;
}

.btn-primary.arrowed:after {
  color: #0046ac;
}

.btn-primary:hover.arrowed,
.btn-primary:hover.arrowed:after {
  color: #fff;
}

.video-embed-frame {
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}
.video-embed-frame iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.overlay {
  background: url(/site/images/black-50.png);
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  -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-box {
  background: #FFF;
  display: none;
  left: 50%;
  margin-left: -250px;
  padding: 10px;
  position: absolute;
  width: 500px;
  z-index: 101;
}

.cookie {
  height: 0;
  line-height: 30px;
  overflow: hidden;
  position: relative;
  background: #002638;
  -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 #002638;
}
.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"] {
  background-color: #fff;
  border: 1px solid #002638;
  border-radius: 0;
  padding: 5px;
  width: 100%;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -moz-transition: background-color 0.3s, color 0.3s;
  -ms-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
textarea:focus,
[type="text"]:focus,
[type="password"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="date"]:focus,
[type="month"]:focus,
[type="time"]:focus,
[type="week"]:focus,
[type="number"]:focus,
[type="email"]:focus,
[type="url"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="color"]:focus {
  background-color: #002638;
  border-color: #F9A02C;
  color: #FFF;
}

select {
  width: 100%;
}

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

:-moz-placeholder {
  color: #002638;
  opacity: 1;
}

::-moz-placeholder {
  color: #002638;
  opacity: 1;
}

::-webkit-input-placeholder {
  color: #002638;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #002638;
  opacity: 1;
}

.niceselect-wrapper {
  background-color: #FFF;
  border: 1px solid #002638;
  display: block;
  height: 2.30769em;
  line-height: 2.15385;
  overflow: hidden;
  padding: 0 30px 0 10px;
  position: relative;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -moz-transition: background-color 0.3s, color 0.3s;
  -ms-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  z-index: 1;
  /* 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 {
  background-color: #002638;
  border-color: #F9A02C;
  color: #FFF;
}
.niceselect-wrapper.focus:after, .niceselect-wrapper:hover:after {
  background-image: url(/site/images/icons/white/arrow-down.svg);
}
.no-svg .niceselect-wrapper.focus:after, .no-svg .niceselect-wrapper:hover:after {
  background-image: url(/site/images/icons/white/arrow-down.png);
}
.niceselect-wrapper:after {
  background-image: url(/site/images/icons/base/arrow-down.svg);
  content: "^";
  display: block;
  height: 11px;
  margin-top: -5.5px;
  position: absolute;
  right: 8px;
  text-indent: -99999em;
  top: 50%;
  width: 14px;
  z-index: 5;
}
.no-svg .niceselect-wrapper:after {
  background-image: url(/site/images/icons/base/arrow-down.png);
}
.niceselect-wrapper .niceselect-text {
  display: block;
}
.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;
}
.niceselect-wrapper.theme-alt {
  background-color: #F9B155;
}
.niceselect-wrapper.theme-alt:after {
  background-image: url(/site/images/icons/white/arrow-down.svg);
}
.no-svg .niceselect-wrapper.theme-alt:after {
  background-image: url(/site/images/icons/white/arrow-down.png);
}
.niceselect-wrapper.theme-base {
  background-color: #002638;
  color: #FFF;
  /* This is applied when the user tabs to focus or hovers on a nice select element */
}
.niceselect-wrapper.theme-base:after {
  background-image: url(/site/images/icons/white/arrow-down.svg);
}
.no-svg .niceselect-wrapper.theme-base:after {
  background-image: url(/site/images/icons/white/arrow-down.png);
}
.niceselect-wrapper.theme-base.focus, .niceselect-wrapper.theme-base:hover {
  background-color: #FFF;
  border-color: #002638;
  color: #002638;
}
.niceselect-wrapper.theme-base.focus:after, .niceselect-wrapper.theme-base:hover:after {
  background-image: url(/site/images/icons/base/arrow-down.svg);
}
.no-svg .niceselect-wrapper.theme-base.focus:after, .no-svg .niceselect-wrapper.theme-base:hover:after {
  background-image: url(/site/images/icons/base/arrow-down.png);
}

.form-item {
  margin-bottom: 10px;
}
.form-item label {
  display: block;
}

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

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

.alert-error, .alert-warning, .alert-success {
  border-style: solid;
  border-width: 1px;
  margin-bottom: 10px;
  padding: 10px;
}
.alert-error *, .alert-warning *, .alert-success * {
  margin: 0;
}
.alert-error * + *, .alert-warning * + *, .alert-success * + * {
  margin-top: 10px;
}

.alert-error {
  background-color: #FEE;
  border-color: #F00;
  color: #F00;
}

.alert-warning {
  background-color: #FFE;
  border-color: #C90;
  color: #C90;
}

.alert-success {
  background-color: #EFE;
  border-color: #090;
  color: #090;
}

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

.hover {
  cursor: pointer;
}

.bg-base {
  background-color: #002638;
}

.bg-highlight {
  background-color: #F9A02C;
}

.bg-white {
  background-color: #FFF;
}

.colour-base {
  color: #002638;
}

.colour-highlight {
  color: #F9A02C;
}

.colour-alt {
  color: #F9B155;
}

.colour-white {
  color: #FFF;
}

.small {
  font-size: 0.92308em;
}

.xsmall {
  font-size: 0.76923em;
}

.large {
  font-size: 1.23077em;
}

.xlarge {
  font-size: 1.38462em;
}

blockquote {
  background-image: url(/site/images/icons/base/quote.svg);
  color: #F9A02C;
  font-size: 1.23077em;
  margin: 0;
  padding: 0 0 0 60px;
}
.no-svg blockquote {
  background-image: url(/site/images/icons/base/quote.png);
}
blockquote cite {
  color: #002638;
  font-size: 0.875em;
  font-style: normal;
}

table {
  margin-bottom: 1em;
}
table td,
table th {
  border-bottom: 1px solid #FFF;
  padding: 4px 8px;
}
table td + td,
table td + th,
table th + td,
table th + th {
  border-left: 1px solid #FFF;
}
table thead td,
table thead th {
  background-color: #002638;
  color: #FFF;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}
table tbody td {
  background-color: rgba(249, 160, 44, 0.15);
}
table tbody tr:nth-child(2n) td {
  background-color: rgba(249, 160, 44, 0.25);
}

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

@media only screen and (max-width: 767px) {
  .tbl-mobile-attr tr {
    border: 1px solid #F9A02C;
    margin-bottom: 20px;
  }
  .tbl-mobile-attr td:before {
    background-color: #F9A02C;
    color: #FFF;
    content: attr(title);
    display: block;
    font-weight: 700;
  }
}

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

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

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

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

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

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

@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 {
    width: 25%;
  }
}

@media (min-width: 960px) {
  .desktop-col-4, .left-col {
    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, .main-col {
    width: 66.6666%;
  }
}

@media (min-width: 960px) {
  .desktop-col-9 {
    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 {
    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;
  }
}

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

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

.columns {
  margin-left: -10px;
  margin-right: -10px;
}
.columns [class*=mobile-col] {
  float: left;
}
@media (max-width: 767px) {
  .columns [class*=mobile-col] + .mobile-col-4 {
    margin-top: 20px;
  }
}
@media (min-width: 768px) {
  .columns [class*=tablet-col] {
    float: left;
  }
}
@media (min-width: 960px) {
  .columns [class*=desktop-col] {
    float: left;
  }
}
.columns [class*=-col-] {
  margin-top: 0;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 767px) {
  .columns .mobile-col-4 {
    clear: both;
  }
}

/**************************************************************************************************
*	Layout / global elements
**************************************************************************************************/
.site {
  background-color: #002638;
}

.wrapper {
  position: relative;
  margin: 0 5%;
}
@media (min-width: 1100px) {
  .wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
  }
}

.overlay-wrapper {
  background: url(/site/images/overlay-bg.png) repeat-x left top;
  border-radius: 15px 15px 0 0;
  margin-top: 10px;
  padding: 15px 0 0 0;
}

.site-header {
  background-color: #FFF;
  padding-top: 15px;
}

.regbtn {
  padding: 10px 0;
}

.logo {
  display: block;
  margin-bottom: 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .logo {
    float: left;
  }
}

.contact-info {
  margin-bottom: 20px;
  margin-top: 5px;
  text-align: right;
}
@media (min-width: 768px) {
  .contact-info {
    float: right;
    text-align: left;
  }
}
.contact-info .tel-number {
  color: #002638;
  display: inline-block;
  font-size: 1.69231em;
  font-weight: 700;
  line-height: 1.27273;
  margin-left: 20px;
}

.social-icon {
  background-color: #F9A02C;
  border-radius: 50%;
  float: left;
  position: relative;
  margin: 0 2px 0 0;
  height: 28px;
  -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: 28px;
}
.social-icon:hover {
  background-color: #002638;
}
.social-icon img {
  display: block;
  margin: 4px auto 0;
  width: 20px;
}

/*
	======
	Banner
	======
*/
.banner {
  background-image: url(/site/images/misc/banner.jpg);
  background-size: cover;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .banner {
    height: 570px;
  }
}
.banner ~ div {
  position: relative;
  z-index: 20;
}
.banner:after {
  background-image: url(/site/images/bg/banner.png);
  background-position: center bottom;
  background-repeat: repeat-x;
  content: '';
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.banner.home .search {
  float: none;
  margin-left: auto;
  margin-right: auto;
  margin: 0 auto;
  max-width: 518px;
  padding-top: 0;
  border-top: 1px solid #F9A02C;
}
@media (min-width: 768px) {
  .banner.home .search {
    border-top: none;
    margin-top: 150px;
    padding-top: 8px;
  }
}
.banner.home .search form,
.banner.home .search .quicksearch {
  display: block;
}
.banner.home .search form {
  padding: 7px 12px;
  width: auto;
}
.banner.home .search input {
  font-size: 2.30769em;
  height: auto;
}
.banner.home .search button {
  background-size: 31px 31px;
  width: 31px;
  height: 31px;
  margin-top: 6px;
}
.banner.home .search .quicksearch {
  padding: 14px 14px 9px;
}
.banner.content {
  margin-bottom: -290px;
  width: auto;
}
.banner.job {
  margin-bottom: -290px;
  width: auto;
}

.banner-content {
  margin: 10px auto 0;
  max-width: 720px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  z-index: 20;
}
@media (min-width: 768px) {
  .banner-content {
    margin-top: 60px;
  }
}

.banner-title {
  background-color: #002638;
  clear: left;
  color: #FFF;
  float: left;
  font-size: 2.30769em;
  margin: 25px 0 0;
  padding: 20px 25px;
  position: relative;
  z-index: 20;
}
@media (min-width: 640px) {
  .banner-title {
    margin-top: 80px;
  }
}

/* Banner */
.candidates-clients {
  color: #F9A02C;
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 768px) {
  .candidates-clients {
    padding-top: 45px;
  }
}
.candidates-clients h2 {
  color: #FFF;
}
@media (min-width: 768px) {
  .candidates-clients h2 {
    background-color: #002638;
    display: inline-block;
    line-height: 50px;
    margin-top: -120px;
    padding-left: 25px;
    padding-right: 25px;
  }
}
.candidates-clients [class*=col] {
  padding: 10px;
}
@media (min-width: 768px) {
  .candidates-clients [class*=col] {
    padding: 25px 35px 70px;
  }
}
@media (min-width: 768px) {
  .candidates-clients .tablet-col-4 {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .candidates-clients .tablet-col-4 h2 {
    float: right;
    margin-right: -27px;
  }
}
.candidates-clients .tablet-col-4 + .tablet-col-4 {
  text-align: left;
}
@media (min-width: 768px) {
  .candidates-clients .tablet-col-4 + .tablet-col-4 h2 {
    float: left;
    margin-right: 0;
    margin-left: -27px;
  }
}
@media (min-width: 768px) {
  .candidates-clients .tablet-col-4 + .tablet-col-4 {
    border-left: 1px solid #FFF;
  }
}

.vacancies-bar {
  overflow: hidden;
  padding: 10px;
  position: relative;
}
@media (min-width: 768px) {
  .vacancies-bar {
    height: 132px;
    padding: 0;
  }
}
.vacancies-bar h3 {
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.vacancies-bar p {
  margin-bottom: 0;
}
.vacancies-bar .title {
  color: #FFF;
  font-size: 1.84615em;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 15px;
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  .vacancies-bar .title {
    float: left;
    font-size: 1.38462em;
    margin-bottom: 0;
    padding: 39px 0;
    text-align: left;
    width: 180px;
  }
}
.vacancies-bar .title:before, .vacancies-bar .title:after {
  border-color: transparent;
  border-style: solid;
  border-width: 68px 0 68px 25px;
  position: absolute;
  top: -2px;
}
@media (min-width: 768px) {
  .vacancies-bar .title:before, .vacancies-bar .title:after {
    content: '';
  }
}
.vacancies-bar .title:before {
  border-left-color: #002638;
  right: 0;
}
.vacancies-bar .title:after {
  border-left-color: #F9A02C;
  right: 1px;
}
.vacancies-bar .title span {
  font-weight: 700;
}
@media (min-width: 768px) {
  .vacancies-bar .title span {
    display: block;
  }
}
.vacancies-bar .vacancies {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .vacancies-bar .vacancies {
    margin-left: 210px;
  }
}
.vacancies-bar .type {
  font-size: 0.76923em;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.vacancies-bar .slide:before {
  content: '';
  display: inline-block;
  margin-left: -4px;
  min-height: 132px;
  height: 100%;
  line-height: 100%;
  vertical-align: middle;
}
.vacancies-bar .inner {
  display: inline-block;
  text-decoration: none;
  vertical-align: middle;
}
.vacancies-bar .inner:hover h3 {
  color: #FFF;
}

/*
	===========
	Quote Block
	===========
*/
.quote-block {
  background-position: center 45px;
  padding: 45px 10px;
  position: relative;
}
@media (min-width: 768px) {
  .quote-block {
    background-image: url(/site/images/icons/quoteblock-top.gif);
    padding-bottom: 115px;
    padding-top: 115px;
  }
}
.quote-block:after {
  background-color: #fff;
  bottom: 0;
  width: 1px;
  content: '';
  height: 45px;
  position: absolute;
  left: 50%;
}
@media (min-width: 768px) {
  .quote-block:after {
    height: 115px;
  }
}
.quote-block blockquote {
  border: 1px solid #FFF;
  color: #FFF;
  margin: 0;
  padding: 35px 35px 15px;
  text-align: center;
}
.quote-block blockquote p {
  font-size: 1.23077em;
}
@media (min-width: 768px) {
  .quote-block blockquote p {
    font-size: 1.53846em;
  }
}
.quote-block cite {
  color: #F9A02C;
  font-style: normal;
}

/* Quote Block */
/*
	===========
	Site Footer
	===========
*/
.site-footer {
  padding-bottom: 15px;
  padding-top: 15px;
}
.site-footer a {
  color: #002638;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

/* Site Footer */
/*
	=============
	Contact Icons
	=============
*/
[class^="contact-icon-"] {
  background-position: left center;
  display: block;
  padding-left: 32px;
  text-decoration: none;
}
[class^="contact-icon-"] + [class^="contact-icon-"] {
  margin-top: 10px;
}
[class^="contact-icon-"][href] {
  color: #F9A02C;
}
[class^="contact-icon-"][href]:hover {
  text-decoration: underline;
}

.contact-icon-telephone {
  background-image: url(/site/images/icons/highlight/phone.svg);
}
.no-svg .contact-icon-telephone {
  background-image: url(/site/images/icons/highlight/phone.png);
}

.contact-icon-fax {
  background-image: url(/site/images/icons/highlight/fax.svg);
}
.no-svg .contact-icon-fax {
  background-image: url(/site/images/icons/highlight/fax.png);
}

.contact-icon-email {
  background-image: url(/site/images/icons/highlight/email.svg);
}
.no-svg .contact-icon-email {
  background-image: url(/site/images/icons/highlight/email.png);
}

.contact-icon-address {
  background-image: url(/site/images/icons/highlight/address.svg);
  background-position: left top;
}
.no-svg .contact-icon-address {
  background-image: url(/site/images/icons/highlight/address.png);
}

/* Contact Icons */
.show-on-hover {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.show-on-hover:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.search {
  float: right;
  padding-top: 8px;
  position: relative;
  z-index: 20;
}
.search form,
.search .quicksearch {
  display: block;
  vertical-align: top;
}
@media (min-width: 1024px) {
  .search form,
  .search .quicksearch {
    display: inline-block;
  }
}
.search form {
  background: #FFF;
  padding: 4px 10px;
  -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: 100%;
}
@media (min-width: 1024px) {
  .search form {
    width: 250px;
  }
}
.search form.focus {
  background-color: #002638;
}
.search form.focus :-moz-placeholder {
  color: #FFF;
}
.search form.focus ::-moz-placeholder {
  color: #FFF;
}
.search form.focus ::-webkit-input-placeholder {
  color: #FFF;
}
.search form.focus :-ms-input-placeholder {
  color: #FFF;
}
.search form.focus input {
  color: #FFF;
}
.search form.focus button {
  background-image: url(/site/images/icons/white/search.svg);
}
.no-svg .search form.focus button {
  background-image: url(/site/images/icons/white/search.png);
}
.search button {
  background-color: transparent;
  background-image: url(/site/images/icons/highlight/search.svg);
  background-size: 19px 19px;
  border: none;
  float: right;
  height: 19px;
  width: 19px;
  margin-top: 6px;
  padding: 0;
}
.no-svg .search button {
  background-image: url(/site/images/icons/highlight/search.png);
}
.search input {
  background-color: transparent;
  border: none;
  color: #002638;
  display: block;
  font-size: 1.53846em;
  line-height: 1;
  height: 30px;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  width: 100%;
}
.search input:hover {
  background-color: transparent;
}
.search :-moz-placeholder {
  color: #002638;
  opacity: 1;
}
.search ::-moz-placeholder {
  color: #002638;
  opacity: 1;
}
.search ::-webkit-input-placeholder {
  color: #002638;
  opacity: 1;
}
.search :-ms-input-placeholder {
  color: #002638;
  opacity: 1;
}
.search .field {
  margin-right: 36px;
}
.search .quicksearch {
  background-color: rgba(249, 160, 44, 0.8);
  padding: 5px 5px 0;
  text-align: center;
}
.search .quicksearch a {
  border: 1px solid #FFF;
  color: #FFF;
  display: inline-block;
  margin-bottom: 5px;
  padding: 4px 18px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s;
  -moz-transition: background-color 0.3s, color 0.3s;
  -ms-transition: background-color 0.3s, color 0.3s;
  -o-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
}
.search .quicksearch a:hover {
  background-color: #FFF;
  color: #F9A02C;
}

#site-search {
  background: url(/site/images/icons/search.gif) no-repeat 6px 6px;
  border: 0;
  padding: 5px 0 5px 40px;
  height: 21px;
  width: 55%;
  color: #0046ac;
  font: bold 1.6em/1.5 Tahoma, Arial, Helvetica, sans-serif;
}

.container {
  background-color: #002638;
  padding: 0 15px 15px;
}

.side-panel {
  padding-top: 20px;
}
@media (min-width: 768px) {
  .side-panel {
    float: left;
    padding-right: 15px;
    width: 30%;
  }
}
@media (min-width: 1024px) {
  .side-panel {
    padding-right: 35px;
    width: 27.1795%;
  }
}

.main-col {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .main-col {
    float: right;
    width: 70%;
  }
}
@media (min-width: 1024px) {
  .main-col {
    width: 72.8205%;
  }
}
.main-col > .h1 {
  margin-bottom: 30px;
}

.content-frame {
  background-color: #FFF;
  padding: 45px 15px 15px;
  position: relative;
}
@media (min-width: 768px) {
  .content-frame {
    padding: 65px 30px 30px;
  }
}
.content-frame:before {
  border-color: #002638 transparent;
  border-style: solid;
  border-width: 25px 25px 0;
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -25px;
}

.content-block img {
  margin: 0 20px 0 0;
}

.content-block .left img {
  margin-bottom: 10px;
}

.content-block h3 span {
  display: block;
  color: #ffa200;
  font-size: 0.6em;
  font-weight: normal;
}

.content-block .summary p {
  font-size: 1.4em;
}

.content-block-text {
  overflow: hidden;
}

.content-block-text h2 {
  margin: 0.25em 0 0.5em 0;
}

.form-newsletter {
  padding: 35px 0;
}
.form-newsletter :-moz-placeholder {
  color: #FFF;
  opacity: 1;
}
.form-newsletter ::-moz-placeholder {
  color: #FFF;
  opacity: 1;
}
.form-newsletter ::-webkit-input-placeholder {
  color: #FFF;
  opacity: 1;
}
.form-newsletter :-ms-input-placeholder {
  color: #FFF;
  opacity: 1;
}
.form-newsletter h2 {
  font-size: 1.38462em;
}
.form-newsletter fieldset {
  background-color: #002638;
  border: 1px solid #002638;
  margin-left: auto;
  margin-right: auto;
  max-width: 308px;
  padding: 2px 9px;
  -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;
}
.form-newsletter input {
  background-color: transparent;
  border: none;
  color: #FFF;
}
.form-newsletter button {
  background-color: transparent;
  background-image: url(/site/images/icons/white/arrow-right.svg);
  background-size: 12px 15px;
  border: none;
  border-radius: 0;
  float: right;
  height: 15px;
  width: 12px;
  margin-top: 5px;
}
.no-svg .form-newsletter button {
  background-image: url(/site/images/icons/white/arrow-right.png);
}
.form-newsletter .field {
  margin-right: 21px;
}
.form-newsletter .error {
  color: #F00;
}
.form-newsletter.focus :-moz-placeholder {
  color: #002638;
}
.form-newsletter.focus ::-moz-placeholder {
  color: #002638;
}
.form-newsletter.focus ::-webkit-input-placeholder {
  color: #002638;
}
.form-newsletter.focus :-ms-input-placeholder {
  color: #002638;
}
.form-newsletter.focus fieldset {
  background-color: #FFF;
}
.form-newsletter.focus input {
  background-color: transparent;
  color: #002638;
}
.form-newsletter.focus button {
  background-image: url(/site/images/icons/base/arrow-right.svg);
}
.no-svg .form-newsletter.focus button {
  background-image: url(/site/images/icons/base/arrow-right.png);
}

/**************************************************************************************************
*	Navigation
**************************************************************************************************/
@media (min-width: 768px) {
  .nav-main {
    clear: right;
    float: right;
    font-size: 1.38462em;
  }
}
.nav-main ul {
  display: none;
}
@media (min-width: 768px) {
  .nav-main ul {
    display: block;
  }
}
.nav-main li {
  position: relative;
}
@media (min-width: 768px) {
  .nav-main li {
    float: left;
  }
}
.nav-main li:after {
  background-color: transparent;
  bottom: 0;
  content: '';
  height: 5px;
  left: -1px;
  right: -1px;
  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;
}
.nav-main li + li {
  border-top: 1px solid rgba(0, 38, 56, 0.15);
}
@media (min-width: 768px) {
  .nav-main li + li {
    border-left: 1px solid rgba(0, 38, 56, 0.15);
    border-top: none;
  }
}
.nav-main li a {
  color: #002638;
  display: block;
  padding: 10px 15px;
  line-height: normal;
}
@media (min-width: 768px) {
  .nav-main li a {
    line-height: 52px;
    padding-bottom: 0;
    padding-top: 0;
  }
}
.nav-main li.active, .nav-main li:hover {
  z-index: 20;
}
.nav-main li.active:after, .nav-main li:hover:after {
  background-color: #F9A02C;
}
.nav-main li.active a, .nav-main li:hover a {
  color: #F9A02C;
}

#toggle-nav {
  background-color: #002638;
  background-image: url(/site/images/navicon.svg);
  background-position: 10px center;
  color: #FFF;
  display: block;
  padding: 5px 35px;
  text-align: center;
}
@media (min-width: 768px) {
  #toggle-nav {
    display: none;
  }
}

.nav-secondary {
  margin: 0 0 25px 0;
}
.nav-secondary h2 {
  border-bottom: 1px solid #F9A02C;
  color: #F9A02C;
  font-size: 1.38462em;
  font-weight: 500;
  margin: 0;
  padding: 6px 0;
}
.nav-secondary h2 a {
  color: #F9A02C;
}
.nav-secondary a {
  display: block;
  padding: 6px 0;
  color: #FFF;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.nav-secondary li {
  border-bottom: 1px solid #778792;
  -webkit-transition: border-bottom-color 0.3s;
  -moz-transition: border-bottom-color 0.3s;
  -ms-transition: border-bottom-color 0.3s;
  -o-transition: border-bottom-color 0.3s;
  transition: border-bottom-color 0.3s;
}
.nav-secondary li:hover, .nav-secondary li.active {
  border-bottom-color: #F9A02C;
}
.nav-secondary li:hover a, .nav-secondary li.active a {
  color: #F9A02C;
}

.nav-secondary-select {
  display: none;
}

/*
	==========
	Breadcrumb
	==========
*/
.breadcrumb {
  background-color: #FFF;
  color: #F9A02C;
  float: left;
  font-size: 0.84615em;
  margin: 0;
  padding: 8px;
  position: relative;
  z-index: 20;
}
.breadcrumb a {
  background-image: url(/site/images/icons/breadcrumb.svg);
  background-position: right center;
  background-size: 7px 11px;
  color: #002638;
  margin-right: 2px;
  padding-right: 8px;
}
.breadcrumb a .no-svg {
  background-image: url(/site/images/icons/breadcrumb.png);
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* Breadcrumb */
/**************************************************************************************************
*	CTAs
**************************************************************************************************/
.cta-pod + .cta-pod {
  margin-top: 20px;
}
.cta-pod h2 {
  color: #fff;
  font-size: 1.53846em;
  text-transform: uppercase;
}
.cta-pod h2 a {
  color: #fff;
  text-decoration: none;
}
.cta-pod p {
  color: #F9A02C;
  line-height: 1.2;
}
.cta-pod .strapline {
  font-size: 1.38462em;
  margin: 0 0 0.5em 0;
}
.cta-pod .pod-inner {
  padding: 12px;
}

.cta-register {
  background-image: url(/site/images/icons/white/register.png);
  background-position: center 0;
  background-size: 61px 47px;
  padding-top: 60px;
}
@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) {
  .cta-register {
    background-image: url(/site/images/icons/white/register@2x.png);
  }
}

.pod-primary {
  border: 1px solid #FFF;
}
.pod-primary .strapline {
  color: #FFF;
}

.pod-secondary {
  background: #333;
}

.pod-secondary .strapline {
  color: #ffa200;
}

.pod-secondary .btn-secondary:hover {
  background: #ffa200;
}

/* User */
/**************************************************************************************************
*	Homepage
**************************************************************************************************/
.carousel-container {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  height: 400px;
  width: 100%;
  overflow: hidden;
}

.carousel {
  font-size: 1em;
  margin: 0;
  position: relative;
}

.carousel:after {
  clear: both;
  content: "";
  display: table;
}

.carousel li {
  background-position: center top;
  background-repeat: no-repeat;
  float: left;
  height: 400px;
  position: relative;
}

.carousel-box {
  background: #ffa200;
  border-radius: 12px 12px 12px 0;
  position: absolute;
  top: 170px;
  left: 56%;
  padding: 10px 15px;
  width: 410px;
}

@media (min-width: 1170px) {
  .carousel-box {
    left: 50%;
    margin-left: 100px;
  }
}
.carousel-box:after {
  content: '';
  background: url(/site/images/carousel-box-shadow.png) no-repeat left top;
  position: absolute;
  bottom: -15px;
  left: 0;
  height: 15px;
  width: 400px;
}

.carousel-box h2 {
  color: #fff;
  font-size: 3.2em;
}

.carousel-box p {
  margin: 0 0 0.25em 0;
  color: #fff;
  font-size: 1.4em;
  line-height: 1.2;
}

.carousel-box a {
  font-size: 1.6em;
}

.carousel-box a:hover {
  color: #fff;
}

.carousel-controls {
  position: absolute;
  top: 200px;
  left: 0;
  width: 100%;
}

.no-js .carousel-controls {
  display: none;
}

.controls-container {
  margin: 0 auto;
  max-width: 1180px;
}

.carousel-controls a {
  background: #0046ac;
  border-radius: 27px;
  padding: 3px 0 0 0;
  height: 54px;
  width: 54px;
  color: #ffa200;
  font: 4em/1 'Comic Sans MS', cursive;
  text-align: center;
  outline: none;
}

.carousel-controls a:hover {
  background: #ffa200;
  color: #0046ac;
}

.carousel-prev {
  float: left;
  margin: 0 0 0 20px;
}

.carousel-next {
  float: right;
  margin: 0 20px 0 0;
}

.home-wrapper {
  margin-top: 277px;
}

.sector-title {
  background: #fff;
  border-radius: 8px 8px 0 0;
  margin: -40px 0 0 10px;
  width: 23.5294117647%;
  /* 240px / 1020px */
  color: #ffa200;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}

.sectors {
  margin: 0 10px;
  overflow: hidden;
}

.sector-link {
  border-left: 1px solid #ffa200;
  float: left;
  position: relative;
  margin: 0 0 -9985px -1px;
  padding: 15px 0 10000px 0;
  width: 24%;
  /* 240px / 1000px */
}

.sector-link:first-child {
  border: 0;
  margin-left: 0;
}

.sector-link img {
  display: block;
  margin: 0 auto;
  padding: 0 10px;
}

.sector-link span {
  display: block;
  text-align: center;
}

.sector-link span:after {
  content: ">";
  position: relative;
  top: 6px;
  padding: 0 0 0 10px;
  color: #ffa200;
  font: 2.3em/0.25 'Comic Sans MS', cursive;
}

.lt-ie9 .sector-link span:after {
  font-size: 3em;
}

.lt-ie9 .sector-link:hover span:after {
  content: '';
}

.sector-link .show-on-hover {
  position: absolute;
  top: 0;
  left: 0;
  margin: 25px 20px;
  color: #000;
  text-align: center;
}

.sector-link .dim-on-hover,
.sector-link .show-on-hover {
  -moz-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
}

.sector-link:hover .dim-on-hover {
  opacity: 0.1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
}

.sector-link:hover .show-on-hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/**************************************************************************************************
*	Content pages
**************************************************************************************************/
.content .large-text {
  margin: 0;
}

.content > ul {
  list-style-type: none;
  margin: 0 0 1.5em 1em;
  color: #0046AC;
  font-size: 1.3em;
  line-height: 1.75;
}

.content > ul ul {
  margin: 0 0 1.5em 1em;
}

.content ul li {
  position: relative;
}

.content ul li:before {
  background: #FFA200;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 6px;
  left: -14px;
  position: absolute;
  top: 10px;
  width: 6px;
}

.content .unstyled-list {
  list-style-type: none;
  margin: 0;
  color: #000;
  font-size: 1em;
  line-height: 1.5;
}

.content .unstyled-list li:before {
  display: none;
}

.content .btn-primary {
  margin: 0 0 20px 0;
}

.article-list {
  font-size: 1em;
}
.article-list h3,
.article-list p {
  margin-bottom: 6px;
}
.article-list li {
  border-bottom: 1px solid #F9A02C;
  padding: 15px;
}
.article-list h3 {
  text-transform: uppercase;
}
.article-list h3 a {
  color: #002638;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.article-list h3 a:hover {
  color: #F9A02C;
}
.article-list a {
  text-decoration: none;
}
.article-list .large-text {
  color: #ffa200;
}

.pagination {
  font-size: 1.23077em;
  font-weight: 700;
  margin: 20px 0 0 0;
  text-align: right;
}
.pagination ul {
  list-style: none;
}
.pagination li {
  display: inline-block;
}
.pagination li:before {
  display: none;
}
.pagination a {
  display: block;
  padding: 0 7px;
  text-decoration: none;
}
.pagination .active a {
  color: #F9A02C;
}
.pagination .control {
  font-size: 0.875em;
  font-weight: 500;
}
.pagination .control a {
  border: 1px solid #002638;
  padding-top: 2px;
  padding-bottom: 2px;
}

/*
	===========
	Job Details
	===========
*/
.job-details {
  display: table;
  font-size: 1.38462em;
  margin-bottom: 26px;
  width: 100%;
}
.job-details li {
  display: table-row;
}
.job-details .detail-label,
.job-details .detail-description {
  border-bottom: 1px solid #7D8C96;
  display: table-cell;
  padding: 6px 0;
}
.job-details .detail-label {
  color: #F9B155;
  width: 22%;
}
.job-details .detail-description {
  color: #FFF;
  width: 78%;
}

/* Job Details */
.post-date {
  color: #ffa200;
  font-size: 1.1em;
  line-height: 1.8;
}

/*
	==========
	Other Jobs
	==========
*/
.other {
  background-image: url(/site/images/icons/white/other.png);
  background-position: center 0;
  padding-top: 100px;
}

/* Other Jobs */
/*
	===========
	Latest Jobs
	===========
*/
.latest-jobs {
  background-color: #F9B155;
  padding: 12px 12px 0;
}
.latest-jobs h2 span {
  display: block;
  font-size: 0.7em;
  font-weight: bold;
}
.latest-jobs h3 {
  line-height: 1.2;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.latest-jobs h3 a {
  color: #002638;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.latest-jobs h3 a:hover {
  color: #FFF;
}
.latest-jobs p {
  color: #002638;
  margin: 0;
}
.latest-jobs ul {
  list-style: none;
  margin: 0 -12px;
  padding: 0;
}
.latest-jobs li {
  border-top: 1px solid #002638;
  padding: 12px;
}
.latest-jobs li:before {
  content: none !important;
}
.latest-jobs li:first-child {
  border: 0;
  padding-top: 0;
}
.latest-jobs .post-location {
  font-size: 1.23077em;
  font-weight: 700;
  margin-bottom: 5px;
}
.latest-jobs .post-date {
  font-size: 0.92308em;
  margin-bottom: 5px;
}
.latest-jobs .description {
  margin-bottom: 10px;
}
.latest-jobs.candidates {
  padding-bottom: 12px;
}

/* Latest Jobs */
.sector-jobs h2 {
  margin: 40px 0 25px 20px;
  font-size: 2em;
}

.sector-jobs .latest-jobs {
  float: left;
  margin: 0 5% 40px 0;
  width: 47.5%;
  padding-bottom: 40px;
}

.sector-jobs .latest-jobs:nth-child(even) {
  margin-right: 0;
}

.sector-jobs .description {
  height: 3em;
  line-height: 1.5;
  overflow: hidden;
}

/**************************************************************************************************
*	Forms
**************************************************************************************************/
.form label {
  color: #F9A02C;
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
.form fieldset + fieldset,
.form fieldset + .form-buttons {
  margin-top: 20px;
}
.form span.error,
.form label.error {
  color: #F00;
  font-weight: 500;
}
.form .form-item + .form-item {
  margin-top: 18px;
}
.form .checkbox-list li {
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .form .checkbox-list li {
    float: left;
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .form .checkbox-list li {
    width: 33.3333%;
  }
}
@media (min-width: 768px) {
  .form .checkbox-list li:nth-child(2n+1) {
    clear: left;
  }
}
@media (min-width: 1024px) {
  .form .checkbox-list li:nth-child(2n+1) {
    clear: none;
  }
}
@media (min-width: 1024px) {
  .form .checkbox-list li:nth-child(3n+1) {
    clear: left;
  }
}
.form .checkbox-list label {
  display: block;
  padding: 6px 0 6px 45px;
  position: relative;
}
.form .checkbox-list label:before {
  background-color: transparent;
  background-position: center center;
  background-size: 0 0;
  border: 1px solid #002638;
  content: '';
  height: 30px;
  position: absolute;
  left: 0;
  margin-top: -15px;
  top: 50%;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -ms-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  width: 30px;
}
.form .checkbox-list input {
  left: -999em;
  position: absolute;
}
.form .checkbox-list .checked:before {
  background-color: #F9A02C;
  background-image: url(/site/images/icons/white/tick.svg);
  background-size: 24px 24px;
}
.no-svg .form .checkbox-list .checked:before {
  background-image: url(/site/images/icons/white/tick.png);
}
.form .mycv {
  background-color: #F9A02C;
  margin-left: -15px;
  margin-right: -15px;
  padding: 30px;
}
@media (min-width: 768px) {
  .form .mycv {
    margin-left: -30px;
    margin-right: -30px;
  }
}
.form .mycv span {
  clear: both;
  display: block;
}

.form .category-lbl {
  color: #FFF;
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 0;
}

.form .checkbox-list label {
  display: block;
  float: none;
  width: 100%;
}

.form .checkbox-list input {
  display: inline-block;
  vertical-align: top;
  width: auto;
}

.form .form-col {
  width: 48.5%;
}

.form .form-col input {
  border: 0 none;
  font: 1.2em/1.5 Tahoma,Arial,Helvetica,sans-serif;
  margin: 6px 0;
  padding: 5px 2%;
  width: 96%;
}

#uploaded-message {
  color: #FFF;
  font-size: 1.2em;
  font-weight: 700;
}

#file-upload {
  position: relative;
  overflow: hidden;
  margin: 0 10px 0 0;
}

#file-upload input {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.4em;
  cursor: pointer;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

#cv-file {
  background: #FFF;
  border: 1px solid #002638;
  margin-right: 4px;
  padding: 6px;
  width: 35%;
  color: #000;
}

#upload-cv,
#upload-cv.disabled:hover {
  background: #1b61cb url(/site/images/icons/upload.png) no-repeat 10px center;
  padding-left: 45px;
  color: #ffa200;
}

#download-cv,
#download-cv.disabled:hover {
  background: #ffa200 url(/site/images/icons/download.png) no-repeat 10px center;
  margin: 0;
  padding-left: 45px;
  color: #fff;
}

#upload-cv:hover,
#download-cv:hover,
#file-upload:hover {
  background-color: #FFF;
  color: #002638;
}

#download-cv:hover:after,
#file-upload:hover:after {
  color: #0046ac;
}

.cv-details {
  color: #FFF;
  font-size: 1.2em;
  margin-bottom: 12px;
}

.form .disabled {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  cursor: default;
}

.form-callback {
  padding: 35px 0;
}
.form-callback h2 {
  font-size: 1.38462em;
  text-align: center;
}
.form-callback [type=text] {
  background-color: transparent;
  border: none;
  color: #FFF;
  padding: 7px 14px;
  transition: background-color 0.3s;
}
.form-callback [type=text]:focus {
  background-color: #FFF;
  color: #002638;
}
.form-callback .niceselect-wrapper {
  border: none;
  padding-left: 14px;
}
.form-callback .form_field,
.form-callback .form_button {
  margin-left: auto;
  margin-right: auto;
  width: 308px;
}
.form-callback .form_field {
  background-color: #002638;
  border: 1px solid #002638;
}
.form-callback .form_field + * {
  margin-top: 10px;
}
.form-callback .form_field .error {
  color: #F99;
  display: block;
  padding-left: 14px;
  padding-right: 14px;
}
.form-callback .button {
  display: block;
  padding-top: 7px;
  padding-bottom: 7px;
  width: 100%;
}
.form-callback :-moz-placeholder {
  color: #FFF;
  opacity: 1;
}
.form-callback ::-moz-placeholder {
  color: #FFF;
  opacity: 1;
}
.form-callback ::-webkit-input-placeholder {
  color: #FFF;
  opacity: 1;
}
.form-callback :-ms-input-placeholder {
  color: #FFF;
  opacity: 1;
}

/*
	=======
	Filters
	=======
*/
/* Job list filters */
.job-filter {
  padding-bottom: 20px;
}

.candidate-filter {
  padding-bottom: 20px;
}
@media (min-width: 1024px) {
  .candidate-filter .filters .filter {
    width: 50%;
  }
}

.filters {
  margin-left: -16px;
  margin-right: -16px;
  padding: 10px 0 20px;
}
.filters label {
  color: #F9A02C;
  display: block;
  margin-bottom: 6px;
}
.filters select {
  display: block;
  width: 100%;
}
.filters .filter {
  margin-top: 5px;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .filters .filter {
    float: left;
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .filters .filter {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .filters .filter:nth-child(2n+1) {
    clear: left;
  }
}
@media (min-width: 1024px) {
  .filters .filter:nth-child(2n+1) {
    clear: none;
  }
}

/* Filters */
/* Date picker */
#date-picker {
  width: 93px;
}

.ui-datepicker-trigger {
  position: relative;
  top: 4px;
  left: 4px;
  cursor: pointer;
}

.ui-datepicker {
  background: #fff;
  border: 1px solid #bbb;
  display: none;
  padding: 5px;
  font-size: 1.2em;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  font-weight: bold;
  line-height: 2.2em;
  text-align: center;
}

.ui-datepicker th {
  padding: 5px;
  font-weight: bold;
}

.ui-datepicker td {
  padding: 3px 5px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  text-align: right;
}

/* Alert */
.alert {
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid #FFF;
  left: 0;
  font-size: 2em;
  padding: 10px;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
}

.alert.warning {
  background: #FFC;
  border-bottom-color: #FC0;
}

.alert.success {
  border-width: 0 0 1px;
  background: #CFC;
  border-bottom-color: #6C6;
  color: #000;
}
