@charset "UTF-8";
/*
# 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>
*/
@font-face {
  font-family: "DIN Next W01";
  src: url("/site/fonts/de1216be-00c2-43c0-9c45-3e7f925eb519.woff2") format("woff2"), url("Fonts/bc176270-17fa-4c78-a343-9fe52824e501.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "DIN Next W01";
  src: url("/site/fonts/26f280d7-8bd0-4192-90f1-3c3cb4cde341.woff2") format("woff2"), url("Fonts/e1c997f3-fb27-4289-abc6-5ef059e51723.woff") format("woff");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "DIN Next W01";
  src: url("/site/fonts/44e7b0fa-6c8d-43c2-b19e-f1e3ce9ea57c.woff2") format("woff2"), url("Fonts/c5a7f89e-15b6-49a9-8259-5ea665e72191.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "DIN Next W01";
  src: url("/site/fonts/f37f8098-b16e-405f-ab24-bd595a5d5762.woff2") format("woff2"), url("Fonts/c5635d60-91fa-4e4b-8a51-41c97fc744c3.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "DIN Next W01";
  src: url("/site/fonts/be607c9f-3c81-41b4-b7ad-17af005c80bb.woff2") format("woff2"), url("Fonts/4bf0ead4-e61b-4992-832b-6ff05828d99f.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "DIN Next W01";
  src: url("/site/fonts/5e7b11e8-112d-42fe-a35c-edaca8e64677.woff2") format("woff2"), url("Fonts/00ebffbe-b1fe-4913-b8d8-50f0ba8af480.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "DIN Next W01";
  src: url("/site/fonts/121784c1-863c-4e49-b682-625ea7de55b0.woff2") format("woff2"), url("Fonts/9949035f-6226-4080-a14a-bf7d94ffb1e1.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "DIN Next W01";
  src: url("/site/fonts/4e20348d-41a7-4295-94ab-2b1019e9d453.woff2") format("woff2"), url("Fonts/140a0a6f-f218-4071-8eb8-f2bc45ed5121.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}
/*
### 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, .grid-controls, .tabs .tabs-links, .sidebox-tabs .tabs-links, .wrap, .layout-row, .columns, .header-top, .nav-tabs ul, .home-boxes, .content-block-cricket .news-mini-listing, .content-block-cricket .news-mini-listing .post, .content-block-promo, .content-block-stats dl, .content-block-live .blocks, .content-block-booking form, .content-block-conference-form .fields, .content-block-conference-form .fields-name, .articles, .post, .post-featured, .news-mini-listing .post, .newsletter, .expand .form-contact .row, .storify, .directions .mode-select, .match-live, .profile-mini, .squad .grid, .tickets, .tickets h2 {
  *zoom: 1;
}
.form-item:before, .grid-controls:before, .tabs .tabs-links:before, .sidebox-tabs .tabs-links:before, .wrap:before, .layout-row:before, .columns:before, .header-top:before, .nav-tabs ul:before, .home-boxes:before, .content-block-cricket .news-mini-listing:before, .content-block-cricket .news-mini-listing .post:before, .content-block-promo:before, .content-block-stats dl:before, .content-block-live .blocks:before, .content-block-booking form:before, .content-block-conference-form .fields:before, .content-block-conference-form .fields-name:before, .articles:before, .post:before, .post-featured:before, .news-mini-listing .post:before, .newsletter:before, .expand .form-contact .row:before, .storify:before, .directions .mode-select:before, .match-live:before, .profile-mini:before, .squad .grid:before, .tickets:before, .tickets h2:before, .form-item:after, .grid-controls:after, .tabs .tabs-links:after, .sidebox-tabs .tabs-links:after, .wrap:after, .layout-row:after, .columns:after, .header-top:after, .nav-tabs ul:after, .home-boxes:after, .content-block-cricket .news-mini-listing:after, .content-block-cricket .news-mini-listing .post:after, .content-block-promo:after, .content-block-stats dl:after, .content-block-live .blocks:after, .content-block-booking form:after, .content-block-conference-form .fields:after, .content-block-conference-form .fields-name:after, .articles:after, .post:after, .post-featured:after, .news-mini-listing .post:after, .newsletter:after, .expand .form-contact .row:after, .storify:after, .directions .mode-select:after, .match-live:after, .profile-mini:after, .squad .grid:after, .tickets:after, .tickets h2:after {
  content: "";
  display: table;
}
.form-item:after, .grid-controls:after, .tabs .tabs-links:after, .sidebox-tabs .tabs-links:after, .wrap:after, .layout-row:after, .columns:after, .header-top:after, .nav-tabs ul:after, .home-boxes:after, .content-block-cricket .news-mini-listing:after, .content-block-cricket .news-mini-listing .post:after, .content-block-promo:after, .content-block-stats dl:after, .content-block-live .blocks:after, .content-block-booking form:after, .content-block-conference-form .fields:after, .content-block-conference-form .fields-name:after, .articles:after, .post:after, .post-featured:after, .news-mini-listing .post:after, .newsletter:after, .expand .form-contact .row:after, .storify:after, .directions .mode-select:after, .match-live:after, .profile-mini:after, .squad .grid:after, .tickets:after, .tickets h2:after {
  clear: both;
}

/*
### %list-reset

@extend interface for @include list-reset;
*/
div.pagination ul, .carousel-wrap .carousel, .tabs-links, .blue-tabs > .tabs-content > .tabs .tabs-content ul, .header-site .header-site_book_panel ul, .directions .mode-select, .profile-mini ul {
  margin: 0;
  padding: 0;
}
div.pagination ul > li, .carousel-wrap .carousel > li, .tabs-links > li, .blue-tabs > .tabs-content > .tabs .tabs-content ul > li, .header-site .header-site_book_panel ul > li, .directions .mode-select > li, .profile-mini ul > li {
  list-style: none;
  list-style-image: none;
}
div.pagination ul > li:before, .carousel-wrap .carousel > li:before, .tabs-links > li:before, .blue-tabs > .tabs-content > .tabs .tabs-content ul > li:before, .header-site .header-site_book_panel ul > li:before, .directions .mode-select > li:before, .profile-mini ul > li:before {
  content: none;
}
div.pagination ul > li + li, .carousel-wrap .carousel > li + li, .tabs-links > li + li, .blue-tabs > .tabs-content > .tabs .tabs-content ul > li + li, .header-site .header-site_book_panel ul > li + li, .directions .mode-select > li + li, .profile-mini ul > li + li {
  margin-top: 0;
}

/*
### %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, body {
  -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;
}

.cover {
  background-size: cover !important;
}

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 ul li:before, nav ol li:before {
  content: none;
}
nav ul li + li, nav ol li + li {
  margin-top: 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: #333;
  font-family: "DIN Next W01", sans-serif;
}

html, body.site {
  overflow-x: hidden;
}

.js-tn3 {
  overflow-x: hidden;
}

body.site {
  font-family: "DIN Next W01", sans-serif;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.4;
  position: relative;
  padding-top: 70px;
}
@media (min-width: 768px) {
  body.site {
    padding-top: 0;
  }
}

body.nav__open {
  overflow: hidden;
  height: 100vh;
}

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

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

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

img {
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}

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 {
  color: #003f78;
  font-weight: 400;
  margin: 0 0 .5em;
  opacity: 0;
  transition: opacity 0.3s;
}
h1.inview, .h1.inview,
h2.inview, .h2.inview,
h3.inview, .h3.inview,
h4.inview, .h4.inview,
h5.inview, .h5.inview,
h6.inview, .h6.inview {
  opacity: 1;
}

p {
  margin: 0 0 1em;
}

h1,
.h1 {
  font-size: 2.8571428571em;
  font-weight: 400;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 2.1428571429em;
  font-weight: 400;
  line-height: 1.2;
}

h3,
.h3 {
  font-size: 1.4285714286em;
  font-weight: 400;
  line-height: 1.2;
}

ul {
  color: #003f78;
  list-style: none;
  padding-left: 20px;
}
ul li {
  position: relative;
}
ul li:before {
  background-color: #BB9114;
  border-radius: 50%;
  content: '';
  height: 6px;
  width: 6px;
  position: absolute;
  left: -20px;
  top: 6px;
}
ul li + li {
  margin-top: 10px;
}

/*
 * Links
 */
a {
  color: #003f78;
  text-decoration: none;
}
a:focus, a:active, a:hover {
  text-decoration: underline;
}
a:focus, a:active {
  outline: none;
}

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

#mti_wfs_colophon {
  height: 0;
  overflow: hidden;
  z-index: -1000;
}

/*
##  Object styles (_objects)

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

.content-position .breadcrumbs {
  position: unset !important;
}

.not-rounded {
  border-radius: 0;
}

/*
[[+bgpos]]
Background Position
Top Left=tl
Top Center=tc
Top Right=tr
Center Left=cl
Center Center=cc
Center Right=cr
Bottom Left=bl
Bottom Center=bc
Bottom Right=br

[[+bgsz]]
Background Sizing
Expand=sz-cv
Contain=sz-cn
Normal=sz-n
*/
.img-bg.tl {
  background-position: 0 0;
}
.img-bg.tc {
  background-position: center 0;
}
.img-bg.tr {
  background-position: right 0;
}
.img-bg.bl {
  background-position: 0 bottom;
}
.img-bg.bc {
  background-position: center bottom;
}
.img-bg.br {
  background-position: right bottom;
}
.img-bg.cl {
  background-position: 0 center;
}
.img-bg.cc {
  background-position: center center;
}
.img-bg.cr {
  background-position: right center;
}
.img-bg.sz-cv {
  background-size: cover;
}
.img-bg.sz-cn {
  background-size: contain;
}
.img-bg.sz-n {
  background-size: auto;
}

.grid .grid_item_inner, .hero-carousel .hero-carousel_inner {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  padding: 18px;
}

.linethrough {
  text-align: center;
}
@media (min-width: 768px) {
  .linethrough {
    border-bottom: 1px solid #E0E0E0;
    height: 19px;
    margin-bottom: 48px;
  }
}
@media (min-width: 768px) {
  .linethrough span {
    background-color: #FFF;
    display: inline-block;
    padding-left: 6px;
    padding-right: 6px;
  }
}

.square {
  background-position: center center;
  background-size: cover;
  border-radius: 3px;
  display: block;
  padding-bottom: 100%;
}

div.pagination {
  clear: both;
  font-size: 1.2857142857em;
  line-height: 1;
  text-align: center;
}
div.pagination a,
div.pagination span {
  color: #003f78;
  display: block;
  padding-left: 6px;
  padding-right: 6px;
}
div.pagination ul {
  border-bottom: 1px solid #E0E0E0;
  border-top: 1px solid #E0E0E0;
  display: inline-block;
  padding-bottom: 12px;
  padding-top: 12px;
}
div.pagination li {
  border-left: 1px solid #E0E0E0;
  display: inline-block;
  vertical-align: top;
}
div.pagination a:hover {
  text-decoration: none;
}
div.pagination .previous,
div.pagination .next {
  border-left: none;
}
div.pagination .previous a,
div.pagination .previous span,
div.pagination .next a,
div.pagination .next span {
  width: 21px;
}
div.pagination .previous {
  background-image: url(/site/images/icon/alt/chevron-left.svg);
  background-position: left center;
}
.no-svg div.pagination .previous {
  background-image: url(/site/images/icon/alt/chevron-left.png);
}
div.pagination .previous + li {
  border-left: none;
}
div.pagination .next {
  background-image: url(/site/images/icon/alt/chevron-right.svg);
  background-position: right center;
}
.no-svg div.pagination .next {
  background-image: url(/site/images/icon/alt/chevron-right.png);
}
div.pagination .active a {
  color: #BB9114;
}

figure {
  border-bottom: 1px dotted #BB9114;
  margin-bottom: 10px;
  padding-bottom: 30px;
  position: relative;
}
figure figcaption {
  bottom: 0;
  color: #999;
  font-size: 0.8571428571em;
  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-search, .button-list, .button-ticket-small, .button-header, .header-site .header-site_book_panel .header-site_book_panel_text a,
.btn, .button-spa, .button-restaurant, .button-restaurant-light, .button-restaurant-alt, .button-hotel, .button-golf, .button-college, .button-meetings, .button-physio, .button-events, .button-venue, .button-white, .button-white-ticket, .button-alt, .button-ticket, .button-wine-glass, .button-report, .button-scorecard, .button-gallery, .button-listen, .button-event, .bg-highlight .button, .bg-highlight .button-search, .bg-highlight .button-list, .bg-highlight .button-ticket-small, .bg-highlight .button-header, .button-twitter, .button-large, .button-large-pencil, .button-large-calendar, .button-large-ticket, .button-large-listen {
  border: 1px solid;
  border-radius: 3px;
  display: inline-block;
  font-family: "DIN Next W01", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 7px 10px 5px;
  text-decoration: none;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}
.button:hover, .button-search:hover, .button-list:hover, .button-ticket-small:hover, .button-header:hover, .header-site .header-site_book_panel .header-site_book_panel_text a:hover,
.btn:hover, .button-spa:hover, .button-restaurant:hover, .button-restaurant-light:hover, .button-restaurant-alt:hover, .button-hotel:hover, .button-golf:hover, .button-college:hover, .button-meetings:hover, .button-physio:hover, .button-events:hover, .button-venue:hover, .button-white:hover, .button-white-ticket:hover, .button-alt:hover, .button-ticket:hover, .button-wine-glass:hover, .button-report:hover, .button-scorecard:hover, .button-gallery:hover, .button-listen:hover, .button-event:hover, .button-twitter:hover, .button-large:hover, .button-large-pencil:hover, .button-large-calendar:hover, .button-large-ticket:hover, .button-large-listen:hover {
  text-decoration: none;
}
.block.button, .block.button-search, .block.button-list, .block.button-ticket-small, .block.button-header, .header-site .header-site_book_panel .header-site_book_panel_text a.block,
.block.btn, .block.button-spa, .block.button-restaurant, .block.button-restaurant-light, .block.button-restaurant-alt, .block.button-hotel, .block.button-golf, .block.button-college, .block.button-meetings, .block.button-physio, .block.button-events, .block.button-venue, .block.button-white, .block.button-white-ticket, .block.button-alt, .block.button-ticket, .block.button-wine-glass, .block.button-report, .block.button-scorecard, .block.button-gallery, .block.button-listen, .block.button-event, .block.button-twitter, .block.button-large, .block.button-large-pencil, .block.button-large-calendar, .block.button-large-ticket, .block.button-large-listen {
  display: block;
}

.button, .button-search, .button-list, .button-ticket-small, .button-header, .header-site .header-site_book_panel .header-site_book_panel_text a,
.btn {
  border-color: #BB9114;
  background: #af7f00;
  color: #FFF;
}
.button:hover, .button-search:hover, .button-list:hover, .button-ticket-small:hover, .button-header:hover, .header-site .header-site_book_panel .header-site_book_panel_text a:hover,
.btn:hover {
  background-color: #BB9114;
}

.button-spa {
  border-color: #14d4ea;
  background: #00afc3;
  color: #FFF;
}
.button-spa:hover {
  background-color: #14d4ea;
}

.button-restaurant {
  border-color: #fc7935;
  background: #ea580c;
  color: #FFF;
}
.button-restaurant:hover {
  background-color: #fc7935;
}

.button-restaurant-light {
  border-color: #e06c2a;
  background: #ea580c;
  color: #FFF;
}
.button-restaurant-light:hover {
  background-color: #fc7935;
}

.button-restaurant-alt {
  border-color: #fc7935;
  background: #ea580c;
  color: #FFF;
}
.button-restaurant-alt:hover {
  background-color: #fc7935;
}

.button-hotel {
  border-color: #8fd3f8;
  background: #62baea;
  color: #FFF;
}
.button-hotel:hover {
  background-color: #8fd3f8;
}

.button-golf {
  border-color: #026043;
  background: #003626;
  color: #FFF;
}
.button-golf:hover {
  background-color: #026043;
}

.button-college {
  border-color: #489c2e;
  background: #aacf3b;
  color: #FFF;
}
.button-college:hover {
  background-color: #489c2e;
}

.button-meetings {
  border-color: #08487e;
  background: #001f38;
  color: #FFF;
}
.button-meetings:hover {
  background-color: #08487e;
}

.button-physio {
  border-color: #863c84;
  background: #542153;
  color: #FFF;
}
.button-physio:hover {
  background-color: #863c84;
}

.button-events {
  border-color: #f5ede9;
  background: #e8d6ce;
  color: #333;
}
.button-events:hover {
  background-color: #f5ede9;
}

.button-venue {
  border-color: #1a66ac;
  background: #003f78;
  color: #FFF;
}
.button-venue:hover {
  background-color: #1a66ac;
}

.button-white, .button-white-ticket {
  background: #FFF;
  border-color: #FFF;
  color: #003f78;
}
.button-white:hover, .button-white-ticket:hover {
  background-color: #BB9114;
  border-color: #BB9114;
  color: #003f78;
}

.button-alt, .button-ticket, .button-wine-glass, .button-report, .button-scorecard, .button-gallery, .button-listen, .button-event, .bg-highlight .button, .bg-highlight .button-search, .bg-highlight .button-list, .bg-highlight .button-ticket-small, .bg-highlight .button-header, .bg-highlight .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .bg-highlight a {
  background: #003f78;
  border-color: #003f78;
  color: #FFF;
}
.button-alt:hover, .button-ticket:hover, .button-wine-glass:hover, .button-report:hover, .button-scorecard:hover, .button-gallery:hover, .button-listen:hover, .button-event:hover, .bg-highlight .button:hover, .bg-highlight .button-search:hover, .bg-highlight .button-list:hover, .bg-highlight .button-ticket-small:hover, .bg-highlight .button-header:hover, .bg-highlight .header-site .header-site_book_panel .header-site_book_panel_text a:hover, .header-site .header-site_book_panel .header-site_book_panel_text .bg-highlight a:hover {
  background-color: #BB9114;
  border-color: #BB9114;
  color: #FFF;
}

.button-twitter {
  background-color: #00ACED;
  background-image: url(/site/images/icon/white/twitter.svg);
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 16px 14px;
  padding-left: 35px;
  color: #FFF;
}
.no-svg .button-twitter {
  background-image: url(/site/images/icon/white/twitter.png);
}
.button-twitter:hover {
  background-color: #003f78;
}

.button-large, .button-large-pencil, .button-large-calendar, .button-large-ticket, .button-large-listen {
  background: #003f78;
  color: #FFF;
  font-size: 1.5714285714em;
  line-height: 1;
  padding: 20px 21px 14px;
}
.button-large:hover, .button-large-pencil:hover, .button-large-calendar:hover, .button-large-ticket:hover, .button-large-listen:hover {
  background-color: #BB9114;
}
.button-large.button-scorecard, .button-scorecard.button-large-pencil, .button-scorecard.button-large-calendar, .button-scorecard.button-large-ticket, .button-scorecard.button-large-listen {
  background-size: 24px 26px;
  background-position: 14px center;
  padding-left: 52px;
}
.button-large.button-list, .button-list.button-large-pencil, .button-list.button-large-calendar, .button-list.button-large-ticket, .button-list.button-large-listen {
  background-size: 27px 20px;
  background-position: 15px center;
  padding-left: 52px;
}
.no-svg .button-large.button-list, .no-svg .button-list.button-large-pencil, .no-svg .button-list.button-large-calendar, .no-svg .button-list.button-large-ticket, .no-svg .button-list.button-large-listen {
  background-image: url(/site/images/icon/white/list-large.png);
}
.button-large.button-gallery, .button-gallery.button-large-pencil, .button-gallery.button-large-calendar, .button-gallery.button-large-ticket, .button-gallery.button-large-listen {
  background-size: 31px 26px;
  background-position: 10px center;
  padding-left: 52px;
}
.no-svg .button-large.button-gallery, .no-svg .button-gallery.button-large-pencil, .no-svg .button-gallery.button-large-calendar, .no-svg .button-gallery.button-large-ticket, .no-svg .button-gallery.button-large-listen {
  background-image: url(/site/images/icon/white/gallery-large.png);
}
.button-large.button-arrow, .button-arrow.button-large-pencil, .button-arrow.button-large-calendar, .button-arrow.button-large-ticket, .button-arrow.button-large-listen {
  padding-right: 32px;
  position: relative;
}
.button-large.button-arrow:after, .button-arrow.button-large-pencil:after, .button-arrow.button-large-calendar:after, .button-arrow.button-large-ticket:after, .button-arrow.button-large-listen:after {
  background-size: 12px 17px;
  margin-top: -8px;
  position: absolute;
  right: 12px;
  top: 50%;
  width: 12px;
  height: 17px;
}

.button-arrow:after, .button-white-arrow:after, .button-header:after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 11px;
  margin-left: 8px;
  margin-top: -2px;
  vertical-align: middle;
}

.button-arrow-back:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 11px;
  margin-right: 8px;
  margin-top: -2px;
  vertical-align: middle;
}

.button-arrow:after {
  background-image: url(/site/images/icon/white/chevron-right.svg);
}
.no-svg .button-arrow:after {
  background-image: url(/site/images/icon/white/chevron-right.png);
}

.button-arrow-back:before {
  background-image: url(/site/images/icon/white/chevron-left.svg);
}
.no-svg .button-arrow-back:before {
  background-image: url(/site/images/icon/white/chevron-left.png);
}

.button-white-arrow:after {
  background-image: url(/site/images/icon/alt/chevron-right.svg);
}
.no-svg .button-white-arrow:after {
  background-image: url(/site/images/icon/alt/chevron-right.png);
}

.button-ticket {
  background-image: url(/site/images/icon/white/ticket.svg);
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 19px 19px;
  color: #FFF;
  padding-left: 35px;
}
.no-svg .button-ticket {
  background-image: url(/site/images/icon/white/ticket.png);
}

.button-wine-glass {
  background-image: url(/site/images/icon/white/wine-glass.svg);
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 19px 19px;
  color: #FFF;
  padding-left: 35px;
}
.no-svg .button-wine-glass {
  background-image: url(/site/images/icon/white/wine-glass.png);
}

.button-report {
  background-image: url(/site/images/icon/white/report.svg);
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 18px 13px;
  padding-left: 35px;
}
.no-svg .button-report {
  background-image: url(/site/images/icon/white/report.png);
}

.button-scorecard {
  background-image: url(/site/images/icon/white/scorecard.svg);
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 16px 18px;
  padding-left: 35px;
}
.no-svg .button-scorecard {
  background-image: url(/site/images/icon/white/scorecard.png);
}

.button-search {
  background-image: url(/site/images/icon/white/search.svg);
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  padding-left: 35px;
}
.no-svg .button-search {
  background-image: url(/site/images/icon/white/search.png);
}

.button-gallery {
  background-image: url(/site/images/icon/white/gallery.svg);
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  padding-left: 35px;
}
.no-svg .button-gallery {
  background-image: url(/site/images/icon/white/gallery.png);
}

.button-list {
  background-image: url(/site/images/icon/white/list.svg);
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  padding-left: 35px;
}
.no-svg .button-list {
  background-image: url(/site/images/icon/white/list.png);
}

.button-listen {
  background-image: url(/site/images/icon/white/audio.svg);
  background-position: 7px center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  letter-spacing: -0.02em;
  padding-left: 28px;
}
.no-svg .button-listen {
  background-image: url(/site/images/icon/white/audio.png);
}

.button-white-ticket {
  background-image: url(/site/images/icon/alt/ticket.svg);
  background-position: 8px center;
  background-repeat: no-repeat;
  background-size: 19px 19px;
  padding-left: 35px;
}
.no-svg .button-white-ticket {
  background-image: url(/site/images/icon/alt/ticket.png);
}

.button-ticket-small {
  background-image: url(/site/images/icon/white/ticket-small.svg);
  background-position: 6px center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  padding-left: 25px;
}
.no-svg .button-ticket-small {
  background-image: url(/site/images/icon/white/ticket-small.png);
}

.button-event {
  background-image: url(/site/images/icon/white/event.svg);
  background-position: 6px center;
  background-repeat: no-repeat;
  background-size: 13px 15px;
  padding-left: 25px;
}
.no-svg .button-event {
  background-image: url(/site/images/icon/white/event.png);
}

.button-large-pencil {
  background-image: url(/site/images/icon/white/pencil-large.svg);
  background-position: 16px center;
  background-repeat: no-repeat;
  background-size: 25px 25px;
  padding-left: 60px;
}
.no-svg .button-large-pencil {
  background-image: url(/site/images/icon/white/pencil-large.png);
}

.button-large-calendar {
  background-image: url(/site/images/icon/white/calendar.svg);
  background-position: 16px center;
  background-repeat: no-repeat;
  background-size: 38px 45px;
  padding-left: 60px;
}
.no-svg .button-large-calendar {
  background-image: url(/site/images/icon/white/calendar.png);
}

.button-large-ticket {
  background-image: url(/site/images/icon/white/ticket.svg);
  background-position: 11px center;
  background-repeat: no-repeat;
  background-size: 38px 38px;
  padding-left: 60px;
}
.no-svg .button-large-ticket {
  background-image: url(/site/images/icon/white/ticket-large.png);
}

.button-header {
  font-size: 1.7142857143em;
  background-image: url(/site/images/icon/white/profile.svg);
  background-position: 14px center;
  background-repeat: no-repeat;
  background-size: 32px 26px;
  padding-left: 60px;
}
.no-svg .button-header {
  background-image: url(/site/images/icon/white/profile.png);
}
.button-header:after {
  background-image: url(/site/images/icon/white/chevron-med-right.svg);
  background-size: 12px 17px;
  width: 12px;
  height: 17px;
}
.no-svg .button-header:after {
  background-image: url(/site/images/icon/white/chevron-med-right.png);
}
.button-header:hover:after {
  background-image: url(/site/images/icon/white/chevron-med-right.svg);
}

.button-header-noicon {
  padding-left: 8px;
  background-image: none;
}
.no-svg .button-header-noicon {
  background-image: none;
}

.button-large-listen {
  font-size: 1.7142857143em;
  background-image: url(/site/images/icon/white/audio.svg);
  background-position: 14px center;
  background-repeat: no-repeat;
  background-size: 27px 28px;
  letter-spacing: -0.02em;
  padding: 10px 21px 6px 62px;
}
.no-svg .button-large-listen {
  background-image: url(/site/images/icon/white/audio.png);
}

.icon-phone:before, .icon-mail:before, .icon-pencil:before, .icon-alt-mail:before, .icon-alt-pencil:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -3px;
}

.icon-phone:before {
  background-image: url(/site/images/icon/white/phone.svg);
  background-size: 11px 24px;
  width: 11px;
  height: 24px;
}
.no-svg .icon-phone:before {
  background-image: url(/site/images/icon/white/phone.png);
}

.icon-mail:before {
  background-image: url(/site/images/icon/white/mail.svg);
  background-size: 19px 12px;
  width: 19px;
  height: 12px;
}
.no-svg .icon-mail:before {
  background-image: url(/site/images/icon/white/mail.png);
}

.icon-pencil:before {
  background-image: url(/site/images/icon/white/pencil.svg);
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
}
.no-svg .icon-pencil:before {
  background-image: url(/site/images/icon/white/pencil.png);
}

.icon-alt-mail:before {
  background-image: url(/site/images/icon/alt/mail.svg);
  background-size: 19px 12px;
  width: 19px;
  height: 12px;
}
.no-svg .icon-alt-mail:before {
  background-image: url(/site/images/icon/alt/mail.png);
}

.icon-alt-pencil:before {
  background-image: url(/site/images/icon/alt/pencil.svg);
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
}
.no-svg .icon-alt-pencil:before {
  background-image: url(/site/images/icon/alt/pencil.png);
}

.content-block-video .img, .post-featured.post-video .image, .video-link {
  display: block;
  position: relative;
}
.content-block-video .img:before, .post-featured.post-video .image:before, .video-link:before {
  background-image: url(/site/images/icon/video.svg);
  background-position: center center;
  background-size: 86px 86px;
  border-radius: 50%;
  content: "";
  cursor: pointer;
  position: absolute;
  width: 86px;
  height: 86px;
  margin-left: -43px;
  margin-top: -43px;
  left: 50%;
  top: 50%;
}
.no-svg .content-block-video .img:before, .content-block-video .no-svg .img:before, .no-svg .post-featured.post-video .image:before, .post-featured.post-video .no-svg .image:before, .no-svg .video-link:before {
  background-image: url(/site/images/icon/video.png);
}

.bg-highlight {
  background-color: #BB9114;
  color: #fff;
}
.bg-highlight h2 {
  color: #fff;
}

.bg-alt {
  background-color: #003f78;
}

.bg-grey {
  background-color: #999;
}

.bg-grey-dark {
  background-color: #58595B;
}

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

.cb-juicer ul {
  border: 1px solid #034638;
  border-radius: 3px;
  padding: 20px;
}
.cb-juicer ul li:before {
  content: none;
  background-color: transparent;
}

.bold {
  font-weight: 700;
}

.colour-highlight {
  color: #BB9114;
}

.colour-alt {
  color: #003f78;
}

.colour-white {
  color: #FFF;
}

.text-table {
  display: table;
  width: 100%;
}
.text-table .inner {
  display: table-cell;
  vertical-align: middle;
}

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

.video-embed-caption {
  border-bottom: 1px solid #CDCDCD;
  color: #003f78;
  font-size: 0.8571428571em;
  padding: 10px 0;
}

.overlay {
  background: url(/site/images/black-50.png);
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=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.show {
  opacity: 1;
  filter: alpha(opacity=100);
}
.overlay.hide {
  height: 0;
  width: 0;
}

.overlay-box {
  background: #FFF;
  border: 3px solid #BB9114;
  box-shadow: 7px 7px 12px 0 rgba(0, 0, 0, 0.65);
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  padding: 0;
  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: 110;
}
@media (min-width: 768px) {
  .overlay-box {
    left: 50%;
    margin-left: -250px;
    width: 500px;
  }
}
.overlay-box.show {
  opacity: 1;
  filter: alpha(opacity=100);
}
.overlay-box.hide {
  display: none;
}

.overlay-close {
  background-color: #BB9114;
  background-image: url(/site/images/icon/white/close.svg);
  background-position: center center;
  background-size: 11px 11px;
  border: none;
  border-radius: 6px;
  height: 26px;
  width: 26px;
  position: absolute;
  right: -32px;
  top: -3px;
}
.no-svg .overlay-close {
  background-image: url(/site/images/icon/white/close.png);
}

.cookie {
  height: 0;
  line-height: 30px;
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background: #333;
  -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 #333;
  line-height: 18px;
  padding: 10px;
}
@media (min-width: 768px) {
  .cookie .inner {
    line-height: 30px;
  }
}
.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: none;
  border-radius: 3px;
  padding: 5px;
  width: 100%;
}

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"], .niceselect-wrapper {
  background: #f2f2f2;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YyZjJmMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjY2JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjY2JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(top, #f2f2f2 0%, #ffffff 66%, #ffffff 66%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f2f2), color-stop(66%, #ffffff), color-stop(66%, #ffffff));
  background: -webkit-linear-gradient(top, #f2f2f2 0%, #ffffff 66%, #ffffff 66%);
  background: -o-linear-gradient(top, #f2f2f2 0%, #ffffff 66%, #ffffff 66%);
  background: -ms-linear-gradient(top, #f2f2f2 0%, #ffffff 66%, #ffffff 66%);
  background: linear-gradient(to bottom, #f2f2f2 0%, #ffffff 66%, #ffffff 66%);
  border-bottom: 1px solid #C3C3C3;
  border-radius: 3px;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.1);
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  -webkit-transition: border 0.3s, box-shadow 0.3s, height 0.3s, padding 0.3s;
  -moz-transition: border 0.3s, box-shadow 0.3s, height 0.3s, padding 0.3s;
  -ms-transition: border 0.3s, box-shadow 0.3s, height 0.3s, padding 0.3s;
  -o-transition: border 0.3s, box-shadow 0.3s, height 0.3s, padding 0.3s;
  transition: border 0.3s, box-shadow 0.3s, height 0.3s, padding 0.3s;
}
.lt-ie9 textarea,
.lt-ie9 [type="text"],
.lt-ie9 [type="password"],
.lt-ie9 [type="datetime"],
.lt-ie9 [type="datetime-local"],
.lt-ie9 [type="date"],
.lt-ie9 [type="month"],
.lt-ie9 [type="time"],
.lt-ie9 [type="week"],
.lt-ie9 [type="number"],
.lt-ie9 [type="email"],
.lt-ie9 [type="url"],
.lt-ie9 [type="search"],
.lt-ie9 [type="tel"],
.lt-ie9 [type="color"],
.lt-ie9 .niceselect-wrapper {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#ffffff',GradientType=0 );
}

textarea {
  transition: none;
}

textarea {
  border-radius: 3px;
}

select {
  width: 100%;
}

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

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

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

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

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

.niceselect-wrapper {
  color: #BB9114;
  display: block;
  height: 2.1428571429em;
  line-height: 2;
  overflow: hidden;
  padding-right: 32px;
  position: relative;
  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:after {
  background-image: url(/site/images/icon/chevron-down.svg);
  content: "";
  display: block;
  height: 8px;
  margin-top: -3px;
  position: absolute;
  right: 15px;
  top: 50%;
  width: 11px;
  z-index: 5;
}
.no-svg .niceselect-wrapper:after {
  background-image: url(/site/images/icon/chevron-down.png);
}
.niceselect-wrapper .niceselect-text {
  display: block;
  padding-top: 2px;
}
.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.niceselect-default {
  color: #BB9114;
}

.form-item {
  margin-bottom: 10px;
}
.form-item label {
  display: block;
}
.form-item .form-item_checkbox {
  display: flex;
  align-items: flex-start;
}
.form-item .form-item_checkbox input {
  flex-basis: auto;
  flex-grow: 0;
  margin-top: 0.2em;
}
.form-item .form-item_checkbox span {
  padding-left: 0.5em;
}

.form-item .input-checkbox input[type=checkbox] {
  display: none;
}
.form-item .input-checkbox input[type=checkbox] + label {
  font-size: 0.8571428571em;
  font-weight: 400;
  line-height: 1.4;
  color: #333;
  position: relative;
  padding-left: 1.875rem;
  display: inline-block;
}
.form-item .input-checkbox input[type=checkbox] + label:before {
  content: '';
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #333;
  border-radius: 4px;
  background: #FFFFFF;
  position: absolute;
  top: 0.2em;
  left: 0;
}
.form-item .input-checkbox input[type=checkbox] + label:after {
  content: '';
  display: block;
  position: absolute;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxNCAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMSA3LjM2MzY0TDQuODU3MTQgMTEgMTMgMSIgc3Ryb2tlPSIjQkI5MTE0IiBzdHJva2Utd2lkdGg9IjIiLz48L3N2Zz4=");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px 10px;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 0.2em;
  left: 0;
  opacity: 0;
  transition: opacity 0.2s linear;
}
.form-item .input-checkbox input[type=checkbox]:checked + label:after {
  opacity: 1;
}

.form-buttons {
  margin-bottom: 10px;
  text-align: right;
}

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

.error {
  color: #8C0000;
  font-weight: 500;
}

.error-container {
  background-color: #8C0000;
  border-radius: 12px;
  display: none;
  line-height: 1.1;
  margin-bottom: 12px;
  padding: 5px 10px;
  position: relative;
}
.error-container,
.error-container .error {
  color: #FFF;
}
.error-container:after {
  border-color: #8C0000 transparent;
  border-style: solid;
  border-width: 7px 7px 0;
  content: '';
  left: 50%;
  margin-left: -7px;
  position: absolute;
  top: 100%;
}

.grid-controls {
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 15px;
  padding-bottom: 18px;
  padding-top: 15px;
}
.grid-controls .niceselect-wrapper {
  display: inline-block;
  vertical-align: top;
}
@media (min-width: 768px) {
  .grid-controls .filters {
    float: left;
  }
}
.grid-controls .filters > select,
.grid-controls .filters > .niceselect-wrapper {
  display: block;
}
@media (min-width: 768px) {
  .grid-controls .filters > select,
  .grid-controls .filters > .niceselect-wrapper {
    display: inline-block;
  }
}
.grid-controls .filters > select + select,
.grid-controls .filters > select + .niceselect-wrapper,
.grid-controls .filters > .niceselect-wrapper + select,
.grid-controls .filters > .niceselect-wrapper + .niceselect-wrapper {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .grid-controls .filters > select + select,
  .grid-controls .filters > select + .niceselect-wrapper,
  .grid-controls .filters > .niceselect-wrapper + select,
  .grid-controls .filters > .niceselect-wrapper + .niceselect-wrapper {
    margin-top: 0;
  }
}
.grid-controls .filters + .ordering {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .grid-controls .filters + .ordering {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .grid-controls .ordering {
    text-align: right;
  }
}
.grid-controls .ordering > select,
.grid-controls .ordering > .niceselect-wrapper {
  display: block;
}
@media (min-width: 768px) {
  .grid-controls .ordering > select,
  .grid-controls .ordering > .niceselect-wrapper {
    display: inline-block;
  }
}
.grid-controls .ordering > select + select,
.grid-controls .ordering > select + .niceselect-wrapper,
.grid-controls .ordering > .niceselect-wrapper + select,
.grid-controls .ordering > .niceselect-wrapper + .niceselect-wrapper {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .grid-controls .ordering > select + select,
  .grid-controls .ordering > select + .niceselect-wrapper,
  .grid-controls .ordering > .niceselect-wrapper + select,
  .grid-controls .ordering > .niceselect-wrapper + .niceselect-wrapper {
    margin-top: 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;
}

.small {
  font-size: 0.8571428571em;
}

.xsmall {
  font-size: 0.7142857143em;
}

.medium {
  font-size: 1.1071428571em;
}

.large {
  font-size: 1.1428571429em;
}

.xlarge {
  font-size: 1.2857142857em;
}

.colour-white {
  color: #FFF !important;
}

.colour-highlight {
  color: #BB9114 !important;
}

.colour-alt {
  color: #003f78 !important;
}

.colour-restaurant {
  color: #002B49 !important;
}

.colour-restaurant-light {
  color: #e06c2a !important;
}

.colour-restaurant-alt {
  color: #E9E8E3 !important;
}

.colour-community {
  color: #005696 !important;
}

.colour-community-orange {
  color: #F05628 !important;
}

.colour-community-orange-light {
  color: #F89A23 !important;
}

.colour-community-green {
  color: #AACF3B !important;
}

.colour-hotel {
  color: #52B9E9 !important;
}

.colour-hotel-dark {
  color: #001A3A !important;
}

.colour-hotel-alt {
  color: #322110 !important;
}

.colour-spa {
  color: #6c7e7e !important;
}

.colour-spa-light {
  color: #DA9EDE !important;
}

.colour-spa-alt {
  color: #3AAFC8 !important;
}

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

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

.bg-alt {
  background-color: #003f78;
}

.bg-restaurant {
  background-color: #002B49;
}

.bg-restaurant-light {
  background-color: #e06c2a;
}

.bg-restaurant-alt {
  background-color: #E9E8E3;
}

.bg-community {
  background-color: #005696;
}

.bg-community-orange {
  background-color: #F05628;
}

.bg-community-orange-light {
  background-color: #F89A23;
}

.bg-community-green {
  background-color: #AACF3B;
}

.bg-hotel {
  background-color: #52B9E9;
}

.bg-hotel-dark {
  background-color: #001A3A;
}

.bg-hotel-alt {
  background-color: #322110;
}

.bg-hotel-light {
  background-color: #E2DDCB;
}

.bg-spa {
  background-color: #6c7e7e;
}

.bg-spa-light {
  background-color: #DA9EDE;
}

.bg-spa-alt {
  background-color: #3AAFC8;
}

.bg-spa-grey {
  background-color: #697a7a;
}

.bg-beefys-orange {
  background-color: #e06c2a;
}

.bg-golf-blue {
  background-color: #003f78;
}

.success, .success-block {
  color: #003f78;
  font-size: 1.4285714286em;
  font-weight: 500;
}

.success-block {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

iframe {
  border: none;
  display: block;
  width: 100%;
}

.pdoResourcesLog {
  background-color: #FFF;
  padding: 10px;
  position: relative;
  z-index: 200;
}

.tabs {
  position: relative;
}
.tabs .tabs-links {
  margin-bottom: -12px;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.tabs .tabs-links li {
  float: left;
  margin-right: 2px;
}
.tabs .tabs-links li:last-child {
  margin-right: 0;
}
.tabs .tabs-links a {
  background-color: #003f78;
  border-radius: 3px 3px 0 0;
  color: #FFF;
  display: block;
  padding: 8px 12px 18px;
}
.tabs .tabs-links a:focus,
.tabs .tabs-links a:active,
.tabs .tabs-links .active {
  background-color: #FFF;
  color: #BB9114;
  text-decoration: none;
}
.tabs .tabs-content {
  background-color: #FFF;
  border-radius: 3px;
  padding: 12px;
  position: absolute;
  width: 100%;
  z-index: 20;
  left: -999em;
}
.tabs .tabs-content.show {
  left: auto;
  display: block;
  position: relative;
}

.sidebox-tabs .tabs-links {
  margin-bottom: -12px;
  position: relative;
  z-index: 10;
}
.sidebox-tabs .tabs-links li {
  float: left;
  margin-right: 2px;
}
.sidebox-tabs .tabs-links li:last-child {
  margin-right: 0;
}
.sidebox-tabs .tabs-links a {
  background-color: #BB9114;
  border-radius: 5px 5px 0 0;
  color: #FFF;
  display: block;
  padding: 6px 12px 18px;
}
.sidebox-tabs .tabs-links .active {
  background-color: #CCB081;
}
.sidebox-tabs .sidebox-content {
  display: none;
  position: relative;
  z-index: 20;
}
.sidebox-tabs .sidebox-content.show {
  display: block;
}

.blue-tabs {
  background: rgba(0, 63, 120, 0.8);
}
.blue-tabs > .tabs-links {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  width: 100%;
}
.blue-tabs > .tabs-links li {
  margin-right: 0;
  flex-grow: 1;
  width: 100%;
}
.blue-tabs > .tabs-links li a {
  background-color: transparent;
  height: 44px !important;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 1em;
  font-weight: normal;
  line-height: 1;
  padding: 0;
  border-radius: 0;
}
.blue-tabs > .tabs-links li a:focus, .blue-tabs > .tabs-links li a:active, .blue-tabs > .tabs-links li a.active {
  background-color: #003f78;
  font-weight: bold;
  color: #FFFFFF;
}
.blue-tabs > .tabs-links li a:hover {
  opacity: 0.75;
}
@media (min-width: 768px) {
  .blue-tabs > .tabs-links {
    width: auto;
  }
  .blue-tabs > .tabs-links li a {
    height: 70px !important;
    font-size: 1.1428571429em;
  }
}
.blue-tabs > .tabs-content {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%), #003F78;
  padding: 30px 0;
  border-radius: 0;
}
.blue-tabs > .tabs-content > .content-block-stats {
  width: 100%;
  padding: 0 20px;
  border-radius: 0;
  color: #FFFFFF;
  background: transparent;
}
.blue-tabs > .tabs-content > .content-block-stats dl {
  margin: 0;
}
.blue-tabs > .tabs-content > .content-block-stats dt, .blue-tabs > .tabs-content > .content-block-stats dd {
  margin: 0;
  padding: 10px 0 7px;
  font-size: 1em;
  font-weight: normal;
  line-height: 1.5;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}
.blue-tabs > .tabs-content > .content-block-stats dt:nth-child(4n + 3) {
  margin-left: 0;
}
.blue-tabs > .tabs-content > .content-block-stats dl > *:nth-last-child(-n + 2) {
  border-bottom: none;
}
.blue-tabs > .tabs-content > .content-block-stats dt {
  font-weight: bold;
  color: #BB9114;
}
@media (min-width: 768px) {
  .blue-tabs > .tabs-content > .content-block-stats dt {
    width: calc(15% - 25px);
  }
}
.blue-tabs > .tabs-content > .content-block-stats dd {
  text-align: right;
}
@media (min-width: 768px) {
  .blue-tabs > .tabs-content > .content-block-stats dd {
    width: calc(35% - 25px);
  }
}
@media (min-width: 768px) {
  .blue-tabs > .tabs-content > .content-block-stats dt, .blue-tabs > .tabs-content > .content-block-stats dd {
    font-size: 1.1428571429em;
  }
  .blue-tabs > .tabs-content > .content-block-stats dt:nth-child(4n + 3) {
    margin-left: 100px;
  }
  .blue-tabs > .tabs-content > .content-block-stats dl > *:nth-last-child(-n + 4) {
    border-bottom: none;
  }
}
@media (min-width: 1024px) {
  .blue-tabs > .tabs-content > .content-block-stats {
    padding: 0;
  }
}
.blue-tabs > .tabs-content > .tabs .tabs-links {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.blue-tabs > .tabs-content > .tabs .tabs-links li {
  margin-right: 0;
  flex-grow: 1;
  width: 100%;
}
.blue-tabs > .tabs-content > .tabs .tabs-links li a {
  background-color: transparent;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 1em;
  line-height: 1.425;
  font-weight: normal;
  padding: 0 2px 10px;
  border-radius: 0;
  color: #FFFFFF;
  opacity: 0.2;
}
.blue-tabs > .tabs-content > .tabs .tabs-links li a.active {
  background-color: transparent;
  color: #FFFFFF;
  opacity: 1;
  border-bottom: 4px solid #BB9114;
}
.blue-tabs > .tabs-content > .tabs .tabs-links li a:focus, .blue-tabs > .tabs-content > .tabs .tabs-links li a:active {
  color: #FFFFFF;
  background-color: transparent;
}
.blue-tabs > .tabs-content > .tabs .tabs-links li a:hover {
  opacity: 0.75;
}
@media (min-width: 768px) {
  .blue-tabs > .tabs-content > .tabs .tabs-links li a {
    height: 70px !important;
    font-size: 1.4285714286em;
    padding: 0 5px 10px;
  }
}
.blue-tabs > .tabs-content > .tabs .tabs-content {
  background: transparent;
  border-radius: 0;
  padding: 20px 0 0;
}
.blue-tabs > .tabs-content > .tabs .tabs-content ul {
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  padding-right: 20px;
}
.blue-tabs > .tabs-content > .tabs .tabs-content ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.06em;
  padding: 10px 0 7px;
}
.blue-tabs > .tabs-content > .tabs .tabs-content ul li > strong {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #BB9114;
  text-align: center;
}
.blue-tabs > .tabs-content > .tabs .tabs-content ul li + li {
  border-top: 1px dotted rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) {
  .blue-tabs > .tabs-content > .tabs .tabs-content ul li {
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    width: auto;
    font-size: 4.2857142857em;
    font-weight: 700;
    line-height: 1.2;
    padding: 0;
  }
  .blue-tabs > .tabs-content > .tabs .tabs-content ul li > strong {
    font-size: 0.2333333333em;
    padding-bottom: 10px;
    padding: 0 0 10px;
  }
  .blue-tabs > .tabs-content > .tabs .tabs-content ul li + li {
    border-top: none;
  }
}
@media (min-width: 768px) {
  .blue-tabs > .tabs-content > .tabs .tabs-content {
    padding: 40px 0 0;
  }
  .blue-tabs > .tabs-content > .tabs .tabs-content ul {
    flex-direction: row;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .blue-tabs > .tabs-content {
    padding: 60px 0;
  }
}

.tbl-league, .tbl-minileague, .tbl-innings, .tbl-wickets, .tbl-live {
  color: #777;
  width: 100%;
}
.tbl-league th, .tbl-minileague th, .tbl-innings th, .tbl-wickets th, .tbl-live th {
  color: #003f78;
  font-weight: 700;
  padding: 5px;
}
.tbl-league td, .tbl-minileague td, .tbl-innings td, .tbl-wickets td, .tbl-live td {
  background-color: transparent;
  padding: 5px;
  -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;
}
.tbl-league tr:hover td, .tbl-minileague tr:hover td, .tbl-innings tr:hover td, .tbl-wickets tr:hover td, .tbl-live tr:hover td {
  background-color: #dce5ef;
}

@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 #BB9114;
    margin-bottom: 20px;
  }
  .tbl-mobile-attr td:before {
    background-color: #BB9114;
    color: #FFF;
    content: attr(title);
    display: block;
    font-weight: 700;
  }
}

.datepicker {
  background-image: url(/site/images/icon/calendar-alt.svg);
  background-position: right center;
  background-size: 30px 35px;
  padding: 3px 38px 4px 0;
}
.no-svg .datepicker {
  background-image: url(/site/images/icon/calendar-alt.png);
}

/* 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;
  -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: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -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;
  margin-left: auto;
  margin-right: auto;
}
.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;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.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;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* 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: 90%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none;
  z-index: 1;
}
@media (min-width: 768px) {
  .slick-prev,
  .slick-next {
    top: 50%;
  }
}
.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;
}

.tn3-thumbs li:before {
  content: none;
}

iframe[src*="uk.bookingbug.com"] {
  display: none;
}
@media (min-width: 768px) {
  iframe[src*="uk.bookingbug.com"] {
    display: block;
  }
}

iframe[src*="img-cdn.mediaplex.com"] {
  position: absolute;
  left: -9999px;
}

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

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

.wrap, .background .inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 90%;
}

.wrap .wrap {
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

@media (min-width: 768px) {
  .col-left {
    float: left;
    padding-bottom: 1px;
    width: 33.3333%;
  }
}
.col-left + .col-main {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .col-left + .col-main {
    margin-top: 0;
  }
}

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

.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 {
    width: 37.5%;
  }
}

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

@media (min-width: 768px) {
  .tablet-col-5 {
    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, .col-left {
    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, .col-main {
    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;
  }
}

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

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

.columns {
  margin-left: -7px;
  margin-right: -7px;
}
.columns [class^=col-] {
  padding-left: 7px;
  padding-right: 7px;
}
@media (min-width: 768px) {
  .columns .col-4 {
    float: left;
    width: 33.3333%;
  }
}

/*
	=======
	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.
*/
/*
	===========
	Site Header
	===========
*/
.header-site {
  align-items: stretch;
  background-color: #FFF;
  border-bottom: 1px solid #EEE;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
}
@media (min-width: 768px) {
  .header-site {
    position: relative;
  }
}
.header-site .header-site_logo {
  display: block;
  padding: 9px 12px 5px;
  text-align: center;
  width: 59px;
  width: 83px;
}
@media (min-width: 1433px) {
  .header-site .header-site_logo {
    padding: 15px 20px;
    width: 130px;
  }
}
.header-site .header-site_logo:hover {
  text-decoration: none;
}
.header-site .header-site_left {
  display: flex;
}
.header-site .header-site_right {
  width: 155px;
  display: flex;
}
.header-site .header-site_book {
  display: flex;
  position: relative;
  width: 110px;
  height: 100%;
}
.header-site .header-site_book.header-site_book__open .header-site_book_button {
  background-color: #003f78;
}
.header-site .header-site_book.header-site_book__open .header-site_book_panel {
  opacity: 1;
  right: 0;
  top: 100%;
  visibility: visible;
}
.header-site .header-site_book_button {
  align-items: center;
  background-color: #BB9114;
  border: none;
  color: #FFF;
  display: flex;
  font-size: 1.375rem;
  font-weight: 700;
  justify-content: center;
  text-align: center;
  transition: background-color 0.3s;
  width: 100%;
}
.header-site .header-site_book_button:hover {
  background-color: #003f78;
}
.header-site .header-site_book_button:focus {
  outline: none;
}
.header-site .header-site_book_panel {
  background-color: #BB9114;
  color: #FFF;
  display: none;
  opacity: 0;
  padding: 18px;
  position: absolute;
  top: -1000px;
  right: 0;
  max-width: 552px;
  transition: opacity 0.3s;
  visibility: hidden;
  width: 100vw;
}
@media (min-width: 1433px) {
  .header-site .header-site_book_panel {
    display: flex;
  }
}
.header-site .header-site_book_panel ul {
  color: #FFF;
  flex-basis: 50%;
  flex-grow: 0;
  font-size: 1rem;
  margin: 0;
  padding-right: 20px;
  padding-left: 0;
}
.header-site .header-site_book_panel li a {
  color: inherit;
  display: block;
  padding: 12px 10px 8px;
  transition: all 0.3s;
}
.header-site .header-site_book_panel li a:hover, .header-site .header-site_book_panel li a:focus {
  background-color: #fff;
  color: #BB9114;
  text-decoration: none;
}
.header-site .header-site_book_panel li + li {
  border-top: 1px solid #FFF;
  margin-top: 0;
}
.header-site .header-site_book_panel li .active {
  background-color: #FFF;
  color: #BB9114;
}
.header-site .header-site_book_panel .button, .header-site .header-site_book_panel .button-search, .header-site .header-site_book_panel .button-list, .header-site .header-site_book_panel .button-ticket-small, .header-site .header-site_book_panel .button-header, .header-site .header-site_book_panel .header-site_book_panel_text a {
  background-color: #FFF;
  border-color: #FFF;
  color: #BB9114;
  text-align: center;
  width: 100%;
}
.header-site .header-site_book_panel .button:hover, .header-site .header-site_book_panel .button-search:hover, .header-site .header-site_book_panel .button-list:hover, .header-site .header-site_book_panel .button-ticket-small:hover, .header-site .header-site_book_panel .button-header:hover, .header-site .header-site_book_panel .header-site_book_panel_text a:hover {
  background-color: #BB9114;
  border-color: #BB9114;
  color: #FFF;
}
.header-site .header-site_book_panel .header-site_book_panel_text {
  flex-basis: 50%;
  flex-grow: 0;
  padding-top: 10px;
}
.header-site .header-site_book_panel .header-site_book_panel_text a:hover {
  border-color: #FFF;
}
.header-site .header-site_book_panel .header-site_book_panel_text p {
  font-weight: 700;
}
.header-site .header-site_mobile {
  background-color: transparent;
  border: none;
  border-left: 1px solid #EEE;
  flex-basis: 0;
  flex-grow: 1;
  padding: 20px;
}
.header-site .header-site_mobile:focus {
  outline: none;
}
@media (min-width: 1433px) {
  .header-site .header-site_mobile {
    display: none;
  }
}
.header-site .header-site_search {
  display: flex;
  width: 25px;
  height: 25px;
  margin: 23px 20px 0 0;
}
.header-site .header-site_search .search-icon {
  cursor: pointer;
}
@media (min-width: 1433px) {
  .header-site .header-site_search {
    margin: 45px 20px 0 0;
  }
}

.header-top {
  margin: auto;
  max-width: 1027px;
  position: relative;
  z-index: 20;
}
@media (min-width: 1433px) {
  .header-top {
    background-image: url(/site/images/bg/header.png);
    background-position: center top;
    background-size: 1027px 99px;
    height: 99px;
    padding: 8px 2.5% 0;
  }
}
@media (min-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (min-width: 768px) and (min--moz-device-pixel-ratio: 2), (min-width: 768px) and (-o-min-device-pixel-ratio: 2), (min-width: 768px) and (min-device-pixel-ratio: 2), (min-width: 768px) and (min-resolution: 192dpi), (min-width: 768px) and (min-resolution: 2dppx) {
  .background-size .header-top {
    background-image: url(/site/images/bg/header@2x.png);
  }
}
@media (min-width: 910px) {
  .header-top {
    padding-left: 105px;
    padding-right: 105px;
  }
}
@media (min-width: 1027px) {
  .header-top {
    width: 1027px;
  }
}

.header-links {
  display: none;
  float: right;
  margin-top: 9px;
  text-align: center;
}
@media (min-width: 1433px) {
  .header-links {
    display: block;
  }
}
.header-links .button-ticket {
  margin-bottom: 12px;
}

/* Site Header */
/*
	===========
	Site Footer
	===========
*/
.footer-site {
  align-items: center;
  background-color: #EEE;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 45px 25px;
}
@media (min-width: 820px) {
  .footer-site {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .footer-site {
    padding: 80px 50px;
  }
}
.footer-site .footer-site_right {
  margin-top: 25px;
  text-align: center;
}
@media (min-width: 820px) {
  .footer-site .footer-site_right {
    margin-top: 0;
    text-align: right;
  }
}

.footer-partners {
  padding: 20px 0 55px;
  text-align: center;
}
.footer-partners a {
  margin: 10px;
  display: inline-block;
  width: 118px;
  height: 102px;
  background-size: cover;
  background-position: center center;
  transition: transform 0.5s ease-in-out;
}
.footer-partners a:hover {
  transform: scale(1.1);
  transform-origin: 50% 50%;
}
.footer-partners .footer-partners_ageas {
  margin-bottom: 10px;
}
@media (max-width: 1027px) {
  .footer-partners .footer-partners_ageas {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.attribution {
  font-size: 1rem;
  margin-top: 6px;
}
.attribution a {
  color: inherit;
  text-decoration: none;
}
.attribution a:hover, .attribution a:focus {
  text-decoration: underline;
}

/* Site Footer */
/*
	==========
	Navigation
	==========
*/
.nav-main {
  display: none;
  font-size: 1.4285714286em;
  position: relative;
  text-align: center;
}
@media (min-width: 1433px) {
  .nav-main {
    display: flex;
  }
}
.nav-main > ul {
  display: flex;
}
.nav-main > ul > li {
  display: flex;
}
.nav-main > ul > li + li {
  border-left: 1px solid #e8e9e9;
}
.nav-main > ul > li > a {
  align-items: center;
  display: flex;
  line-height: 1;
  padding: 0 20px;
}
.nav-main li {
  position: static;
}
.nav-main li:hover > ul {
  left: auto;
}
.nav-main li:hover > a {
  background-color: #003f78;
  color: #FFF;
}
.nav-main li:hover > .nav-main_child {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  right: auto;
}
.nav-main li:nth-last-child(-n + 8):hover > .nav-main_child {
  left: auto;
  right: 0;
}
.nav-main a {
  color: #003f78;
  display: block;
  background-color: transparent;
  transition: background-color 0.3s, color 0.3s;
}
.nav-main a:hover {
  background-color: #003f78;
  color: #FFF;
  text-decoration: none;
}
.nav-main .active > a {
  background-color: #003f78;
  color: #FFF;
}
.nav-main .nav-main_child {
  background-color: #FFF;
  border-top: 1px solid #EEE;
  display: flex;
  font-size: 0.875rem;
  position: absolute;
  max-width: 1220px;
  width: 100%;
  left: auto;
  opacity: 0;
  text-align: left;
  top: 100%;
  transform: translateY(-20px);
  visibility: hidden;
  transition: transform 0.5s, opacity 0.5s;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nav-main .nav-main_child {
    left: 0;
  }
}
.nav-main .nav-main_child h2 {
  color: #BB9114;
  font-size: 1.875rem;
  font-weight: 200;
}
@media (min-width: 1024px) {
  .nav-main .nav-main_child h2 {
    font-size: 2rem;
  }
}
.nav-main .nav-main_child ul {
  flex-basis: 225px;
  flex-grow: 0;
  font-size: 1rem;
  max-width: 100%;
  padding: 30px 10px;
  background-color: #BB9114;
}
.nav-main .nav-main_child li {
  border-bottom: 1px solid white;
}
.nav-main .nav-main_child li:hover .nav-main_child {
  opacity: 1;
  transform: none;
  visibility: visible;
}
.nav-main .nav-main_child a {
  padding: 12px 5px 3px;
  color: white;
}
.nav-main .nav-main_child img {
  margin-bottom: 0;
  max-width: 50%;
}
.nav-main .nav-main_child .nav-main_child_text {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  padding: 30px;
}
.nav-main .nav-main_child .nav-main_child_text p {
  color: #16243f;
  line-height: 2.1;
  font-weight: 200;
}
.nav-main .nav-main_child .nav-social {
  margin-top: 36px;
}
.nav-main .nav-main_child .nav-social a {
  display: inline-block;
  padding: 0;
  width: auto;
}
.nav-main .nav-main_child .nav-social a use {
  fill: #BB9114;
  transition: fill 0.3s;
}
.nav-main .nav-main_child .nav-social a:hover {
  background-color: transparent;
}
.nav-main .nav-main_child .nav-social a:hover use {
  fill: #003f78;
}
.nav-main .nav-main_child .nav-main_child {
  flex-direction: column;
  height: 100%;
  padding-left: 45px;
  position: absolute;
  top: 0;
  left: 255px;
  right: 310px;
  transform: none;
  transition: opacity 0.3s;
  width: auto;
}
.nav-main .nav-main_child .nav-main_child h2,
.nav-main .nav-main_child .nav-main_child .nav-main_child_text {
  margin: 0;
}
.nav-main .nav-main_child .nav-main_child h2 {
  background-color: #FFF;
  margin-right: -310px;
  white-space: nowrap;
}
.nav-main .nav-main_child .nav-main_child a {
  padding: 6px 4px 4px;
}

.nav-dropdown {
  background-color: #F3F3F3;
  border-radius: 0 0 10px 10px;
  box-shadow: 7px 7px 7px 0 rgba(0, 0, 0, 0.25);
  left: 0;
  margin-right: auto;
  margin-top: -64px;
  opacity: 0;
  filter: alpha(opacity=0);
  padding: 140px 18px 16px;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  visibility: hidden;
  width: 100%;
  z-index: 5;
}
@media (min-width: 1433px) {
  .nav-dropdown {
    left: 50%;
    margin-left: -433px;
    width: 866px;
  }
}
.nav-dropdown.show {
  opacity: 1;
  filter: alpha(opacity=100);
  top: 80px;
  visibility: visible;
}
.nav-dropdown ul {
  border-top: 1px solid #E0E0E0;
  width: 212px;
}
.nav-dropdown a {
  border-bottom: 1px solid #E0E0E0;
  display: block;
  padding: 6px 0;
}
.nav-dropdown a:hover, .nav-dropdown a:focus, .nav-dropdown a:active {
  border-bottom: 3px solid #BB9114;
  padding-bottom: 4px;
  text-decoration: none;
}
.nav-dropdown .active a {
  border-bottom: 3px solid #BB9114;
  padding-bottom: 4px;
  text-decoration: none;
}
.nav-dropdown .nav-dropdown-inner {
  display: none;
}
.nav-dropdown .nav-dropdown-inner.show {
  display: block;
}
.nav-dropdown .table {
  display: table;
  width: 100%;
}
.nav-dropdown .table > div {
  display: table-cell;
}
.nav-dropdown .nav {
  width: 212px;
}
.nav-dropdown .img {
  vertical-align: middle;
  width: 250px;
}
.nav-dropdown .text {
  padding-left: 22px;
  padding-right: 22px;
}

.nav-select select {
  display: block;
  width: 100%;
}

.nav-mobile {
  font-size: 1.125rem;
  opacity: 1;
  overflow: hidden;
  position: fixed;
  left: -100vw;
  top: 69px;
  bottom: 0;
  transition: opacity 0.3s;
  width: 100%;
  z-index: 200;
}
.nav-mobile.nav-mobile__show {
  left: 0;
  opacity: 1;
}
.nav-mobile.nav-mobile__show .nav-mobile_top li {
  opacity: 1;
}
.nav-mobile.nav-mobile__show .nav-mobile_topbooking {
  display: none;
}
.nav-mobile.nav-mobile__showbooking {
  left: 0;
  opacity: 1;
}
.nav-mobile.nav-mobile__showbooking .nav-mobile_top {
  display: none;
}
.nav-mobile.nav-mobile__showbooking .nav-mobile_topbooking li {
  opacity: 1;
}
@media (min-width: 1433px) {
  .nav-mobile {
    display: none;
  }
}
.nav-mobile .nav-mobile_grid {
  background-color: #FFF;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: stretch;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
}
.nav-mobile .nav-mobile_grid ul {
  border-top: 1px solid #EEE;
  background-color: #FFF;
  height: 100%;
  width: 100%;
}
.nav-mobile .nav-mobile_grid li {
  background-color: #FFF;
  border-right: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
  display: flex;
  float: left;
  height: 12.5%;
  margin: 0;
  width: 50%;
}
@media (max-width: 1023px) {
  .nav-mobile .nav-mobile_grid li:nth-child(2n) {
    border-right: none;
  }
}
@media (min-width: 1024px) {
  .nav-mobile .nav-mobile_grid li {
    width: 33.333333333%;
    height: 20%;
  }
  .nav-mobile .nav-mobile_grid li:nth-child(3n+1) {
    border-left: none;
  }
}
.nav-mobile .nav-mobile_grid a {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-basis: 100%;
  justify-content: center;
  line-height: 1;
  max-width: 100%;
  padding: 12px 4px 4px;
  transition: all 0.3s;
}
.nav-mobile .nav-mobile_grid a > span {
  display: none;
}
@media (min-width: 768px) {
  .nav-mobile .nav-mobile_grid a > span {
    display: block;
    font-size: 0.875rem;
    padding-top: 12px;
  }
}
.nav-mobile .nav-mobile_grid a:focus, .nav-mobile .nav-mobile_grid a:hover {
  background-color: #BB9114;
  color: #FFF;
  text-decoration: none;
}
.nav-mobile .nav-mobile_grid a.js-nav-mobile-back {
  color: #ccc;
}
.nav-mobile .nav-mobile_top {
  z-index: 10;
}
.nav-mobile .nav-mobile_top li {
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-mobile .nav-mobile_child {
  transform: translateX(100%);
  transition: transform 0.3s;
  z-index: 20;
}
.nav-mobile .nav-mobile_child.nav-mobile_child__show {
  transform: translateX(0);
}

.nav-side {
  font-size: 1.1428571429em;
}
.nav-side ul ul {
  display: none;
  padding-left: 20px;
}
.nav-side ul ul a {
  font-size: 0.875em;
  padding-left: 0;
}
.nav-side ul ul ul {
  padding-left: 10px;
}
.nav-side ul ul ul a {
  font-size: 0.8125em;
}
.nav-side a {
  border-bottom: 1px solid #E0E0E0;
  display: block;
  padding: 5px 0 5px 12px;
}
.nav-side .active > a {
  color: #BB9114;
  border-bottom: 3px solid #BB9114;
}
.nav-side .active > ul {
  display: block;
}

.nav-social {
  line-height: 18px;
}
.nav-social a {
  color: #BB9114;
  display: inline-block;
  font-family: 'Arial Black', 'ArialBlack', Arial, Sans-Serif;
  font-size: 1.1428571429em;
  font-weight: 900;
  line-height: 12px;
  margin: 0 7px;
  -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;
  vertical-align: bottom;
}
.nav-social a use {
  fill: #BB9114;
  transition: fill 0.3s;
}
.nav-social a:hover {
  color: #003f78;
  text-decoration: none;
}
.nav-social a:hover use {
  fill: #003f78;
}
.nav-social svg {
  overflow: visible;
}
.nav-social .social {
  position: relative;
}
.nav-social .social:after, .nav-social .social:before {
  background-image: url(/site/images/icon/social-header.svg);
  background-size: 36px 90px;
  content: "";
  -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;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.no-svg .nav-social .social:after, .no-svg .nav-social .social:before {
  background-image: url(/site/images/icon/social-header.png);
}
.nav-social .social:before {
  opacity: 0;
  filter: alpha(opacity=0);
}
.nav-social .social:hover:after {
  opacity: 0;
  filter: alpha(opacity=0);
}
.nav-social .social:hover:before {
  opacity: 1;
  filter: alpha(opacity=100);
}
.nav-social .linkedin {
  height: 18px;
  width: 18px;
}
.nav-social .linkedin:after {
  background-position: 0 0;
}
.nav-social .linkedin:before {
  background-position: -18px 0;
}
.nav-social .twitter {
  height: 18px;
  width: 18px;
}
.nav-social .twitter:after {
  background-position: 0 -18px;
}
.nav-social .twitter:before {
  background-position: -18px -18px;
}
.nav-social .facebook {
  height: 18px;
  width: 10px;
}
.nav-social .facebook:after {
  background-position: 0 -36px;
}
.nav-social .facebook:before {
  background-position: -18px -36px;
}
.nav-social .contact {
  height: 18px;
  width: 16px;
}
.nav-social .contact:after {
  background-position: 0 -54px;
}
.nav-social .contact:before {
  background-position: -18px -54px;
}
.nav-social .instagram {
  height: 18px;
  width: 18px;
}
.nav-social .instagram:after {
  background-position: 0 -72px;
}
.nav-social .instagram:before {
  background-position: -18px -72px;
}

.nav-footer {
  font-size: 1rem;
}
.nav-footer ul,
.nav-footer li {
  display: block;
}
@media (min-width: 640px) {
  .nav-footer ul,
  .nav-footer li {
    display: inline-block;
  }
}
.nav-footer li + li {
  margin-top: 12px;
}
@media (min-width: 640px) {
  .nav-footer li + li {
    margin-left: 24px;
    margin-top: 0;
  }
}
.nav-footer a {
  color: #003f78;
}

.nav-tabs {
  background: #d7d7d7;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSI2MCUiIHN0b3AtY29sb3I9IiNkN2Q3ZDciIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
  background: -moz-linear-gradient(top, #d7d7d7 60%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, #d7d7d7), color-stop(100%, #ffffff));
  background: -webkit-linear-gradient(top, #d7d7d7 60%, #ffffff 100%);
  background: -o-linear-gradient(top, #d7d7d7 60%, #ffffff 100%);
  background: -ms-linear-gradient(top, #d7d7d7 60%, #ffffff 100%);
  background: linear-gradient(to bottom, #d7d7d7 60%, #ffffff 100%);
  font-size: 1.4285714286em;
  font-weight: 500;
  line-height: 1.2;
  padding-top: 15px;
  position: relative;
  text-align: center;
  z-index: 20;
}
@media (min-width: 1024px) {
  .nav-tabs {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .nav-tabs ul {
    margin-left: -11px;
    margin-right: -11px;
    margin-top: -34px;
  }
  .nav-tabs ul li {
    float: left;
    padding-left: 11px;
    padding-right: 11px;
    width: 50%;
  }
  .nav-tabs ul li:nth-child(n) {
    clear: none;
  }
  .nav-tabs ul li:nth-child(2n+1) {
    clear: left;
  }
}
@media (min-width: 1024px) {
  .nav-tabs ul {
    margin-left: -11px;
    margin-right: -11px;
  }
  .nav-tabs ul li {
    float: left;
    padding-left: 11px;
    padding-right: 11px;
    width: 25%;
  }
  .nav-tabs ul li:nth-child(n) {
    clear: none;
  }
  .nav-tabs ul li:nth-child(4n+1) {
    clear: left;
  }
}
.nav-tabs ul ul {
  padding-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}
.nav-tabs li {
  margin-bottom: 22px;
}
@media (min-width: 1024px) {
  .nav-tabs li {
    margin-bottom: 0;
  }
}
.nav-tabs li li {
  float: none;
  margin: 0;
  padding: 0;
  width: auto;
}
.nav-tabs li li + li {
  margin-top: 4px;
}
.nav-tabs li li a {
  color: #003f78;
  font-size: 0.8em;
  font-weight: 400;
}
.nav-tabs a {
  transition: color 0.3s;
}
.nav-tabs .nav-tabs_inner {
  background: #dfdfdf;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RmZGZkZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjY2JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjY2JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(top, #dfdfdf 0%, #ffffff 66%, #ffffff 66%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #dfdfdf), color-stop(66%, #ffffff), color-stop(66%, #ffffff));
  background: -webkit-linear-gradient(top, #dfdfdf 0%, #ffffff 66%, #ffffff 66%);
  background: -o-linear-gradient(top, #dfdfdf 0%, #ffffff 66%, #ffffff 66%);
  background: -ms-linear-gradient(top, #dfdfdf 0%, #ffffff 66%, #ffffff 66%);
  background: linear-gradient(to bottom, #dfdfdf 0%, #ffffff 66%, #ffffff 66%);
  border-radius: 50px;
  border-top: 2px solid #FFF;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
  color: #BB9114;
  display: block;
  padding-top: 10px;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.lt-ie9 .nav-tabs .nav-tabs_inner {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfdfdf', endColorstr='#ffffff',GradientType=0 );
}
@media (min-width: 1024px) {
  .nav-tabs .nav-tabs_inner {
    border-radius: 50px 50px 0 0;
  }
}
.nav-tabs .nav-tabs_inner > a {
  color: inherit;
}
.nav-tabs .nav-tabs_inner:hover {
  color: #003f78;
  text-decoration: none;
}
.nav-tabs .nav-tabs_inner:hover .image:before {
  opacity: 0;
  filter: alpha(opacity=0);
}
.lt-ie9 .nav-tabs .nav-tabs_inner:hover .image:before {
  display: none;
}
.nav-tabs .nav-tabs_inner:hover .image:after {
  opacity: 1;
  filter: alpha(opacity=100);
}
.lt-ie9 .nav-tabs .nav-tabs_inner:hover .image:after {
  display: block;
}
.nav-tabs .image {
  display: block;
  height: 95px;
  line-height: 1.2;
  margin-bottom: 5px;
  position: relative;
}
.nav-tabs .image:before, .nav-tabs .image:after {
  background-image: url(/site/images/icon/home-tabs.svg);
  background-size: 210px 380px;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -52.5px;
  width: 105px;
  height: 95px;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.no-svg .nav-tabs .image:before, .no-svg .nav-tabs .image:after {
  background-image: url(/site/images/icon/home-tabs.png);
}
.nav-tabs .image:after {
  opacity: 0;
  filter: alpha(opacity=0);
}
.lt-ie9 .nav-tabs .image:after {
  display: none;
}
.nav-tabs .text-table {
  height: 2.4em;
}
.nav-tabs .cricket .image:before {
  background-position: 0 0;
}
.nav-tabs .cricket .image:after {
  background-position: -105px 0;
}
.nav-tabs .hotel .image:before {
  background-position: 0 -95px;
}
.nav-tabs .hotel .image:after {
  background-position: -105px -95px;
}
.nav-tabs .events .image:before {
  background-position: 0 -190px;
}
.nav-tabs .events .image:after {
  background-position: -105px -190px;
}
.nav-tabs .live .image:before, .nav-tabs .live .image:after {
  margin-left: -40px;
}
.nav-tabs .live .image:before {
  background-position: 0 -285px;
}
.nav-tabs .live .image:after {
  background-position: -105px -285px;
}

.nav-signposts {
  background: #d7d7d7;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q3ZDdkNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #d7d7d7 0%, #f4ffff 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d7d7d7), color-stop(100%, white));
  background: -webkit-linear-gradient(top, #d7d7d7 0%, white 100%);
  background: -o-linear-gradient(top, #d7d7d7 0%, white 100%);
  background: -ms-linear-gradient(top, #d7d7d7 0%, white 100%);
  background: linear-gradient(to bottom, #d7d7d7 0%, white 100%);
  background: #d7d7d7;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNkN2Q3ZDciIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
  background: -moz-linear-gradient(top, #d7d7d7 50%, white 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #d7d7d7), color-stop(100%, white));
  background: -webkit-linear-gradient(top, #d7d7d7 50%, white 100%);
  background: -o-linear-gradient(top, #d7d7d7 50%, white 100%);
  background: -ms-linear-gradient(top, #d7d7d7 50%, white 100%);
  background: linear-gradient(to bottom, #d7d7d7 50%, white 100%);
  font-size: 1.4285714286em;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}
.lt-ie9 .nav-signposts {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d7d7d7', endColorstr='#ffffff',GradientType=0 );
}
.lt-ie9 .nav-signposts {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d7d7d7', endColorstr='#ffffff',GradientType=0 );
}
.nav-signposts ul {
  display: table;
  width: 100%;
}
.nav-signposts li {
  background: transparent;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzliYWNjMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #9bacc2 0%, white 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9bacc2), color-stop(100%, white));
  background: -webkit-linear-gradient(top, #9bacc2 0%, white 100%);
  background: -o-linear-gradient(top, #9bacc2 0%, white 100%);
  background: -ms-linear-gradient(top, #9bacc2 0%, white 100%);
  background: linear-gradient(to bottom, #9bacc2 0%, white 100%);
  background-position: 0 -200px;
  background-repeat: repeat-x;
  background-size: 1px 100%;
  border-left: 1px solid #FFF;
  border-right: 1px solid #D6D6D6;
  display: table-cell;
  padding-top: 3px;
  -webkit-transition: background 0.3s;
  -moz-transition: background 0.3s;
  -ms-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  vertical-align: middle;
  width: 25%;
}
.nav-signposts li:first-child {
  border-left: 0;
}
.nav-signposts li:last-child {
  border-right: 0;
}
.nav-signposts a {
  color: #999;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  display: block;
  padding: 15px 8px 10px;
}
@media (min-width: 1024px) {
  .nav-signposts a {
    padding: 25px 16px 20px;
  }
}
.nav-signposts a:hover {
  text-decoration: none;
}
.nav-signposts span {
  display: inline-block;
  max-width: 78%;
  vertical-align: middle;
}
.nav-signposts .active, .nav-signposts li:hover {
  background-color: #FFF;
  background-position: 0 0;
  border-top: 3px solid #003f78;
  padding-top: 0;
}
.lt-ie9 .nav-signposts .active,
.lt-ie9 .nav-signposts li:hover {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9bacc2', endColorstr='#ffffff',GradientType=0 );
}
.nav-signposts .active a, .nav-signposts li:hover a {
  color: #003f78;
}
.nav-signposts .active .icon:before, .nav-signposts li:hover .icon:before {
  opacity: 0;
  filter: alpha(opacity=0);
}
.lt-ie9 .nav-signposts .active .icon:before, .lt-ie9 .nav-signposts li:hover .icon:before {
  display: none;
}
.nav-signposts .active .icon:after, .nav-signposts li:hover .icon:after {
  opacity: 1;
  filter: alpha(opacity=100);
}
.lt-ie9 .nav-signposts .active .icon:after, .lt-ie9 .nav-signposts li:hover .icon:after {
  display: block;
}
.nav-signposts .icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 40px;
  height: 40px;
  vertical-align: middle;
}
@media (min-width: 1024px) {
  .nav-signposts .icon {
    display: inline-block;
    margin-left: 0;
    margin-right: 0;
  }
}
.nav-signposts .icon:after, .nav-signposts .icon:before {
  background-image: url(/site/images/icon/signposts.svg);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.no-svg .nav-signposts .icon:after, .no-svg .nav-signposts .icon:before {
  background-image: url(/site/images/icon/signposts.png);
}
.nav-signposts .icon:before {
  opacity: 1;
  filter: alpha(opacity=100);
}
.nav-signposts .icon:after {
  opacity: 0;
  filter: alpha(opacity=0);
}
.lt-ie9 .nav-signposts .icon:after {
  display: none;
}
.nav-signposts .res-14 .icon {
  width: 28px;
}
.nav-signposts .res-14 .icon:before {
  background-position: -40px 0;
}
.nav-signposts .res-14 .icon:after {
  background-position: 0 0;
}
.nav-signposts .res-15 .icon {
  height: 27px;
}
.nav-signposts .res-15 .icon:before {
  background-position: -40px -40px;
}
.nav-signposts .res-15 .icon:after {
  background-position: 0 -40px;
}
.nav-signposts .res-16 .icon {
  height: 27px;
  width: 35px;
}
.nav-signposts .res-16 .icon:before {
  background-position: -40px -80px;
}
.nav-signposts .res-16 .icon:after {
  background-position: 0 -80px;
}
.nav-signposts .res-17 .icon {
  height: 24px;
  width: 36px;
}
.nav-signposts .res-17 .icon:before {
  background-position: -40px -120px;
}
.nav-signposts .res-17 .icon:after {
  background-position: 0 -120px;
}

.nav-content,
.nav-content-sub {
  border-bottom: 1px solid #E0E0E0;
  padding: 15px 0 7px;
  text-align: center;
}
.nav-content ul + ul,
.nav-content-sub ul + ul {
  border-top: 1px solid #E0E0E0;
  margin-top: 7px;
  padding-top: 15px;
}
.nav-content li,
.nav-content-sub li {
  border-left: 1px solid #E0E0E0;
  display: inline-block;
  margin-bottom: 8px;
  padding-left: 14px;
  padding-right: 14px;
}
.nav-content li:first-child, .nav-content li.first-in-line,
.nav-content-sub li:first-child,
.nav-content-sub li.first-in-line {
  border-left: none;
}
.nav-content a,
.nav-content-sub a {
  color: #003f78;
  display: block;
  padding-top: 4px;
}
.nav-content a:after,
.nav-content-sub a:after {
  border-radius: 2px;
  content: "";
  display: block;
  height: 4px;
  -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-content a:hover,
.nav-content-sub a:hover {
  text-decoration: none;
}
.nav-content a:hover:after,
.nav-content-sub a:hover:after {
  background-color: #BB9114;
}
.nav-content .active a,
.nav-content-sub .active a {
  color: #BB9114;
}
.nav-content .active a:after,
.nav-content-sub .active a:after {
  background-color: #BB9114;
}

.nav-content {
  border-top: 1px solid #E0E0E0;
  font-size: 1.1428571429em;
  line-height: 1;
}
.nav-content ul + ul {
  font-size: 0.875em;
  line-height: 1.1428571429;
}

.nav-content-sub {
  border-bottom: 1px solid #E0E0E0;
  line-height: 1.1428571429;
}

/* Navigation */
/*
	======
	Search
	======
*/
.header-site_search_box {
  float: right;
  height: 50px;
  position: fixed;
  overflow-y: hidden;
  max-height: 0;
  width: 100%;
  right: 0;
  z-index: 30;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease;
}
.header-site_search_box.open {
  max-height: 50px;
}
@media (min-width: 1433px) {
  .header-site_search_box {
    right: 110px;
    width: 350px;
  }
}
@media (min-width: 768px) {
  .header-site_search_box {
    position: absolute;
    z-index: auto;
  }
}
.header-site_search_box .form-search {
  background: #f2f2f2;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YyZjJmMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjY2JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjY2JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(top, #f2f2f2 0%, #ffffff 66%, #ffffff 66%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f2f2f2), color-stop(66%, #ffffff), color-stop(66%, #ffffff));
  background: -webkit-linear-gradient(top, #f2f2f2 0%, #ffffff 66%, #ffffff 66%);
  background: -o-linear-gradient(top, #f2f2f2 0%, #ffffff 66%, #ffffff 66%);
  background: -ms-linear-gradient(top, #f2f2f2 0%, #ffffff 66%, #ffffff 66%);
  background: linear-gradient(to bottom, #f2f2f2 0%, #ffffff 66%, #ffffff 66%);
  height: 50px;
  overflow: hidden;
  padding: 13px 16px 9px 16px;
  position: relative;
  z-index: 11;
  -webkit-transition: border 0.3s, box-shadow 0.3s, height 0.3s, padding 0.3s;
  -moz-transition: border 0.3s, box-shadow 0.3s, height 0.3s, padding 0.3s;
  -ms-transition: border 0.3s, box-shadow 0.3s, height 0.3s, padding 0.3s;
  -o-transition: border 0.3s, box-shadow 0.3s, height 0.3s, padding 0.3s;
  transition: border 0.3s, box-shadow 0.3s, height 0.3s, padding 0.3s;
}
.lt-ie9 .header-site_search_box .form-search {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#ffffff',GradientType=0 );
}
.header-site_search_box .form-search.open {
  border-bottom: 1px solid #C3C3C3;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.1);
  height: 48px;
  margin-top: 4px;
  padding-top: 13px;
  padding-bottom: 9px;
}
@media (min-width: 1433px) {
  .header-site_search_box .form-search.open {
    margin-top: 0;
  }
}
@media (min-width: 1433px) {
  .header-site_search_box .form-search {
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.1);
    width: 350px;
  }
}
.header-site_search_box .form-search button {
  background-color: transparent;
  background-image: url(/site/images/icon/search.svg);
  background-size: 26px 26px;
  border: none;
  height: 100%;
  width: 100%;
  border: 0;
  font-size: 1.4em;
  color: #fff;
}
.no-svg .header-site_search_box .form-search button {
  background-image: url(/site/images/icon/search.png);
}
.header-site_search_box .form-search [type=text] {
  background-color: transparent;
  background-image: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: #BB9114;
  font-size: 1.5714285714em;
  height: 26px;
  line-height: 1.1818181818;
  padding: 0;
  height: 26px;
}
.lt-ie9 .header-site_search_box .form-search [type=text] {
  filter: none;
}
.header-site_search_box .form-search [type=text]:focus {
  outline: none;
}
.header-site_search_box .form-search :-moz-placeholder {
  color: #BB9114;
  font-weight: 500;
  opacity: 1;
}
.header-site_search_box .form-search ::-moz-placeholder {
  color: #BB9114;
  font-weight: 500;
  opacity: 1;
}
.header-site_search_box .form-search ::-webkit-input-placeholder {
  color: #BB9114;
  font-weight: 500;
  opacity: 1;
}
.header-site_search_box .form-search :-ms-input-placeholder {
  color: #BB9114;
  font-weight: 500;
  opacity: 1;
}
.header-site_search_box .form-search .form-buttons,
.header-site_search_box .form-search .form-item {
  margin: 0;
}
.header-site_search_box .form-search .form-buttons {
  float: left;
  background-color: #BB9114;
  position: absolute;
  right: 0;
  width: 50px;
  height: 50px;
  top: 0;
}
.header-site_search_box .form-search .form-item {
  margin: 0 50px 0 10px;
}

/* Search */
/*
	========
	Carousel
	========
*/
.carousel .carousel-item {
  height: 200px;
}
@media (min-width: 768px) {
  .carousel .carousel-item {
    height: 300px;
  }
}
.carousel .carousel-item.item-1 {
  background: #FCC;
}
.carousel .carousel-item.item-2 {
  background: #CFC;
}
.carousel .carousel-item.item-3 {
  background: #CCF;
}
.carousel .carousel-item.item-4 {
  background: #FCF;
}
.carousel .slick-next {
  right: 10px;
}
.carousel .slick-prev {
  left: 10px;
}
.carousel .wrap {
  height: 200px;
}
@media (min-width: 768px) {
  .carousel .wrap {
    height: 300px;
  }
}
.carousel .wrap:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.carousel .wrap .text {
  display: inline-block;
  vertical-align: middle;
}
.carousel .text {
  background: rgba(255, 255, 255, 0.5);
  padding: 10px;
  width: 33.3333%;
}

.home-carousel {
  margin-top: 90px;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .home-carousel {
    margin-top: 0;
    margin-bottom: -99px;
    top: -99px;
  }
}
.home-carousel .slick-slider {
  margin-bottom: 0;
}
.home-carousel .carousel_slide {
  background-position: center center;
  background-size: cover;
  height: 50vh;
  max-height: 625px;
  min-height: 200px;
}
@media (min-width: 768px) {
  .home-carousel .carousel_slide {
    height: 70vh;
  }
}
.home-carousel .carousel_slide_inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: space-between;
  margin: auto;
  max-width: 1000px;
  padding-top: 5px;
  width: 90%;
}
@media (min-width: 768px) {
  .home-carousel .carousel_slide_inner {
    padding-top: 99px;
  }
}
.home-carousel .carousel_slide_inner .button-header {
  display: block;
  margin: 0;
  position: static;
}

/* Carousel */
/*
	===========
	Breadcrumbs
	===========
*/
.breadcrumbs, .search-breadcrumb {
  background-color: #003f78;
  font-size: 0.8571428571em;
  line-height: 20px;
  margin-bottom: 15px;
  padding: 0 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 767px) {
  .breadcrumbs, .search-breadcrumb {
    font-size: 0.7142857143em;
    line-height: 10px;
    margin-bottom: 8px;
    padding: 2px 6px;
  }
}
.breadcrumbs a,
.breadcrumbs span, .search-breadcrumb a,
.search-breadcrumb span {
  line-height: 20px;
  vertical-align: top;
}
@media (max-width: 767px) {
  .breadcrumbs a,
  .breadcrumbs span, .search-breadcrumb a,
  .search-breadcrumb span {
    font-family: sans-serif;
    line-height: 10px;
  }
}
.breadcrumbs a, .search-breadcrumb a {
  color: #BB9114;
  background-image: url(/site/images/icon/white/chevron-small-right.svg);
  background-position: right center;
  background-size: 5px 7px;
  padding-left: 5px;
  padding-right: 10px;
  margin-right: 5px;
}
.no-svg .breadcrumbs a, .no-svg .search-breadcrumb a {
  background-image: url(/site/images/icon/white/chevron-small-right.png);
}
.breadcrumbs a:first-child, .search-breadcrumb a:first-child {
  padding-left: 0;
}
.breadcrumbs a, .search-breadcrumb a {
  color: #BB9114;
  padding-left: 5px;
}
.breadcrumbs a:first-child, .search-breadcrumb a:first-child {
  padding-left: 0;
}
.breadcrumbs li, .search-breadcrumb li {
  list-style-type: none;
  display: inline-block;
}
.breadcrumbs .active, .search-breadcrumb .active {
  color: white;
}

.search-result {
  border-bottom: 1px solid #ccc;
}
.search-result h3 {
  margin-bottom: 0;
  margin-top: 1em;
}

.search-breadcrumb {
  position: static;
  background-color: transparent;
  padding: 0;
}
.search-breadcrumb ul {
  padding-left: 0;
  margin-top: 0;
}
.search-breadcrumb li:before {
  position: static;
}
.search-breadcrumb ul li + li {
  margin-top: 0;
}
.search-breadcrumb a {
  background-image: url(/site/images/icon/alt/chevron-small-right.svg);
}
.search-breadcrumb .active {
  color: #003f78;
}

.force-relative {
  position: relative !important;
}

.hide-breadcrumb {
  display: none;
}

.breadcrumbs-new .breadcrumbs {
  position: relative !important;
}

/* Breadcrumbs */
/*
	==========
	Home Boxes
	==========
*/
.home-boxes .col {
  margin-bottom: 10px;
}
.home-boxes .inner {
  background: #EEF;
}

/* Home Boxes */
/*
	==========
	Background
	==========
*/
.background {
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 10;
  clear: both;
}
@media (min-width: 768px) {
  .background {
    clear: initial;
  }
}
.background.hidden + .content-blocks {
  padding-top: 0;
}
@media (min-width: 768px) {
  .background.hidden + .content-blocks {
    margin-top: 0;
  }
}
.background h1,
.background .subtitle {
  color: inherit;
  font-weight: 500;
  line-height: 1;
}
.background h1 {
  font-size: 2.8571428571em;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .background h1 {
    font-size: 5.7142857143em;
  }
}
.background .inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 140px;
  position: relative;
  z-index: 20;
}
@media (min-width: 768px) {
  .background .inner {
    min-height: 415px;
  }
}
@media (min-width: 768px) {
  .background .inner.match-live-inner {
    min-height: 225px;
  }
}
.background .inner .text {
  display: inline-block;
  max-width: 100%;
  padding-bottom: 30px;
  padding-top: 10px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .background .inner .text {
    padding-bottom: 0;
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .tmpl-2 .background .inner {
    height: 376px;
  }
}
@media (min-width: 1024px) {
  .tmpl-2 .background .inner {
    height: 526px;
  }
}
.background .match-live-inner {
  padding-top: 15px;
}
.background .match-live-inner:before {
  min-height: 200px;
}
.background .subtitle {
  font-size: 2.1428571429em;
  word-wrap: break-word;
}
@media (min-width: 768px) {
  .background .subtitle {
    font-size: 2.2857142857em;
    word-wrap: normal;
  }
}
.background .button-header {
  display: none;
  float: right;
}
@media (min-width: 1024px) {
  .background .button-header {
    display: block;
    order: 2;
  }
}
.background .button-header + .text {
  max-width: 70%;
}
.background .banner-logo {
  background-color: #FFF;
  border-radius: 10px;
  display: inline-block;
  max-width: 100px;
  padding: 15px;
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .background .banner-logo {
    max-width: 242px;
  }
}
.background > div {
  position: relative;
  z-index: 20;
}
.tmpl-2 .background {
  display: none !important;
  margin-top: 85px;
}
@media (min-width: 768px) {
  .tmpl-2 .background {
    margin-top: 0;
  }
}

/* Background */
/*
	=======
	Sidebar
	=======
*/
.home-col {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjciLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjI4Ii8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.28) 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(0, 0, 0, 0.7)), color-stop(100%, rgba(0, 0, 0, 0.28)));
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.28) 100%);
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.28) 100%);
  background: -ms-linear-gradient(left, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.28) 100%);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.28) 100%);
  min-height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -ms-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
  z-index: 50;
}
.lt-ie9 .home-col {
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3000000', endColorstr='#47000000',GradientType=1 );
}
.home-col.open {
  width: 264px;
}
.no-csstransforms .home-col {
  right: -264px;
}
.no-csstransforms .home-col.open {
  right: 0;
}
.home-col + .footer-site {
  padding-top: 0;
}

.home-col-inner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.home-col-content {
  padding: 22px;
  width: 264px;
}

.toggle-home-col {
  background-color: rgba(0, 0, 0, 0.7);
  background-image: url(/site/images/icon/white/chevron-large-left.svg);
  background-position: center center;
  border: none;
  border-radius: 10px 0 0 10px;
  position: absolute;
  right: 100%;
  top: 126px;
  width: 42px;
  height: 46px;
}
.no-svg .toggle-home-col {
  background-image: url(/site/images/icon/white/chevron-large-left.png);
}
.open .toggle-home-col {
  background-image: url(/site/images/icon/white/chevron-large-right.svg);
}
.no-svg .open .toggle-home-col {
  background-image: url(/site/images/icon/white/chevron-large-right.png);
}

.sidebox + .sidebox {
  margin-top: 26px;
}

.sidebox-content {
  background-color: #FFF;
  border: 2px solid #BB9114;
  border-radius: 8px;
  color: #003f78;
  padding: 10px;
}
.sidebox-content .title {
  font-size: 1.2857142857em;
}
.sidebox-content .title,
.sidebox-content .title a {
  color: #BB9114;
}

.fixture {
  text-align: center;
}
.fixture .crests {
  padding-bottom: 16px;
}
.fixture .crests img {
  max-width: 30%;
}
.fixture .vs {
  background-color: #BBBBBB;
  border-radius: 50%;
  color: #FFF;
  display: inline-block;
  height: 28px;
  line-height: 28px;
  width: 28px;
  margin-left: 12px;
  margin-right: 12px;
}
.fixture .clubs span {
  color: #003f78;
  font-size: 1.2857142857em;
}
.fixture .type {
  color: #777;
}
.fixture .date {
  color: #BB9114;
}
.fixture .details {
  margin-bottom: 14px;
}
.fixture [class*=button] + [class*=button] {
  margin-top: 6px;
}
@media (min-width: 768px) {
  .fixture [class*=button] + [class*=button] {
    margin-top: 0;
  }
}

/* Sidebar */
/*
	=======
	Twitter
	=======
*/
.tweet + .tweet {
  margin-top: 12px;
}
.tweet .tweet_text {
  color: #003f78;
}
.tweet .tweet_text a {
  color: #BB9114;
}
.tweet .tweet_time a {
  color: #BB9114;
}
.tweet .tweet_user {
  float: left;
  width: 22px;
}
.tweet .tweet_user ~ .tweet_text,
.tweet .tweet_user ~ .tweet_time {
  margin-left: 40px;
}

/* Twitter */
/*
	==============
	Content Blocks
	==============
*/
.content-blocks {
  margin-bottom: 30px;
}
.content-blocks .content-block {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .content-blocks {
    padding-top: 0;
  }
}

.content-block + .content-block {
  margin-top: 30px;
}
.content-block + .content-block-matches,
.content-block + .content-block-nomargin {
  margin-top: 0;
}
.content-block + .squad {
  margin-top: 5px;
}
.content-block > :last-child {
  margin-bottom: 0;
}
.content-block.hidden + .content-block {
  margin-top: 0;
}

.content-block-heading, .video {
  color: #003f78;
  font-weight: 400;
  line-height: 1.2;
}
.content-block-heading time, .video time {
  color: #BB9114;
  display: block;
  font-size: 1.4285714286em;
  font-weight: 500;
  margin-top: 10px;
}
.content-block-heading .heading, .video .heading {
  font-size: 2.8571428571em;
  font-weight: 400;
  margin-bottom: 0;
}
.content-block-heading .subtitle, .video .subtitle {
  font-size: 2.1428571429em;
}
.content-block-heading .video-embed-frame[data-video-id], .video .video-embed-frame[data-video-id] {
  padding-bottom: 10px;
}
.content-block-heading.video-rte, .video.video-rte {
  line-height: 1.4;
  margin: 10px 0;
}
.content-block-heading.video-rte p:last-of-type, .video.video-rte p:last-of-type {
  margin: 0;
}
.content-block-heading + .content-block, .video + .content-block {
  margin-top: 15px;
}

.content-block-intro {
  font-size: 1.1428571429em;
  line-height: 1.6;
}

.content-block-quote, .content-block-quote-alt {
  background-color: #BB9114;
  border-radius: 3px;
  color: #FFF;
  font-size: 1.4285714286em;
  font-weight: 500;
  position: relative;
  text-align: center;
}
.content-block-quote:after, .content-block-quote-alt:after {
  background-color: #003f78;
  background-image: url(/site/images/icon/white/quote.png);
  background-size: 32px 32px;
  border-radius: 50%;
  content: '';
  height: 32px;
  left: 50%;
  margin-left: -16px;
  margin-top: -16px;
  position: absolute;
  top: 100%;
  width: 32px;
}
@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) {
  .content-block-quote:after, .content-block-quote-alt:after {
    background-image: url(/site/images/icon/white/quote@2x.png);
  }
}
.content-block-quote a, .content-block-quote-alt a {
  color: inherit;
  display: block;
  text-decoration: none;
}
.content-block-quote blockquote, .content-block-quote-alt blockquote {
  margin: 0;
  padding: 26px 30px;
}
.content-block-quote cite, .content-block-quote-alt cite {
  font-size: 0.7em;
  font-style: normal;
}

.content-block-quote-alt {
  background-color: #003f78;
  color: #FFF;
}
.content-block-quote-alt cite {
  color: #BB9114;
}
.content-block-quote-alt:after {
  background-color: #BB9114;
}

.content-block-rte, .video-rte {
  /*+ .video {
  	margin-top: 10px;
  }*/
}
.content-block-rte + .content-block, .video-rte + .content-block {
  margin-top: 25px;
}

.content-block-league > h2 {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .content-block-league > h2 {
    margin-top: 0;
  }
}
.content-block-league + .content-block-league-info {
  margin-top: 20px;
}

.content-block-announce {
  letter-spacing: -0.05em;
}
.content-block-announce p {
  margin-bottom: 0;
}

.content-block-cricket {
  background-color: #BB9114;
  margin-top: -40px;
  padding: 36px 0;
}
@media (min-width: 768px) {
  .content-block-cricket .col-4 {
    float: left;
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .content-block-cricket .col-4 {
    width: 33.3333%;
  }
}
.content-block-cricket .col-4 + .col-4 {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .content-block-cricket .col-4 + .col-4 {
    margin-top: 0;
  }
}
.content-block-cricket .col-4:first-child {
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 1024px) {
  .content-block-cricket .col-4:first-child {
    margin-bottom: 0;
    width: 33.3333%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content-block-cricket .news-mini-listing {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.content-block-cricket .news-mini-listing img {
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .content-block-cricket .news-mini-listing img {
    margin-bottom: 0;
  }
}
.content-block-cricket .news-mini-listing .post {
  margin-bottom: 0;
}
.content-block-cricket .news-mini-listing .post + .post {
  margin-top: 15px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content-block-cricket .news-mini-listing .post + .post {
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .content-block-cricket .news-mini-listing .post {
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    width: 50%;
  }
}
@media (min-width: 1024px) and (max-width: 1066px) {
  .content-block-cricket .fixture .button + .button, .content-block-cricket .fixture .button-search + .button, .content-block-cricket .fixture .button-list + .button, .content-block-cricket .fixture .button-ticket-small + .button, .content-block-cricket .fixture .button-header + .button, .content-block-cricket .fixture .header-site .header-site_book_panel .header-site_book_panel_text a + .button, .header-site .header-site_book_panel .header-site_book_panel_text .content-block-cricket .fixture a + .button, .content-block-cricket .fixture .button + .button-search, .content-block-cricket .fixture .button-search + .button-search, .content-block-cricket .fixture .button-list + .button-search, .content-block-cricket .fixture .button-ticket-small + .button-search, .content-block-cricket .fixture .button-header + .button-search, .content-block-cricket .fixture .header-site .header-site_book_panel .header-site_book_panel_text a + .button-search, .header-site .header-site_book_panel .header-site_book_panel_text .content-block-cricket .fixture a + .button-search, .content-block-cricket .fixture .button + .button-list, .content-block-cricket .fixture .button-search + .button-list, .content-block-cricket .fixture .button-list + .button-list, .content-block-cricket .fixture .button-ticket-small + .button-list, .content-block-cricket .fixture .button-header + .button-list, .content-block-cricket .fixture .header-site .header-site_book_panel .header-site_book_panel_text a + .button-list, .header-site .header-site_book_panel .header-site_book_panel_text .content-block-cricket .fixture a + .button-list, .content-block-cricket .fixture .button + .button-ticket-small, .content-block-cricket .fixture .button-search + .button-ticket-small, .content-block-cricket .fixture .button-list + .button-ticket-small, .content-block-cricket .fixture .button-ticket-small + .button-ticket-small, .content-block-cricket .fixture .button-header + .button-ticket-small, .content-block-cricket .fixture .header-site .header-site_book_panel .header-site_book_panel_text a + .button-ticket-small, .header-site .header-site_book_panel .header-site_book_panel_text .content-block-cricket .fixture a + .button-ticket-small, .content-block-cricket .fixture .button + .button-header, .content-block-cricket .fixture .button-search + .button-header, .content-block-cricket .fixture .button-list + .button-header, .content-block-cricket .fixture .button-ticket-small + .button-header, .content-block-cricket .fixture .button-header + .button-header, .content-block-cricket .fixture .header-site .header-site_book_panel .header-site_book_panel_text a + .button-header, .header-site .header-site_book_panel .header-site_book_panel_text .content-block-cricket .fixture a + .button-header, .content-block-cricket .fixture .header-site .header-site_book_panel .header-site_book_panel_text .button + a, .header-site .header-site_book_panel .header-site_book_panel_text .content-block-cricket .fixture .button + a, .content-block-cricket .fixture .header-site .header-site_book_panel .header-site_book_panel_text .button-search + a, .header-site .header-site_book_panel .header-site_book_panel_text .content-block-cricket .fixture .button-search + a, .content-block-cricket .fixture .header-site .header-site_book_panel .header-site_book_panel_text .button-list + a, .header-site .header-site_book_panel .header-site_book_panel_text .content-block-cricket .fixture .button-list + a, .content-block-cricket .fixture .header-site .header-site_book_panel .header-site_book_panel_text .button-ticket-small + a, .header-site .header-site_book_panel .header-site_book_panel_text .content-block-cricket .fixture .button-ticket-small + a, .content-block-cricket .fixture .header-site .header-site_book_panel .header-site_book_panel_text .button-header + a, .header-site .header-site_book_panel .header-site_book_panel_text .content-block-cricket .fixture .button-header + a, .content-block-cricket .fixture .header-site .header-site_book_panel .header-site_book_panel_text a + a, .header-site .header-site_book_panel .header-site_book_panel_text .content-block-cricket .fixture a + a {
    margin-top: 5px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #side-tab-tv {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .content-block-promo {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.content-block-promo h2,
.content-block-promo p {
  font-weight: 500;
  line-height: 1;
}
.content-block-promo h2 {
  font-size: 1.2857142857em;
  line-height: 1.1111111111;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .content-block-promo h2 {
    font-size: 1.4285714286em;
    line-height: 1.1;
  }
}
@media (min-width: 1024px) {
  .content-block-promo h2 {
    font-size: 1.8571428571em;
    line-height: 1.0769230769;
  }
}
.content-block-promo p {
  font-size: 0.8571428571em;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .content-block-promo p {
    font-size: 1em;
  }
}
@media (min-width: 1024px) {
  .content-block-promo p {
    font-size: 1.2857142857em;
  }
}
.content-block-promo a {
  bottom: 10px;
  left: 10px;
  position: absolute;
}
@media (min-width: 1024px) {
  .content-block-promo a {
    bottom: 14px;
    left: 12px;
  }
}
.content-block-promo .promo-box {
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
  overflow: hidden;
}
.content-block-promo .promo-box + .promo-box {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .content-block-promo .promo-box + .promo-box {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .content-block-promo .promo-box {
    float: left;
    padding-left: 20px;
    padding-right: 20px;
    width: 50%;
  }
}
.content-block-promo .inner {
  border-radius: 3px;
  padding-bottom: 100%;
  position: relative;
}
.content-block-promo .text {
  border-radius: 0 3px 0 3px;
  float: right;
  padding: 10px 10px 54px;
  position: relative;
  right: 0;
  top: 0;
  width: 135px;
}
@media (min-width: 768px) {
  .content-block-promo .text {
    width: 150px;
  }
}
@media (min-width: 1024px) {
  .content-block-promo .text {
    padding: 16px 12px 66px;
    width: 208px;
  }
}
.content-block-promo .text .bg-community-orange-light {
  color: #005696;
}
.content-block-promo .text .bg-community-orange-light h2 {
  color: #FFF;
}
.content-block-promo .text .bg-community-green {
  color: #005696;
}
.content-block-promo .text .bg-community-green h2 {
  color: #FFF;
}
.content-block-promo .text .bg-hotel {
  color: #FFF;
}
.content-block-promo .text .bg-hotel h2 {
  color: #FFF;
}
.content-block-promo .text .bg-hotel .subtitle {
  color: #322110;
}
.content-block-promo .text .bg-hotel-light {
  color: rgba(50, 32, 16, 0.7);
}
.content-block-promo .text .bg-hotel-light h2 {
  color: #322110;
}
.content-block-promo .text .bg-hotel-light .subtitle {
  color: rgba(50, 32, 16, 0.7);
}
.content-block-promo .text .bg-restaurant-alt {
  color: #FFF;
}
.content-block-promo .text .bg-restaurant-alt h2 {
  color: #FFF;
}
.content-block-promo .text .bg-restaurant-alt .subtitle {
  color: #002B49;
}
.content-block-promo .text .bg-restaurant-light {
  color: #e06c2a;
}
.content-block-promo .text .bg-restaurant-light h2 {
  color: #e06c2a;
}
.content-block-promo .text .bg-restaurant-light .subtitle {
  color: #002B49;
}
.content-block-promo .text .bg-spa-light {
  color: #FFF;
}
.content-block-promo .text .bg-spa-light h2 {
  color: #FFF;
}
.content-block-promo .text .bg-spa-light .subtitle {
  color: #6c7e7e;
}
.content-block-promo .text .bg-spa-alt h2 {
  color: #FFF;
}
.content-block-promo .text .bg-spa-alt .subtitle {
  color: #6c7e7e;
}
.content-block-promo .subtitle {
  font-size: 1.1428571429em;
  line-height: 1.25;
  margin-bottom: 6px;
}
@media (min-width: 1024px) {
  .content-block-promo .subtitle {
    font-size: 1.2857142857em;
    line-height: 1.2222222222;
  }
}
@media (min-width: 1024px) {
  .content-block-promo .subtitle {
    font-size: 1.5714285714em;
    line-height: 1.2727272727;
  }
}
.content-block-promo .subimg {
  border-radius: 0 0 10px 10px;
  clear: right;
  float: right;
  margin-top: -10px;
  width: 208px;
}
.content-block-promo .phone {
  background-image: url(/site/images/icon/white/phone.svg);
  background-position: left center;
  color: #FFF;
  font-size: 1.2857142857em;
  letter-spacing: -0.03em;
  line-height: 1.1111111111;
  margin-top: 12px;
  padding-left: 16px;
  padding-top: 7px;
}
.no-svg .content-block-promo .phone {
  background-image: url(/site/images/icon/white/phone.png);
}
@media (max-width: 1023px) {
  .content-block-promo .button, .content-block-promo .button-search, .content-block-promo .button-list, .content-block-promo .button-ticket-small, .content-block-promo .button-header, .content-block-promo .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .content-block-promo a,
  .content-block-promo .button-white,
  .content-block-promo .button-white-ticket {
    font-size: 1em;
  }
}
@media (max-width: 767px) {
  .content-block-promo .button, .content-block-promo .button-search, .content-block-promo .button-list, .content-block-promo .button-ticket-small, .content-block-promo .button-header, .content-block-promo .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .content-block-promo a,
  .content-block-promo .button-white,
  .content-block-promo .button-white-ticket {
    font-size: 0.8571428571em;
  }
}

.content-block-promo-single .promo-box {
  max-width: 100%;
}
@media (min-width: 768px) {
  .content-block-promo-single .promo-box {
    float: none;
    width: auto;
  }
}
.content-block-promo-single .inner {
  min-height: 200px;
  padding-bottom: 48%;
}
@media (min-width: 768px) {
  .content-block-promo-single .inner {
    padding-bottom: 48%;
  }
}

.content-block-social .linethrough {
  margin-bottom: 16px;
}

.content-block-faqs {
  border-bottom: 1px solid #E0E0E0;
  -webkit-transition: border 0.5s;
  -moz-transition: border 0.5s;
  -ms-transition: border 0.5s;
  -o-transition: border 0.5s;
  transition: border 0.5s;
}
.content-block-faqs h3,
.content-block-faqs dt {
  cursor: pointer;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.content-block-faqs h3:after,
.content-block-faqs dt:after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  height: 15px;
  width: 15px;
  background-image: url(/site/images/icon/dropdown.png);
  background-position: 0 0;
}
.content-block-faqs dt,
.content-block-faqs dd {
  padding-left: 32px;
}
.content-block-faqs dd,
.content-block-faqs .list {
  height: 0;
  overflow: hidden;
  position: relative;
  -webkit-transition: height 0.5s;
  -moz-transition: height 0.5s;
  -ms-transition: height 0.5s;
  -o-transition: height 0.5s;
  transition: height 0.5s;
}
.content-block-faqs dl {
  counter-reset: faq;
  margin: 0;
  padding: 0 0 12px;
}
.content-block-faqs dt {
  color: #003f78;
  position: relative;
}
.content-block-faqs dt:before {
  background-color: #003f78;
  border-radius: 50%;
  color: #FFF;
  counter-increment: faq;
  content: counter(faq);
  font-family: sans-serif;
  font-size: 0.8571428571em;
  height: 20px;
  width: 20px;
  left: 0;
  top: 0;
  position: absolute;
  text-align: center;
  line-height: 20px;
  -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;
}
.content-block-faqs dt.active {
  color: #BB9114;
}
.content-block-faqs dt.active:before {
  background-color: #BB9114;
}
.content-block-faqs dt.active:after {
  background-position: 0 -15px;
}
.content-block-faqs dd {
  margin-bottom: 6px;
  margin-left: 0;
}
.content-block-faqs.active {
  border-bottom: 3px solid #BB9114;
}
.content-block-faqs.active h3 {
  color: #BB9114;
}
.content-block-faqs.active > h3:after {
  background-position: 0 -15px;
}

.content-block-sharethis {
  border-bottom: 1px solid #E0E0E0;
  border-top: 1px solid #E0E0E0;
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .content-block-sharethis {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.content-block-sharethis > div {
  clear: both;
}
@media (min-width: 640px) {
  .content-block-sharethis > div {
    clear: none;
  }
}
.content-block-sharethis .h2,
.content-block-sharethis [class^=st_] {
  display: inline-block;
  vertical-align: middle;
}
.content-block-sharethis [class^=st_] {
  height: 37px;
  width: 38px;
}
.content-block-sharethis .button, .content-block-sharethis .button-search, .content-block-sharethis .button-list, .content-block-sharethis .button-ticket-small, .content-block-sharethis .button-header, .content-block-sharethis .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .content-block-sharethis a {
  float: right;
  margin-top: 2px;
}
.content-block-sharethis .h2 {
  display: block;
  margin-bottom: 0;
}
@media (min-width: 640px) {
  .content-block-sharethis .h2 {
    display: inline;
  }
}
.content-block-sharethis .stButton .stLarge:hover {
  background-position: 0 0;
}
.content-block-sharethis + .content-block {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .content-block-sharethis + .content-block-latest {
    margin-top: 0;
  }
}

.content-block-hero {
  height: 374px;
}

.content-block-video {
  position: relative;
}
.content-block-video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.content-block-video .img {
  opacity: 1;
  filter: alpha(opacity=100);
  position: relative;
  text-align: center;
  -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: 30;
}
.content-block-video .img.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.content-block-video .img.faded {
  visibility: hidden;
  z-index: 20;
}
.content-block-video .video-embed-frame {
  opacity: 0;
  filter: alpha(opacity=0);
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.content-block-video .content-block {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content-block-video .fade .video-embed-frame {
  opacity: 1;
  filter: alpha(opacity=100);
}
.content-block-video .video-embed-caption {
  display: none;
}

.video.wrap .video-embed-frame .static-image {
  width: 100%;
}
.video.wrap .video-embed-frame .video-iframe {
  display: none;
}
.video.wrap .video-embed-frame.active .video-iframe {
  display: block;
}
.video.wrap .video-embed-frame.active .static-image {
  visibility: hidden;
}
.video.wrap .video-embed-frame.active .static-image-play-button {
  display: none;
}

.video-container .video-results .video-block, .video-container .video-no-results {
  display: none;
}
.video-container .video-results .video-block.show, .video-container .video-no-results.show {
  margin-top: 40px;
  display: block;
}
.video-container .static-image-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 48px;
  margin-left: -34px;
  margin-top: -24px;
  -moz-transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  -webkit-transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  z-index: 63;
  border: none;
  background-color: transparent;
  padding: 0;
}
.video-container .subtitle {
  color: #BB9114;
}
.video-container .video-block {
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 30px;
}

.linkblocks-2, .linkblocks-3, .linkblocks-4, .linkblocks-5 {
  margin-left: -7px;
  margin-right: -7px;
  text-align: center;
}
.linkblocks-2 a, .linkblocks-3 a, .linkblocks-4 a, .linkblocks-5 a {
  color: #BB9114;
  display: inline-block;
  font-size: 1.2857142857em;
  max-width: 338px;
  min-width: 235px;
  padding: 7px;
  text-align: left;
  vertical-align: top;
}
@media (min-width: 768px) {
  .linkblocks-2 a, .linkblocks-3 a, .linkblocks-4 a, .linkblocks-5 a {
    float: left;
    margin-bottom: 0;
  }
}
.linkblocks-2 img, .linkblocks-3 img, .linkblocks-4 img, .linkblocks-5 img {
  display: block;
  margin-bottom: 0.5em;
}

@media (min-width: 768px) {
  .linkblocks-2 a {
    width: 50%;
    max-width: 510px;
  }
}

@media (min-width: 768px) {
  .linkblocks-3 a {
    width: 33.3333%;
  }
  .linkblocks-3 a:nth-child(4n) {
    clear: left;
  }
}

.linkblocks-4 a {
  float: none;
  max-width: 338px;
}
@media (min-width: 768px) {
  .linkblocks-4 a {
    width: 50%;
  }
}
@media (min-width: 1036px) {
  .linkblocks-4 a {
    float: left;
    width: 25%;
  }
}

.linkblocks-5 a {
  max-width: 205px;
  min-width: 205px;
}
@media (min-width: 768px) {
  .linkblocks-5 a {
    width: 20%;
  }
}

.content-block-profile-side .profile-block {
  text-align: center;
}
.content-block-profile-side .profile-block + .profile-block {
  margin-top: 8px;
}
.content-block-profile-side .profile-button {
  margin-left: auto;
  margin-right: auto;
  max-width: 170px;
}
.content-block-profile-side .profile-button a {
  display: block;
}
.content-block-profile-side .profile-button .button-arrow-back:before {
  float: left;
  margin-left: 4px;
  margin-top: 4px;
}

.content-block-stats {
  background-color: #F0F0F0;
  color: #003f78;
  border-radius: 8px;
  padding: 20px 20px 10px;
}
.content-block-stats dl {
  margin: 0 -5px;
}
.content-block-stats dt,
.content-block-stats dd {
  float: left;
  margin: 0 0 10px;
  padding-left: 5px;
  padding-right: 5px;
}
.content-block-stats dt {
  width: 30%;
}
.content-block-stats dt:nth-child(2n+1) {
  clear: left;
}
@media (min-width: 768px) {
  .content-block-stats dt:nth-child(2n+1) {
    clear: none;
  }
}
@media (min-width: 768px) {
  .content-block-stats dt:nth-child(4n+1) {
    clear: left;
  }
}
@media (min-width: 768px) {
  .content-block-stats dt {
    width: 15%;
  }
}
.content-block-stats dd {
  width: 70%;
}
@media (min-width: 768px) {
  .content-block-stats dd {
    width: 35%;
  }
}

.content-block-live {
  border-top: 1px solid #E0E0E0;
}
.content-block-live .blocks {
  margin-left: -3px;
  margin-right: -3px;
}
.content-block-live .block {
  color: #FFF;
  float: left;
  line-height: 1.2;
  margin-bottom: 6px;
  padding-left: 3px;
  padding-right: 3px;
  width: 33.3333%;
}
@media (min-width: 768px) {
  .content-block-live .block {
    width: 20%;
  }
}
@media (min-width: 1024px) {
  .content-block-live .block {
    width: 14.2857%;
  }
}
.content-block-live .month {
  font-size: 1.2857142857em;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .content-block-live .month {
    font-size: 1.8571428571em;
  }
}
.content-block-live .month .inner-content:before {
  content: '';
  display: inline-block;
  height: 100%;
  line-height: 100%;
  margin-left: -1px;
  vertical-align: middle;
  width: 1px;
}
.content-block-live .month .text {
  background-color: transparent;
  background-image: none;
  display: inline-block;
  max-width: 100%;
  padding: 0;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .content-block-live .month .text {
    width: 100%;
  }
}
.content-block-live .year {
  display: block;
  font-size: 0.6923076923em;
  font-weight: 400;
}
.content-block-live .inner {
  background-color: #BB9114;
  background-position: center center;
  background-size: cover;
  color: #FFF;
  display: block;
  padding-bottom: 100%;
  position: relative;
}
.content-block-live .inner-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.content-block-live .text {
  background: url(/site/images/black-50.png);
  background: rgba(0, 0, 0, 0.5);
  padding: 6px;
}
.content-block-live .date {
  background-color: #003f78;
  font-size: 1.2857142857em;
  line-height: 1;
  padding: 8px 8px 4px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.content-block-formz textarea {
  min-height: 110px;
}
.content-block-formz [id$=_wrap] {
  margin-bottom: 12px;
}
.content-block-formz .inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 512px;
}
.content-block-formz .actions {
  text-align: right;
}

.content-block-booking form {
  margin-left: -10px;
  margin-right: -10px;
}
.content-block-booking label {
  display: block;
  font-size: 1.5714285714em;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
  min-height: 36px;
}
.content-block-booking label small {
  display: block;
  font-size: 0.6363636364em;
}
.content-block-booking .field-a,
.content-block-booking .field-b {
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .content-block-booking .field-a {
    float: left;
    width: 50%;
  }
}
@media (min-width: 1100px) {
  .content-block-booking .field-a {
    float: left;
    width: 20%;
  }
}
@media (min-width: 768px) {
  .content-block-booking .field-b {
    float: left;
    width: 33.3333%;
  }
}
@media (min-width: 1100px) {
  .content-block-booking .field-b {
    float: left;
    width: 20%;
  }
}
.content-block-booking .field-wrap {
  padding-top: 3px;
}
.content-block-booking .datepicker {
  background-image: url(/site/images/icon/hotel/calendar.svg);
  font-size: 1em;
}
.no-svg .content-block-booking .datepicker {
  background-image: url(/site/images/icon/hotel/calendar.png);
}
.content-block-booking .form-buttons {
  clear: both;
  padding-left: 10px;
  padding-right: 10px;
  text-align: right;
}

.content-block-conference-form textarea {
  height: 142px;
}
.content-block-conference-form label,
.content-block-conference-form .lbl {
  color: #003f78;
  display: block;
  font-size: 1.5714285714em;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.content-block-conference-form label small,
.content-block-conference-form .lbl small {
  font-size: 0.6363636364em;
}
.content-block-conference-form .field-group,
.content-block-conference-form .field {
  padding-left: 25px;
  padding-right: 25px;
}
.content-block-conference-form .field-group:nth-child(2n+1),
.content-block-conference-form .field:nth-child(2n+1) {
  clear: left;
}
@media (min-width: 768px) {
  .content-block-conference-form .field-group,
  .content-block-conference-form .field {
    float: left;
    width: 50%;
  }
}
.content-block-conference-form .lbl-sub {
  color: #BB9114;
  font-size: 1em;
  font-weight: 500;
}
.content-block-conference-form .fields {
  margin-left: -25px;
  margin-right: -25px;
}
.content-block-conference-form .fields-name .field {
  clear: none;
}
@media (min-width: 768px) {
  .content-block-conference-form .fields-name .field {
    width: 40%;
  }
}
@media (min-width: 768px) {
  .content-block-conference-form .fields-name .field:first-child {
    width: 20%;
  }
}
.content-block-conference-form .field {
  margin-bottom: 38px;
}
.content-block-conference-form .field-group .field {
  float: none;
  padding-left: 0;
  padding-right: 0;
  width: auto;
}
.content-block-conference-form .datepicker {
  display: inline-block;
  font-size: 1em;
  margin-right: 10px;
  width: 185px;
}
.content-block-conference-form .radiogroup {
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}
.content-block-conference-form .radiogroup label {
  background-color: #003f78;
  border-radius: 6px;
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font-size: 1.1428571429em;
  font-weight: 700;
  line-height: 28px;
  padding-top: 2px;
  text-align: center;
  -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;
  min-width: 80px;
}
.content-block-conference-form .radiogroup [type=radio] {
  position: absolute;
  left: -999em;
}
.content-block-conference-form .radiogroup [type=radio]:checked + label {
  background-color: #BB9114;
  color: #003f78;
}
.content-block-conference-form .error-container label {
  font-size: 1em;
}

.match-report .buttons a {
  margin-top: 14px;
}
.match-report .sidebox-tabs .tabs-links a {
  padding-left: 6px;
  padding-right: 6px;
}
@media (max-width: 1023px) {
  .match-report .sidebox [class*=button] {
    font-size: 1.1428571429em;
  }
}
.match-report .sidebox [class*=button] + [class*=button] {
  margin-top: 6px;
}
@media (min-width: 1024px) {
  .match-report .sidebox [class*=button] + [class*=button] {
    margin-top: 0;
  }
}

.content-block-linkblocks + .content-block {
  margin-top: 20px;
}
.content-block-linkblocks + .content-block-directions {
  margin-top: 40px;
}

/* Content Blocks */
/*
	========
	Articles
	========
*/
.articles {
  color: #777;
}
@media (min-width: 768px) {
  .articles {
    margin-left: -7px;
    margin-right: -7px;
  }
  .articles .post {
    float: left;
    padding-left: 7px;
    padding-right: 7px;
    width: 33.3333333333%;
  }
  .articles .post:nth-child(n) {
    clear: none;
  }
  .articles .post:nth-child(3n+1) {
    clear: left;
  }
}
.articles h3 {
  font-size: 1.2857142857em;
  font-weight: 400;
  margin: 10px 0 0;
}
.articles time {
  color: #003f78;
  display: block;
  margin-top: 0;
}
.articles a {
  color: #BB9114;
}

@media (min-width: 768px) {
  .post {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) {
  .post .image {
    float: left;
    max-width: 180px;
  }
}
@media (min-width: 768px) {
  .post .image + .text {
    margin-left: 200px;
  }
}
.post + .post {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .post + .post {
    margin-top: 0;
  }
}

.post-featured h2 {
  margin-bottom: 0;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .post-featured h2 {
    margin-top: 0;
  }
}
.post-featured time {
  color: #BB9114;
  display: block;
  font-size: 1.1428571429em;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .post-featured .image {
    float: left;
    max-width: 480px;
  }
}
@media (min-width: 768px) {
  .post-featured .image + .text {
    margin-left: 510px;
  }
}

.news-mini-listing h3 {
  font-size: 1em;
}
.news-mini-listing h3,
.news-mini-listing time {
  line-height: 1.2;
}
.news-mini-listing a:hover {
  text-decoration: none;
}
@media (min-width: 1024px) {
  .news-mini-listing img {
    float: left;
    width: 130px;
  }
}
@media (min-width: 1100px) {
  .news-mini-listing img {
    width: 160px;
  }
}
@media (min-width: 1024px) {
  .news-mini-listing img + .text {
    margin-left: 140px;
  }
}
@media (min-width: 1100px) {
  .news-mini-listing img + .text {
    margin-left: 170px;
  }
}
.news-mini-listing h3 {
  color: #777;
  margin-bottom: 0;
}
.news-mini-listing time {
  color: #003f78;
  display: block;
  font-size: 0.8571428571em;
  margin-bottom: 14px;
}
.news-mini-listing .post {
  display: block;
}
.news-mini-listing .post + .post {
  margin-top: 16px;
}

/* Articles */
/*
	==============
	Footer Contact
	==============
*/
.footer-contact {
  background-color: #BB9114;
  padding: 12px 0;
}
.footer-contact > * + * {
  margin-top: 12px;
}
.footer-contact .form-button {
  text-align: right;
}
@media (min-width: 768px) {
  .footer-contact .form-button {
    float: left;
    line-height: 42px;
  }
}
@media (min-width: 1024px) {
  .footer-contact .form-button {
    float: right;
    line-height: 50px;
  }
}
.footer-contact .form-button .button, .footer-contact .form-button .button-search, .footer-contact .form-button .button-list, .footer-contact .form-button .button-ticket-small, .footer-contact .form-button .button-header, .footer-contact .form-button .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .footer-contact .form-button a {
  vertical-align: middle;
}

/* Footer Contact */
/*
	==========
	Newsletter
	==========
*/
.newsletter {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 3px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.newsletter .col-left {
  width: 100%;
  float: none;
}
@media (min-width: 768px) {
  .newsletter .col-left {
    flex-basis: 100%;
    margin-bottom: 12px;
  }
}
@media (min-width: 1024px) {
  .newsletter .col-left {
    width: 24.5%;
    flex-basis: auto;
    margin-bottom: 0;
  }
}
.newsletter .col-main {
  width: 100%;
  float: none;
}
@media (min-width: 768px) {
  .newsletter .col-main {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .newsletter .col-main {
    width: 40%;
  }
}
.newsletter .col-right {
  width: 100%;
  float: none;
  margin-top: 11px;
}
@media (min-width: 768px) {
  .newsletter .col-right {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .newsletter .col-right {
    width: 35%;
  }
}
.newsletter .form-item__privacy label {
  font-size: 0.8571428571em;
}
.newsletter h2 {
  color: #BB9114;
  font-size: 1.8571428571em;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .newsletter h2 {
    margin-bottom: 0;
    padding-left: 0;
  }
}
@media (min-width: 1024px) {
  .newsletter h2 {
    font-size: 2.1428571429em;
  }
}
.newsletter h2 span {
  display: block;
  font-weight: 400;
  font-size: 0.6em;
}
@media (min-width: 1024px) {
  .newsletter h2 span {
    font-size: 0.6666666667em;
  }
}
.newsletter .col-left + .col-main {
  margin-top: 0;
}
.newsletter .form-item {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .newsletter .form-item {
    float: left;
    line-height: 42px;
    margin: 0;
    padding-right: 12px;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .newsletter .form-item {
    line-height: 50px;
    padding-right: 24px;
    width: 100%;
  }
}
.newsletter .form-item__privacy {
  line-height: 1.4;
}
.newsletter .form-button {
  text-align: left;
}
@media (min-width: 768px) {
  .newsletter .form-button {
    float: left;
    line-height: 42px;
    text-align: right;
  }
}
@media (min-width: 1024px) {
  .newsletter .form-button {
    float: right;
    line-height: 50px;
  }
}
.newsletter .form-button .button, .newsletter .form-button .button-search, .newsletter .form-button .button-list, .newsletter .form-button .button-ticket-small, .newsletter .form-button .button-header, .newsletter .form-button .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .newsletter .form-button a {
  vertical-align: middle;
}
@media (min-width: 768px) {
  .newsletter .success, .newsletter .success-block {
    float: left;
    line-height: 50px;
    margin-left: -23px;
  }
}
.newsletter span.error,
.newsletter label.error {
  display: block;
  line-height: normal;
}
@media (min-width: 768px) {
  .newsletter span.error,
  .newsletter label.error {
    font-size: 0.8571428571em;
    position: absolute;
    margin-top: -10px;
  }
}
@media (min-width: 1024px) {
  .newsletter span.error,
  .newsletter label.error {
    font-size: "DIN Next W01", sans-serif/14em;
    margin-left: 15px;
  }
}
.newsletter :-moz-placeholder {
  color: #BB9114;
  opacity: 1;
}
.newsletter ::-moz-placeholder {
  color: #BB9114;
  opacity: 1;
}
.newsletter ::-webkit-input-placeholder {
  color: #BB9114;
  opacity: 1;
}
.newsletter :-ms-input-placeholder {
  color: #BB9114;
  opacity: 1;
}
@media (min-width: 768px) {
  .newsletter {
    flex-direction: row;
  }
}

/* Newsletter */
/*
	===============
	Expanding Areas
	===============
*/
.expand {
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -ms-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 3px;
  color: #003f78;
  padding: 0;
}
.expand .expand-title {
  color: #BB9114;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 0;
  overflow: hidden;
  padding: 18px;
  position: relative;
  -webkit-transition: color 0.5s;
  -moz-transition: color 0.5s;
  -ms-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}
@media (min-width: 768px) {
  .expand .expand-title {
    line-height: 50px;
  }
}
.expand .expand-title .subtitle {
  display: block;
  font-size: 0.6666666667em;
  font-weight: 500;
  padding-right: 40px;
}
.expand .expand-title:before, .expand .expand-title:after {
  background-size: 27px 19px;
  content: "";
  height: 19px;
  margin-top: -6px;
  position: absolute;
  right: 16px;
  top: 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;
  width: 27px;
}
.expand .expand-title:after {
  background-image: url(/site/images/icon/chevron-large-down.svg);
  opacity: 1;
  filter: alpha(opacity=100);
}
.no-svg .expand .expand-title:after {
  background-image: url(/site/images/icon/chevron-large-down.png);
}
.expand .expand-title:before {
  background-image: url(/site/images/icon/alt/chevron-large-down.svg);
  opacity: 0;
  filter: alpha(opacity=0);
}
.no-svg .expand .expand-title:before {
  background-image: url(/site/images/icon/alt/chevron-large-down.png);
}
.expand .expand-title:hover:after {
  opacity: 0;
  filter: alpha(opacity=0);
}
.expand .expand-title:hover:before {
  opacity: 1;
  filter: alpha(opacity=100);
}
.expand.open .expand-title:after {
  background-image: url(/site/images/icon/chevron-large-up.svg);
}
.no-svg .expand.open .expand-title:after {
  background-image: url(/site/images/icon/chevron-large-up.png);
}
.expand .expand-content {
  height: 0;
  overflow: hidden;
  position: relative;
  -webkit-transition: height 0.5s;
  -moz-transition: height 0.5s;
  -ms-transition: height 0.5s;
  -o-transition: height 0.5s;
  transition: height 0.5s;
}
.expand .expand-content .expand-content-inner {
  padding: 0 18px 18px;
}
.expand .expand-content .expand-content-inner > :last-child {
  margin-bottom: 0;
}
.expand .offices,
.expand .office {
  font-size: 1em;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.expand .offices,
.expand .offices h3,
.expand .offices h4,
.expand .office,
.expand .office h3,
.expand .office h4 {
  font-weight: 500;
}
.expand .offices h3,
.expand .offices h4,
.expand .office h3,
.expand .office h4 {
  color: #BB9114;
  margin-bottom: 0;
}
.expand .offices h3,
.expand .office h3 {
  font-size: 1.1428571429em;
}
.expand .offices h4,
.expand .office h4 {
  font-size: 1em;
}
.expand .offices p,
.expand .office p {
  margin-bottom: 0;
}
.expand .offices p + h3,
.expand .office p + h3 {
  margin-top: 12px;
}
.expand .offices p + h4,
.expand .office p + h4 {
  margin-top: 12px;
}
.expand .offices a[href^=mailto],
.expand .office a[href^=mailto] {
  word-wrap: break-word;
}
.expand .offices .email,
.expand .office .email {
  margin-bottom: 12px;
}
.expand .contact-block + .contact-block {
  border-top: 1px dotted #BB9114;
  margin-top: 20px;
  padding-top: 20px;
}
.expand .contact-block + .success, .expand .contact-block + .success-block {
  margin-top: 20px;
}
.expand .contact-address {
  font-weight: 500;
}
.expand .contact-social {
  font-weight: 500;
}
.expand .contact-social a {
  display: block;
  line-height: 2.4285714286;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .expand .contact-social a {
    display: inline-block;
  }
}
@media (min-width: 1024px) {
  .expand .contact-social a {
    padding-right: 20px;
  }
}
@media (min-width: 768px) {
  .expand .contact-social a + a {
    border-left: 1px dotted #BB9114;
    padding-left: 10px;
  }
}
@media (min-width: 1024px) {
  .expand .contact-social a + a {
    padding-left: 20px;
  }
}
.expand .contact-social span {
  display: inline-block;
  height: 18px;
  margin-right: 4px;
  position: relative;
  vertical-align: middle;
}
.expand .contact-social span:before, .expand .contact-social span:after {
  background-image: url(/site/images/icon/social.svg);
  background-size: 36px 90px;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.no-svg .expand .contact-social span:before, .no-svg .expand .contact-social span:after {
  background-image: url(/site/images/icon/social.png);
}
.expand .contact-social span:after {
  opacity: 0;
  filter: alpha(opacity=0);
}
.expand .contact-social .facebook span {
  vertical-align: sub;
  width: 10px;
}
.expand .contact-social .facebook span:before {
  background-position: -18px -36px;
}
.expand .contact-social .facebook span:after {
  background-position: 0 -36px;
}
.expand .contact-social .twitter span {
  height: 15px;
  width: 18px;
}
.expand .contact-social .twitter span:before {
  background-position: -18px -18px;
}
.expand .contact-social .twitter span:after {
  background-position: 0 -18px;
}
.expand .contact-social .linkedin span {
  width: 18px;
  vertical-align: sub;
}
.expand .contact-social .linkedin span:before {
  background-position: -18px 0;
}
.expand .contact-social .linkedin span:after {
  background-position: 0 0;
}
.expand .contact-social .instagram span {
  width: 18px;
  vertical-align: sub;
}
.expand .contact-social .instagram span:before {
  background-position: -18px -72px;
}
.expand .contact-social .instagram span:after {
  background-position: 0 -72px;
}
.expand .form-contact textarea {
  height: 144px;
  min-height: 144px;
}
.expand .form-contact .row {
  margin-left: -10px;
  margin-right: -10px;
}
.expand .form-contact .col {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .expand .form-contact .col {
    float: left;
  }
}
@media (min-width: 768px) {
  .expand .form-contact .col:first-child {
    width: 40%;
  }
}
@media (min-width: 768px) {
  .expand .form-contact .col:last-child {
    width: 60%;
  }
}
.expand .form-contact .form-item .input-checkbox input[type=checkbox] + label {
  font-size: 1em;
  color: #003f78;
}

/* Expanding Areas */
/*
	=======
	Storify
	=======
*/
.storify {
  clear: both;
  margin: 0 10px;
}
.storify iframe {
  display: block;
  margin: auto;
}
.storify .storify-wrap {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -ms-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box;
  height: 159px;
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
  -webkit-transition: height 0.3s linear, padding-bottom 0.3s linear;
  -moz-transition: height 0.3s linear, padding-bottom 0.3s linear;
  -ms-transition: height 0.3s linear, padding-bottom 0.3s linear;
  -o-transition: height 0.3s linear, padding-bottom 0.3s linear;
  transition: height 0.3s linear, padding-bottom 0.3s linear;
}
@media (min-width: 555px) {
  .storify .storify-wrap {
    height: 269px;
  }
}
@media (min-width: 875px) {
  .storify .storify-wrap {
    padding-bottom: 19.334%;
  }
}
.storify .storify-wrap iframe {
  position: absolute;
  top: 0;
  left: -10px;
  right: -10px;
  height: 100%;
}
.storify .storify-footer {
  border-bottom: 1px solid #e0e0e0;
  padding-top: 16px;
  height: 38px;
  text-align: center;
}
.storify .storify-footer button {
  background-color: #BB9114;
  background-image: url(/site/images/icon/white/chevron-large-down.svg);
  background-position: center center;
  background-size: 27px 19px;
  border: none;
  border-radius: 50%;
  margin-bottom: -21px;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: background-color 0.3s linear, opacity 0.3s linear;
  -moz-transition: background-color 0.3s linear, opacity 0.3s linear;
  -ms-transition: background-color 0.3s linear, opacity 0.3s linear;
  -o-transition: background-color 0.3s linear, opacity 0.3s linear;
  transition: background-color 0.3s linear, opacity 0.3s linear;
  width: 42px;
  height: 42px;
  vertical-align: top;
}
.no-svg .storify .storify-footer button {
  background-image: url(/site/images/icon/white/chevron-large-down.png);
}
.storify .storify-footer button.hidden {
  visibility: hidden;
}
.storify .storify-footer button:hover, .storify .storify-footer button:focus, .storify .storify-footer button:active {
  background-color: #003f78;
}
.storify.fade button {
  opacity: 0;
  filter: alpha(opacity=0);
}

/* Storify */
/*
	==========
	Directions
	==========
*/
.directions .mode-select {
  font-size: 1.2857142857em;
  margin-top: -21px;
  overflow: hidden;
  padding-top: 21px;
  text-align: center;
}
.directions .mode-select li {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 768px) {
  .directions .mode-select li {
    float: left;
    width: 20%;
  }
  .directions .mode-select li + li {
    border-left: 1px solid #CCC;
  }
}
.directions .mode-select a {
  color: #BB9114;
  cursor: pointer;
  display: block;
  margin-left: -12px;
  margin-right: -12px;
  padding: 12px 24px;
  transition: color 0.3s;
}
@media (min-width: 768px) {
  .directions .mode-select a {
    height: 140px;
    padding: 24px;
  }
}
.directions .mode-select a:hover, .directions .mode-select a.active {
  color: #003f78;
  text-decoration: none;
}
.directions .mode-select a:hover .icon:before, .directions .mode-select a.active .icon:before {
  opacity: 0;
  filter: alpha(opacity=0);
}
.directions .mode-select a:hover .icon:after, .directions .mode-select a.active .icon:after {
  opacity: 1;
  filter: alpha(opacity=100);
}
.directions .mode-select .icon {
  display: inline-block;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  position: relative;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .directions .mode-select .icon {
    display: block;
  }
}
.directions .mode-select .icon:before, .directions .mode-select .icon:after {
  background-image: url(/site/images/icon/directions.svg);
  background-size: 270px 225px;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.no-svg .directions .mode-select .icon:before, .no-svg .directions .mode-select .icon:after {
  background-image: url(/site/images/icon/directions.png);
}
.directions .mode-select .icon:before {
  opacity: 1;
  filter: alpha(opacity=100);
}
.directions .mode-select .icon:after {
  opacity: 0;
  filter: alpha(opacity=0);
}
.directions .mode-select .walking {
  width: 29px;
  height: 45px;
}
.directions .mode-select .walking:before {
  background-position: 0 0;
}
.directions .mode-select .walking:after {
  background-position: -135px 0;
}
.directions .mode-select .transit {
  width: 135px;
  height: 45px;
}
.directions .mode-select .transit:before {
  background-position: 0 -45px;
}
.directions .mode-select .transit:after {
  background-position: -135px -45px;
}
.directions .mode-select .road {
  width: 65px;
  height: 45px;
}
.directions .mode-select .road:before {
  background-position: 0 -90px;
}
.directions .mode-select .road:after {
  background-position: -135px -90px;
}
.directions .mode-select .cycle {
  width: 71px;
  height: 45px;
}
.directions .mode-select .cycle:before {
  background-position: 0 -135px;
}
.directions .mode-select .cycle:after {
  background-position: -135px -135px;
}
.directions .mode-select .international {
  width: 69px;
  height: 45px;
}
.directions .mode-select .international:before {
  background-position: 0 -180px;
}
.directions .mode-select .international:after {
  background-position: -135px -180px;
}

.directions-expand {
  height: 0;
  overflow: hidden;
  position: relative;
  -webkit-transition: height 0.5s;
  -moz-transition: height 0.5s;
  -ms-transition: height 0.5s;
  -o-transition: height 0.5s;
  transition: height 0.5s;
}
.directions-expand [type=text] {
  width: 167px;
}
.directions-expand .input-bar {
  background-color: #BB9114;
  padding: 12px 0;
  text-align: center;
}
.directions-expand .input-bar input,
.directions-expand .input-bar button {
  vertical-align: top;
}
@media (min-width: 768px) {
  .directions-expand .input-bar button {
    margin-left: 8px;
  }
}
.directions-expand .map {
  height: 320px;
  position: relative;
  z-index: 10;
}
.directions-expand .close {
  border-top: 1px solid #E0E0E0;
  position: relative;
  text-align: center;
  z-index: 20;
}
.directions-expand .close button {
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: #BB9114;
  border: none;
  border-radius: 50%;
  color: #FFF;
  font-size: 2.1428571429em;
  font-weight: 700;
  height: 42px;
  margin-top: -21px;
  padding: 0 0 2px;
  text-align: center;
  -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;
  vertical-align: top;
  width: 42px;
}
.directions-expand .close button:hover {
  background-color: #003f78;
}
.directions-expand .leg {
  color: #003f78;
  counter-reset: leg;
  list-style: none;
  padding: 0 0 0 24px;
}
@media (min-width: 768px) {
  .directions-expand .leg {
    padding: 0 130px;
  }
}
.directions-expand .step {
  clear: both;
  counter-increment: leg;
  margin-bottom: 10px;
  position: relative;
}
@media (min-width: 768px) {
  .directions-expand .step {
    margin-bottom: 0;
  }
}
.directions-expand .step:before {
  content: counter(leg) ".";
  margin-right: 4px;
  position: absolute;
  right: 100%;
}
.directions-expand .step div {
  margin-left: 65px;
}
.directions-expand .distance {
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
  min-width: 65px;
}
@media (min-width: 768px) {
  .directions-expand .distance {
    float: left;
  }
}

.directions-wrap {
  padding-bottom: 30px;
}

.directions-summary {
  display: none;
  padding-top: 35px;
}
@media (min-width: 768px) {
  .directions-summary {
    padding-left: 130px;
    padding-right: 130px;
  }
}
.directions-summary.active {
  display: block;
}

/* Directions */
/*
	==================
	Fixtures / Matches
	==================
*/
.matches {
  color: #003f78;
  text-align: center;
}
.matches .row {
  background-color: #DCE5EF;
  border-radius: 10px;
  margin-bottom: 2px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-backface-visibility: hidden;
  -webkit-transition: height 0.5s, opacity 0.5s, transform 0.5s;
  -moz-transition: height 0.5s, opacity 0.5s, transform 0.5s;
  -ms-transition: height 0.5s, opacity 0.5s, transform 0.5s;
  -o-transition: height 0.5s, opacity 0.5s, transform 0.5s;
  transition: height 0.5s, opacity 0.5s, transform 0.5s;
}
.matches .row.alt {
  background-color: rgba(153, 153, 153, 0.15);
}
.matches .row.hiding {
  opacity: 0;
}
@media (min-width: 768px) {
  .matches .match {
    display: table;
    width: 100%;
  }
}
.matches .cell {
  padding: 10px;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .matches .cell {
    display: table-cell;
  }
}
@media (min-width: 768px) {
  .matches .details {
    width: 40%;
  }
}
@media (min-width: 1024px) {
  .matches .details {
    width: 36%;
  }
}
@media (min-width: 1100px) {
  .matches .details {
    width: 30%;
  }
}
.matches .clubs {
  color: #BB9114;
  font-size: 1.1428571429em;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .matches .clubs {
    font-size: 1.5714285714em;
  }
}
.matches .clubs .club {
  color: #003f78;
  display: inline-block;
  vertical-align: bottom;
  width: 40%;
}
@media (min-width: 1024px) {
  .matches .clubs .club {
    width: 45.5%;
  }
}
.matches .clubs .club:first-child {
  text-align: right;
}
.matches .clubs .club:last-child {
  text-align: left;
}
.matches .clubs .club-inner {
  display: inline-block;
  text-align: center;
}
@media (min-width: 768px) {
  .matches .calendar {
    width: 46px;
  }
}
@media (min-width: 1100px) {
  .matches .calendar {
    width: 100px;
  }
}
.matches .calendar a {
  display: inline-block;
  height: 26px;
  width: 26px;
  position: relative;
  vertical-align: middle;
}
.matches .calendar a:before, .matches .calendar a:after {
  background-size: 26px 26px;
  content: '';
  position: absolute;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.matches .calendar a:before {
  background-image: url(/site/images/icon/calendar.svg);
  opacity: 1;
  filter: alpha(opacity=100);
}
.no-svg .matches .calendar a:before {
  background-image: url(/site/images/icon/calendar.png);
}
.matches .calendar a:after {
  background-image: url(/site/images/icon/alt/calendar.svg);
  opacity: 0;
  filter: alpha(opacity=0);
}
.no-svg .matches .calendar a:after {
  background-image: url(/site/images/icon/alt/calendar.png);
}
.matches .calendar a:hover:before, .matches .calendar a:focus:before, .matches .calendar a:active:before {
  opacity: 0;
  filter: alpha(opacity=0);
}
.matches .calendar a:hover:after, .matches .calendar a:focus:after, .matches .calendar a:active:after {
  opacity: 1;
  filter: alpha(opacity=100);
}
.matches .type,
.matches .venue {
  color: #003f78;
  font-size: 1.1428571429em;
  font-weight: 500;
}
@media (min-width: 768px) {
  .matches .type,
  .matches .venue {
    max-width: 175px;
    width: 15%;
  }
}
@media (min-width: 1024px) {
  .matches .type,
  .matches .venue {
    font-size: 1.5714285714em;
    width: 195px;
    max-width: 195px;
  }
}
.matches .type .image,
.matches .venue .image {
  margin-left: auto;
  margin-right: auto;
  max-width: 70px;
}
@media (min-width: 1024px) {
  .matches .type .image,
  .matches .venue .image {
    max-width: 100px;
  }
}
@media (min-width: 768px) {
  .matches .ticket {
    width: 188px;
  }
}
.matches .ticket a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.matches .ticket a + a {
  margin-top: 5px;
}
@media (min-width: 768px) {
  .matches .result {
    width: 20%;
  }
}
@media (min-width: 1100px) {
  .matches .result {
    width: 150px;
  }
}
.matches .result a,
.matches .result span {
  display: block;
}
.matches .result a {
  margin-top: 5px;
  text-align: left;
}
.matches .result .summary {
  background-color: #BB9114;
  border-radius: 5px;
  color: #FFF;
  padding: 8px 4px;
  text-align: center;
}
.matches .result .summary span {
  display: block;
  font-size: 1.5714285714em;
  font-weight: 500;
}
.matches .result .button-arrow {
  padding-right: 24px;
  position: relative;
}
.matches .result .button-arrow:after {
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -5.5px;
}
@media (min-width: 768px) {
  .matches [data-squad="358"] .type,
  .matches [data-squad="358"] .venue,
  .matches [data-squad="679"] .type,
  .matches [data-squad="679"] .venue {
    width: 24%;
  }
}
.matches.results .type,
.matches.results .venue {
  max-width: none;
}
@media (min-width: 768px) {
  .matches.results .details {
    width: 30%;
  }
}
@media (min-width: 1024px) {
  .matches.results .details {
    width: 35%;
  }
}
@media (min-width: 768px) {
  .matches.results [data-squad="358"] .type,
  .matches.results [data-squad="358"] .venue,
  .matches.results [data-squad="679"] .type,
  .matches.results [data-squad="679"] .venue {
    max-width: 110px;
    min-width: 110px;
    width: 15%;
  }
}
@media (min-width: 1100px) {
  .matches.results [data-squad="358"] .type,
  .matches.results [data-squad="358"] .venue,
  .matches.results [data-squad="679"] .type,
  .matches.results [data-squad="679"] .venue {
    max-width: none;
    min-width: none;
    width: 23%;
  }
}
.matches.results [data-squad="358"] .result,
.matches.results [data-squad="679"] .result {
  min-width: 150px;
}

.match-live-wrap {
  position: relative;
  z-index: 20;
}

.match-live {
  padding-bottom: 50px;
}
@media (min-width: 768px) {
  .match-live {
    margin-left: -20px;
    margin-right: -20px;
  }
  .match-live > .col {
    float: left;
    padding-left: 20px;
    padding-right: 20px;
    width: 50%;
  }
  .match-live > .col:nth-child(n) {
    clear: none;
  }
  .match-live > .col:nth-child(2n+1) {
    clear: left;
  }
}
.match-live h2 {
  font-weight: 400;
  margin-bottom: 6px;
  text-align: center;
}
.match-live h3 {
  font-size: 1.2857142857em;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-align: center;
}
.match-live .col + .col {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .match-live .col + .col {
    margin-top: 0;
  }
}
.match-live .match-box {
  background-color: #FFF;
  border-radius: 8px;
  padding: 10px;
}
.match-live .match-box + .match-box {
  margin-top: 20px;
}
.match-live .tweet {
  padding-bottom: 12px;
  padding-top: 12px;
}
.match-live .tweet + .tweet {
  border-top: 1px solid #CDCDCD;
  margin-top: 0;
}
.match-live .tweet_text {
  color: #777;
}
.match-live .tweet_text a {
  color: #003f78;
}
.match-live .tweet_time {
  font-weight: 500;
}
.match-live .tweet_time a {
  color: #003f78;
}
.match-live .match-listen .text {
  color: #777;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .match-live .button-alt, .match-live .button-ticket, .match-live .button-wine-glass, .match-live .button-report, .match-live .button-scorecard, .match-live .button-gallery, .match-live .button-listen, .match-live .button-event, .match-live .bg-highlight .button, .bg-highlight .match-live .button, .match-live .bg-highlight .button-search, .bg-highlight .match-live .button-search, .match-live .bg-highlight .button-list, .bg-highlight .match-live .button-list, .match-live .bg-highlight .button-ticket-small, .bg-highlight .match-live .button-ticket-small, .match-live .bg-highlight .button-header, .bg-highlight .match-live .button-header, .match-live .bg-highlight .header-site .header-site_book_panel .header-site_book_panel_text a, .bg-highlight .header-site .header-site_book_panel .header-site_book_panel_text .match-live a, .match-live .header-site .header-site_book_panel .header-site_book_panel_text .bg-highlight a, .header-site .header-site_book_panel .header-site_book_panel_text .bg-highlight .match-live a {
    width: 100%;
    text-align: center;
    margin-bottom: 2px;
  }
}

.grid-controls .calendar {
  padding-top: 10px;
}
@media (min-width: 768px) {
  .grid-controls .calendar {
    display: inline-block;
    padding-left: 10px;
    padding-top: 0;
  }
}

.grid-controls .calendar a {
  background-image: url(/site/images/icon/calendar.svg);
  opacity: 1;
  filter: alpha(opacity=100);
  display: inline-block;
  height: 26px;
  width: 26px;
}

/* Fixtures / Matches */
/*
	===
	Map
	===
*/
.map {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -ms-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box;
}
.map img {
  border-radius: 0;
  max-width: none;
}

/* Map */
/*
	=====
	Squad
	=====
*/
.profile-mini img, .squad img {
  border-radius: 0;
}
.profile-mini .name, .squad .name {
  font-size: 1.5714285714em;
  margin: 0;
}
.profile-mini .position, .squad .position {
  color: #BB9114;
  font-size: 1.1428571429em;
  letter-spacing: -0.055em;
}

.profile-mini img {
  border-radius: 8px;
  bottom: 0;
  left: 0;
  position: absolute;
  max-height: 100%;
  max-width: 50%;
  width: auto;
  z-index: 10;
}
@media (min-width: 768px) {
  .profile-mini img {
    max-width: none;
  }
}
@media (min-width: 1024px) and (max-width: 1099px) {
  .profile-mini img {
    max-width: 58%;
  }
}
@media (min-width: 1100px) {
  .profile-mini img {
    left: 6px;
  }
}
@media (min-width: 1024px) {
  .profile-mini ul {
    margin-bottom: 10px;
  }
}
.profile-mini ul span {
  color: #777;
}
.profile-mini ul li {
  border-top: 1px solid #E0E0E0;
  padding: 6px 0;
}
.profile-mini .name,
.profile-mini .position {
  line-height: 1.2;
}
.profile-mini .text {
  margin-left: 48%;
  position: relative;
  text-align: right;
  z-index: 20;
}
@media (min-width: 768px) {
  .profile-mini .text {
    margin-left: 160px;
  }
}
@media (min-width: 1024px) {
  .profile-mini .text {
    margin-left: 145px;
  }
}
@media (min-width: 1100px) {
  .profile-mini .text {
    margin-left: 160px;
  }
}

.squad .grid {
  margin-bottom: -40px;
}
.squad .grid .item {
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .squad .grid .item {
    border-left: 1px solid #E0E0E0;
    border-right: 1px solid transparent;
    float: left;
    margin-bottom: 70px;
    text-align: left;
    width: 33.3333%;
  }
}
@media (min-width: 1024px) {
  .squad .grid .item {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .squad .grid .item:nth-child(3n) {
    border-right: 1px solid #E0E0E0;
  }
}
@media (min-width: 1024px) {
  .squad .grid .item:nth-child(3n) {
    border-right: none;
  }
}
.squad .grid .item:nth-child(3n+1) {
  clear: left;
}
@media (min-width: 1024px) {
  .squad .grid .item:nth-child(3n+1) {
    clear: none;
  }
}
@media (min-width: 1024px) {
  .squad .grid .item:nth-child(4n) {
    border-right: 1px solid #E0E0E0;
  }
}
@media (min-width: 1024px) {
  .squad .grid .item:nth-child(4n+1) {
    clear: left;
  }
}
.squad .grid .button, .squad .grid .button-search, .squad .grid .button-list, .squad .grid .button-ticket-small, .squad .grid .button-header, .squad .grid .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .squad .grid a {
  margin-left: 15px;
}

.card {
  margin-bottom: 12px;
  min-height: 350px;
  width: 100%;
  position: relative;
}
.card:before {
  background-image: url(/site/images/icon/flip.svg);
  background-size: 25px 19px;
  content: '';
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 10px;
  width: 25px;
  height: 19px;
  z-index: 20;
}
.no-svg .card:before {
  background-image: url(/site/images/icon/flip.png);
}
.card img {
  display: block;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}
.card .picture,
.card .stats {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 0 15px;
  z-index: 10;
  width: 100%;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.card .stat,
.card .bio {
  margin-left: auto;
  margin-right: auto;
  max-width: 250px;
}
@media (min-width: 768px) {
  .card .stat,
  .card .bio {
    max-width: none;
  }
}
.card .picture {
  background-color: #FFF;
  cursor: pointer;
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-backface-visibility: hidden;
}
.card .stats {
  background-color: #FFF;
  color: #003f78;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-backface-visibility: hidden;
}
.card .stat span {
  color: #777;
}
.card .bio {
  border-top: 1px solid #E0E0E0;
  font-size: 0.8571428571em;
  margin-top: 6px;
  padding-top: 6px;
  max-height: 21.4em;
  overflow: hidden;
}
@media (min-width: 768px) {
  .card .bio {
    max-height: 17em;
  }
}
.card.flipped .picture {
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-backface-visibility: hidden;
}
.card.flipped .stats {
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-backface-visibility: hidden;
}
.no-csstransforms3d .card.flipped .stats {
  display: block;
}
.no-csstransforms3d .card.flipped .picture {
  display: none;
}
.no-csstransforms3d .card .stats {
  display: none;
}
.no-csstransforms3d .card .picture {
  display: block;
}

/* Squad */
/*
	=====
	Video
	=====
*/
.video-link img {
  display: block;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1100px) {
  .video-link img {
    height: 208px;
  }
}

#side-tab-tv p {
  margin-bottom: 5px;
}

/* Video */
/*
	=======
	Tickets
	=======
*/
.tickets {
  margin-left: -20px;
  margin-right: -20px;
}
.tickets h2 span {
  float: right;
  font-weight: 700;
}
@media (max-width: 767px) {
  .tickets .h2 {
    font-size: 1.2857142857em;
  }
}
.tickets .ticket {
  margin-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 930px) {
  .tickets .ticket {
    float: left;
    width: 50%;
  }
}
.tickets .ticket:nth-child(2n+1) {
  clear: left;
}
.tickets .ticket:nth-child(1) {
  margin-top: 0;
}
@media (min-width: 930px) {
  .tickets .ticket:nth-child(2) {
    margin-top: 0;
  }
}
.tickets .ticket > :last-child {
  margin-bottom: 0;
}
.tickets .img {
  border-radius: 5px 0 0 5px;
  margin-bottom: 20px;
  margin-right: 114px;
}
@media (min-width: 640px) {
  .tickets .img {
    margin-right: 186px;
  }
}
.tickets .benefits {
  border-radius: 0 5px 5px 0;
  color: #FFF;
  margin-left: auto;
  min-height: 480px;
  padding: 10px 12px 62px;
  position: relative;
  margin-right: -114px;
  width: 114px;
}
@media (min-width: 640px) {
  .tickets .benefits {
    margin-right: -186px;
    width: 186px;
  }
}
@media (min-width: 768px) {
  .tickets .benefits {
    padding: 16px 22px 62px;
  }
}
.tickets .benefits,
.tickets .benefits li,
.tickets .benefits .h2 {
  color: #FFF;
  font-weight: 500;
}
.tickets .benefits ul {
  line-height: 1.1;
}
@media (max-width: 639px) {
  .tickets .benefits ul {
    padding-left: 0;
  }
}
.tickets .benefits li:before {
  background-color: #fff;
}
@media (max-width: 639px) {
  .tickets .benefits li:before {
    content: normal;
  }
}
.tickets .benefits .button-white, .tickets .benefits .button-white-ticket {
  position: absolute;
  bottom: 16px;
  right: 8px;
}
@media (min-width: 768px) {
  .tickets .benefits .button-white, .tickets .benefits .button-white-ticket {
    right: 22px;
  }
}

/* Tickets */
/*
	=======
	Gallery
	=======
*/
.gallery-side img {
  border-radius: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.gallery-side .slick-next,
.gallery-side .slick-prev {
  background-size: 19px 27px;
  height: 27px;
  margin-top: -13px;
  width: 19px;
}
.gallery-side .slick-next:before,
.gallery-side .slick-prev:before {
  content: none;
}
.gallery-side .thumbs {
  border-bottom: 1px solid #E0E0E0;
  border-top: 1px solid #E0E0E0;
  margin-left: auto;
  margin-right: auto;
  padding: 4px 30px;
  max-width: 220px;
}
.gallery-side .thumbs img {
  border-left: 2px solid #FFF;
  border-right: 2px solid #FFF;
  cursor: pointer;
}
.gallery-side .thumbs-slider {
  margin-bottom: 0;
}
.gallery-side .slick-next {
  background-image: url(/site/images/icon/chevron-large-right.svg);
}
.no-svg .gallery-side .slick-next {
  background-image: url(/site/images/icon/chevron-large-right.png);
}
.gallery-side .slick-prev {
  background-image: url(/site/images/icon/chevron-large-left.svg);
}
.no-svg .gallery-side .slick-prev {
  background-image: url(/site/images/icon/chevron-large-left.png);
}

/* Gallery */
/*
	=======
	Cricket
	=======
*/
.form-filter select,
.form-filter .niceselect-wrapper {
  display: inline-block;
}
.form-filter select,
.form-filter .niceselect-wrapper,
.form-filter .button,
.form-filter .button-search,
.form-filter .button-list,
.form-filter .button-ticket-small,
.form-filter .button-header,
.form-filter .header-site .header-site_book_panel .header-site_book_panel_text a,
.header-site .header-site_book_panel .header-site_book_panel_text .form-filter a {
  vertical-align: middle;
}

.tbl-league th {
  padding-left: 2px;
  padding-right: 2px;
}
@media (min-width: 768px) {
  .tbl-league th {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.tbl-league td:first-child {
  font-size: 0.8571428571em;
  padding-left: 2px;
  padding-right: 2px;
  width: 30px;
}
@media (min-width: 768px) {
  .tbl-league td:first-child {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.tbl-league .count {
  padding-left: 1px;
  padding-right: 1px;
  width: 90px;
}
@media (min-width: 768px) {
  .tbl-league .count {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.league-title {
  color: #003f78;
  font-size: 1.1428571429em;
}

.tbl-minileague .position {
  font-size: 0.8571428571em;
  padding-left: 0;
  padding-right: 0;
}

.tbl-innings-wrap {
  overflow: auto;
}

.tbl-innings {
  min-width: 450px;
}
.tbl-innings td {
  width: 180px;
}
@media (max-width: 520px) {
  .tbl-innings td {
    padding: 5px 2px;
  }
}
.tbl-innings td.justifycentre {
  width: 75px;
}
.tbl-innings tfoot th {
  background-color: #FFF;
  color: #003f78;
}

.tbl-wickets td {
  width: 375px;
}
.tbl-wickets td.justifycentre {
  width: 125px;
}

.tbl-live {
  margin-bottom: 8px;
}
.tbl-live th:first-child {
  text-align: left;
}
.tbl-live tbody tr:nth-child(2n+1) td {
  background-color: #DCE5EF;
}
.tbl-live .count {
  width: 50px;
}

.innings h1 {
  font-size: 1.5714285714em;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .innings h1 {
    margin-top: 0;
  }
}
.innings + .innings {
  border-top: 1px solid #003f78;
  margin-top: 24px;
  padding-top: 24px;
}
.innings .innings-block + .innings-block {
  margin-top: 24px;
}

.innings-wickets {
  background-color: #DCE5EF;
  color: #003f78;
  font-size: 1.1428571429em;
  padding: 14px 12px 10px;
}
.innings-wickets h2 {
  display: inline-block;
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 0;
}
.innings-wickets + .innings-block {
  border-top: 1px solid #003f78;
  padding-top: 24px;
}

.match-information {
  border-top: 1px solid #003f78;
  padding-top: 24px;
}

/* Cricket */
/*
	=========
	Scorecard
	=========
*/
.scorecard-summary {
  background-color: #F0F0F0;
  border-radius: 8px;
  color: #003f78;
  padding: 20px;
  text-align: center;
}
.scorecard-summary div + div {
  margin-top: 10px;
}
.scorecard-summary b {
  font-size: 1.2857142857em;
}
.scorecard-summary span {
  display: inline-block;
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
  vertical-align: top;
  width: 50%;
  z-index: 20;
}
.scorecard-summary .scorecard-summary_title {
  text-transform: uppercase;
}
.scorecard-summary .scorecard-summary_teams {
  position: relative;
}
.scorecard-summary .scorecard-summary_teams:after {
  content: 'v';
  line-height: 24px;
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.scorecard-summary .match-report .button, .scorecard-summary .match-report .button-search, .scorecard-summary .match-report .button-list, .scorecard-summary .match-report .button-ticket-small, .scorecard-summary .match-report .button-header, .scorecard-summary .match-report .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .scorecard-summary .match-report a {
  background-color: #003f78;
  border-color: #003f78;
}
.scorecard-summary .match-report .button:hover, .scorecard-summary .match-report .button-search:hover, .scorecard-summary .match-report .button-list:hover, .scorecard-summary .match-report .button-ticket-small:hover, .scorecard-summary .match-report .button-header:hover, .scorecard-summary .match-report .header-site .header-site_book_panel .header-site_book_panel_text a:hover, .header-site .header-site_book_panel .header-site_book_panel_text .scorecard-summary .match-report a:hover {
  background-color: #BB9114;
  border-color: #BB9114;
}

/* Scorecard */
.grid {
  border-top: 5px solid #FFF;
  display: flex;
  flex-wrap: wrap;
}
.grid img {
  display: block;
  width: 100%;
}
.grid .grid_row {
  display: flex;
  flex-basis: 100%;
  flex-grow: 0;
  flex-wrap: wrap;
  max-width: 100%;
}
.grid .grid_row + .grid_row {
  border-top: 5px solid #FFF;
}
.grid .grid_cell {
  display: flex;
  flex-basis: 100%;
  flex-grow: 1;
  flex-wrap: wrap;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .grid .grid_cell {
    flex-basis: 50%;
  }
}
.grid .grid_cell + .grid_cell {
  border-top: 5px solid #FFF;
}
@media (min-width: 1024px) {
  .grid .grid_cell + .grid_cell {
    border-left: 5px solid #FFF;
    border-top: none;
  }
}
.grid .grid_item {
  align-items: center;
  background-color: #003f78;
  background-position: center center;
  background-size: cover;
  color: #FFF;
  display: flex;
  min-height: 360px;
  overflow: hidden;
  padding: 60px 0;
  position: relative;
  justify-content: center;
  text-align: center;
  transform: scale(1);
  width: 100%;
  z-index: 1;
}
.grid .grid_item:hover .grid_item_bg {
  transform: scale(1.2);
  transform-origin: 50% 50%;
}
.grid .grid_item h2 {
  color: inherit;
  font-size: 2.5rem;
  font-weight: 200;
  line-height: 0.9;
  margin: 0;
}
@media (min-width: 768px) {
  .grid .grid_item h2 {
    font-size: 3.125rem;
    padding-top: 2px;
  }
}
.grid .grid_item h2 + p {
  margin-top: 1em;
}
.grid .grid_item p {
  margin: 0;
}
.grid .grid_item p + p {
  margin-top: 1em;
}
.grid .grid_item img {
  margin: auto;
  width: auto;
}
.grid .grid_item + .grid_item {
  border-top: 5px solid #FFF;
}
.grid .grid_item_bg {
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 0.5s ease-in-out;
  z-index: 10;
}
.grid .grid_item_inner {
  max-width: 90%;
  padding: 10px;
  position: relative;
  z-index: 20;
}
@media (min-width: 768px) {
  .grid .grid_item_inner {
    min-width: 320px;
  }
}
.grid .grid_item_logo {
  background-color: #FFF;
  border-radius: 3px;
  display: inline-block;
  padding: 10px;
}

div[data-href] {
  cursor: pointer;
}

.hero-carousel {
  color: #FFF;
}
.hero-carousel + .content-block {
  margin-top: 30px;
}
.hero-carousel.slick-slider {
  margin-bottom: 0;
}
.hero-carousel .slick-prev,
.hero-carousel .slick-next {
  display: none;
}
@media (min-width: 768px) {
  .hero-carousel .slick-prev,
  .hero-carousel .slick-next {
    background-color: #af7f00;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 16px 28px;
    border-style: solid;
    border-color: #BB9114;
    transition: background-color 0.3s;
    height: 100px;
    margin-top: -50px;
    width: 50px;
  }
}
.hero-carousel .slick-prev:hover,
.hero-carousel .slick-next:hover {
  background-color: #BB9114;
}
.hero-carousel .slick-prev:before,
.hero-carousel .slick-next:before {
  content: normal;
}
@media (min-width: 768px) {
  .hero-carousel .slick-prev {
    background-image: url(/site/images/icon/white/chevron-left.svg);
    border-radius: 0 50px 50px 0;
    border-width: 1px 1px 1px 0;
    left: 0;
    right: auto;
  }
}
@media (min-width: 768px) {
  .hero-carousel .slick-next {
    background-image: url(/site/images/icon/white/chevron-right.svg);
    border-radius: 50px 0 0 50px;
    border-width: 1px 0 1px 1px;
    left: auto;
    right: 0;
  }
}
.hero-carousel .hero-carousel_slide {
  align-items: center;
  background-position: center center;
  background-size: cover;
  display: flex;
  height: 420px;
  justify-content: center;
  max-height: 100vh;
}
.hero-carousel .hero-carousel_main_image_link {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.hero-carousel .hero-carousel_inner {
  max-width: 800px;
  padding: 25px;
  text-align: center;
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .hero-carousel .hero-carousel_inner {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .hero-carousel .hero-carousel_inner {
    height: auto;
    padding: 32px 45px;
    width: 90%;
  }
}
.hero-carousel .hero-carousel_inner.hide_overlay {
  display: none;
}
.hero-carousel .hero-carousel_match {
  font-size: 2.1875rem;
  font-weight: 200;
  line-height: 4rem;
  text-align: center;
}
.hero-carousel .hero-carousel_match + * {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .hero-carousel .hero-carousel_match {
    font-size: 4.375rem;
    line-height: 6.25rem;
  }
  .hero-carousel .hero-carousel_match + * {
    margin-top: 35px;
  }
}
.hero-carousel .hero-carousel_match img {
  max-width: 40px;
}
@media (min-width: 768px) {
  .hero-carousel .hero-carousel_match img {
    max-width: 80px;
  }
}
.hero-carousel .hero-carousel_match span {
  background-color: #FFF;
  border-radius: 3px;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  padding: 12px;
  vertical-align: top;
}
@media (min-width: 768px) {
  .hero-carousel .hero-carousel_match span {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.hero-carousel .hero-carousel_match span.hide_background {
  background-color: transparent;
}
.hero-carousel .home-carousel_title {
  font-size: 1.875rem;
  font-weight: 200;
  line-height: 1;
}
.hero-carousel .home-carousel_title + * {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .hero-carousel .home-carousel_title {
    font-size: 3.5rem;
  }
  .hero-carousel .home-carousel_title + * {
    margin-top: 20px;
  }
}
.hero-carousel .home-carousel_link {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.125rem;
}
.hero-carousel .home-carousel_link + * {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .hero-carousel .home-carousel_link {
    font-size: 1.5rem;
    line-height: 1.375rem;
  }
  .hero-carousel .home-carousel_link + * {
    margin-top: 32px;
  }
}
.hero-carousel .home-carousel_link a {
  border-bottom: 2px solid #BB9114;
  color: inherit;
  display: inline-block;
}
.hero-carousel .home-carousel_link a:hover {
  text-decoration: none;
}
.hero-carousel .button, .hero-carousel .button-search, .hero-carousel .button-list, .hero-carousel .button-ticket-small, .hero-carousel .button-header, .hero-carousel .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .hero-carousel a {
  margin: 5px;
}

.home .hero-carousel .hero-carousel_slide {
  height: 630px;
  position: relative;
  overflow: hidden;
}
.home .hero-carousel .hero-carousel_slide .video {
  width: 100%;
  max-width: 100%;
  position: absolute;
  min-height: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: scale(2.75);
  transform-origin: center center;
}
@media (max-width: 767px) {
  .home .hero-carousel .hero-carousel_slide .video {
    transform: scale(5);
  }
}
.home .hero-carousel .hero-carousel_slide .hero-carousel_inner {
  z-index: 200;
}

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

/*
	====
	Opta
	====
*/
body .Opta {
  font-family: "DIN Next W01", sans-serif;
}
body .Opta h2 {
  background-color: #BB9114;
  display: none;
}
body .Opta .Opta_C .Opta-CricketInningsBreakdown .Opta-Team {
  background-color: #003f78;
}
body .Opta .Opta_C .Opta-CricketInningsBreakdown .Opta-Team.Opta-Away {
  background-color: #777;
}
body .Opta .Opta_C .Opta-CricketInningsBreakdown .Opta-TeamName {
  color: #FFF;
}
body .Opta .Opta_C .Opta-CricketStateOfPlay {
  display: none;
}
body .Opta .Opta_C .Opta-MatchHeader {
  display: none;
}
body .Opta .Opta_C_C_N .Opta-Striped li.Opta-over-end {
  color: #003f78;
  padding-left: 1em;
}
body .Opta .Opta_C_MA_N .Opta-Player {
  background-color: #BB9114;
}
body .Opta .Opta_C_MA_N .Opta-Player.Opta-Away {
  background-color: #777;
}
body .Opta .Opta_C_MA_N .Opta-Player.Opta-batter {
  background-color: #BB9114;
}
body .Opta .Opta_C_MA_N .Opta-Player.Opta-batter.Opta-Away {
  background-color: #777;
}
body .Opta .Opta-Teamsheet-Holder.Opta-Away .Opta-Teamsheet-Button {
  background-color: #777;
  color: #FFF;
}
body .Opta .Opta-Teamsheet-Holder .Opta-Teamsheet-Button {
  background-color: #003f78;
  color: #FFF;
}
body .Opta .Opta-TeamName {
  color: #003f78;
}

/* Opta */
.theme-community {
  /*
  	===========
  	Breadcrumbs
  	===========
  */
  /*
  	==============
  	Content Blocks
  	==============
  */
}
.theme-community .content-blocks h1,
.theme-community .content-blocks h2,
.theme-community .content-blocks h3,
.theme-community .content-blocks h4,
.theme-community .content-blocks h5,
.theme-community .content-blocks h6 {
  color: #005696;
}
.theme-community ul {
  color: #005696;
}
.theme-community li:before {
  background-color: #005696;
}
.theme-community .button-large, .theme-community .button-large-pencil, .theme-community .button-large-calendar, .theme-community .button-large-ticket, .theme-community .button-large-listen {
  background-color: #F05628;
  border-color: #F05628;
}
.theme-community .button-large:hover, .theme-community .button-large-pencil:hover, .theme-community .button-large-calendar:hover, .theme-community .button-large-ticket:hover, .theme-community .button-large-listen:hover {
  background-color: #AACF3B;
  border-color: #AACF3B;
}
.theme-community .button-white, .theme-community .button-white-ticket {
  color: themetext;
}
.theme-community .button-white:hover, .theme-community .button-white-ticket:hover {
  background-color: #005696;
  border-color: #005696;
  color: #FFF;
}
.theme-community .button-white-arrow:after {
  background-image: url(/site/images/icon/community/chevron-right.svg);
}
.no-svg .theme-community .button-white-arrow:after {
  background-image: url(/site/images/icon/community/chevron-right.png);
}
.theme-community .button-white-arrow:hover:after {
  background-image: url(/site/images/icon/white/chevron-right.svg);
}
.no-svg .theme-community .button-white-arrow:hover:after {
  background-image: url(/site/images/icon/white/chevron-right.png);
}
.theme-community .button-white-ticket {
  background-image: url(/site/images/icon/spa/ticket.svg);
}
.no-svg .theme-community .button-white-ticket {
  background-image: url(/site/images/icon/spa/ticket.png);
}
.theme-community .button-white-ticket:hover {
  background-image: url(/site/images/icon/white/ticket.svg);
}
.no-svg .theme-community .button-white-ticket:hover {
  background-image: url(/site/images/icon/white/ticket.png);
}
.theme-community .linethrough {
  color: #005696;
}
.theme-community .form .button, .theme-community .form .button-search, .theme-community .form .button-list, .theme-community .form .button-ticket-small, .theme-community .form .button-header, .theme-community .form .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .theme-community .form a {
  background-color: #F05628;
  border-color: #F05628;
}
.theme-community .form .button:hover, .theme-community .form .button-search:hover, .theme-community .form .button-list:hover, .theme-community .form .button-ticket-small:hover, .theme-community .form .button-header:hover, .theme-community .form .header-site .header-site_book_panel .header-site_book_panel_text a:hover, .header-site .header-site_book_panel .header-site_book_panel_text .theme-community .form a:hover {
  background-color: #AACF3B;
  border-color: #AACF3B;
}
.theme-community .directions-expand :-moz-placeholder,
.theme-community .newsletter :-moz-placeholder,
.theme-community .form-contact :-moz-placeholder {
  color: #F05628;
}
.theme-community .directions-expand ::-moz-placeholder,
.theme-community .newsletter ::-moz-placeholder,
.theme-community .form-contact ::-moz-placeholder {
  color: #F05628;
}
.theme-community .directions-expand ::-webkit-input-placeholder,
.theme-community .newsletter ::-webkit-input-placeholder,
.theme-community .form-contact ::-webkit-input-placeholder {
  color: #F05628;
}
.theme-community .directions-expand :-ms-input-placeholder,
.theme-community .newsletter :-ms-input-placeholder,
.theme-community .form-contact :-ms-input-placeholder {
  color: #F05628;
}
.theme-community .niceselect-wrapper:after {
  background-image: url(/site/images/icon/community/chevron-down.svg);
}
.no-svg .theme-community .niceselect-wrapper:after {
  background-image: url(/site/images/icon/community/chevron-down.png);
}
.theme-community .niceselect-wrapper .niceselect-text {
  color: #F05628;
}
.theme-community .colour-highlight {
  color: #F05628;
}
.theme-community .nav-content a {
  color: #005696;
}
.theme-community .nav-content a:hover {
  color: #F05628;
}
.theme-community .nav-content a:hover:after {
  background-color: #F05628;
}
.theme-community .nav-content .active a {
  color: #F05628;
}
.theme-community .nav-content .active a:after {
  background-color: #F05628;
}
.theme-community .nav-side a {
  color: #005696;
}
.theme-community .nav-side .active > a {
  border-bottom-color: #F05628;
  color: #F05628;
}
.theme-community .footer-contact {
  background-color: #F05628;
}
.theme-community .footer-contact h2 {
  color: #F05628;
}
.theme-community .footer-contact .office h3,
.theme-community .footer-contact .office h4,
.theme-community .footer-contact .offices h3,
.theme-community .footer-contact .offices h4 {
  color: #F05628;
}
.theme-community .footer-contact .button, .theme-community .footer-contact .button-search, .theme-community .footer-contact .button-list, .theme-community .footer-contact .button-ticket-small, .theme-community .footer-contact .button-header, .theme-community .footer-contact .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .theme-community .footer-contact a {
  background-color: #F05628;
  border-color: #F05628;
}
.theme-community .footer-contact .button:hover, .theme-community .footer-contact .button-search:hover, .theme-community .footer-contact .button-list:hover, .theme-community .footer-contact .button-ticket-small:hover, .theme-community .footer-contact .button-header:hover, .theme-community .footer-contact .header-site .header-site_book_panel .header-site_book_panel_text a:hover, .header-site .header-site_book_panel .header-site_book_panel_text .theme-community .footer-contact a:hover {
  background-color: #AACF3B;
  border-color: #AACF3B;
}
.theme-community .expand .expand-title:before {
  background-image: url(/site/images/icon/community/chevron-large-down.svg);
}
.no-svg .theme-community .expand .expand-title:before {
  background-image: url(/site/images/icon/community/chevron-large-down.png);
}
.theme-community .expand .expand-title:after {
  background-image: url(/site/images/icon/community/chevron-large-down.svg);
}
.no-svg .theme-community .expand .expand-title:after {
  background-image: url(/site/images/icon/community/chevron-large-down.png);
}
.theme-community .expand.open .expand-title:before {
  background-image: url(/site/images/icon/community/chevron-large-up.svg);
}
.no-svg .theme-community .expand.open .expand-title:before {
  background-image: url(/site/images/icon/community/chevron-large-up.png);
}
.theme-community .expand.open .expand-title:after {
  background-image: url(/site/images/icon/community/chevron-large-up.svg);
}
.no-svg .theme-community .expand.open .expand-title:after {
  background-image: url(/site/images/icon/community/chevron-large-up.png);
}
.theme-community .expand .contact-block + .contact-block {
  border-top-color: #F05628;
}
.theme-community .expand .contact-social a + a {
  border-left-color: #F05628;
}
.theme-community .breadcrumbs {
  background-color: #F05628;
}
.theme-community .breadcrumbs a {
  color: #FFF;
}
.theme-community .breadcrumbs span {
  color: #005696;
}
.theme-community .content-block-directions .button, .theme-community .content-block-directions .button-search, .theme-community .content-block-directions .button-list, .theme-community .content-block-directions .button-ticket-small, .theme-community .content-block-directions .button-header, .theme-community .content-block-directions .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .theme-community .content-block-directions a {
  background-color: #005696;
}
.theme-community .content-block-directions .button:hover, .theme-community .content-block-directions .button-search:hover, .theme-community .content-block-directions .button-list:hover, .theme-community .content-block-directions .button-ticket-small:hover, .theme-community .content-block-directions .button-header:hover, .theme-community .content-block-directions .header-site .header-site_book_panel .header-site_book_panel_text a:hover, .header-site .header-site_book_panel .header-site_book_panel_text .theme-community .content-block-directions a:hover {
  background-color: #F89A23;
}
.theme-community .content-block-directions .h1 {
  color: #005696;
}
.theme-community .content-block-quote, .theme-community .content-block-quote-alt {
  background-color: #F05628;
  color: #FFF;
}
.theme-community .content-block-quote cite, .theme-community .content-block-quote-alt cite {
  color: #AACF3B;
}
.theme-community .content-block-quote:after, .theme-community .content-block-quote-alt:after {
  background-color: #AACF3B;
}
.theme-community .content-block-quote-alt {
  background-color: #AACF3B;
  color: #FFF;
}
.theme-community .content-block-quote-alt cite {
  color: #F05628;
}
.theme-community .content-block-quote-alt:after {
  background-color: #F05628;
}
.theme-community .content-block-linkblocks a {
  color: #F05628;
}
.theme-community .directions .mode-select a {
  color: #F05628;
}
.theme-community .directions .mode-select a:hover, .theme-community .directions .mode-select a:active {
  color: #005696;
}
.theme-community .directions .mode-select .icon:before, .theme-community .directions .mode-select .icon:after {
  background-image: url(/site/images/icon/community/directions.svg);
}
.no-svg .theme-community .directions .mode-select .icon:before, .no-svg .theme-community .directions .mode-select .icon:after {
  background-image: url(/site/images/icon/community/directions.png);
}
.theme-community .directions-expand .input-bar {
  background-color: #F05628;
}
.theme-community .directions-expand .close button {
  background-color: #F05628;
}
.theme-community .directions-expand .close button:hover {
  background-color: #005696;
}
.theme-community .directions-expand .leg {
  color: #005696;
}
.theme-community .storify .storify-footer button {
  background-color: #F05628;
}
.theme-community .storify .storify-footer button:hover {
  background-color: #005696;
}
.theme-community .content-block-faqs {
  border-bottom-color: #005696;
}
.theme-community .content-block-faqs h3:after,
.theme-community .content-block-faqs dt:after {
  background-image: url(/site/images/icon/community/dropdown.png);
}
.theme-community .content-block-faqs dt {
  color: #005696;
}
.theme-community .content-block-faqs dt:before {
  background-color: #005696;
}
.theme-community .content-block-faqs dt.active {
  color: #F05628;
}
.theme-community .content-block-faqs dt.active:before {
  background-color: #F05628;
}

.theme-hotel {
  /*
  	===========
  	Breadcrumbs
  	===========
  */
  /*
  	==============
  	Content Blocks
  	==============
  */
  /*
  	==========
  	Newsletter
  	==========
  */
  /*
  	==============
  	Footer Contact
  	==============
  */
  /*
  	==============
  	Expand
  	==============
  */
}
.theme-hotel .content-blocks h1,
.theme-hotel .content-blocks h2,
.theme-hotel .content-blocks h3,
.theme-hotel .content-blocks h4,
.theme-hotel .content-blocks h5,
.theme-hotel .content-blocks h6 {
  color: #001A3A;
}
.theme-hotel ul {
  color: #52B9E9;
}
.theme-hotel li:before {
  background-color: #52B9E9;
}
.theme-hotel .button-large, .theme-hotel .button-large-pencil, .theme-hotel .button-large-calendar, .theme-hotel .button-large-ticket, .theme-hotel .button-large-listen {
  background-color: #52B9E9;
  border-color: #52B9E9;
}
.theme-hotel .button-large:hover, .theme-hotel .button-large-pencil:hover, .theme-hotel .button-large-calendar:hover, .theme-hotel .button-large-ticket:hover, .theme-hotel .button-large-listen:hover {
  background-color: #001A3A;
  border-color: #001A3A;
}
.theme-hotel .button-white:hover, .theme-hotel .button-white-ticket:hover {
  background-color: #001A3A;
  border-color: #001A3A;
  color: #FFF;
}
.theme-hotel .button-white-arrow:hover:after {
  background-image: url(/site/images/icon/white/chevron-right.svg);
}
.no-svg .theme-hotel .button-white-arrow:hover:after {
  background-image: url(/site/images/icon/white/chevron-right.png);
}
.theme-hotel .button-white-ticket:hover {
  background-image: url(/site/images/icon/white/ticket.svg);
}
.no-svg .theme-hotel .button-white-ticket:hover {
  background-image: url(/site/images/icon/white/ticket.png);
}
.theme-hotel .icon-alt-mail:before {
  background-image: url(/site/images/icon/hotel/mail.svg);
}
.no-svg .theme-hotel .icon-alt-mail:before {
  background-image: url(/site/images/icon/hotel/mail.png);
}
.theme-hotel .icon-alt-pencil:before {
  background-image: url(/site/images/icon/hotel/pencil.svg);
}
.no-svg .theme-hotel .icon-alt-pencil:before {
  background-image: url(/site/images/icon/hotel/pencil.png);
}
.theme-hotel .linethrough {
  color: #001A3A;
}
.theme-hotel .form .button, .theme-hotel .form .button-search, .theme-hotel .form .button-list, .theme-hotel .form .button-ticket-small, .theme-hotel .form .button-header, .theme-hotel .form .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .theme-hotel .form a {
  background-color: #52B9E9;
  border-color: #52B9E9;
}
.theme-hotel .form .button:hover, .theme-hotel .form .button-search:hover, .theme-hotel .form .button-list:hover, .theme-hotel .form .button-ticket-small:hover, .theme-hotel .form .button-header:hover, .theme-hotel .form .header-site .header-site_book_panel .header-site_book_panel_text a:hover, .header-site .header-site_book_panel .header-site_book_panel_text .theme-hotel .form a:hover {
  background-color: #001A3A;
  border-color: #001A3A;
}
.theme-hotel .directions-expand :-moz-placeholder,
.theme-hotel .newsletter :-moz-placeholder,
.theme-hotel .form-contact :-moz-placeholder {
  color: #52B9E9;
}
.theme-hotel .directions-expand ::-moz-placeholder,
.theme-hotel .newsletter ::-moz-placeholder,
.theme-hotel .form-contact ::-moz-placeholder {
  color: #52B9E9;
}
.theme-hotel .directions-expand ::-webkit-input-placeholder,
.theme-hotel .newsletter ::-webkit-input-placeholder,
.theme-hotel .form-contact ::-webkit-input-placeholder {
  color: #52B9E9;
}
.theme-hotel .directions-expand :-ms-input-placeholder,
.theme-hotel .newsletter :-ms-input-placeholder,
.theme-hotel .form-contact :-ms-input-placeholder {
  color: #52B9E9;
}
.theme-hotel .niceselect-wrapper:after {
  background-image: url(/site/images/icon/hotel/chevron-down.svg);
}
.no-svg .theme-hotel .niceselect-wrapper:after {
  background-image: url(/site/images/icon/hotel/chevron-down.png);
}
.theme-hotel .niceselect-wrapper .niceselect-text {
  color: #52B9E9;
}
.theme-hotel .colour-highlight {
  color: #001A3A;
}
.theme-hotel .nav-content a {
  color: #52B9E9;
}
.theme-hotel .nav-content a:hover {
  color: #52B9E9;
}
.theme-hotel .nav-content a:hover:after {
  background-color: #52B9E9;
}
.theme-hotel .nav-content .active a {
  color: #52B9E9;
}
.theme-hotel .nav-content .active a:after {
  background-color: #52B9E9;
}
.theme-hotel .nav-side a {
  color: #52B9E9;
}
.theme-hotel .nav-side .active > a {
  border-bottom-color: #52B9E9;
  color: #52B9E9;
}
.theme-hotel .expand .expand-title:before {
  background-image: url(/site/images/icon/hotel/chevron-large-down.svg);
}
.no-svg .theme-hotel .expand .expand-title:before {
  background-image: url(/site/images/icon/hotel/chevron-large-down.png);
}
.theme-hotel .expand .expand-title:after {
  background-image: url(/site/images/icon/hotel/chevron-large-down.svg);
}
.no-svg .theme-hotel .expand .expand-title:after {
  background-image: url(/site/images/icon/hotel/chevron-large-down.png);
}
.theme-hotel .expand.open .expand-title:before {
  background-image: url(/site/images/icon/hotel/chevron-large-up.svg);
}
.no-svg .theme-hotel .expand.open .expand-title:before {
  background-image: url(/site/images/icon/hotel/chevron-large-up.png);
}
.theme-hotel .expand.open .expand-title:after {
  background-image: url(/site/images/icon/hotel/chevron-large-up.svg);
}
.no-svg .theme-hotel .expand.open .expand-title:after {
  background-image: url(/site/images/icon/hotel/chevron-large-up.png);
}
.theme-hotel .expand .contact-block + .contact-block {
  border-top-color: #52B9E9;
}
.theme-hotel .expand .contact-social a {
  color: #001A3A;
}
.theme-hotel .expand .contact-social a + a {
  border-left-color: #52B9E9;
}
.theme-hotel .expand .contact-social span:before {
  background-image: url(/site/images/icon/hotel/social.svg);
}
.no-svg .theme-hotel .expand .contact-social span:before {
  background-image: url(/site/images/icon/hotel/social.png);
}
.theme-hotel .expand .office,
.theme-hotel .expand .office a,
.theme-hotel .expand .offices,
.theme-hotel .expand .offices a {
  color: #322110;
}
.theme-hotel .breadcrumbs {
  background-color: #001A3A;
}
.theme-hotel .breadcrumbs a {
  color: #FFF;
}
.theme-hotel .breadcrumbs span {
  color: #52B9E9;
}
.theme-hotel .content-block-directions .button, .theme-hotel .content-block-directions .button-search, .theme-hotel .content-block-directions .button-list, .theme-hotel .content-block-directions .button-ticket-small, .theme-hotel .content-block-directions .button-header, .theme-hotel .content-block-directions .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .theme-hotel .content-block-directions a {
  background-color: #001A3A;
}
.theme-hotel .content-block-directions .button:hover, .theme-hotel .content-block-directions .button-search:hover, .theme-hotel .content-block-directions .button-list:hover, .theme-hotel .content-block-directions .button-ticket-small:hover, .theme-hotel .content-block-directions .button-header:hover, .theme-hotel .content-block-directions .header-site .header-site_book_panel .header-site_book_panel_text a:hover, .header-site .header-site_book_panel .header-site_book_panel_text .theme-hotel .content-block-directions a:hover {
  background-color: #52B9E9;
}
.theme-hotel .content-block-directions .h1 {
  color: #52B9E9;
}
.theme-hotel .content-block-quote, .theme-hotel .content-block-quote-alt {
  background-color: #52B9E9;
  color: #FFF;
}
.theme-hotel .content-block-quote cite, .theme-hotel .content-block-quote-alt cite {
  color: #001A3A;
}
.theme-hotel .content-block-quote:after, .theme-hotel .content-block-quote-alt:after {
  background-color: #001A3A;
}
.theme-hotel .content-block-quote-alt {
  background-color: #001A3A;
  color: #FFF;
}
.theme-hotel .content-block-quote-alt cite {
  color: #52B9E9;
}
.theme-hotel .content-block-quote-alt:after {
  background-color: #52B9E9;
}
.theme-hotel .content-block-promo .promo-box:nth-child(2n) .phone {
  background-image: url(/site/images/icon/hotel/phone.svg);
}
.no-svg .theme-hotel .content-block-promo .promo-box:nth-child(2n) .phone {
  background-image: url(/site/images/icon/hotel/phone.png);
}
.theme-hotel .content-block-linkblocks a {
  color: #52B9E9;
}
.theme-hotel .content-block-announce .h2 {
  color: #001A3A;
}
.theme-hotel .directions .mode-select a {
  color: #52B9E9;
}
.theme-hotel .directions .mode-select a:hover, .theme-hotel .directions .mode-select a:active {
  color: #001A3A;
}
.theme-hotel .directions .mode-select .icon:before, .theme-hotel .directions .mode-select .icon:after {
  background-image: url(/site/images/icon/hotel/directions.svg);
}
.no-svg .theme-hotel .directions .mode-select .icon:before, .no-svg .theme-hotel .directions .mode-select .icon:after {
  background-image: url(/site/images/icon/hotel/directions.png);
}
.theme-hotel .directions-expand .input-bar {
  background-color: #52B9E9;
}
.theme-hotel .directions-expand .close button {
  background-color: #52B9E9;
}
.theme-hotel .directions-expand .close button:hover {
  background-color: #001A3A;
}
.theme-hotel .directions-expand .leg {
  color: #001A3A;
}
.theme-hotel .storify .storify-footer button {
  background-color: #52B9E9;
}
.theme-hotel .storify .storify-footer button:hover {
  background-color: #001A3A;
}
.theme-hotel .content-block-booking label {
  color: #52B9E9;
}
.theme-hotel .content-block-booking .niceselect-wrapper:after {
  background-image: url(/site/images/icon/hotel/chevron-down-dark.svg);
}
.no-svg .theme-hotel .content-block-booking .niceselect-wrapper:after {
  background-image: url(/site/images/icon/hotel/chevron-down-dark.png);
}
.theme-hotel .content-block-booking .niceselect-wrapper .niceselect-text {
  color: #001A3A;
}
.theme-hotel .content-block-booking .button-search {
  background-color: #001A3A;
}
.theme-hotel .content-block-booking .button-search:hover {
  background-color: #52B9E9;
}
.theme-hotel .content-block-booking :-moz-placeholder {
  color: #001A3A;
}
.theme-hotel .content-block-booking ::-moz-placeholder {
  color: #001A3A;
}
.theme-hotel .content-block-booking ::-webkit-input-placeholder {
  color: #001A3A;
}
.theme-hotel .content-block-booking :-ms-input-placeholder {
  color: #001A3A;
}
.theme-hotel .content-block-faqs {
  border-bottom-color: #52B9E9;
}
.theme-hotel .content-block-faqs h3:after,
.theme-hotel .content-block-faqs dt:after {
  background-image: url(/site/images/icon/hotel/dropdown.png);
}
.theme-hotel .content-block-faqs dt {
  color: #001A3A;
}
.theme-hotel .content-block-faqs dt:before {
  background-color: #001A3A;
}
.theme-hotel .content-block-faqs dt.active {
  color: #52B9E9;
}
.theme-hotel .content-block-faqs dt.active:before {
  background-color: #52B9E9;
}
.theme-hotel .newsletter h2 {
  color: #001A3A;
}
.theme-hotel .footer-contact {
  background-color: #001A3A;
}
.theme-hotel .footer-contact h2,
.theme-hotel .footer-contact h3 {
  color: #001A3A;
}
.theme-hotel .footer-contact .office h3,
.theme-hotel .footer-contact .office h4,
.theme-hotel .footer-contact .offices h3,
.theme-hotel .footer-contact .offices h4 {
  color: #001A3A;
}
.theme-hotel .footer-contact .button, .theme-hotel .footer-contact .button-search, .theme-hotel .footer-contact .button-list, .theme-hotel .footer-contact .button-ticket-small, .theme-hotel .footer-contact .button-header, .theme-hotel .footer-contact .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .theme-hotel .footer-contact a {
  background-color: #001A3A;
}
.theme-hotel .footer-contact .button:hover, .theme-hotel .footer-contact .button-search:hover, .theme-hotel .footer-contact .button-list:hover, .theme-hotel .footer-contact .button-ticket-small:hover, .theme-hotel .footer-contact .button-header:hover, .theme-hotel .footer-contact .header-site .header-site_book_panel .header-site_book_panel_text a:hover, .header-site .header-site_book_panel .header-site_book_panel_text .theme-hotel .footer-contact a:hover {
  background-color: #52B9E9;
}

.theme-spa {
  /*
  	===========
  	Breadcrumbs
  	===========
  */
  /*
  	==============
  	Content Blocks
  	==============
  */
  /*
  	==============
  	Footer Contact
  	==============
  */
}
.theme-spa .content-blocks h1,
.theme-spa .content-blocks h2,
.theme-spa .content-blocks h3,
.theme-spa .content-blocks h4,
.theme-spa .content-blocks h5,
.theme-spa .content-blocks h6 {
  color: #6c7e7e;
}
.theme-spa ul {
  color: #6c7e7e;
}
.theme-spa li:before {
  background-color: #6c7e7e;
}
.theme-spa .button-large, .theme-spa .button-large-pencil, .theme-spa .button-large-calendar, .theme-spa .button-large-ticket, .theme-spa .button-large-listen {
  background-color: #6c7e7e;
  border-color: #6c7e7e;
}
.theme-spa .button-large:hover, .theme-spa .button-large-pencil:hover, .theme-spa .button-large-calendar:hover, .theme-spa .button-large-ticket:hover, .theme-spa .button-large-listen:hover {
  background-color: #DA9EDE;
  border-color: #DA9EDE;
}
.theme-spa .button-white, .theme-spa .button-white-ticket {
  color: #6c7e7e;
}
.theme-spa .button-white:hover, .theme-spa .button-white-ticket:hover {
  background-color: #6c7e7e;
  border-color: #6c7e7e;
  color: #FFF;
}
.theme-spa .button-white-arrow:after {
  background-image: url(/site/images/icon/spa/chevron-right.svg);
}
.no-svg .theme-spa .button-white-arrow:after {
  background-image: url(/site/images/icon/spa/chevron-right.png);
}
.theme-spa .button-white-arrow:hover:after {
  background-image: url(/site/images/icon/white/chevron-right.svg);
}
.no-svg .theme-spa .button-white-arrow:hover:after {
  background-image: url(/site/images/icon/white/chevron-right.png);
}
.theme-spa .button-white-ticket {
  background-image: url(/site/images/icon/spa/ticket.svg);
}
.no-svg .theme-spa .button-white-ticket {
  background-image: url(/site/images/icon/spa/ticket.png);
}
.theme-spa .button-white-ticket:hover {
  background-image: url(/site/images/icon/white/ticket.svg);
}
.no-svg .theme-spa .button-white-ticket:hover {
  background-image: url(/site/images/icon/white/ticket.png);
}
.theme-spa .icon-alt-mail:before {
  background-image: url(/site/images/icon/spa/mail.svg);
}
.no-svg .theme-spa .icon-alt-mail:before {
  background-image: url(/site/images/icon/spa/mail.png);
}
.theme-spa .icon-alt-pencil:before {
  background-image: url(/site/images/icon/spa/pencil.svg);
}
.no-svg .theme-spa .icon-alt-pencil:before {
  background-image: url(/site/images/icon/spa/pencil.png);
}
.theme-spa .linethrough {
  color: #6c7e7e;
}
.theme-spa .form .button, .theme-spa .form .button-search, .theme-spa .form .button-list, .theme-spa .form .button-ticket-small, .theme-spa .form .button-header, .theme-spa .form .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .theme-spa .form a {
  background-color: #6c7e7e;
  border-color: #6c7e7e;
}
.theme-spa .form .button:hover, .theme-spa .form .button-search:hover, .theme-spa .form .button-list:hover, .theme-spa .form .button-ticket-small:hover, .theme-spa .form .button-header:hover, .theme-spa .form .header-site .header-site_book_panel .header-site_book_panel_text a:hover, .header-site .header-site_book_panel .header-site_book_panel_text .theme-spa .form a:hover {
  background-color: #DA9EDE;
  border-color: #DA9EDE;
}
.theme-spa .directions-expand :-moz-placeholder,
.theme-spa .newsletter :-moz-placeholder,
.theme-spa .form-contact :-moz-placeholder {
  color: #777;
}
.theme-spa .directions-expand ::-moz-placeholder,
.theme-spa .newsletter ::-moz-placeholder,
.theme-spa .form-contact ::-moz-placeholder {
  color: #777;
}
.theme-spa .directions-expand ::-webkit-input-placeholder,
.theme-spa .newsletter ::-webkit-input-placeholder,
.theme-spa .form-contact ::-webkit-input-placeholder {
  color: #777;
}
.theme-spa .directions-expand :-ms-input-placeholder,
.theme-spa .newsletter :-ms-input-placeholder,
.theme-spa .form-contact :-ms-input-placeholder {
  color: #777;
}
.theme-spa .niceselect-wrapper:after {
  background-image: url(/site/images/icon/spa/chevron-down.svg);
}
.no-svg .theme-spa .niceselect-wrapper:after {
  background-image: url(/site/images/icon/spa/chevron-down.png);
}
.theme-spa .niceselect-wrapper .niceselect-text {
  color: #6c7e7e;
}
.theme-spa .colour-highlight {
  color: #6c7e7e;
}
.theme-spa .nav-content a {
  color: #6c7e7e;
}
.theme-spa .nav-content a:hover {
  color: #777;
}
.theme-spa .nav-content a:hover:after {
  background-color: #777;
}
.theme-spa .nav-content .active a {
  color: #777;
}
.theme-spa .nav-content .active a:after {
  background-color: #777;
}
.theme-spa .nav-side a {
  color: #6c7e7e;
}
.theme-spa .nav-side .active > a {
  border-bottom-color: #777;
  color: #777;
}
.theme-spa .footer-contact {
  background-color: #6c7e7e;
}
.theme-spa .footer-contact h2 {
  color: #6c7e7e;
}
.theme-spa .footer-contact .office h3,
.theme-spa .footer-contact .office h4,
.theme-spa .footer-contact .offices h3,
.theme-spa .footer-contact .offices h4 {
  color: #6c7e7e;
}
.theme-spa .footer-contact .button, .theme-spa .footer-contact .button-search, .theme-spa .footer-contact .button-list, .theme-spa .footer-contact .button-ticket-small, .theme-spa .footer-contact .button-header, .theme-spa .footer-contact .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .theme-spa .footer-contact a {
  background-color: #6c7e7e;
  border-color: #6c7e7e;
}
.theme-spa .footer-contact .button:hover, .theme-spa .footer-contact .button-search:hover, .theme-spa .footer-contact .button-list:hover, .theme-spa .footer-contact .button-ticket-small:hover, .theme-spa .footer-contact .button-header:hover, .theme-spa .footer-contact .header-site .header-site_book_panel .header-site_book_panel_text a:hover, .header-site .header-site_book_panel .header-site_book_panel_text .theme-spa .footer-contact a:hover {
  background-color: #DA9EDE;
  border-color: #DA9EDE;
}
.theme-spa .expand .expand-title:before {
  background-image: url(/site/images/icon/hotel/chevron-large-down.svg);
}
.no-svg .theme-spa .expand .expand-title:before {
  background-image: url(/site/images/icon/hotel/chevron-large-down.png);
}
.theme-spa .expand .expand-title:after {
  background-image: url(/site/images/icon/hotel/chevron-large-down.svg);
}
.no-svg .theme-spa .expand .expand-title:after {
  background-image: url(/site/images/icon/hotel/chevron-large-down.png);
}
.theme-spa .expand.open .expand-title:before {
  background-image: url(/site/images/icon/hotel/chevron-large-up.svg);
}
.no-svg .theme-spa .expand.open .expand-title:before {
  background-image: url(/site/images/icon/hotel/chevron-large-up.png);
}
.theme-spa .expand.open .expand-title:after {
  background-image: url(/site/images/icon/hotel/chevron-large-up.svg);
}
.no-svg .theme-spa .expand.open .expand-title:after {
  background-image: url(/site/images/icon/hotel/chevron-large-up.png);
}
.theme-spa .expand .contact-block + .contact-block {
  border-top-color: #777;
}
.theme-spa .expand .contact-social a {
  color: #6c7e7e;
}
.theme-spa .expand .contact-social a + a {
  border-left-color: #777;
}
.theme-spa .expand .contact-social span:before {
  background-image: url(/site/images/icon/spa/social.svg);
}
.no-svg .theme-spa .expand .contact-social span:before {
  background-image: url(/site/images/icon/spa/social.png);
}
.theme-spa .breadcrumbs {
  background-color: #6c7e7e;
}
.theme-spa .breadcrumbs a {
  color: #FFF;
}
.theme-spa .breadcrumbs span {
  color: #DA9EDE;
}
.theme-spa .content-block-directions .button, .theme-spa .content-block-directions .button-search, .theme-spa .content-block-directions .button-list, .theme-spa .content-block-directions .button-ticket-small, .theme-spa .content-block-directions .button-header, .theme-spa .content-block-directions .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .theme-spa .content-block-directions a {
  background-color: #DA9EDE;
}
.theme-spa .content-block-directions .button:hover, .theme-spa .content-block-directions .button-search:hover, .theme-spa .content-block-directions .button-list:hover, .theme-spa .content-block-directions .button-ticket-small:hover, .theme-spa .content-block-directions .button-header:hover, .theme-spa .content-block-directions .header-site .header-site_book_panel .header-site_book_panel_text a:hover, .header-site .header-site_book_panel .header-site_book_panel_text .theme-spa .content-block-directions a:hover {
  background-color: #6c7e7e;
}
.theme-spa .content-block-directions .h1 {
  color: #6c7e7e;
}
.theme-spa .content-block-directions .colour-highlight {
  color: #DA9EDE;
}
.theme-spa .content-block-quote, .theme-spa .content-block-quote-alt {
  background-color: #6c7e7e;
  color: #FFF;
}
.theme-spa .content-block-quote cite, .theme-spa .content-block-quote-alt cite {
  color: #DA9EDE;
}
.theme-spa .content-block-quote:after, .theme-spa .content-block-quote-alt:after {
  background-color: #DA9EDE;
}
.theme-spa .content-block-quote-alt {
  background-color: #DA9EDE;
  color: #FFF;
}
.theme-spa .content-block-quote-alt cite {
  color: #6c7e7e;
}
.theme-spa .content-block-quote-alt:after {
  background-color: #6c7e7e;
}
.theme-spa .content-block-linkblocks a {
  color: #6c7e7e;
}
.theme-spa .content-block-announce .h2 {
  color: #6c7e7e;
}
.theme-spa .directions .mode-select a {
  color: #6c7e7e;
}
.theme-spa .directions .mode-select a:hover, .theme-spa .directions .mode-select a:active {
  color: #DA9EDE;
}
.theme-spa .directions .mode-select .icon:before, .theme-spa .directions .mode-select .icon:after {
  background-image: url(/site/images/icon/spa/directions.svg);
}
.no-svg .theme-spa .directions .mode-select .icon:before, .no-svg .theme-spa .directions .mode-select .icon:after {
  background-image: url(/site/images/icon/spa/directions.png);
}
.theme-spa .directions-expand .input-bar {
  background-color: #6c7e7e;
}
.theme-spa .directions-expand .close button {
  background-color: #6c7e7e;
}
.theme-spa .directions-expand .close button:hover {
  background-color: #DA9EDE;
}
.theme-spa .directions-expand .leg {
  color: #6c7e7e;
}
.theme-spa .storify .storify-footer button {
  background-color: #6c7e7e;
}
.theme-spa .storify .storify-footer button:hover {
  background-color: #DA9EDE;
}
.theme-spa .content-block-faqs {
  border-bottom-color: #6c7e7e;
}
.theme-spa .content-block-faqs h3:after,
.theme-spa .content-block-faqs dt:after {
  background-image: url(/site/images/icon/spa/dropdown.png);
}
.theme-spa .content-block-faqs dt {
  color: #6c7e7e;
}
.theme-spa .content-block-faqs dt:before {
  background-color: #6c7e7e;
}
.theme-spa .content-block-faqs dt.active {
  color: #DA9EDE;
}
.theme-spa .content-block-faqs dt.active:before {
  background-color: #DA9EDE;
}
.theme-spa .footer-contact h2,
.theme-spa .footer-contact h3 {
  color: #6c7e7e;
}
.theme-spa .footer-contact .office,
.theme-spa .footer-contact .office a,
.theme-spa .footer-contact .offices,
.theme-spa .footer-contact .offices a {
  color: #777;
}

.theme-restaurant {
  /*
  	===========
  	Breadcrumbs
  	===========
  */
  /*
  	==============
  	Content Blocks
  	==============
  */
  /*
  	==============
  	Footer Contact
  	==============
  */
}
.theme-restaurant .content-blocks h1,
.theme-restaurant .content-blocks h2,
.theme-restaurant .content-blocks h3,
.theme-restaurant .content-blocks h4,
.theme-restaurant .content-blocks h5,
.theme-restaurant .content-blocks h6 {
  color: #002B49;
}
.theme-restaurant ul {
  color: #002B49;
}
.theme-restaurant li:before {
  background-color: #002B49;
}
.theme-restaurant .button-large, .theme-restaurant .button-large-pencil, .theme-restaurant .button-large-calendar, .theme-restaurant .button-large-ticket, .theme-restaurant .button-large-listen {
  background-color: #002B49;
  border-color: #002B49;
}
.theme-restaurant .button-large:hover, .theme-restaurant .button-large-pencil:hover, .theme-restaurant .button-large-calendar:hover, .theme-restaurant .button-large-ticket:hover, .theme-restaurant .button-large-listen:hover {
  background-color: #e06c2a;
  border-color: #e06c2a;
}
.theme-restaurant .button-white, .theme-restaurant .button-white-ticket {
  color: #002B49;
}
.theme-restaurant .button-white:hover, .theme-restaurant .button-white-ticket:hover {
  background-color: #002B49;
  border-color: #002B49;
  color: #FFF;
}
.theme-restaurant .button-white-arrow:after {
  background-image: url(/site/images/icon/restaurant/chevron-right.svg);
}
.no-svg .theme-restaurant .button-white-arrow:after {
  background-image: url(/site/images/icon/restaurant/chevron-right.png);
}
.theme-restaurant .button-white-arrow:hover:after {
  background-image: url(/site/images/icon/white/chevron-right.svg);
}
.no-svg .theme-restaurant .button-white-arrow:hover:after {
  background-image: url(/site/images/icon/white/chevron-right.png);
}
.theme-restaurant .button-white-ticket {
  background-image: url(/site/images/icon/restaurant/ticket.svg);
}
.no-svg .theme-restaurant .button-white-ticket {
  background-image: url(/site/images/icon/restaurant/ticket.png);
}
.theme-restaurant .button-white-ticket:hover {
  background-image: url(/site/images/icon/white/ticket.svg);
}
.no-svg .theme-restaurant .button-white-ticket:hover {
  background-image: url(/site/images/icon/white/ticket.png);
}
.theme-restaurant .icon-alt-mail:before {
  background-image: url(/site/images/icon/restaurant/mail.svg);
}
.no-svg .theme-restaurant .icon-alt-mail:before {
  background-image: url(/site/images/icon/restaurant/mail.png);
}
.theme-restaurant .icon-alt-pencil:before {
  background-image: url(/site/images/icon/restaurant/pencil.svg);
}
.no-svg .theme-restaurant .icon-alt-pencil:before {
  background-image: url(/site/images/icon/restaurant/pencil.png);
}
.theme-restaurant .linethrough {
  color: #002B49;
}
.theme-restaurant .form .button, .theme-restaurant .form .button-search, .theme-restaurant .form .button-list, .theme-restaurant .form .button-ticket-small, .theme-restaurant .form .button-header, .theme-restaurant .form .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .theme-restaurant .form a {
  background-color: #002B49;
  border-color: #002B49;
}
.theme-restaurant .form .button:hover, .theme-restaurant .form .button-search:hover, .theme-restaurant .form .button-list:hover, .theme-restaurant .form .button-ticket-small:hover, .theme-restaurant .form .button-header:hover, .theme-restaurant .form .header-site .header-site_book_panel .header-site_book_panel_text a:hover, .header-site .header-site_book_panel .header-site_book_panel_text .theme-restaurant .form a:hover {
  background-color: #e06c2a;
  border-color: #e06c2a;
}
.theme-restaurant .directions-expand :-moz-placeholder,
.theme-restaurant .newsletter :-moz-placeholder,
.theme-restaurant .form-contact :-moz-placeholder {
  color: #777;
}
.theme-restaurant .directions-expand ::-moz-placeholder,
.theme-restaurant .newsletter ::-moz-placeholder,
.theme-restaurant .form-contact ::-moz-placeholder {
  color: #777;
}
.theme-restaurant .directions-expand ::-webkit-input-placeholder,
.theme-restaurant .newsletter ::-webkit-input-placeholder,
.theme-restaurant .form-contact ::-webkit-input-placeholder {
  color: #777;
}
.theme-restaurant .directions-expand :-ms-input-placeholder,
.theme-restaurant .newsletter :-ms-input-placeholder,
.theme-restaurant .form-contact :-ms-input-placeholder {
  color: #777;
}
.theme-restaurant .niceselect-wrapper:after {
  background-image: url(/site/images/icon/restaurant/chevron-down.svg);
}
.no-svg .theme-restaurant .niceselect-wrapper:after {
  background-image: url(/site/images/icon/restaurant/chevron-down.png);
}
.theme-restaurant .niceselect-wrapper .niceselect-text {
  color: #002B49;
}
.theme-restaurant .colour-highlight {
  color: #002B49;
}
.theme-restaurant .nav-content a {
  color: #002B49;
}
.theme-restaurant .nav-content a:hover {
  color: #e06c2a;
}
.theme-restaurant .nav-content a:hover:after {
  background-color: #e06c2a;
}
.theme-restaurant .nav-content .active a {
  color: #e06c2a;
}
.theme-restaurant .nav-content .active a:after {
  background-color: #e06c2a;
}
.theme-restaurant .nav-side a {
  color: #002B49;
}
.theme-restaurant .nav-side .active > a {
  border-bottom-color: #e06c2a;
  color: #e06c2a;
}
.theme-restaurant .footer-contact {
  background-color: #e06c2a;
}
.theme-restaurant .footer-contact h2 {
  color: #002B49;
}
.theme-restaurant .footer-contact .office h3,
.theme-restaurant .footer-contact .office h4,
.theme-restaurant .footer-contact .offices h3,
.theme-restaurant .footer-contact .offices h4 {
  color: #002B49;
}
.theme-restaurant .footer-contact .button, .theme-restaurant .footer-contact .button-search, .theme-restaurant .footer-contact .button-list, .theme-restaurant .footer-contact .button-ticket-small, .theme-restaurant .footer-contact .button-header, .theme-restaurant .footer-contact .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .theme-restaurant .footer-contact a {
  background-color: #002B49;
  border-color: #002B49;
}
.theme-restaurant .footer-contact .button:hover, .theme-restaurant .footer-contact .button-search:hover, .theme-restaurant .footer-contact .button-list:hover, .theme-restaurant .footer-contact .button-ticket-small:hover, .theme-restaurant .footer-contact .button-header:hover, .theme-restaurant .footer-contact .header-site .header-site_book_panel .header-site_book_panel_text a:hover, .header-site .header-site_book_panel .header-site_book_panel_text .theme-restaurant .footer-contact a:hover {
  background-color: #e06c2a;
  border-color: #e06c2a;
}
.theme-restaurant .expand .expand-title:before {
  background-image: url(/site/images/icon/hotel/chevron-large-down.svg);
}
.no-svg .theme-restaurant .expand .expand-title:before {
  background-image: url(/site/images/icon/hotel/chevron-large-down.png);
}
.theme-restaurant .expand .expand-title:after {
  background-image: url(/site/images/icon/hotel/chevron-large-down.svg);
}
.no-svg .theme-restaurant .expand .expand-title:after {
  background-image: url(/site/images/icon/hotel/chevron-large-down.png);
}
.theme-restaurant .expand.open .expand-title:before {
  background-image: url(/site/images/icon/hotel/chevron-large-up.svg);
}
.no-svg .theme-restaurant .expand.open .expand-title:before {
  background-image: url(/site/images/icon/hotel/chevron-large-up.png);
}
.theme-restaurant .expand.open .expand-title:after {
  background-image: url(/site/images/icon/hotel/chevron-large-up.svg);
}
.no-svg .theme-restaurant .expand.open .expand-title:after {
  background-image: url(/site/images/icon/hotel/chevron-large-up.png);
}
.theme-restaurant .expand .contact-block + .contact-block {
  border-top-color: #777;
}
.theme-restaurant .expand .contact-social a {
  color: #002B49;
}
.theme-restaurant .expand .contact-social a + a {
  border-left-color: #777;
}
.theme-restaurant .expand .contact-social span:before {
  background-image: url(/site/images/icon/restaurant/social.svg);
}
.no-svg .theme-restaurant .expand .contact-social span:before {
  background-image: url(/site/images/icon/restaurant/social.png);
}
.theme-restaurant .expand .office,
.theme-restaurant .expand .office a,
.theme-restaurant .expand .offices,
.theme-restaurant .expand .offices a {
  color: #777;
}
.theme-restaurant .breadcrumbs {
  background-color: #002B49;
}
.theme-restaurant .breadcrumbs a {
  color: #FFF;
}
.theme-restaurant .breadcrumbs span {
  color: #e06c2a;
}
.theme-restaurant .content-block-directions .button, .theme-restaurant .content-block-directions .button-search, .theme-restaurant .content-block-directions .button-list, .theme-restaurant .content-block-directions .button-ticket-small, .theme-restaurant .content-block-directions .button-header, .theme-restaurant .content-block-directions .header-site .header-site_book_panel .header-site_book_panel_text a, .header-site .header-site_book_panel .header-site_book_panel_text .theme-restaurant .content-block-directions a {
  background-color: #e06c2a;
}
.theme-restaurant .content-block-directions .button:hover, .theme-restaurant .content-block-directions .button-search:hover, .theme-restaurant .content-block-directions .button-list:hover, .theme-restaurant .content-block-directions .button-ticket-small:hover, .theme-restaurant .content-block-directions .button-header:hover, .theme-restaurant .content-block-directions .header-site .header-site_book_panel .header-site_book_panel_text a:hover, .header-site .header-site_book_panel .header-site_book_panel_text .theme-restaurant .content-block-directions a:hover {
  background-color: #E9E8E3;
  color: #002B49;
}
.theme-restaurant .content-block-directions .button-arrow:hover:after {
  background-image: url(/site/images/icon/restaurant/chevron-right.svg);
}
.no-svg .theme-restaurant .content-block-directions .button-arrow:hover:after {
  background-image: url(/site/images/icon/restaurant/chevron-right.png);
}
.theme-restaurant .content-block-directions .h1 {
  color: #002B49;
}
.theme-restaurant .content-block-directions .colour-highlight {
  color: #e06c2a;
}
.theme-restaurant .content-block-quote, .theme-restaurant .content-block-quote-alt {
  background-color: #002B49;
  color: #FFF;
}
.theme-restaurant .content-block-quote cite, .theme-restaurant .content-block-quote-alt cite {
  color: #e06c2a;
}
.theme-restaurant .content-block-quote:after, .theme-restaurant .content-block-quote-alt:after {
  background-color: #e06c2a;
}
.theme-restaurant .content-block-quote-alt {
  background-color: #e06c2a;
  color: #FFF;
}
.theme-restaurant .content-block-quote-alt cite {
  color: #002B49;
}
.theme-restaurant .content-block-quote-alt:after {
  background-color: #002B49;
}
.theme-restaurant .content-block-linkblocks a {
  color: #e06c2a;
}
.theme-restaurant .content-block-announce .h2 {
  color: #002B49;
}
.theme-restaurant .directions .mode-select a {
  color: #e06c2a;
}
.theme-restaurant .directions .mode-select a:hover, .theme-restaurant .directions .mode-select a:active {
  color: #002B49;
}
.theme-restaurant .directions .mode-select .icon:before, .theme-restaurant .directions .mode-select .icon:after {
  background-image: url(/site/images/icon/restaurant/directions.svg);
}
.no-svg .theme-restaurant .directions .mode-select .icon:before, .no-svg .theme-restaurant .directions .mode-select .icon:after {
  background-image: url(/site/images/icon/restaurant/directions.png);
}
.theme-restaurant .directions-expand .input-bar {
  background-color: #002B49;
}
.theme-restaurant .directions-expand .close button {
  background-color: #002B49;
}
.theme-restaurant .directions-expand .close button:hover {
  background-color: #e06c2a;
}
.theme-restaurant .directions-expand .leg {
  color: #002B49;
}
.theme-restaurant .storify .storify-footer button {
  background-color: #002B49;
}
.theme-restaurant .storify .storify-footer button:hover {
  background-color: #e06c2a;
}
.theme-restaurant .content-block-faqs {
  border-bottom-color: #002B49;
}
.theme-restaurant .content-block-faqs h3:after,
.theme-restaurant .content-block-faqs dt:after {
  background-image: url(/site/images/icon/restaurant/dropdown.png);
}
.theme-restaurant .content-block-faqs dt {
  color: #002B49;
}
.theme-restaurant .content-block-faqs dt:before {
  background-color: #002B49;
}
.theme-restaurant .content-block-faqs dt.active {
  color: #e06c2a;
}
.theme-restaurant .content-block-faqs dt.active:before {
  background-color: #e06c2a;
}
.theme-restaurant .footer-contact h2,
.theme-restaurant .footer-contact h3 {
  color: #002B49;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url("/site/fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("/site/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("/site/fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("/site/fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("/site/fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("/site/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.2857142857em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.8571428571em;
}

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eee;
  border-radius: .1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: .3em;
}
.fa.fa-pull-right {
  margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

.fa-handshake-o:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-o:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-book-o:before {
  content: "";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-circle-o:before {
  content: "";
}

.fa-user-o:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-eercast:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-snowflake-o:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

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

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