@charset "UTF-8";
/* =================================================
   NLA
================================================== */
/**
 * This document is the base of your SASS skeleton
 * List your contents below and add a note if you feel
 * like you need to explain what each file does.
 *
 * Then add your file to the import section so that it
 * is compiled. 
 */
/* $Contents
================================================== */
/**
 * Contents............ You’re reading it!
 * Imports............. Begin importing the sections _below_
 * 
 * Vars................ Your variables
 * Mixins.............. Useful SASS helpers - vendor prefix etc.
 * Grids............... Fluid, proportional and nestable grids
 * Layout.............. High-level elements like `html`, `body`, as well as wrappers that are used on every page
 * 
 * Headings............ Heading hierachy
 * Paragraphs.......... Used for where paragraph styles appear over various modules
 * Typography.......... Smallprint, quotes, bold and other text styling elements 
 * Quotes.............. Smallprint, quotes, bold and other text styling elements 
 * Links............... Used for links that are used over more than one module
 * Lists............... Standard list style, or any lists used across different modules
 * Images.............. Basic image control
 * HTML5 Display....... Video, Audio, Canvas styling
 * Tables.............. Basic table styling
 * Forms............... Form reset to start, followed by standard form styling for modular use
 * 
 * Navigation.......... Navigation list
 *
 * 768 Media........... Media Queries for devices < 720
 * 480 Media........... Media Queries for devices < 480
 * Retina Media........ Media Queries for retina devices
 * Print Media......... Media Queries for print
 * 
 * Helper.............. A series of helper classes to use arbitrarily
 */
/* $Imports
================================================== */
/* global styles and options that are used site wide */
/* $Vars
================================================== */
/**
 * Set up project-specific variables here which
 * are then used throughout your build.
 */
/* $Mixins
================================================== */
/**
 * Create a fully formed type style (sizing and vertical rhythm) by passing in a
 * single value, e.g.:
 *
   `@include font-size(10);`
 *
 */
/**
 * Create vendor-prefixed CSS in one go, e.g.
 *
   `@include vendor(box-sizing, border-box);`
 *
 */
/**
 * Create border-radius CSS in one go, e.g.
 *
   `@include rounded-corners(value);`
 *
 */
.rounded-top {
  -webkit-border-radius: 12px 0px 0px 0px;
  -moz-border-radius: 12px 0px 0px 0px;
  border-radius: 12px 0px 0px 0px; }

/**
 * Colorize function: reate darken or lighten variant of a declared colour, e.g.:
 * n value defaults to the declared colour
 *
   `background: colorize($color-1,l1);`
   `color: colorize($bg-1, d1);`
   `border: 1px solid colorize($color-2, n);`
 *
 */
/**
 * Media Query Mixin for min/max/min-device and max-device width or height, e.g.:
 * Base font size needs to be declared
 *
   `@include mq(480, max)`
   `@include mq($tablet, true, min, height)`
 *
 */
/* $Grids
================================================== */
/*
 * Variables are set in:
 * "global/_vars.scss"
 *
 */
.grids {
  width: auto;
  max-width: 1280px;
  clear: both;
  list-style: none;
  overflow: hidden; }

.grid-1 {
  float: left;
  width: 12.5%; }

.grid-2 {
  float: left;
  width: 25%; }

.grid-3 {
  float: left;
  width: 37.5%; }

.grid-4 {
  float: left;
  width: 50%; }

.grid-5 {
  float: left;
  width: 62.5%; }

.grid-6 {
  float: left;
  width: 75%; }

.grid-7 {
  float: left;
  width: 87.5%; }

.grid-8 {
  float: left;
  width: 100%; }

.half {
  float: left;
  width: 50%; }

.third {
  float: left;
  width: 33.333%; }

.two-thirds {
  float: left;
  width: 66.666%; }

.fifth {
  float: left;
  width: 16.666%; }

.four-fifths {
  float: left;
  width: 83.333%; }

.sixth {
  float: left;
  width: 16.666%; }

/*
 *	This iterates through each column and produces output like this:
 * 
 *	.grid-1 {
 *		width: 6.25%;
 *		margin-left: 2.08333%;
 *	}
 *
 *
 *	Simply add .grid-n as a class to your element
 *	<div class="grid-12">
 *
 */
/* $Layout
================================================== */
html {
  font: 0.8125em/1.6153846154 serif;
  overflow-y: scroll;
  -webkit-text-size-adjust: none; }

body {
  margin: 0;
  background: #e6e6e6;
  font-weight: 200; }

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

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

.wrapper:first-child {
  margin: 0; }

.page {
  position: relative;
  color: #5a5a5a;
  max-width: 1280px;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 0 10px 10px; }

.lt-ie9 .page {
  min-width: 1280px; }

.inner {
  display: block;
  padding: 12px 20px 12px 10px;
  margin: 0; }

.fill {
  overflow: hidden;
  background: #FFF;
  margin: 0 0 1px 0; }

.align {
  margin: 0 0 0 1px; }

/* Base elements */
/* $Headings
================================================== */
/**
 * As per: csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css
 *
 * When we define a heading we also define a corresponding class to go with it.
 * This allows us to apply, say, `class=alpha` to a `h3`; a double-stranded
 * heading hierarchy.
 */
h1, h2, .alpha {
  font-size: 21px;
  font-size: 1.6153846154rem;
  line-height: 1;
  line-height: 1.3em;
  font-weight: bold;
  color: #ed008c;
  padding-bottom: 10px;
  margin: 0; }

h1 a, h2 a, .alpha a {
  color: #ed008c; }

h1 a:hover, h2 a:hover, .alpha a:hover {
  border-bottom: 1px solid #ed008c; }

h3, .beta {
  font-size: 18px;
  font-size: 1.3846153846rem;
  line-height: 1.1666666667;
  font-weight: normal;
  color: #262626;
  margin: 0; }

h4, .gamma {
  font-size: 15px;
  font-size: 1.1538461538rem;
  line-height: 1.4;
  font-weight: 200;
  color: #262626;
  margin: 0; }

h5, h6, .delta {
  font-size: 15px;
  font-size: 1.1538461538rem;
  line-height: 1.4;
  font-weight: 200;
  color: #5a5a5a;
  margin: 0; }

.heading-group {
  margin-bottom: 1.2em; }

.broad-title {
  display: block;
  background-color: #FFF;
  min-height: 47px;
  padding: 12px 55px 12px 10px !important;
  border-bottom: 1px solid #e6e6e6; }

.ultra {
  font-size: 21px;
  font-size: 1.6153846154rem;
  line-height: 1;
  line-height: 1.3em;
  font-weight: 200;
  color: #5a5a5a;
  margin: 0; }

/* $Paragraphs
================================================== */
p {
  margin: 0 0 1.5em 0; }

/**
 * The `.lede` class is used to make the introductory
 * text of a document slightly larger.
 */
.standfirst {
  font-size: 15px;
  font-size: 1.1538461538rem;
  line-height: 1.4;
  line-height: 1.6em;
  margin: 0 0 1.2em 0; }

.standfirst p {
  margin: 0; }

.caption {
  padding: 12px 10px;
  margin: 0; }

/* $Typography
================================================== */
b, strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

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

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

small {
  font-size: 80%; }

/* SubScript & SuperScript
================================================== */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* $Quotes
================================================== */
q {
  quotes: "‘" "’" "“" "”"; }

q:before {
  content: "‘";
  content: open-quote; }

q:after {
  content: "’";
  content: close-quote; }

q q:before {
  content: "“";
  content: open-quote; }

q q:after {
  content: "”";
  content: close-quote; }

blockquote {
  quotes: "“" "”";
  text-indent: -0.4em; }

blockquote p:before {
  content: "“";
  content: open-quote; }

blockquote p:after {
  content: "";
  content: no-close-quote; }

blockquote p:last-of-type:after {
  content: "”";
  content: close-quote; }

/* $Links
================================================== */
a {
  color: #5a5a5a;
  text-decoration: none;
  word-wrap: break-word; }

a:focus {
  outline: thin dotted; }

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

/* Special Case colour blue */
.broad-title.delta a {
  color: #448ccb; }

.broad-title.delta a:hover {
  color: #ed008c;
  border-bottom: 1px solid #ed008c; }

/* Bigger Links */
.mid-link {
  color: #ed008c;
  border-bottom: 1px solid #ed008c;
  font-size: 15px;
  font-size: 1.1538461538rem;
  line-height: 1.4; }

/* Arrow Extension */
.arrow {
  display: block; }

/* Arrow Button */
.arrow-button {
  display: block;
  cursor: pointer;
  font-size: 14px;
  font-size: 1.0769230769rem;
  line-height: 1.5;
  background-color: rgba(255, 255, 255, 0.8);
  color: #595959;
  line-height: 44px;
  height: 44px;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  text-align: left;
  font-weight: bold; }

.lt-ie9 .arrow-button {
  background-color: #FFF; }

.arrow-button:hover {
  background-color: #c1c2c2; }

.arrow-button-text {
  float: left;
  padding: 0 0 0 10px; }

.arrow-button-arrow {
  float: right;
  text-indent: -9999px;
  background-position: 0px -1px; }

/* Book Button */
.book-button {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  min-height: 44px;
  background-color: #ed008c;
  color: #FFF;
  font-weight: bold;
  font-size: 15px;
  font-size: 1.1538461538rem;
  line-height: 1.4; }

.book-button:hover {
  background-color: #c1c2c2; }

.book-button .arrow {
  position: absolute;
  right: 0px;
  top: 0px;
  background-position: 0px -98px; }

/* $Lists
================================================== */
dl, menu, ol, ul {
  margin: 1em 0; }

dd {
  margin: 0 0 0 40px; }

menu, ol, ul {
  padding: 0;
  margin: 0; }

ul {
  list-style: none; }

/* Remove vertical spacing from nested lists */
li > ul,
li > ol {
  margin-bottom: 0; }

.slash-list {
  padding: 2px 10px 22px 6px; }

.slash-list li {
  display: inline-block;
  padding: 15px 0 0 4px; }

.lt-ie8 .slash-list li {
  display: inline; }

.slash-list a {
  border-bottom: 1px solid #ed008c;
  margin-right: 3px; }

.slash-list a:hover {
  color: #ed008c; }

.index-list {
  padding: 50px; }

.index-list a {
  color: #FFF; }

.index-list a:hover {
  color: #ed008c; }

/* $Images
================================================== */
img {
  border: 0;
  -ms-interpolation-mode: bicubic; }

/* Corrects overflow displayed oddly in IE 9 */
svg:not(:root) {
  overflow: hidden; }

/* Gridded Logos */
.grid-logo-group {
  overflow: hidden;
  margin: -1px 0 0 -1px; }

.grid-logo-holder {
  display: block;
  margin: 1px 0 0 1px; }

/* Responsive image wrap */
.image-wrap {
  display: block;
  position: relative; }

.image-wrap img {
  display: block;
  width: 100%;
  height: auto; }

.light-divide {
  display: block;
  position: absolute;
  right: 1px;
  bottom: 0px;
  z-index: 2;
  background-image: url("../img/light-divide.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  text-indent: -9999px; }

/* Sprite Maps
================================================== */
.arrow, .arrow-button-arrow, .submit-button-arrow, .menu li > a span, .action-button, .breadcrumb li span, .toggle, .pagination-control.next,
.pagination-control.prev, .dd-btn, .slide-control {
  text-indent: -9999px;
  width: 44px;
  height: 44px;
  background-image: url("../img/arrows-sprite.png");
  background-repeat: no-repeat; }

.arrow-button, .submit-button, .search-field, .accordion-control, .result, .filter-select-control, .custom-select, .detailed-pagination {
  background-image: url("../img/light-divide.png");
  background-repeat: no-repeat;
  background-position: right bottom; }

.menu li > a, .menu .search-field {
  background-image: url("../img/menu-divide.png");
  background-repeat: no-repeat;
  background-position: right bottom; }

.book-button, .toggle-menu, .nav-bar .search-field {
  background-image: url("../img/white-divide.png");
  background-repeat: no-repeat;
  background-position: right bottom; }

.header-options .search-field {
  background-image: url("../img/options-divide.png");
  background-repeat: no-repeat;
  background-position: right bottom; }

.nav a {
  background-image: url("../img/nav-divide.png");
  background-repeat: no-repeat;
  background-position: left bottom; }

/* $HTML5 Display
================================================== */
audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

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

figure {
  margin: 0; }

/* $Tables
================================================== */
/* Remove most spacing between table cells */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* $Forms
================================================== */
form {
  margin: 0; }

.error {
  color: #ed008c; }

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

legend {
  border: 0;
  padding: 11px 0 9px 10px;
  white-space: normal;
  *margin-left: -7px; }

legend.trim {
  padding: 5px 0 9px 10px; }

select {
  padding: 2px; }

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
  color: #5a5a5a; }

button, input {
  line-height: normal; }

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

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

input[type="text"], textarea, input[type="search"], input[type="submit"] {
  -webkit-border-radius: 0px;
  -webkit-appearance: none; }

input[type="checkbox"],
input[type="radio"] {
  padding: 0;
  *height: 13px;
  *width: 13px; }

input[type="search"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0px; }

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

input[type="text"],
input[type="password"],
input[type="submit"],
input[type="search"],
input[type="checkbox"],
input[type="radio"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 100% !important; }

::-webkit-input-placeholder {
  color: #5a5a5a; }

::-moz-placeholder {
  color: #5a5a5a; }

:-moz-placeholder {
  color: #5a5a5a; }

:-ms-placeholder {
  color: #5a5a5a; }

input:focus::-webkit-input-placeholder {
  color: transparent; }

input:focus::-moz-placeholder {
  color: transparent; }

input:-moz-placeholder {
  color: transparent; }

textarea {
  overflow: auto;
  vertical-align: top; }

label, .label {
  display: block; }

.text-input {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0 none;
  background: none transparent;
  outline: none;
  font-weight: 200; }

.submit-button {
  background-color: #ed008c;
  color: #FFF;
  line-height: 44px;
  height: 44px;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  text-align: left; }

.submit-button:hover {
  background-color: #c1c2c2; }

.submit-button-text {
  float: left;
  padding: 0 0 0 10px; }

.submit-button-arrow {
  float: right;
  text-indent: -9999px;
  background-position: 0px -98px; }

/* Objects and modules */
.header {
  background: #FFF;
  position: relative; }

.logo {
  display: block;
  margin: 25px 0 25px 28px; }

.logo img {
  display: block;
  width: auto;
  height: 80px; }

.strapline {
  position: absolute;
  top: 54px;
  right: 28px;
  height: 44px;
  width: auto; }

.header-options {
  position: absolute;
  right: 0px;
  top: 0px;
  font-size: 15px;
  font-size: 1.1538461538rem;
  line-height: 1.4; }

.header-options a {
  margin-bottom: 1px; }

.toggle-menu {
  display: none;
  cursor: pointer;
  background-color: #333333;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  position: relative;
  height: 44px; }

.toggle-title {
  color: #dddddd;
  padding: 11px 0 12px 10px;
  font-size: 16px;
  font-size: 1.2307692308rem;
  line-height: 1.3125;
  font-weight: normal;
  letter-spacing: 0.05em; }

.toggle-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 44px;
  height: 44px;
  background: url("../img/menu-control.png") no-repeat;
  text-indent: -9999px; }

.nav-bar {
  position: relative;
  background: #595757;
  overflow: hidden;
  width: 100%; }

/* $Navigation
================================================== */
.nav {
  display: block;
  font-size: 15px;
  font-size: 1.1538461538rem;
  line-height: 1.4;
  background: #333333; }

.nav li {
  float: left; }

.nav a {
  display: block;
  background-color: #333333;
  color: #dddddd;
  padding: 9px 20px 9px 22px;
  margin-left: -1px;
  letter-spacing: 0.05em; }

.nav a:hover,
.nav a.active {
  background-color: #e6e6e6;
  color: #5a5a5a; }

.menu {
  position: absolute;
  left: -280px;
  top: 0px;
  bottom: 0px;
  font-size: 15px;
  font-size: 1.1538461538rem;
  line-height: 1.4;
  background: #333333;
  width: 280px;
  overflow: hidden;
  z-index: 2; }

.menu li > a {
  display: block;
  position: relative;
  padding: 12px 17px;
  margin: 0 0 1px 0;
  color: #dddddd;
  cursor: pointer; }

.menu li > a span {
  position: absolute;
  top: 0px;
  right: 0px; }

.menu-item {
  background: #595757;
  color: #dddddd; }

.menu-item.active {
  background-color: #ed008c; }

.menu-item span {
  background-position: 0 -98px; }

.menu-action {
  background-color: #333333; }

.menu-action.close span {
  background-position: 0 -340px; }

.menu-action span {
  background-position: 0 -146px; }

/* Sub Menu */
.sub-menu {
  position: absolute;
  top: 0px;
  left: -100%;
  width: 240px;
  height: 100%;
  padding-left: 40px;
  z-index: 2;
  background: #333333;
  background: rgba(51, 51, 51, 0.6); }

.sub-menu ul {
  background: #333333;
  height: 100%;
  margin: 0; }

/* Field Row Items */
.menu .search-field {
  padding: 0 17px;
  background-color: #ebebeb;
  color: #5a5a5a; }

.menu .search-field p,
.menu .option-text {
  line-height: 45px;
  height: 45px; }

.menu .search-field .action-button {
  background-color: #ebebeb;
  background-position: 0px 0px; }

.search-field {
  display: block;
  overflow: hidden;
  position: relative;
  padding: 0 10px;
  background-color: #FFF; }

.search-field .action-button {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 39px;
  width: 44px;
  background-position: 0px -3px;
  outline: 0 none; }

.nav-bar .search-field {
  background-color: #333333; }

.nav-bar .search-field .option-text {
  color: #dddddd; }

.nav-bar .search-field .action-button {
  background-position: 0px -99px;
  background-color: #333333;
  color: #dddddd; }

.option-field {
  margin-bottom: 1px; }

.search-field p,
.option-text {
  display: block;
  line-height: 39px;
  height: 39px; }

.action-button {
  width: 45px;
  height: 45px;
  text-indent: -99999px;
  padding: 0;
  border: 0 none;
  margin: 0;
  background-color: #FFF; }

.breadcrumb {
  padding: 11px 10px 12px 10px;
  font-size: 15px;
  font-size: 1.1538461538rem;
  line-height: 1.4;
  background: #FFF; }

.breadcrumb li {
  float: left; }

.breadcrumb a {
  float: left;
  color: #5a5a5a; }

.breadcrumb li span {
  float: left;
  background-position: -9px -417px;
  height: 21px;
  width: 24px; }

.breadcrumb a.active {
  color: #262626; }

.accordion {
  overflow: hidden; }

.accordion.shut {
  margin-bottom: -1px; }

.accordion-control {
  display: block;
  position: relative;
  background-color: #FFF;
  padding: 12px 55px 12px 10px;
  border-bottom: 1px solid #e6e6e6;
  cursor: pointer;
  -webkit-transition: color linear 0.2s;
  -moz-transition: color linear 0.2s;
  -ms-transition: color linear 0.2s;
  -o-transition: color linear 0.2s;
  transition: color linear 0.2s; }

.lt-ie8 .accordion-control {
  overflow: hidden; }

.accordion-control.mod--filter {
  border-bottom: 0 none !important; }

.accordion-control:hover {
  color: #448ccb; }

.accordion-content {
  position: relative;
  border-bottom: 1px solid #e6e6e6; }

/* Toggle End */
.toggle {
  position: absolute;
  right: 0px;
  top: 0px;
  background-position: 0 -288px; }

.broad-title .toggle {
  background-position: 0 -340px; }

/* Active States in Grouping */
.accordion-group {
  overflow: hidden;
  padding: 10px 0 0 0;
  width: 100%; }

.accordion-group:first-child,
.accordion-group.content {
  padding: 0; }

.accordion-group .accordion.active {
  margin: 10px 0; }

.accordion-group .accordion.active:first-child {
  margin: 0 0 10px 0 !important; }

.accordion-group .accordion.active:last-child {
  margin: 10px 0 0 0; }

.accordion-list {
  margin-bottom: -1px; }

.accordion-list a {
  display: block;
  background-color: #fafafa;
  padding: 12px 10px;
  margin-bottom: 1px;
  color: #5a5a5a; }

.accordion-list a:hover {
  background-color: #fff;
  color: #448ccb; }

.accordion-list a.active {
  color: #448ccb;
  background-color: #fafafa; }

.accordion-list ul a {
  padding-left: 25px; }

.accordion-list ul ul a {
  padding-left: 45px; }

.accordion-list ul ul ul a {
  padding-left: 65px; }

.accordion-heading {
  overflow: hidden;
  padding: 0 10px;
  margin-bottom: 1px;
  background: #FFF;
  color: #262626; }

.accordion-heading p {
  /*line-height: 44px;*/
  margin: 0;
  margin-top: 10px;
  margin-bottom: 10px; }

.accordion-field {
  overflow: hidden;
  background: #fafafa;
  padding: 0 10px;
  margin-bottom: 1px; }

.accordion-field:hover {
  background: #FFF; }

.accordion-text {
  line-height: 44px;
  height: 44px; }

/*
 * these modify the accordion slightly, 
 * as we don't want to show it until below 900!
 *
 */
.footer {
  margin-left: -1px;
  width: 100%; }

.footer-accordion {
  margin: 0 0 0 1px; }

.footer-accordion-control {
  display: block;
  position: relative;
  background-color: #FFF;
  padding: 12px 55px 12px 10px;
  border-bottom: 1px solid #e6e6e6;
  background-color: #FFF; }

.footer-accordion-control:hover {
  color: #262626; }

.footer-accordion-control .toggle {
  display: none; }

.section {
  position: relative;
  margin: 0 0 1px 0; }

.section.divide {
  margin: 10px 0 0 0; }

.section.divide:first-child {
  margin: 0; }

.section-content {
  overflow: hidden;
  background: #FFF; }

.section-content .caption {
  border-left: 1px solid #e6e6e6;
  margin-left: -1px; }

.section-media {
  float: right;
  overflow: hidden;
  position: relative; }

.section-media .image-wrap {
  border-left: 1px solid #e6e6e6; }

.content-area {
  max-width: 460px; }

.content-area ul a,
.content-area p a,
.content-area div a,
.content-area h2 a:hover {
  color: #ed008c;
  border-bottom: 1px solid #ed008c; }

.content-area a:hover {
  color: #999999; }

.content-area ul {
  padding-top: 3px;
  margin-bottom: 1.5em; }

.content-area li {
  background: url("../img/em-dash.gif") no-repeat 0 9px;
  padding: 0 0 2px 16px; }

.content-row .content-area li,
.section .content-area li {
  margin-top: 8px; }

.content-row .content-area li:first-child,
.section .content-area li:first-child {
  margin-top: 0; }

.booking-col {
  font-size: 15px;
  font-size: 1.1538461538rem;
  line-height: 1.4;
  color: #FFF;
  overflow: hidden; }

.booking-inner {
  background: #97a4b3;
  margin: 0 0 0 1px;
  min-height: 49px;
  padding: 21px 20px 20px 10px; }

.booking-col:first-child .booking-inner {
  margin: 0; }

.booking-col p {
  margin: 0; }

.booking-button {
  display: block;
  color: #FFF;
  padding: 0 20px 0 10px;
  margin: 0 0 0 1px;
  min-height: 90px;
  font-size: 18px;
  font-size: 1.3846153846rem;
  line-height: 1.1666666667;
  line-height: 90px;
  background: #97a4b3 url("../img/long-arrow.png") no-repeat right center; }

.booking-button:hover {
  background-color: #67798e; }

.article {
  display: block;
  overflow: hidden;
  background: #FFF;
  margin: 1px 0 0 0; }

.article:first-child {
  margin: 0 0 0 0; }

.article .inner {
  max-width: 544px;
  padding-right: 30px; }

.article:hover h2 span {
  border-bottom: 1px solid #ed008c; }

.article .two-thirds {
  position: relative; }

.article .arrow-right {
  position: absolute;
  top: 20px;
  right: -11px;
  z-index: 2; }

.sponsored-article {
  background: #fafafa;
  color: #5a5a5a; }

.sponsored-article-logo {
  margin: 10px 0; }

.sponsored-article h2,
.sponsored-article h3 {
  color: #5a5a5a; }

a.article p em {
  font-style: normal;
  color: #ed008c;
  border-bottom: 1px solid #ed008c; }

a.article:hover p em {
  color: #999999; }

.page-title {
  overflow: hidden;
  background: #FFF;
  padding-bottom: 3px;
  margin-bottom: 1px; }

.page-title h1 {
  font-weight: normal; }

.page-title q {
  font-weight: bold; }

.result {
  display: block;
  overflow: hidden;
  background-color: #FFF;
  min-height: 165px;
  margin: 0 0 1px 0;
  position: relative;
  background-position: 16.666% bottom; }

.result p.standfirst {
  margin-bottom: .5em; }

.result:hover h2 strong {
  border-bottom: 1px solid #ed008c; }

.result-title {
  float: left;
  width: 16.666%;
  padding: 10px 0; }

.result-title h3 {
  padding: 0 10px; }

.result-info {
  float: left;
  width: 83.333%; }

.result-info .inner {
  max-width: 520px;
  padding-right: 180px; }

.result-image {
  position: absolute;
  top: 0px;
  right: 0px; }

.pagination {
  background: #FFF;
  margin: 10px 0 0 0;
  width: 100%;
  overflow: hidden;
  font-size: 15px;
  font-size: 1.1538461538rem;
  line-height: 1.4; }

.pagination p {
  float: left;
  margin: 0 10px;
  line-height: 45px; }

.pagination-links {
  float: right; }

.pagination-links li {
  float: left; }

.pagination-control {
  display: block;
  width: 49px !important;
  height: 49px !important;
  line-height: 49px;
  text-align: center;
  border-left: 1px solid #e6e6e6; }

.pagination-control:hover {
  background-color: #ed008c;
  color: #FFF; }

.pagination-control.next,
.pagination-control.prev {
  text-indent: -9999px; }

.pagination-control.next {
  background-position: 2px 2px; }

.pagination-control.next:hover {
  background-position: 2px -94px; }

.pagination-control.prev {
  background-position: 2px -46px; }

.pagination-control.prev:hover {
  background-position: 2px -142px; }

.pagination-control.active {
  background-color: #878787;
  color: #FFF; }

.filter {
  background: #FFF;
  margin: 0;
  color: #5a5a5a;
  position: relative;
  z-index: 3; }

.filter-label {
  float: left;
  padding: 13px 0 0 10px;
  margin: 0; }

.filter-select {
  float: right;
  border-top: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  position: relative;
  cursor: pointer;
  z-index: 3; }

.filter-select-control {
  position: relative;
  height: 44px;
  line-height: 44px;
  padding-right: 20px;
  padding-left: 10px;
  margin: 0;
  white-space: nowrap; }

.filter-select-control:hover {
  background-color: #fafafa; }

.filter-select-items {
  position: absolute;
  left: 0px;
  top: 44px;
  display: none;
  width: 100%;
  height: 220px;
  overflow: auto;
  border-top: 1px solid #e6e6e6; }

.accordion-list a {
  margin-bottom: 0px;
  border-bottom: 1px solid #e6e6e6; }

.filter-select:hover .filter-select-items {
  display: block; }

/* Custom Select Plugin */
.custom-select-container {
  position: relative;
  border-left: 1px solid #e6e6e6; }

.custom-select-container:hover {
  background: #fafafa; }

.custom-select {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%; }

select.custom.replaced {
  position: relative;
  top: 0px;
  left: 0px;
  z-index: 2;
  width: 100%;
  height: 44px;
  line-height: 44px;
  border: 0;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  cursor: pointer; }

.dd-wrap .selected {
  float: left;
  height: 44px;
  line-height: 44px;
  padding-right: 20px;
  padding-left: 10px;
  white-space: nowrap; }

.dd-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  background-position: 0 -288px; }

.detailed-pagination {
  display: block;
  float: left;
  width: 50%;
  margin: 10px -1px 0 0;
  background-color: #FFF;
  cursor: pointer; }

.lt-ie8 .detailed-pagination {
  width: 49.999%; }

.detailed-pagination.prev {
  margin: 10px 0 0 0px;
  border-right: 1px solid #e6e6e6; }

.detailed-pagination .inner {
  float: left;
  display: block;
  padding: 12px 13px 0 13px;
  font-size: 15px;
  font-size: 1.1538461538rem;
  line-height: 1.4;
  color: #262626; }

.detailed-pagination:hover .inner {
  color: #448ccb; }

.detailed-pagination .arrow {
  float: left; }

.detailed-pagination.next .inner,
.detailed-pagination.next .arrow {
  float: right; }

.detailed-pagination.prev {
  background-position: 45px bottom; }

.detailed-pagination.prev .arrow {
  background-position: 0px -48px; }

.content-heading {
  position: relative;
  border-bottom: 1px solid #e6e6e6;
  overflow: hidden; }

.content-heading > .inner {
  background: #FFF;
  padding-bottom: 22px;
  padding-right: 38.333%; }

.content-heading h3 {
  padding-bottom: 4px; }

.logo-list {
  overflow: hidden;
  background: #FFF;
  padding-bottom: 10px; }

.logo-list li {
  float: left;
  padding: 10px 0 0 11px; }

.logo-list img {
  display: block; }

.content-row {
  overflow: hidden;
  position: relative;
  background: #FFF;
  margin-bottom: 1px;
  display: block; }

.content-row .content-area {
  max-width: 540px;
  padding-right: 30px; }

.content-row .two-thirds .inner {
  padding-bottom: 0px; }

.content-row h4,
.content-row .delta {
  padding-top: 3px; }

.content-row h4,
.content-row .delta,
.content-row-headings {
  padding-bottom: 15px; }

.content-row h3 a {
  color: #000; }

.content-row h3 a:hover {
  color: #000;
  border-bottom: 1px solid #ed008c; }

.content-row .inner.delta {
  padding-top: 15px; }

.content-row.related-row p {
  margin: 0; }

.row-logo img {
  display: block;
  margin: 10px; }

.social-icon {
  display: block;
  padding-left: 45px !important;
  background-image: url("../img/social-icons.png");
  background-repeat: no-repeat; }

.social-icon.fb {
  background-position: 0px -1px; }

.social-icon.tw {
  background-position: 0px -44px; }

.social-icon.pn {
  background-position: 0px -88px; }

.social-icon.ig {
  background-position: 0px -220px; }

.social-icon.li {
  background-position: 0px -264px; }

.social-icon.gp {
  background-position: 0px -132px; }

.image-reveal-group {
  margin: -1px 0 0 -1px; }

.image-reveal {
  display: block;
  position: relative; }

.image-reveal .image-wrap {
  margin: 1px 0 0 1px; }

.image-reveal-info {
  display: none;
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  right: 0px;
  color: #FFF;
  background: #000;
  background: rgba(0, 0, 0, 0.5); }

.image-reveal:hover .image-reveal-info {
  display: block; }

.image-reveal-title {
  font-size: 21px;
  font-size: 1.6153846154rem;
  line-height: 1;
  font-weight: bold;
  color: #FFF;
  margin: 8px 0 20px 0;
  line-height: 1.2em; }

.image-reveal-info p {
  margin: 0;
  font-size: 15px;
  font-size: 1.1538461538rem;
  line-height: 1.4; }

/* Filter Options */
.filter-options {
  position: absolute;
  top: 44px;
  left: 0px;
  right: 0px;
  max-height: 350px;
  background: #fafafa;
  z-index: 2;
  border-top: 1px solid #e6e6e6;
  display: none; }

.filter-options.status {
  left: 33.333%; }

.filter-options-list {
  overflow: hidden;
  width: 100%;
  padding: 5px 0 18px 0; }

.filter-options-list li {
  float: left;
  width: 33.333%;
  padding: 5px 0; }

.filter-options.status li {
  width: 100%; }

.filter-options-label,
.filter-options-icon,
.filter-options-check {
  float: left; }

.filter-options-check {
  margin: 8px 0 0 10px;
  width: 16px;
  height: 16px; }

.filter-options-icon {
  display: block;
  margin: 0 0 0 6px; }

.filter-options-label {
  margin: 6px 0 0 10px;
  cursor: pointer; }

.filter-options-label:hover {
  color: #448ccb; }

.filter-bar {
  background: #FFF;
  margin: -1px 0 1px 0;
  position: relative;
  z-index: 3; }

.lt-ie8 .filter-bar {
  width: 100.1%; }

.filter-bar p {
  margin: 0;
  padding-top: 1px; }

.filter-bar .search-field,
.filter-bar .accordion-control {
  border-top: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-bottom: 0px none;
  color: #5a5a5a;
  font-size: 13px;
  font-size: 1rem;
  line-height: 1.6153846154;
  margin: 0; }

.filter-bar .accordion-control.active,
.filter-bar .accordion-control:hover {
  background-color: #fafafa; }

.filter-bar .search-field p,
.filter-bar .option-text {
  line-height: 44px;
  height: 44px; }

.js .filter-bar .submit-button {
  display: none; }

.map {
  width: 100%;
  height: 615px;
  background: #FFF; }

.js .map-points {
  display: none; }

.map-points {
  padding: 10px; }

.map-points li {
  margin-bottom: 15px; }

.map-points p {
  margin: 0; }

.image-feature-group {
  overflow: hidden;
  margin: 9px 0 0 -1px; }

.home-features .image-feature,
.no-js .image-feature-group > .image-feature {
  width: 50%;
  float: left; }

.image-feature-col.col-4 {
  margin-top: 1px; }

.image-feature-inner {
  margin-left: 1px; }

.image-feature {
  display: block;
  margin-top: 1px; }

.image-feature h3 {
  padding-bottom: 9px; }

a.image-feature:hover h2 span {
  border-bottom: 1px solid #ed008c; }

.image-feature-info {
  background: #FFF;
  padding: 10px 11px 16px 11px;
  position: relative; }

.image-feature-info .arrow-down {
  position: absolute;
  bottom: -11px;
  left: 11px;
  z-index: 2; }

.image-feature-button {
  overflow: hidden;
  position: relative;
  top: -44px;
  margin-bottom: -44px; }

.tweets {
  position: relative;
  background: #FFF; }

.tweets h4 {
  padding-bottom: 5px; }

.tweets a {
  color: #448ccb; }

.tweets a:hover {
  color: #ed008c;
  border-bottom: 1px solid #ed008c; }

.tweets .twitter-ex-link {
  color: #ed008c; }

.tweet-slide {
  overflow: hidden; }

.tweet-slide p {
  margin: 0; }

.twitter-iterations-holder {
  position: relative;
  left: 50%;
  top: -10px;
  float: left;
  clear: both; }

.twitter-iterations {
  list-style: none;
  position: relative;
  left: -50%;
  float: left;
  display: inline-block;
  padding: 0;
  margin: 0 auto; }

.twitter-iterations li {
  float: left; }

.twitter-iterations li a {
  display: block;
  width: 17px;
  height: 9px;
  text-indent: -9999px;
  background: url("../img/dot-sprite.jpg") no-repeat 0px 0px;
  cursor: pointer; }

.twitter-iterations li a.active {
  background-position: 0px -9px; }

.twitter-iterations li a:hover {
  border: 0 none; }

.featured-section {
  border-top: 1px solid #FFF; }

.featured-section h2 {
  padding-bottom: 0; }

.featured-section .inner {
  padding-right: 33px;
  margin-bottom: 32px;
  position: relative; }

.featured-section .section-arrow-button {
  width: 25%; }

.section-arrow-button {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  border-top: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6; }

.featured-section .arrow-right {
  position: absolute;
  right: -11px;
  top: 20px;
  z-index: 2; }

.section-slideshow-holder {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 1px; }

.section .section-slideshow {
  margin-left: 1px; }

.section-slideshow,
.section-slideshow-item {
  position: relative; }

.section-slideshow-item {
  float: left;
  margin-right: 1px;
  background: #FFF;
  position: relative;
  overflow: hidden;
  width: 100%; }

.m_small .section-slideshow-item {
  width: auto; }

.align > .section-slideshow-item {
  margin-bottom: 1px; }

.section-slide-info {
  display: none; }

.section-slideshow-item img {
  display: block;
  width: 100%; }

.slideshow-controls {
  position: absolute;
  bottom: 0px;
  right: 0px; }

.slide-aside {
  background: #FFF; }

.slide-control {
  display: block;
  float: left;
  text-indent: -9999px;
  background-color: #2e3030;
  background-position: 0px -98px;
  cursor: pointer; }

.slide-control:hover {
  background-color: #ed008c; }

.slide-control.disabled {
  background-color: #c1c2c2; }

.slide-control.prev {
  margin-right: 1px;
  background-position: 0px -146px; }

.video-block {
  cursor: pointer;
  overflow: hidden; }

.video-item.mejs-container,
.video-item .mejs-inner,
.mejs-poster {
  display: none; }

.video-block .mejs-controls {
  position: absolute !important;
  bottom: -50px !important; }

.video-block .mejs-controls.active {
  position: absolute !important;
  bottom: 0px !important; }

.video-image {
  position: relative; }

.play-icon {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  text-indent: -9999px;
  background-image: url("../img/play-icon.png");
  background-position: center center;
  background-repeat: no-repeat; }

.section-media .fill {
  border-left: 1px solid #e6e6e6; }

.section-media .fill {
  margin-bottom: 0px; }

.bottom-bar {
  width: 100%;
  margin: 10px 0 0 0;
  float: left;
  position: relative; }

.bottom-bar .align {
  background: #FFF;
  padding: 11px 10px 12px 10px; }

.bottom-bar p {
  margin: 0; }

/* Bottom bar social icons */
.bottom-social {
  position: absolute;
  top: 0px;
  right: 10px;
  padding: 0;
  margin: 0;
  list-style: none; }

.bottom-social li {
  float: left; }

.bottom-social li a {
  text-indent: -9999px;
  width: 0;
  height: 45px;
  padding-left: 27px !important; }

.bottom-social li .social-icon.fb {
  padding-left: 24px !important; }

/* hover states */
.bottom-social .social-icon.fb:hover {
  background-position: 0px -309px; }

.bottom-social .social-icon.tw:hover {
  background-position: 0px -352px; }

.bottom-social .social-icon.ig:hover {
  background-position: 0px -528px; }

.bottom-social .social-icon.pn:hover {
  background-position: 0px -396px; }

.bottom-social .social-icon.li:hover {
  background-position: 0px -572px; }

.bottom-social .social-icon.gp:hover {
  background-position: 0px -440px; }

/* Media queries */
/* $1280 Media Queries
================================================== */
@media screen and (max-width: 70.625em) {
  /* Section */
  .section-content > div {
    width: 100%; }

  .section-media {
    float: left;
    border-bottom: 1px solid #e6e6e6; }

  .section-content .caption {
    border: 0 none !important; }

  .featured-section .section-arrow-button,
  .section-arrow-button {
    width: 100%; }

  .section .section-slideshow,
  .featured-section {
    margin: 0; }

  .featured-section .inner {
    margin-bottom: 0px; }

  /* Slideshow */
  .section-slideshow-holder,
  .section-slideshow {
    margin: 0; }

  .slide-aside {
    display: none !important; }

  .section-slide-info {
    display: block; }

  .section-slideshow-item .caption {
    position: relative;
    bottom: auto;
    right: auto;
    border-bottom: 1px solid #e6e6e6; }

  .home-slider .section-slideshow-item {
    padding-bottom: 44px; }

  .section-slide-info .arrow-right {
    display: none; }

  .slideshow-controls {
    top: 1px;
    bottom: auto; }

  .section-media .slideshow-controls {
    top: 0px; }

  .section-media .video-block .image-wrap,
  .section-media .fill {
    border-left: 0 none; }

  /* Filter Bar */
  .filter-bar {
    margin-left: -1px; }

  .filter-options {
    border-left: 1px solid #e6e6e6; }

  .filter-bar p {
    display: none; }

  .filter-bar .sixth {
    width: 22.222%; }

  .filter-options.status {
    left: 22.222%; }

  /* Image Reveal */
  .image-reveal {
    width: 50% !important; } }
/* $959 Media Queries
================================================== */
@media screen and (max-width: 59.9375em) {
  /* Article */
  .article .two-thirds {
    width: 55%; }

  .article .third {
    width: 45%; } }
/* $900 Media Queries
================================================== */
@media screen and (max-width: 56.25em) {
  /* Footer Accordion */
  .footer .grid-4 {
    float: left;
    width: 50%; }

  .footer .grid-4 .half {
    width: 100%; }

  .footer-accordion-control {
    background-image: url("../img/light-divide.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    cursor: pointer; }

  .footer-accordion-control .toggle {
    display: block; }

  .footer-accordion-content {
    display: none; }

  /* Home Grid */
  .home-grid [class*="col-"] {
    width: 50%; }

  .content-main,
  .content-aside {
    width: 100%; }

  /* Image Feature */
  .accordion-group .image-feature-col {
    width: 50%; }

  .tweets {
    float: left;
    width: 50%; }

  /* Result */
  .result {
    margin: 0 0 1px 0;
    background-image: none; }

  .result-title,
  .result-info {
    width: 100%; }

  .result-title {
    padding: 10px 0 0 0; }

  .result-image {
    display: none; }

  .result-info .inner {
    max-width: 100%;
    padding-right: 20px; } }
/* $720 Media Queries
================================================== */
@media screen and (max-width: 47.9375em) {
  /* Layout and Generic */
  body {
    background: #333; }

  .page {
    background: #e6e6e6; }

  .aside,
  .breadcrumb {
    display: none; }

  .main,
  .two-thirds,
  .third {
    width: 100%; }

  .main .align {
    margin: 0; }

  /* Filter Bar */
  .filter-bar .sixth {
    width: 33.333%; }

  .filter-options.status {
    left: 33.333%; }

  .filter-bar .third {
    border-top: 1px solid #e6e6e6; }

  .filter-select {
    width: 50%; }

  /* Content Rows */
  .content-heading .inner {
    padding-right: 30px; }

  .content-row > div {
    width: 100%; }

  .related-row .fifth {
    display: none; }

  .content-row > div .inner {
    padding-top: 0px;
    padding-bottom: 0px; }

  .content-row h3 {
    padding-top: 10px; }

  /* Header */
  .logo {
    margin: 15px; }

  .logo img {
    height: 46px; }

  .strapline {
    top: 27px;
    right: 15px;
    height: 30px; }

  .toggle-menu {
    display: block; }

  /* Section */
  .section-content .image-wrap {
    border: 0 none; }

  /* Image Feature */
  .accordion-group .image-feature-col {
    width: 100%; }

  /* Book Heading */
  .book-heading > .inner {
    padding-right: 0px; }

  .book-button {
    position: relative;
    width: 100%; }

  /* Booking Columns */
  .booking-col {
    width: 100%; }

  .booking-inner {
    margin: 0;
    padding: 0px 10px;
    min-height: 0px; }

  .booking-col:first-child .booking-inner {
    padding-top: 10px; }

  .booking-button {
    padding: 10px;
    margin: 0;
    background-color: #97a4b3;
    min-height: 0px;
    line-height: 1.2em; }

  .booking-button:hover {
    background-color: #97a4b3;
    text-decoration: underline; } }
/* $640 Media Queries
================================================== */
@media screen and (max-width: 40em) {
  .pagination,
  .wrapper {
    margin-top: 5px; }

  .detailed-pagination.prev,
  .image-feature-group {
    margin-top: 4px; }

  /* Article */
  .article .two-thirds,
  .article .third {
    width: 100%; }

  .article .arrow-right {
    top: auto;
    bottom: -11px;
    right: auto;
    left: 11px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 11px solid #FFF;
    border-bottom: 0 none; }

  /* Detailed Pagination */
  .detailed-pagination {
    width: 100%; }

  .detailed-pagination.next {
    margin: 1px 0 0 0; }

  /* Pagination */
  .pagination-links {
    width: 100%;
    border-top: 1px solid #e6e6e6; }

  .pagination-control {
    border-left: 0 none;
    border-right: 1px solid #e6e6e6; }

  li:first-child .pagination-control {
    border-left: 1px solid #e6e6e6; }

  /* Accordion */
  .accordion-group {
    padding-top: 5px; }

  .accordion-group .accordion.active {
    margin: 5px 0; }

  .accordion-group .accordion.active:first-child {
    margin: 0 0 5px 0 !important; }

  .accordion-group .accordion.active:last-child {
    margin: 5px 0 0 0; }

  /* Tweets */
  .tweets-slideshow {
    overflow: hidden;
    position: relative;
    width: 100%; }

  .tweets {
    padding-top: 12px; }

  .tweets h2 {
    float: left; }

  .tweets .gamma {
    float: right; }

  .tweets .gamma span {
    display: none; }

  .tweet-slide {
    float: left;
    width: 100%;
    position: relative; }

  .tweets .inner {
    padding: 0 20px 0 10px; }

  .tweets .light-divide {
    display: none; }

  /* Sixths into Quarters */
  .sixth {
    width: 25%; }

  /* Filter Options */
  .filter-options.status {
    left: 0; }

  .filter-options-list li {
    width: 50%; }

  /* Image Reveal */
  .image-reveal-title {
    font-size: 15px;
    font-size: 1.1538461538rem;
    line-height: 1.4;
    margin-bottom: 10px; }

  .image-reveal-info p {
    display: none; }

  /* Footer Accordion */
  .footer .grid-4 {
    width: 100%; }

  /* Footer Social */
  .bottom-social {
    float: left;
    position: relative;
    width: 100%; }

  .bottom-bar .align {
    padding: 0 10px 10px 10px; } }
/* $480 Media Queries
================================================== */
@media screen and (max-width: 30em) {
  /* Filter */
  .filter-label {
    display: none; }

  .filter-select {
    width: 100%; }

  .filter-bar .accordion-control,
  .custom-select-container {
    border: 0 none; }

  /* Logo */
  .logo img {
    height: 35px; }

  .strapline {
    top: 27px;
    height: 20px; }

  /* Home Grid */
  .home-features .image-feature,
  .home-grid [class*="col-"] {
    width: 100%; }

  .map {
    height: 350px; }

  /* Filter Bar */
  .filter-bar {
    margin: 0; }

  .filter-bar .sixth {
    position: relative; }

  .filter-bar .search-field,
  .filter-bar .third {
    border: 0 none; }

  .filter-bar .third,
  .filter-bar .sixth {
    width: 100%;
    border-bottom: 1px solid #e6e6e6; }

  .filter-options {
    position: relative;
    top: 0px;
    width: 100%;
    border: 0 none; }

  .filter-options-list {
    border-left: 0 none;
    border-top: 1px solid #e6e6e6; }

  /* Sixths into thirds */
  .sixth {
    width: 33.333%; }

  /* Image Reveal */
  .image-reveal {
    width: 100% !important; } }
/* $Retina Media Queries
================================================== */
@media only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
  .arrow, .arrow-button-arrow, .submit-button-arrow, .menu li > a span, .action-button, .breadcrumb li span, .toggle, .pagination-control.next,
  .pagination-control.prev, .dd-btn, .slide-control {
    background-image: url("../img/arrows-sprite-x2.png");
    background-size: 44px 501px; }

  .social-icon {
    background-image: url("../img/social-icons-x2.png");
    background-size: 45px 616px; }

  .play-icon {
    background-image: url("../img/play-icon-x2.png");
    background-size: 54px 55px; }

  .twitter-iterations li a {
    background-image: url("../img/dot-sprite-x2.jpg");
    background-size: 17px 18px; }

  .toggle-btn {
    background-image: url("../img/menu-control-x2.png");
    background-size: 44px; }

  .booking-button {
    background-image: url("../img/long-arrow-x2.png");
    background-size: 60px 9px; } }
/* $Print Media Queries
================================================== */
@media print {
  /* Print reset */
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }

  a, a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: ""; }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr, img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }

  h2, h3 {
    page-break-after: avoid; } }
/* Helper classes */
/* Clearfix
================================================== */
/* Micro clearfix.
 * Extend the clearfix class with Sass to avoid the `.cf` class appearing 
 * @extend .cf; */
.cf, .accordion-content, .filter, .filter-bar {
  zoom: 1; }
  .cf:before, .accordion-content:before, .filter:before, .filter-bar:before, .cf:after, .accordion-content:after, .filter:after, .filter-bar:after {
    content: "";
    display: table; }
  .cf:after, .accordion-content:after, .filter:after, .filter-bar:after {
    clear: both; }

/* Helping Rules
================================================== */
.fr {
  float: right; }

.fl {
  float: left; }

.accessibility {
  position: absolute;
  left: -99999px; }

.hide {
  display: none; }

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0; }

.slide-control {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

a, .filter-select-control, .detailed-pagination .inner, div.image-feature {
  -webkit-transition-property: color, background-color, opacity, border;
  -webkit-transition-duration: .2s;
  -webkit-transition-timing-function: linear;
  -moz-transition-property: color, background-color, opacity, border;
  -moz-transition-duration: .2s;
  -moz-transition-timing-function: linear;
  transition-property: color, background-color, opacity, border;
  transition-duration: .2s;
  transition-timing-function: linear; }

/* Effects 
================================================== */
.opaque {
  opacity: .5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50); }

.transition {
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out; }

/* Arrows
================================================== */
.arrow-up {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black; }

.arrow-down {
  display: block;
  text-indent: -9999px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 11px solid #FFF;
  color: #FFF; }

.arrow-right {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 11px solid #FFF;
  color: #FFF; }

.arrow-left {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid blue; }
