@charset "UTF-8";
/* 
* VARIABLE & SASS MIXINS
* ----------------------
*/
/* ==========================================================================

  VARIABLES

  ========================================================================== */
/* COLORS
========================================================================== */
/* ==========================================================================

  MIXINS
  most from https://github.com/web-design-weekly/sass-mixins/blob/master/mixins.scss
  ========================================================================== */
/* Gradient
========================================================================== */
/* Border Radius
========================================================================== */
/*
 button {
  @include border-radius(5px);
}

.submit-button{
  @include border-top-radius(10px);
}
*/
/*Rotate*/
/* Opacity
========================================================================== */
/*
.article-heading {
  @include opacity(0.8);
}
*/
/* Text overflow
========================================================================== */
/* Usage */
/*
.text-truncate {
  @include text-truncate;
}
*/
/* 
* RESET STYLES
* ------------ 
* normalize.css v1.1.0 | MIT License | git.io/normalize 
* 
*/
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  -webkit-text-size-adjust: 100%; /* 2 */
  -ms-text-size-adjust: 100%; /* 2 */
}

/**
 * Address `font-family` inconsistency between `textarea` and other form
 * elements.
 */
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

/**
 * Address margins handled incorrectly in IE 6/7.
 */
body {
  margin: 0;
  color: #444;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a {
  color: #ed1941;
}

a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address font sizes and margins set differently in IE 6/7.
 * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
 * and Chrome.
 */
h1, h2, h3, h4, h5, h6 {
  color: #ed1941;
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
}

h1 {
  font-size: 2.3em;
  margin: 0.45em 0;
}

h2 {
  font-size: 1.8em;
  margin: 0.35em 0;
}

h3 {
  font-size: 1.25em;
  line-height: 1.3em;
  margin: 0.45em 0;
}

h3, h4, h5, h6 {
  font-family: Arial, sans-serif;
}

h4 {
  font-size: 1.3em;
  font-weight: bold;
  margin: 0.5em 0;
}

h5 {
  font-size: 1.15em;
  margin: 0.6em 0;
}

h6 {
  font-size: 1.1em;
  margin: 0.7em 0;
}

/**
 * Address styling not present in IE 7/8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
 */
b,
strong {
  color: #191919;
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 * Known issue: no IE 6/7 normalization.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Address styling not present in IE 6/7/8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address margins set differently in IE 6/7.
 */
p,
pre {
  margin: 0 0 1em 0;
}

/**
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  background-color: #eee;
  border: 1px solid #D1D1D1;
  border-radius: 0.25em;
  color: #22620E;
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em;
  padding: 0.15em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  overflow-x: auto;
  padding: 0.55em;
}

/**
 * Address CSS quotes not supported in IE 6/7.
 */
q {
  font-style: italic;
  quotes: none;
}

/**
 * Address `quotes` property not supported in Safari 4.
 */
q:before,
q:after {
  content: "";
  content: none;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Lists
   ========================================================================== */
/**
 * Address margins set differently in IE 6/7.
 */
dl,
menu,
ol,
ul {
  margin: 0 0 2em 0;
}

dt {
  color: #161616;
  font-weight: bold;
  margin-bottom: 0.5em;
}

dd {
  margin: 0 0 0 1em;
}

/**
 * Address paddings set differently in IE 6/7.
 */
menu,
ol,
ul {
  padding: 0;
  list-style-position: outside;
}

ol li,
ul li {
  margin-left: 1.55em;
  margin-bottom: 0.5em;
}

/*
 * Correct list images handled incorrectly in IE 7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0; /* 1 */
  -ms-interpolation-mode: bicubic; /* 2 */
  height: auto;
  max-width: 100%;
}

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

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: none;
  margin: 0 2px;
  padding: 0;
}

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0; /* 1 */
  padding: 0;
  white-space: normal; /* 2 */
  *margin-left: -7px; /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%; /* 1 */
  margin: 0; /* 2 */
  vertical-align: baseline; /* 3 */
  *vertical-align: middle; /* 3 */
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
  *overflow: visible; /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
  *height: 13px; /* 3 */
  *width: 13px; /* 3 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 6/7/8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 1em;
  width: 100%;
}

th, td {
  padding: 0.5em;
  text-align: left;
}

th {
  font-weight: bold;
}

td {
  border-top: 2px solid #E5E5E5;
}

/*
* GENERAL STYLES
* --------------
* This is for general styles for common elements that aren't a specific,
* reusable component. Usually restricted to one particular html element
*
* Also for redefining reset styles e.g. typography
*
*/
/* ==========================================================================

  BASE HTML

  ========================================================================== */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 13px;
  line-height: 1.45;
  height: 100%;
}

body {
  background-color: #fff6f4;
  background: #fff6f4 url("img/bg-illustrations-onwhite.png") no-repeat scroll center top;
  color: #444444;
}
body.theme-dark {
  background: #000;
  color: #efefef;
}
@media only screen and (max-width: 599px) {
  body {
    background-image: none;
  }
  body:after {
    content: "small";
    display: none;
  }
}
@media only screen and (min-width: 960px) {
  body {
    font-size: 1em;
  }
}
body {
  /*@media only screen and (max-width:960px) {
    background-position: 117% top;
    background-size: 50%
  }*/
}

body.site-main {
  margin-top: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: none;
}

@media only screen and (min-width: 960px) {
  .inner {
    margin: 0 auto;
    width: 90%;
    max-width: 960px;
  }
}
/* Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #ed1941;
  font-family: "Sorts Mill Goudy", "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
}
.theme-dark h1,
.theme-dark h2,
.theme-dark h3,
.theme-dark h4,
.theme-dark h5,
.theme-dark h6,
.theme-dark .h1,
.theme-dark .h2,
.theme-dark .h3,
.theme-dark .h4,
.theme-dark .h5,
.theme-dark .h6 {
  color: #fff;
}

h1,
.h1 {
  font-size: 2.3em;
  margin: 0.45em 0;
}
h1 strong,
.h1 strong {
  color: inherit;
}

h2,
.h2 {
  font-size: 1.8em;
  margin: 0.45em 0;
  line-height: 1.1;
}
h2 strong,
.h2 strong {
  color: inherit;
}

h3,
.h3 {
  font-size: 1.3em;
  margin: 0.35em 0;
  line-height: 1.3em;
}
h3 strong,
.h3 strong {
  color: inherit;
}

h4,
.h4 {
  font-size: 1.25em;
  margin: 0.45em 0;
  font-weight: normal;
}

h5,
.h5 {
  font-size: 1.15em;
  margin: 0.6em 0;
}

h6,
.h6 {
  font-size: 1em;
  margin: 0.7em 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  text-decoration: none;
}

blockquote {
  color: rgb(240.7016129032, 72.2983870968, 104.0725806452);
  font-size: 1.4em;
  font-family: "Times New Roman", Georgia, serif;
  margin: 0 0 1em;
  line-height: 1.2;
  font-style: italic;
}
blockquote strong {
  color: rgb(240.7016129032, 72.2983870968, 104.0725806452);
}

cite {
  color: rgb(240.7016129032, 72.2983870968, 104.0725806452);
}

.quote-minor {
  color: #ea4866;
  font-size: 1.1em;
  font-family: "Times New Roman", Georgia, serif;
  margin: 0 0 1em;
  font-style: italic;
}

hr {
  border-width: 1px 0 0 0;
  border-color: #ed1941;
  border-style: solid;
}

.small {
  font-size: 0.9em;
  font-style: italic;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

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

/* Lists
   ========================================================================== */
li > ul,
li > ol {
  padding-top: 0.75em;
}

ul > li {
  list-style-image: url("img/bullet-round-black.png");
}

ul > li > ol > li {
  list-style-image: none;
}

ul > li > ul > li {
  list-style-type: none;
}

.li-em {
  color: rgb(244.4032258065, 119.5967741935, 143.1451612903);
  display: block;
  float: left;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 2em;
  font-style: italic;
  line-height: 0.5em;
  padding: 0 0.15em 0 0;
}

.list-tick li {
  background: transparent url("img/icon-tick.png") no-repeat left 3px;
  list-style: none;
  margin-left: 0;
  padding-left: 1.55em;
}

/* Forms
   ========================================================================== */
form {
  padding-bottom: 0.5em;
}

fieldset {
  margin-bottom: 1em;
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.15em;
}

select,
textarea,
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color] {
  background-color: #ffffff;
  border: 1px solid #999292;
  box-shadow: 0 3px 2px rgba(7, 7, 7, 0.15) inset;
  -webkit-border-radius: 0.15em;
  border-radius: 0.15em;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  display: block;
  font-size: 0.95em;
  padding: 0.45em;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  margin-bottom: 0.75em;
  width: 100%;
}

select {
  box-shadow: none;
}

td select {
  margin-bottom: 0;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  color: #686868;
  font-style: italic;
  font-size: 0.8em;
}

input.input-large {
  width: 100%;
}

input.input-half {
  width: 50%;
}

input.input-medium {
  width: 65%;
}

input.input-small {
  width: 35%;
}

@media screen and (max-width: 599px) {
  input.input-large,
  input.input-medium,
  input.input-half,
  input.input-small {
    width: 100%;
  }
}
.input-h-medium {
  max-height: 18em;
  overflow-y: scroll;
}

.form-help {
  display: block;
  font-size: 0.85em;
  font-style: italic;
  margin: -0.5em 0 0.75em 0;
}

.theme-dark .form-help {
  color: #d5c8c8;
}

.form-inline label,
.form-search input,
.form-inline input,
.form-horizontal input,
.form-search textarea,
.form-inline textarea,
.form-horizontal textarea,
.form-search select,
.form-inline select,
.form-horizontal select,
.form-search .help-inline,
.form-inline .help-inline,
.form-horizontal .help-inline,
.form-search .uneditable-input,
.form-inline .uneditable-input,
.form-horizontal .uneditable-input,
.form-search .input-prepend,
.form-inline .input-prepend,
.form-horizontal .input-prepend,
.form-search .input-append,
.form-inline .input-append,
.form-horizontal .input-append {
  display: inline-block;
  *display: inline;
  margin-bottom: 0;
  vertical-align: middle;
  *zoom: 1;
  width: auto;
  max-width: 100%;
}

.form-search {
  margin-bottom: 1em;
}

.form-full {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999292;
  box-shadow: 0 3px 2px rgba(7, 7, 7, 0.15) inset;
  -webkit-border-radius: 0.15em 0 0 0.15em;
  border-radius: 0.15em 0 0 0.15em;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  display: block;
  font-size: 0.95em;
  padding: 0.45em;
}
.form-full .form-full__input {
  box-shadow: none;
  background: transparent;
  border: none;
  font-size: 1em;
  width: 85%;
}
@media screen and (max-width: 480px) {
  .form-full .form-full__input {
    width: 60%;
  }
}
.form-full .form-full__submit {
  -webkit-border-radius: 0 0.15em 0.15em 0;
  border-radius: 0 0.15em 0.15em 0;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  padding-left: 2em;
  padding-right: 2em;
}

.controls-group {
  clear: both;
  margin-bottom: 0.75em;
}

form .input-validation-error {
  border-color: red;
}

form .field-validation-error {
  display: block;
  margin-top: 0.25rem;
}

form .block-level {
  clear: both;
  display: block;
}

/* Tables
   ========================================================================== */
.table-striped tr:nth-child(2n+2) td {
  background-color: #f7e5e8;
  border-top-color: #e0d0d2;
}

table {
  table-layout: fixed;
}

.table--attendance {
  table-layout: auto;
}
.table--attendance td {
  word-break: break-word;
}

th {
  background-color: #292727;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
  font-size: 0.85em;
}

td {
  padding: 0.25em;
  word-wrap: break-word;
  vertical-align: top;
  zoom: 1;
}
td.text-center {
  vertical-align: middle;
}
.callout td {
  background-color: transparent;
  border-top-color: #e0d0d2;
}

@media (min-width: 960px) {
  .table__cell--member, .table__cell--member-type {
    min-width: 100px;
  }
  .table__cell--weight {
    min-width: 80px;
  }
  .table__cell--awards {
    max-width: 200px;
  }
  .table__cell--action {
    min-width: 40px;
  }
}
@media (max-width: 959px) {
  .table--attendance th, .table--attendance td {
    display: block;
  }
  .table--attendance th.table__header--awards, .table--attendance td.table__header--awards {
    display: none;
  }
  .table__row--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .table__cell--flex-20 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 20%;
    flex: 1 1 20%;
  }
  .table__cell--flex-15 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 15%;
    flex: 1 1 15%;
  }
  .table__cell--action {
    order: 6;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .table__cell--awards {
    order: 7;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    border-top: 0;
  }
}
.col-1eighth {
  width: 12.5%;
}

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

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

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

/*
* MODULES
* -------
*
* The reusable, modular parts of a web page
* eg pagination, breadcrumbs, article list etc
* This file should mostly consist of classes
*
*/
/*==========================================================================

  BASE/GENERAL

========================================================================== */
.inner {
  position: relative;
}

/*==========================================================================

  HEADER

========================================================================== */
.header-main {
  z-index: 10;
}
.header-main .hl-links {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 1;
}
.header-main .hl-links a {
  color: #fff;
}
.header-main .hl-links a:hover {
  color: #fff;
}
.header-main .form-search {
  position: relative;
  text-align: right;
  z-index: 1;
}
.header-main .form-search input[type=search] {
  min-width: 60%;
}
.header-main .inner {
  background: #fff url("img/bg-pgheader-berries.jpg") no-repeat right -3px;
  background-size: cover;
  min-height: 185px;
  padding-top: 1em;
  padding-bottom: 0.75em;
  position: relative;
}
.theme-dark .header-main .inner {
  background: #000 url("img/bg-pgheader-berries-dark.jpg") no-repeat right bottom;
}
@media only screen and (max-width: 599px) {
  .theme-dark .header-main .inner {
    background: none;
  }
}
@media only screen and (max-width: 599px) {
  .header-main .inner {
    background: #000;
    min-height: 80px;
  }
}
@media only screen and (max-width: 599px) {
  .header-main .form-search {
    background-color: #f9e6e8;
    position: static;
    display: none;
    padding: 0.75em;
    margin: -1em 0 1em 0;
  }
}

body.site-main .header-main {
  z-index: 1;
  position: relative;
  overflow: hidden;
}
body.site-main .header-main::before {
  background-image: linear-gradient(130deg, #36020a, #d3072a, #f70830, #d3072a, #36020a);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  display: block;
}
body.site-main .header-main::after {
  background-image: url("/assets/css/img/franchise-essentials-bokeh.png");
  background-size: cover;
  background-position: center;
  mix-blend-mode: screen;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  display: block;
  bottom: 0;
}
body.site-main .header-main.cf::after {
  visibility: visible;
  clear: none;
}
body.site-main .header-main .inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
  width: 100%;
  height: 360px;
  overflow: hidden;
  z-index: 2;
  background: none;
  padding: 0;
  min-height: 0;
}
@media (max-width: 1024px) {
  body.site-main .header-main .inner {
    height: auto;
  }
}
body.site-main .header-main .inner .franchise-essentials-banner-content {
  display: flex;
  align-items: center;
  color: #FFFEFE;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  body.site-main .header-main .inner .franchise-essentials-banner-content {
    align-items: center;
  }
}
@media (max-width: 700px) {
  body.site-main .header-main .inner .franchise-essentials-banner-content {
    display: none;
  }
}
body.site-main .header-main .inner .franchise-essentials-banner-content .franchise-essentials-content {
  margin-left: 28px;
}
@media (max-width: 600px) {
  body.site-main .header-main .inner .franchise-essentials-banner-content .franchise-essentials-content {
    margin-left: 0px;
  }
}
body.site-main .header-main .inner .franchise-essentials-banner-content .franchise-essentials-content p {
  font-size: 19px;
  font-weight: 400;
  line-height: 27px;
  max-width: 430px;
  margin: 0;
}
@media (max-width: 600px) {
  body.site-main .header-main .inner .franchise-essentials-banner-content .franchise-essentials-content p {
    font-size: 16px;
  }
}
body.site-main .header-main .inner .franchise-essentials-banner-content .franchise-essentials-content a {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  appearance: none;
  padding: 12px;
  border-radius: 100px;
  background: transparent;
  border: 1px dashed #FFFEFE;
  color: #FFFEFE;
  font-size: 16px;
  transition: 0.5s;
  text-decoration: none;
}
@media (max-width: 600px) {
  body.site-main .header-main .inner .franchise-essentials-banner-content .franchise-essentials-content a {
    font-size: 16px;
  }
}
body.site-main .header-main .inner .franchise-essentials-banner-content .franchise-essentials-content a .icon {
  content: url("/assets/css/img/navigation-right-arrow.svg");
  margin-left: 4px;
}
body.site-main .header-main .inner .franchise-essentials-banner-content .franchise-essentials-content a:hover {
  background-color: #FFFEFE;
  color: #D3072A;
  border: 1px dashed #FFFEFE;
}
body.site-main .header-main .inner .franchise-essentials-banner-content .franchise-essentials-content a:hover .icon {
  filter: invert(23%) sepia(79%) saturate(3933%) hue-rotate(337deg) brightness(78%) contrast(118%);
}

body.site-main.login .header-main .inner {
  height: auto;
}

.link-nav {
  position: absolute;
  left: 0;
  font-size: 0;
  padding: 20px;
}

.link-search {
  float: right;
}

.logo {
  background: transparent url("img/logo.png") no-repeat left top;
  background-size: contain;
  height: 101px;
  text-indent: -999em;
  margin-top: 0;
  margin-bottom: 0;
  width: 148px;
}
.logo a {
  display: block;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .logo {
    margin-left: auto;
    margin-right: auto;
  }
}

body.site-main .logo {
  display: none;
}

.strapline {
  color: #D8D8D8;
  font-size: 1.1em;
  margin-top: 1em;
  margin-bottom: 0;
}

.toolbar-outer {
  width: 100%;
  max-width: 100%;
  background: #333333;
  position: relative;
}

.header-main > div > .form-search {
  display: none;
}

@media screen and (max-width: 600px) {
  .header-main > div > .form-search {
    display: block;
    padding: 20px 0;
    margin: 0;
    background: #000;
    text-align: center;
    border-bottom: 1px solid #363535;
  }
}
body.homepage .toolbar {
  justify-content: flex-end;
}
body.homepage .toolbar .franchise-essentials-logo {
  display: none;
}

.franchise-essentials-mobile-header {
  background-image: url("/assets/css/img/franchise-essentials-bokeh.png"), linear-gradient(130deg, #36020a, #d3072a, #f70830, #d3072a, #36020a);
  background-size: cover;
  background-position: center;
  background-blend-mode: screen, normal;
  padding: 20px 20px 10px 20px;
  display: none;
}
@media (max-width: 700px) {
  .franchise-essentials-mobile-header {
    display: flex;
    justify-content: center;
  }
}

.toolbar {
  color: #fff;
  display: flex;
  justify-content: space-between;
  vertical-align: middle;
  max-width: 960px;
  width: 100%;
  margin: 0px auto;
  font-size: 16px;
  position: relative;
}
@media (max-width: 730px) {
  .toolbar {
    justify-content: flex-end;
  }
}
@media (max-width: 1024px) {
  .toolbar {
    padding: 0px 32px;
  }
}
@media (max-width: 600px) {
  .toolbar {
    padding: 0px 24px;
  }
}
.toolbar .franchise-essentials-logo {
  display: flex;
}
@media (max-width: 730px) {
  .toolbar .franchise-essentials-logo {
    display: none;
  }
}
.toolbar .toolbar-items {
  padding: 23px 0px;
}
@media (max-width: 600px) {
  .toolbar .toolbar-items {
    padding: 20px 0px;
  }
}
.toolbar .toolbar-items .right-toolbar-items {
  display: flex;
  align-items: center;
}
.toolbar .toolbar-items .right-toolbar-items .ow2-logo {
  font-size: 0;
}
.toolbar .toolbar-items .right-toolbar-items .ow2-logo::after {
  content: url("img/external-link.svg");
  top: -10px;
  position: relative;
  margin-left: 2px;
}
.toolbar .toolbar-items .right-toolbar-items .search-button {
  color: #FFFEFE;
  margin: 0px 40px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .toolbar .toolbar-items .right-toolbar-items .search-button {
    margin: 0px 20px;
  }
}
.toolbar .toolbar-items .right-toolbar-items .search-button img {
  font-size: 0;
  vertical-align: middle;
  margin-right: 4px;
}
@media (max-width: 600px) {
  .toolbar .toolbar-items .right-toolbar-items .search-button {
    font-size: 0;
  }
}
.toolbar .toolbar-items .right-toolbar-items .my-account-toggle {
  display: flex;
  align-items: center;
  color: #FFFEFE;
  background: none;
  border: none;
  position: relative;
}
.toolbar .toolbar-items .right-toolbar-items #MyAccountMenu {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 999;
  padding: 32px;
  box-shadow: 0px 0px 8px 0px rgba(51, 51, 51, 0.16);
  top: calc(100% + 14px);
  right: -12px;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  .toolbar .toolbar-items .right-toolbar-items #MyAccountMenu {
    right: 23px;
  }
}
@media (max-width: 600px) {
  .toolbar .toolbar-items .right-toolbar-items #MyAccountMenu {
    right: 23px;
  }
}
.toolbar .toolbar-items .right-toolbar-items #MyAccountMenu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 67px;
  z-index: -2;
  font-size: 0;
  height: 14px;
  width: 20px;
  border-radius: 0px 3px;
  display: block;
  background: #FFFEFE;
  transform: translateY(11px) rotate(-55deg) skewX(-20deg);
  box-shadow: 0 0 8px 0 rgba(51, 51, 51, 0.16);
}
@media (max-width: 600px) {
  .toolbar .toolbar-items .right-toolbar-items #MyAccountMenu::before {
    right: 15px;
  }
}
.toolbar .toolbar-items .right-toolbar-items #MyAccountMenu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  background: #ffffff;
  border-radius: 4px;
}
.toolbar .toolbar-items .right-toolbar-items #MyAccountMenu a {
  text-decoration: none;
}
.toolbar .toolbar-items .right-toolbar-items #MyAccountMenu a + a {
  margin-top: 20px;
}
.toolbar .toolbar-items .right-toolbar-items [aria-controls=MyAccountMenu]:not([aria-expanded=true]) ~ #MyAccountMenu {
  display: none;
}

.img-avatar {
  vertical-align: middle;
  margin-right: 4px;
  border-radius: 50%;
  height: 24px;
  width: 24px;
}

.badge {
  background-color: #ed1941;
  color: white;
  border-radius: 1em;
  display: inline-block;
  font-weight: normal;
  margin-right: 0.5em;
  text-align: center;
  height: 15px;
  width: 15px;
  font-size: 12px;
  position: absolute;
  top: 0px;
  right: 0px;
}

.toolbar-item__listexpand {
  background-color: #fff;
  position: absolute;
  text-align: left;
  margin-bottom: 0;
  z-index: 100;
  width: 375px;
  right: 0;
}
.toolbar-item__listexpand ul {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .toolbar-item__listexpand {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .toolbar-item__listexpand {
    position: static;
    width: 100%;
  }
}
.lt-ie8 .toolbar-item__listexpand {
  display: block;
  position: relative;
  zoom: 1;
  left: 0;
  z-index: 100;
  width: 100%;
}
.toolbar-item__listexpand li {
  position: relative;
  border-bottom: 1px solid #212121;
  margin-bottom: 0;
}
.toolbar-item__listexpand a {
  display: block;
  padding: 0.75em 0.75em 0.75em 2em;
  text-decoration: none;
}
.toolbar-item__listexpand .slats__title {
  color: #fff;
  font-size: 1.1em;
  margin-top: 0;
  font-weight: bold;
}
.toolbar-item__listexpand .slats__desc {
  color: #000;
  margin-bottom: 0;
}
.toolbar-item__listexpand .unread:before {
  background-color: #9A8B8B;
  border-radius: 6px;
  border: 1px solid #9A8B8B;
  content: "";
  display: block;
  left: 0.5em;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  z-index: 12;
}
.toolbar-item__listexpand .read:before {
  background-color: transparent;
  border-radius: 6px;
  border: 1px solid #9A8B8B;
  content: "";
  display: block;
  left: 0.5em;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  z-index: 12;
}
.toolbar-item__listexpand .list-important-msg .unread:before, .toolbar-item__listexpand .list-important-msg .read:before {
  display: none;
}

/*==========================================================================

  MAIN

==========================================================================*/
.main .inner {
  background-color: #fff;
  padding-top: 1em;
}
.theme-dark .main .inner {
  background-color: transparent;
}

body.site-main .main .inner.cf::after {
  display: none;
}

body.site-main.login .main > .inner {
  padding-top: 0;
}

body.site-main.login .main > .inner > .da-padin {
  padding-top: 1em;
}

.main-content {
  padding-top: 1em;
  padding-right: 2.5%;
}
.lt-ie8 .main-content {
  width: 670px;
}

.section {
  border-top: 1px solid #ed1941;
  clear: both;
  margin-bottom: 1em;
}
.section:first-of-type {
  border-top: none;
}
.section > tbody td {
  border-top: 1px solid #ed1941;
}

.section-title {
  margin-top: 0;
}

.aside {
  margin-bottom: 1em;
}

/* Navigation
==========================================================================*/
.nav {
  border-right: 1px solid #F1EAEA;
}
.nav li {
  position: relative;
  z-index: 5;
}
.nav .sub-nav {
  background: #F9E6E8;
  margin-bottom: 0;
}
.nav .sub-nav li {
  border-bottom-color: #fff;
}
.nav .sub-nav li:last-of-type {
  margin-bottom: 0;
}
.nav .sub-nav a {
  padding-left: 1em;
}
.lt-ie8 .nav {
  width: 220px !important;
}
@media screen and (min-width: 960px) {
  .nav {
    border-radius: 1em 0 0 1em;
    border-right: 1px solid #E3E3E3;
  }
}

.nav-secondary {
  background: #ed1941 url("img/bg-gradient-red.png") repeat-x top left;
  /* fallback/image non-cover color */
  background-color: rgb(162.5766129032, 12.7233870968, 40.9975806452);
  /* Firefox 3.6+ */
  background-image: -moz-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  /* Safari 4+, Chrome 1+ */
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ed1941), to(rgb(162.5766129032, 12.7233870968, 40.9975806452)));
  /* Safari 5.1+, Chrome 10+ */
  background-image: -webkit-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  /* Opera 11.10+ */
  background-image: -o-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  background-image: linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  padding: 1em;
  margin: 0;
}
.nav-secondary a {
  color: #fff;
  font-size: 1.2em;
  text-decoration: none;
}

#main-nav {
  background: #262626;
  height: 100%;
  position: absolute;
  left: -100%;
  z-index: 100;
}
#main-nav a {
  color: #fff;
}
#main-nav a:hover {
  color: #000;
}
#main-nav .lvl-2 {
  background-color: #514F4F;
  border-bottom: none;
}
#main-nav .lvl-3 {
  background-color: #828282;
  padding-top: 0;
}

.active-nav #main-nav {
  left: 0;
  width: 65%;
}

.active-nav .header-main,
.active-nav .main,
.active-nav .footer-main,
.active-nav .toolbar-outer {
  left: 65%;
  position: relative;
}

.login .nav-secondary, .login .form-search {
  display: none;
}

/* Styling for sub-navigation
==========================================================================*/
.nav ul {
  margin: 0;
}

.nav a {
  color: #000;
}

.lvl-1 > li > .active {
  font-weight: bold;
}

.lvl-0 > li:last-child, .lvl-1 > li:last-child {
  border-bottom: none;
}

.lvl-2 .active {
  font-weight: bold;
  position: relative;
}

.lvl-2 > li > .active {
  font-weight: bold;
  position: relative;
}
.lvl-2 > li > .active:after {
  content: "";
  position: absolute;
  right: 0.5em;
  height: 16px;
  width: 16px;
  top: 50%;
  margin-top: -8px;
}

.lvl-2 {
  background-color: #ffedee;
  border-bottom: 1px solid #E2D3D3;
}
.lvl-2 > li {
  border-top: 1px solid #E2D3D3;
  border-bottom: none;
}
.lvl-2 > li > a {
  padding-left: 1.25em;
}

.lvl-3 {
  background: #EEDDDE;
  font-size: 0.95em;
  padding-left: 0;
}
.lvl-3 > li {
  border: none;
}
.lvl-3 > li a {
  padding-left: 2em;
}
.lvl-3 > li > .active {
  position: relative;
  padding-right: 2em;
}
.lvl-3 > li > .active:hover {
  background-color: #EAEAEA;
}
.lvl-3 > li > .active:after {
  background: url("img/icon-arrow-r.png") no-repeat right top;
  content: "";
  position: absolute;
  right: 0.5em;
  height: 16px;
  opacity: 0.65;
  width: 16px;
  top: 50%;
  margin-top: -8px;
}

.lvl-4 {
  background-color: #DBDBDB;
  border-top: 1px solid #CECECE;
  border-bottom: 1px solid #CECECE;
}
.lvl-4 > li a {
  padding-left: 2.7em;
}

.nav-title {
  background: #ed1941 url("img/bg-gradient-red.png") repeat-x top left;
  /* fallback/image non-cover color */
  background-color: rgb(162.5766129032, 12.7233870968, 40.9975806452);
  /* Firefox 3.6+ */
  background-image: -moz-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  /* Safari 4+, Chrome 1+ */
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ed1941), to(rgb(162.5766129032, 12.7233870968, 40.9975806452)));
  /* Safari 5.1+, Chrome 10+ */
  background-image: -webkit-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  /* Opera 11.10+ */
  background-image: -o-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  background-image: linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  color: #fff;
  display: block;
  font-weight: bold;
  padding: 0.65em 1em;
}
.link-list .nav-title:hover {
  background-color: rgb(219.3346774194, 17.1653225806, 55.310483871);
}

a.nav-title {
  color: #fff;
}

/*==========================================================================

  FOOTER

==========================================================================*/
.footer-main {
  background-color: #fff;
  border-top: 1px solid #ed1941;
  padding-top: 1em;
  padding-bottom: 1em;
}
.theme-dark .footer-main {
  background-color: #000;
  color: #D8D8D8;
}

body.site-main .footer-main {
  display: flex;
  justify-content: center;
  padding-top: 33px;
  padding-bottom: 33px;
  margin-top: auto;
  border-top: none;
}
body.site-main .footer-main.cf::after {
  display: none;
}
body.site-main .footer-main .inner {
  display: flex;
  align-items: center;
  max-width: 830px;
}
@media (max-width: 500px) {
  body.site-main .footer-main .inner {
    flex-direction: column;
  }
}
body.site-main .footer-main .inner img {
  margin-right: 23px;
}
@media (max-width: 500px) {
  body.site-main .footer-main .inner img {
    margin-bottom: 15px;
  }
}
body.site-main .footer-main .inner padding {
  margin: 0;
}

.footer-main h1,
.footer-main h2,
.footer-main h3 {
  color: #fff;
  font-family: "Times New Roman", Times, Georgia, serif;
}

.footer-main p {
  margin: 0;
}

.footer-main .no-marker li {
  margin-left: 0;
}

/*==========================================================================

  CONTENT/TEXT-BASED MODULES

==========================================================================*/
/* Callout
==========================================================================*/
/* for emphasising a section of content with a red background
* e.g <div class="callout">...</div >*/
.callout {
  background: #F9E6E8;
  border-radius: 0.25em 1em 0.25em 1em;
  position: relative;
  margin-bottom: 1em;
  padding: 1em;
}
.callout p:last-of-type, .callout ul:last-of-type {
  margin-bottom: 0;
}
.lt-ie8 .callout {
  padding: 0;
  float: left;
}
.theme-dark .callout {
  background-color: #721124;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.55);
  color: #D8D8D8;
}
.callout table {
  margin-bottom: 0;
}

.callout-content {
  margin: -1em -1em 1em -1em;
  padding: 1em;
}
.login .callout-content {
  min-height: 120px;
}
.lt-ie8 .callout-content {
  padding: 0 1em;
  margin: 1em 0;
}

.callout-head {
  background: #ed1941 url("img/bg-gradient-red.png") repeat-x top left;
  /* fallback/image non-cover color */
  background-color: rgb(162.5766129032, 12.7233870968, 40.9975806452);
  /* Firefox 3.6+ */
  background-image: -moz-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  /* Safari 4+, Chrome 1+ */
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ed1941), to(rgb(162.5766129032, 12.7233870968, 40.9975806452)));
  /* Safari 5.1+, Chrome 10+ */
  background-image: -webkit-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  /* Opera 11.10+ */
  background-image: -o-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  background-image: linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  border-radius: 0.25em 1em 0 0;
  color: #fff;
  margin: -1em -1em 1em -1em;
  padding: 0.65em 1em;
  /*.theme-dark & {
    background: $sw-red url('img/bg-gradient-red.png') repeat-x top left;
    @include gradient($sw-red, darken($sw-red, 17%));
  }*/
}
.lt-ie8 .callout-head {
  padding: 0.75em;
  margin: 0;
}

.callout-title {
  color: #fff;
  margin: 0;
  /*.theme-dark & {
    color: #fff;
  }*/
}

.callout-foot {
  border-top: 1px solid #D9D3D3;
  padding: 0.75em;
  margin: -1em;
}
.theme-dark .callout-foot {
  border-top-color: #932239;
}
.lt-ie8 .callout-foot {
  padding: 1em 0 0 0;
  margin: 1em;
}

.manualpage .callout td {
  border: none;
}

.callout-minor {
  font-size: 0.9em;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
}

.theme-dark .callout a {
  color: #fff;
}

.callout-table {
  background: #F9E6E8;
  border-radius: 0.25em 1em 0.25em 1em;
  border-collapse: separate;
  position: relative;
  margin-bottom: 1em;
  padding: 0 1em;
  table-layout: auto;
}
.callout-table th {
  background-color: transparent;
  color: #7A1B24;
  border: none;
}
.callout-table td {
  padding: 0.55em;
  border-top: 1px solid #E3D4D5;
  vertical-align: middle;
  text-align: center;
}

.callout-table-v1 th {
  background-color: #ed1941;
}

.detailed-table {
  background: #F9E6E8;
  border-radius: 0.25em 1em 0.25em 1em;
  border-collapse: separate;
  position: relative;
  margin-bottom: 1em;
  padding: 0 1em;
  table-layout: auto;
}
.detailed-table thead th {
  text-align: center;
}
.detailed-table th {
  background-color: transparent;
  color: #7A1B24;
  border: none;
}
.detailed-table td {
  padding: 0.55em;
  border-top: 1px solid #E3D4D5;
  vertical-align: middle;
  text-align: center;
}

/* Article
==========================================================================*/
.article img {
  margin-bottom: 1em;
}

.article-title {
  border-bottom: 1px solid rgb(249.9556451613, 190.5443548387, 201.7540322581);
  padding-bottom: 0.25em;
  line-height: 1;
}

.article-header {
  padding: 0.5em 0;
  border-bottom: 2px solid rgb(249.9556451613, 190.5443548387, 201.7540322581);
  margin-bottom: 1.5em;
}
.article-header .article-title {
  border: none;
  color: #181818;
  margin: 0 0 0.15em;
}
.article-header .article-subtitle {
  margin: 0;
}

.article-subtitle {
  color: #4C4C4C;
}

.lead, .lead-callout {
  color: #000;
  font-size: 1.15em;
  width: 100%;
}

.lead-callout {
  background-color: #f9e6e8;
  padding: 1em;
}

.pg-title {
  margin-top: 0;
  line-height: 1;
}

/*quote style*/
.quote {
  padding: 0 0 0;
  position: relative;
}

.quote:before, .quote:after {
  content: "";
  display: block;
  background-position: left top;
  background-repeat: no-repeat;
  height: 22px;
  width: 25px;
}

.quote:before {
  background-image: url("img/bg-quote1.png");
  float: left;
  margin-right: 0.5em;
}

.quote:after {
  background-image: url("img/bg-quote2.png");
  float: right;
}

/*Letter style*/
/*
Styled to look like a handwritten letter
e.g. <div class="style-letter">...</div>
*/
.style-letter {
  background: url("img/bg-text-linedpaper.png") repeat scroll left top #FFFFFF;
  border: 1px solid #BEBBBB;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.15);
  color: #3C4491;
  font-family: Georgia, serif;
  font-size: 1.2em;
  font-style: italic;
  margin-bottom: 1.5em;
  padding: 1.5em;
}

/* News/article lists
==========================================================================*/
/*Typically used for lists consiting of a title and content, optional image
 *[note: .slats-bd is required if using image]
/*e.g  <ul class="slats">
 *       <li><a href="#" class="slats-media">...</a>
 *       <div class="slats-bd">...</div></li>
 */
.slats {
  text-align: left;
}
.slats > li {
  border-bottom: 1px solid #F1EEEE;
  clear: both;
  margin-left: 0;
  margin-bottom: 0.75em;
  overflow: hidden;
  padding-bottom: 0.75em;
}
.slats > li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.slats p:last-of-type {
  margin-bottom: 0;
}

.slats-meta {
  color: #707070;
  font-size: 0.8em;
  margin: 0.25em 0;
}

.slats-title {
  margin: 0 0 0.25em;
}

.slats-media {
  float: left;
  display: block;
  margin: 0 0.75em 0.75em 0;
}
.slats-media img {
  display: block;
}

a .slats-meta {
  text-decoration: none;
}

.slats-bd {
  overflow: hidden;
  _overflow: visible;
  position: relative;
  zoom: 1;
}

.list-dates li {
  position: relative;
  padding: 0.35em 0.35em 0.35em 0.35em;
  margin-bottom: 0;
}
.list-dates li .slats-meta {
  font-size: 1em;
}
.list-dates li .list-dates__link {
  display: block;
  margin: -0.35em -0.35em -0.35em -0.35em;
  padding: 0.35em 25px 0.35em 0.35em;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}

/*==========================================================================

  NAVIGATION BASED MODULES

==========================================================================*/
/*Results List*/
.results-list li {
  border-bottom: 1px solid #ddd;
  margin-left: 0;
}
.results-list li:last-of-type {
  border-bottom: 0;
}

.results-list__title {
  font-family: Georgia, serif;
  font-size: 1.8em;
  margin: 0;
}

.results-list__meta {
  color: #7E7A7A;
  padding: 0.5em 0;
}

.results-list a {
  display: block;
  text-decoration: none;
}

.results-list p {
  color: #000;
}

/* Pagination list
==========================================================================*/
.pagination {
  clear: both;
}
.pagination li, .pagination .pagination__item {
  margin: 0;
  padding: 0;
}
.pagination a, .pagination .pagination__link {
  background-color: #eee;
  border: 1px solid rgb(251.8064516129, 214.1935483871, 221.2903225806);
  -webkit-border-radius: 0.25em;
  border-radius: 0.25em;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  display: block;
  padding: 0.5em;
  text-decoration: none;
  min-width: 2.75em;
  text-align: center;
}
.pagination a:hover, .pagination .pagination__link:hover {
  background-color: #f3f3f3;
}
.pagination .current {
  font-weight: bold;
}

/* Breadcrumb navigation
==========================================================================*/
.breadcrumb {
  border-bottom: 1px solid #DDDDDD;
  color: #636363;
  font-size: 0.85em;
  padding: 0.55em;
}

/* Forwards & backwards navigation
==========================================================================*/
.nav-direction {
  background-color: #F3F3F3;
  border-top: 2px solid #FFC9D4;
  clear: both;
  margin-bottom: 1em;
}
.nav-direction a {
  text-decoration: none;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.nav-direction .disabled {
  color: #918686;
  cursor: not-allowed;
  opacity: 0.3;
}
.nav-direction .disabled:hover {
  background: inherit;
}

.nav-count {
  color: #707070;
  padding: 1em;
  text-align: center;
}

.nav-dir-next, .nav-dir-prev {
  padding: 1em;
  position: relative;
}

.nav-dir-next:hover, .nav-dir-prev:hover {
  background-color: #EDE7E7;
}

.nav-dir-next {
  padding-right: 2em;
  text-align: right;
}
.nav-dir-next .icon {
  position: absolute;
  right: 0.25em;
  top: 50%;
  margin-top: -8px;
}
.nav-dir-prev {
  padding-left: 2em;
  text-align: left;
}
.nav-dir-prev .icon {
  position: absolute;
  left: 0.25em;
  top: 50%;
  margin-top: -8px;
}

.direction-title {
  color: #444444;
  display: block;
  font-weight: bold;
}

.nav-direction-basic {
  position: relative;
}

/* Emphasised Lists of links
==========================================================================*/
.link-list ul {
  margin-bottom: 0;
}

.link-list li {
  display: block;
  border-bottom: 1px solid #ddd;
  margin: 0;
}
.link-list li:last-of-type {
  border-bottom: none;
}

.link-list a, .link-list .link-list__link {
  display: block;
  padding: 0.65em 1em;
  margin: 0;
  text-decoration: none;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.link-list a:hover {
  background-color: #F2F2F2;
}

.link-list .current {
  font-weight: bold;
}

.link-list__link {
  cursor: pointer;
}
.link-list__link:hover {
  background-color: #DAD3D3;
}

/*Striped version*/
.link-list__item:nth-child(even) {
  background-color: #F2F2F2;
}

/* Horizontal list navigation
==========================================================================*/
.hl-links {
  margin-bottom: 0.5em;
}
.hl-links li {
  border-left: 1px solid #3F3F3F;
  line-height: 1;
  padding: 0 0.55em;
  margin-left: 0;
}
.hl-links li:first-child {
  border-left: none;
  padding-left: 0;
}
.header-main .hl-links {
  color: #fff;
  text-align: right;
}
.header-main .hl-links li {
  border-left-color: #D1D1D1;
}

.hl-links-bullets {
  margin-bottom: 0.5em;
}
.hl-links-bullets li {
  display: inline;
  position: relative;
  line-height: 1;
  padding: 0 0 0 1.25em;
  margin-left: 0;
  margin-right: 0.45em;
}
.hl-links-bullets li:before {
  background: url("img/bullet-round-black.png") no-repeat left -3px transparent;
  content: "";
  position: absolute;
  display: block;
  height: 16px;
  width: 10px;
  left: 0;
  top: 0;
}

/* Thumbnail grid list
==========================================================================*/
/*used in eshop*/
.list-gridthumbs {
  clear: both;
  width: 100%;
}
.lt-ie8 .list-gridthumbs {
  margin-left: -10px;
}

.list-gridthumbs img {
  border: 5px solid #fff;
  box-shadow: 0.15em 0.15em 0.15em rgba(0, 0, 0, 0.45);
  display: block;
  margin: 0 auto 0.75em;
}

.list-gridthumbs a {
  display: block;
}

.list-gridthumbs .btn {
  float: right;
}

.list-gridthumbs .zoom {
  cursor: webkit-zoom-in;
  cursor: -moz-zoom-in;
  position: relative;
}

.list-gridthumbs li {
  background-color: #f8f0f0;
  border-radius: 0.7em;
  padding: 1em;
  margin-bottom: 1.35em;
}
.lt-ie8 .list-gridthumbs li {
  display: block;
  margin: 0 0 10px 10px;
  padding: 10px;
  width: 190px;
  zoom: 1;
}

.list-gridthumbs .grid-title {
  color: #000;
  display: block;
  font-weight: bold;
  min-height: 3em;
}

.list-gridthumbs .icon {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.75);
  left: 0.25em;
  top: 0.25em;
  padding: 0.25em;
  position: absolute;
  z-index: 5;
  height: 25px;
  width: 25px;
}
.lt-ie8 .list-gridthumbs .icon {
  background-color: #000;
}

/*==========================================================================

  TABS

==========================================================================*/
/*
  .e.g: <ul class="no-marker tabs">
          <li><a href="#" class="current">Tab 1</a></li>
          <li><a href="#" >Tab 2</a></li>
          <li><a href="#" >Tab 3</a></li>
        ...
        </ul>
*/
.tabs {
  border-bottom: 1px solid #ED1941;
  display: table;
  width: 100%;
  clear: both;
}
.lt-ie8 .tabs {
  display: block;
  width: 100%;
}
.tabs li {
  display: table-cell;
  padding: 0 0.25em 0 0;
}
.tabs li input, .tabs li a, .tabs li label {
  background: #f3f3f3;
  border: none;
  color: #ed1941;
  display: block;
  padding: 0.65em 0.25em;
  text-decoration: none;
  text-align: center;
  width: 100%;
}
.lt-ie8 .tabs li {
  display: inline;
  width: 100%;
}
.lt-ie8 .tabs li a {
  display: block;
  position: relative;
}
.tabs .current {
  background: #fff;
  border: 1px solid #ED1941;
  border-bottom-color: #fff;
  border-radius: 0.35em 0.35em 0 0;
  bottom: -2px;
  color: #000;
  position: relative;
  font-weight: bold;
}

.tab-content {
  margin-bottom: 1em;
  padding: 0 0.25em;
}

/*==========================================================================

  HOMEPAGE CAROUSEL MODULE

==========================================================================*/
.carousel {
  max-width: 610px;
}
.carousel a {
  display: block;
}
.carousel img {
  width: 100%;
}
.lt-ie8 .carousel {
  max-width: 625px;
  width: 625px;
}

.carousel-row {
  border-collapse: separate;
  border-spacing: 5px;
  display: table;
  vertical-align: top;
  display: table;
  margin-bottom: 0;
  width: 100%;
}

.carousel-thumb {
  display: table-cell;
  width: 32.3%;
}
.lt-ie8 .carousel-thumb {
  vertical-align: middle;
  margin-right: 3px;
  margin-left: 0;
  *zoom: 1;
  *display: inline;
}

.carousel-full {
  padding: 0 5px;
  width: 100%;
}
.lt-ie8 .carousel-full {
  margin-bottom: 5px;
  width: 610px;
}

/*
Rating
=========================*/
.rating-user .icon {
  margin-right: 0.3em;
}
.rating-user .icon:hover {
  cursor: pointer;
  position: relative;
  top: -3px;
}

/* Media
==========================================================================*/
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-bottom: 1em;
  width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Radio select table
==========================================================================*/
.radio-select th {
  background-color: #fff;
  border: 1px solid #BCBCBC;
  color: #000;
}
.radio-select td {
  border: 1px solid #BCBCBC;
}

/*==========================================================================

  PAGE/SECTION SPECIFIC STYLING
  **There should be very little here**

==========================================================================*/
.news table {
  table-layout: auto;
}

.news table img {
  display: block;
  max-width: 200px;
}

.newsroundsection .slats-media,
.zoomsection .slats-media,
.newssection .slats-media {
  width: 110px;
}

.search .callout-minor {
  outline: 3px solid #fff;
}

.importantmessagesection .list-important-msg a {
  text-decoration: none;
}
.importantmessagesection .list-important-msg .slats__desc {
  text-decoration: none;
}

/*==========================================================================

  BUTTON STYLES

==========================================================================*/
.btn {
  display: inline-block;
  border: 1px solid #C4C4C4;
  -webkit-border-radius: 0.25em;
  border-radius: 0.25em;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  cursor: pointer;
  font-weight: bold;
  padding: 0.35em 1em;
  text-decoration: none;
  text-transform: lowercase;
  text-align: center;
}

.lt-ie8 input.btn {
  border: none;
  border-color: transparent;
}

.btn-primary {
  background: #ed1941 url("img/bg-gradient-red.png") repeat-x top left;
  /* fallback/image non-cover color */
  background-color: rgb(162.5766129032, 12.7233870968, 40.9975806452);
  /* Firefox 3.6+ */
  background-image: -moz-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  /* Safari 4+, Chrome 1+ */
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ed1941), to(rgb(162.5766129032, 12.7233870968, 40.9975806452)));
  /* Safari 5.1+, Chrome 10+ */
  background-image: -webkit-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  /* Opera 11.10+ */
  background-image: -o-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  background-image: linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.6);
  color: #fff;
  border: none;
}
.btn-primary:hover {
  /* fallback/image non-cover color */
  background-color: rgb(176.7661290323, 13.8338709677, 44.5758064516);
  /* Firefox 3.6+ */
  background-image: -moz-linear-gradient(rgb(238.110483871, 39.189516129, 76.7217741935), rgb(176.7661290323, 13.8338709677, 44.5758064516));
  /* Safari 4+, Chrome 1+ */
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(238.110483871, 39.189516129, 76.7217741935)), to(rgb(176.7661290323, 13.8338709677, 44.5758064516)));
  /* Safari 5.1+, Chrome 10+ */
  background-image: -webkit-linear-gradient(rgb(238.110483871, 39.189516129, 76.7217741935), rgb(176.7661290323, 13.8338709677, 44.5758064516));
  /* Opera 11.10+ */
  background-image: -o-linear-gradient(rgb(238.110483871, 39.189516129, 76.7217741935), rgb(176.7661290323, 13.8338709677, 44.5758064516));
  background-image: linear-gradient(rgb(238.110483871, 39.189516129, 76.7217741935), rgb(176.7661290323, 13.8338709677, 44.5758064516));
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8);
}
.lt-ie8 .btn-primary:focus {
  border: none;
  border-color: transparent;
}
.btn-primary:active {
  /* fallback/image non-cover color */
  background-color: rgb(195.685483871, 15.314516129, 49.3467741935);
  /* Firefox 3.6+ */
  background-image: -moz-linear-gradient(rgb(195.685483871, 15.314516129, 49.3467741935), rgb(195.685483871, 15.314516129, 49.3467741935));
  /* Safari 4+, Chrome 1+ */
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgb(195.685483871, 15.314516129, 49.3467741935)), to(rgb(195.685483871, 15.314516129, 49.3467741935)));
  /* Safari 5.1+, Chrome 10+ */
  background-image: -webkit-linear-gradient(rgb(195.685483871, 15.314516129, 49.3467741935), rgb(195.685483871, 15.314516129, 49.3467741935));
  /* Opera 11.10+ */
  background-image: -o-linear-gradient(rgb(195.685483871, 15.314516129, 49.3467741935), rgb(195.685483871, 15.314516129, 49.3467741935));
  background-image: linear-gradient(rgb(195.685483871, 15.314516129, 49.3467741935), rgb(195.685483871, 15.314516129, 49.3467741935));
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.6);
  text-shadow: 1px 0 1px rgba(0, 0, 0, 0.8);
}

.btn-large {
  font-size: 1.2em;
  padding: 0.3em 1.3em;
}

.btn-small {
  font-size: 0.9em;
  padding: 0.3em 1em;
}

.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.8;
}

.btn-primary[disabled]:hover {
  /* fallback/image non-cover color */
  background-color: rgb(162.5766129032, 12.7233870968, 40.9975806452);
  /* Firefox 3.6+ */
  background-image: -moz-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  /* Safari 4+, Chrome 1+ */
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ed1941), to(rgb(162.5766129032, 12.7233870968, 40.9975806452)));
  /* Safari 5.1+, Chrome 10+ */
  background-image: -webkit-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  /* Opera 11.10+ */
  background-image: -o-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  background-image: linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
}

/*==========================================================================

  ICONS
  use icons by using an empty <i> tag with the relevant class
  e.g <i class="icon icon-nav"></i> [note: .icon is required]

==========================================================================*/
.icon {
  background-position: center center;
  background-color: transparent;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: text-top;
  text-decoration: none;
}

.icon-menu {
  background-image: url("img/menu.svg");
  font-size: 0;
  height: 24px;
  width: 24px;
}

.icon-search {
  background-image: url("img/icon-search.png");
  height: 19px;
  width: 18px;
}

.icon-trash {
  background-image: url("img/icon-trash.svg");
  background-size: contain;
  height: 19px;
  width: 18px;
}

.icon-arrowl {
  background-image: url("img/icon-arrow-l.png");
  height: 16px;
  width: 16px;
}

.icon-arrowr {
  background-image: url("img/icon-arrow-r.png");
  height: 16px;
  width: 16px;
}

.icon-word {
  background-image: url("img/icon-word.gif");
  height: 16px;
  width: 16px;
}

.icon-aww {
  background-image: url("img/icon-aww.gif");
  height: 16px;
  width: 16px;
}

.icon-stars-5of5 {
  background-image: url("img/icon-stars-5of5.png");
  height: 16px;
  width: 105px;
}

.icon-stars-4of5 {
  background-image: url("img/icon-stars-4of5.png");
  height: 16px;
  width: 105px;
}

.icon-stars-3of5 {
  background-image: url("img/icon-stars-3of5.png");
  height: 16px;
  width: 105px;
}

.icon-stars-2of5 {
  background-image: url("img/icon-stars-2of5.png");
  height: 16px;
  width: 105px;
}

.icon-stars-1of5 {
  background-image: url("img/icon-stars-1of5.png");
  height: 16px;
  width: 105px;
}

.icon-stars-0of5 {
  background-image: url("img/icon-stars-0of5.png");
  height: 16px;
  width: 105px;
}

.icon-starsLarge-5of5 {
  background-image: url("img/icon-starsLarge-5of5.png");
  height: 32px;
  width: 168px;
}

.icon-starsLarge-4of5 {
  background-image: url("img/icon-starsLarge-4of5.png");
  height: 32px;
  width: 168px;
}

.icon-starsLarge-3of5 {
  background-image: url("img/icon-starsLarge-3of5.png");
  height: 32px;
  width: 168px;
}

.icon-starsLarge-2of5 {
  background-image: url("img/icon-starsLarge-2of5.png");
  height: 32px;
  width: 168px;
}

.icon-starsLarge-1of5 {
  background-image: url("img/icon-starsLarge-1of5.png");
  height: 32px;
  width: 168px;
}

.icon-starsLarge-0of5 {
  background-image: url("img/icon-starsLarge-0of5.png");
  height: 32px;
  width: 168px;
}

.icon-starSingle-on {
  background-image: url("img/icon-starSingle-on.png");
  height: 18px;
  width: 18px;
}

.icon-starSingle-off {
  background-image: url("img/icon-starSingle-off.png");
  height: 18px;
  width: 18px;
}

.icon-dinner {
  background: url("img/icons-recipes.png") no-repeat left -48px;
  height: 16px;
  width: 26px;
}

.icon-time {
  background: url("img/icons-recipes.png") no-repeat left top;
  height: 16px;
  width: 26px;
}

.icon-heart {
  background: url("img/icons-recipes.png") no-repeat left -104px;
  height: 16px;
  width: 26px;
}

.icon-info {
  background: url("img/icon-info.png") no-repeat left top;
  height: 16px;
  width: 16px;
}

.icon-block {
  display: inline-block;
  height: 16px;
  width: 16px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
  vertical-align: baseline;
}

.icon-logout-white {
  background-image: url("img/icon-logout-white.png");
  height: 18px;
  width: 18px;
}

.icon-trophy-white {
  background-image: url("img/icon-trophy-white.png");
  height: 18px;
  width: 18px;
}

.icon-cal-black {
  background-image: url("img/icon-cal-black.png");
  height: 26px;
  width: 26px;
}

.icon-mag-black {
  background-image: url("img/icon-mag-black.png");
  height: 26px;
  width: 26px;
}

.icon-important-black {
  background-image: url("img/icon-error-black.png");
  height: 16px;
  width: 16px;
}

.icon-block-Amber {
  background-color: #F9EA89;
}

.icon-block-Red {
  background-color: #F28585;
}

.icon-block-Green {
  background-color: #75C25C;
}

.icon-block-Orange {
  background-color: #e26000;
}

/*==========================================================================

  NOTIFICATIONS/ALERTS/HIGHLIGHTS

==========================================================================*/
.dialog-no-title {
  font-family: sans-serif !important;
}
.dialog-no-title .ui-dialog-titlebar {
  display: none;
}

.notification-options-dialog {
  overflow: hidden;
  margin: -5px;
  cursor: pointer;
  box-shadow: 2px 2px 6px #d1d1d1;
}
.notification-options-dialog:hover {
  background-color: #ED1941 !important;
  color: white;
}

#notifications-outer {
  padding: 10px;
  position: relative;
}
#notifications-outer.no-layout {
  box-shadow: 2px 2px 6px #d1d1d1;
}
#notifications-outer #notifications-scroll.no-layout {
  max-height: 600px;
  overflow-y: scroll;
}
#notifications-outer #notifications-scroll::-webkit-scrollbar {
  width: 3px;
}
#notifications-outer #notifications-scroll {
  /* Track */
}
#notifications-outer #notifications-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
}
#notifications-outer #notifications-scroll {
  /* Handle */
}
#notifications-outer #notifications-scroll::-webkit-scrollbar-thumb {
  background: #888;
  margin: 0px 5px;
}
#notifications-outer #notifications-scroll {
  /* Handle on hover */
}
#notifications-outer #notifications-scroll::-webkit-scrollbar-thumb:hover {
  background: #555;
}
#notifications-outer #notifications-scroll #notifications-mark-read {
  color: #ED1941;
  position: absolute;
  right: 20px;
  top: 10px;
  padding: 0;
}
#notifications-outer #notifications-scroll .notification {
  position: relative;
}
#notifications-outer #notifications-scroll .notification .notification-title {
  font-weight: bold;
}
#notifications-outer #notifications-scroll .notification .notification-description {
  color: black;
}
#notifications-outer #notifications-scroll .notification .notification-status-outer {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 20px;
}
#notifications-outer #notifications-scroll .notification .notification-status-outer:hover {
  border-color: black;
}
#notifications-outer #notifications-scroll .notification .notification-status-outer .notification-status {
  height: 10px;
  width: 10px;
  border: 5px solid gray;
  border-radius: 10px;
}
#notifications-outer #notifications-scroll .notification .notification-status-outer .notification-status.unread {
  border-color: #ED1941;
}
#notifications-outer #notifications-scroll .notification .notification-options-outer {
  position: absolute;
  right: 0px;
  line-height: 0px;
  height: 20px;
  width: 40px;
  bottom: 5px;
}
#notifications-outer #notifications-scroll .notification .notification-options-outer .notification-options {
  font-size: 40px;
  font-weight: bolder;
  color: gray;
  font-family: cursive;
}
#notifications-outer #notifications-scroll .notification .notification-options-outer .notification-options:hover {
  color: black;
}
#notifications-outer #notifications-scroll .notification .notification-date {
  margin-top: 10px;
  color: gray;
  font-size: 11px;
}
#notifications-outer #notifications-see-all {
  display: flex;
  justify-content: center;
  height: 60px;
  align-items: center;
  color: #ED1941;
  font-weight: bolder;
  font-size: 14px;
  border-top: 1px solid #F1EEEE;
  margin-top: 5px;
}

.alert, .error {
  background-color: #FCF8E3;
  border: 1px solid #C4B464;
  -webkit-border-radius: 0.25em;
  border-radius: 0.25em;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  color: #896424;
  display: block;
  padding: 0.5em;
  margin-bottom: 1em;
}

.alert-success {
  background-color: #B8FBC4;
  border-color: #147E1E;
  color: #147E1E;
}

.alert-warning {
  background-color: #FFC7BA;
  border-color: #A73B21;
  color: #A73B21;
}

.alert-info {
  background-color: #F2F3FF;
  border-color: #B1B5DA;
}

.theme-dark .alert {
  color: #C09853;
}

.theme-dark .alert h3, .theme-dark .alert h4, .theme-dark .alert h5 {
  color: #000;
}

.error-item {
  display: block;
}

.alert-header {
  margin-bottom: 0;
  text-align: center;
  border-radius: 0;
  width: 100%;
}

.match {
  color: #000;
  background: #ffff9e;
  font-style: italic;
}

/*==========================================================================

  HELPER STYLES

==========================================================================*/
.align-r {
  float: right;
}

.align-l {
  float: left;
}

img.align-l, .align-l > img {
  margin: 0 0.85em 0.5em 0;
}

img.align-r, .align-r > img {
  margin: 0 0 0.5em 0.85em;
}

.hl > li {
  display: inline-block;
  margin-left: 0;
  zoom: 1;
  *display: inline;
}

.lt-ie9 .hl li {
  position: relative;
  margin-right: 10px;
}

.no-marker-unset-margin {
  padding: 0;
}
.no-marker-unset-margin li {
  list-style: none;
  list-style-image: none;
  list-style-position: outside;
}

.no-marker {
  padding: 0;
}
.no-marker li {
  list-style: none;
  list-style-image: none;
  list-style-position: outside;
  margin-left: 0;
}

.cf:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

* html .cf {
  zoom: 1;
}

/* IE6 */
*:first-child + html .cf {
  zoom: 1;
}

/* IE7 */
.ir {
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
}

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

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

/* Grids generated by Gridset: https://gridsetapp.com */
/* Desktop A grid: 12 column / gutter: 2.60416667% ---------------------------------------- */
[class*=" da1"], [class^=da1], [class*=" da2"], [class^=da2], [class*=" da3"], [class^=da3], [class*=" da4"], [class^=da4], [class*=" da5"], [class^=da5], [class*=" da6"], [class^=da6], [class*=" da7"], [class^=da7], [class*=" da8"], [class^=da8], [class*=" da9"], [class^=da9], [class*=" da10"], [class^=da10], [class*=" da11"], [class^=da11], [class*=" da12"], [class^=da12], .da-all {
  display: block;
  float: left;
  margin-right: -99.9%;
}

/* Desktop A clearing ----- */
.da2 + [class*=" da2"], .da2 + [class^=da2], [class*=-da2] + [class*=" da2"], [class*=-da2] + [class^=da2], .da3 + [class*=" da3"], .da3 + [class^=da3], [class*=-da3] + [class*=" da3"], [class*=-da3] + [class^=da3], .da3 + [class*=" da2"], .da3 + [class^=da2], [class*=-da3] + [class*=" da2"], [class*=-da3] + [class^=da2], .da4 + [class*=" da4"], .da4 + [class^=da4], [class*=-da4] + [class*=" da4"], [class*=-da4] + [class^=da4], .da4 + [class*=" da3"], .da4 + [class^=da3], [class*=-da4] + [class*=" da3"], [class*=-da4] + [class^=da3], .da4 + [class*=" da2"], .da4 + [class^=da2], [class*=-da4] + [class*=" da2"], [class*=-da4] + [class^=da2], .da5 + [class*=" da5"], .da5 + [class^=da5], [class*=-da5] + [class*=" da5"], [class*=-da5] + [class^=da5], .da5 + [class*=" da4"], .da5 + [class^=da4], [class*=-da5] + [class*=" da4"], [class*=-da5] + [class^=da4], .da5 + [class*=" da3"], .da5 + [class^=da3], [class*=-da5] + [class*=" da3"], [class*=-da5] + [class^=da3], .da5 + [class*=" da2"], .da5 + [class^=da2], [class*=-da5] + [class*=" da2"], [class*=-da5] + [class^=da2], .da6 + [class*=" da6"], .da6 + [class^=da6], [class*=-da6] + [class*=" da6"], [class*=-da6] + [class^=da6], .da6 + [class*=" da5"], .da6 + [class^=da5], [class*=-da6] + [class*=" da5"], [class*=-da6] + [class^=da5], .da6 + [class*=" da4"], .da6 + [class^=da4], [class*=-da6] + [class*=" da4"], [class*=-da6] + [class^=da4], .da6 + [class*=" da3"], .da6 + [class^=da3], [class*=-da6] + [class*=" da3"], [class*=-da6] + [class^=da3], .da6 + [class*=" da2"], .da6 + [class^=da2], [class*=-da6] + [class*=" da2"], [class*=-da6] + [class^=da2], .da7 + [class*=" da7"], .da7 + [class^=da7], [class*=-da7] + [class*=" da7"], [class*=-da7] + [class^=da7], .da7 + [class*=" da6"], .da7 + [class^=da6], [class*=-da7] + [class*=" da6"], [class*=-da7] + [class^=da6], .da7 + [class*=" da5"], .da7 + [class^=da5], [class*=-da7] + [class*=" da5"], [class*=-da7] + [class^=da5], .da7 + [class*=" da4"], .da7 + [class^=da4], [class*=-da7] + [class*=" da4"], [class*=-da7] + [class^=da4], .da7 + [class*=" da3"], .da7 + [class^=da3], [class*=-da7] + [class*=" da3"], [class*=-da7] + [class^=da3], .da7 + [class*=" da2"], .da7 + [class^=da2], [class*=-da7] + [class*=" da2"], [class*=-da7] + [class^=da2], .da8 + [class*=" da8"], .da8 + [class^=da8], [class*=-da8] + [class*=" da8"], [class*=-da8] + [class^=da8], .da8 + [class*=" da7"], .da8 + [class^=da7], [class*=-da8] + [class*=" da7"], [class*=-da8] + [class^=da7], .da8 + [class*=" da6"], .da8 + [class^=da6], [class*=-da8] + [class*=" da6"], [class*=-da8] + [class^=da6], .da8 + [class*=" da5"], .da8 + [class^=da5], [class*=-da8] + [class*=" da5"], [class*=-da8] + [class^=da5], .da8 + [class*=" da4"], .da8 + [class^=da4], [class*=-da8] + [class*=" da4"], [class*=-da8] + [class^=da4], .da8 + [class*=" da3"], .da8 + [class^=da3], [class*=-da8] + [class*=" da3"], [class*=-da8] + [class^=da3], .da8 + [class*=" da2"], .da8 + [class^=da2], [class*=-da8] + [class*=" da2"], [class*=-da8] + [class^=da2], .da9 + [class*=" da9"], .da9 + [class^=da9], [class*=-da9] + [class*=" da9"], [class*=-da9] + [class^=da9], .da9 + [class*=" da8"], .da9 + [class^=da8], [class*=-da9] + [class*=" da8"], [class*=-da9] + [class^=da8], .da9 + [class*=" da7"], .da9 + [class^=da7], [class*=-da9] + [class*=" da7"], [class*=-da9] + [class^=da7], .da9 + [class*=" da6"], .da9 + [class^=da6], [class*=-da9] + [class*=" da6"], [class*=-da9] + [class^=da6], .da9 + [class*=" da5"], .da9 + [class^=da5], [class*=-da9] + [class*=" da5"], [class*=-da9] + [class^=da5], .da9 + [class*=" da4"], .da9 + [class^=da4], [class*=-da9] + [class*=" da4"], [class*=-da9] + [class^=da4], .da9 + [class*=" da3"], .da9 + [class^=da3], [class*=-da9] + [class*=" da3"], [class*=-da9] + [class^=da3], .da9 + [class*=" da2"], .da9 + [class^=da2], [class*=-da9] + [class*=" da2"], [class*=-da9] + [class^=da2], .da10 + [class*=" da10"], .da10 + [class^=da10], [class*=-da10] + [class*=" da10"], [class*=-da10] + [class^=da10], .da10 + [class*=" da9"], .da10 + [class^=da9], [class*=-da10] + [class*=" da9"], [class*=-da10] + [class^=da9], .da10 + [class*=" da8"], .da10 + [class^=da8], [class*=-da10] + [class*=" da8"], [class*=-da10] + [class^=da8], .da10 + [class*=" da7"], .da10 + [class^=da7], [class*=-da10] + [class*=" da7"], [class*=-da10] + [class^=da7], .da10 + [class*=" da6"], .da10 + [class^=da6], [class*=-da10] + [class*=" da6"], [class*=-da10] + [class^=da6], .da10 + [class*=" da5"], .da10 + [class^=da5], [class*=-da10] + [class*=" da5"], [class*=-da10] + [class^=da5], .da10 + [class*=" da4"], .da10 + [class^=da4], [class*=-da10] + [class*=" da4"], [class*=-da10] + [class^=da4], .da10 + [class*=" da3"], .da10 + [class^=da3], [class*=-da10] + [class*=" da3"], [class*=-da10] + [class^=da3], .da10 + [class*=" da2"], .da10 + [class^=da2], [class*=-da10] + [class*=" da2"], [class*=-da10] + [class^=da2], .da11 + [class*=" da11"], .da11 + [class^=da11], [class*=-da11] + [class*=" da11"], [class*=-da11] + [class^=da11], .da11 + [class*=" da10"], .da11 + [class^=da10], [class*=-da11] + [class*=" da10"], [class*=-da11] + [class^=da10], .da11 + [class*=" da9"], .da11 + [class^=da9], [class*=-da11] + [class*=" da9"], [class*=-da11] + [class^=da9], .da11 + [class*=" da8"], .da11 + [class^=da8], [class*=-da11] + [class*=" da8"], [class*=-da11] + [class^=da8], .da11 + [class*=" da7"], .da11 + [class^=da7], [class*=-da11] + [class*=" da7"], [class*=-da11] + [class^=da7], .da11 + [class*=" da6"], .da11 + [class^=da6], [class*=-da11] + [class*=" da6"], [class*=-da11] + [class^=da6], .da11 + [class*=" da5"], .da11 + [class^=da5], [class*=-da11] + [class*=" da5"], [class*=-da11] + [class^=da5], .da11 + [class*=" da4"], .da11 + [class^=da4], [class*=-da11] + [class*=" da4"], [class*=-da11] + [class^=da4], .da11 + [class*=" da3"], .da11 + [class^=da3], [class*=-da11] + [class*=" da3"], [class*=-da11] + [class^=da3], .da11 + [class*=" da2"], .da11 + [class^=da2], [class*=-da11] + [class*=" da2"], [class*=-da11] + [class^=da2], .da12 + [class*=" da12"], .da12 + [class^=da12], [class*=-da12] + [class*=" da12"], [class*=-da12] + [class^=da12], .da12 + [class*=" da11"], .da12 + [class^=da11], [class*=-da12] + [class*=" da11"], [class*=-da12] + [class^=da11], .da12 + [class*=" da10"], .da12 + [class^=da10], [class*=-da12] + [class*=" da10"], [class*=-da12] + [class^=da10], .da12 + [class*=" da9"], .da12 + [class^=da9], [class*=-da12] + [class*=" da9"], [class*=-da12] + [class^=da9], .da12 + [class*=" da8"], .da12 + [class^=da8], [class*=-da12] + [class*=" da8"], [class*=-da12] + [class^=da8], .da12 + [class*=" da7"], .da12 + [class^=da7], [class*=-da12] + [class*=" da7"], [class*=-da12] + [class^=da7], .da12 + [class*=" da6"], .da12 + [class^=da6], [class*=-da12] + [class*=" da6"], [class*=-da12] + [class^=da6], .da12 + [class*=" da5"], .da12 + [class^=da5], [class*=-da12] + [class*=" da5"], [class*=-da12] + [class^=da5], .da12 + [class*=" da4"], .da12 + [class^=da4], [class*=-da12] + [class*=" da4"], [class*=-da12] + [class^=da4], .da12 + [class*=" da3"], .da12 + [class^=da3], [class*=-da12] + [class*=" da3"], [class*=-da12] + [class^=da3], .da12 + [class*=" da2"], .da12 + [class^=da2], [class*=-da12] + [class*=" da2"], [class*=-da12] + [class^=da2], .da-clear {
  clear: left;
}

.da-overlap[class*=overlap] {
  clear: none;
}

/* Desktop A hiding ----- */
.da-hide {
  display: none !important;
}

.da-show {
  display: block !important;
}

#gridscreenwidthwrap {
  display: block !important;
}

/*==========================================================================

  3rd party CSS
  - any plug in css can live here

==========================================================================*/
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 502;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 503;
  position: fixed;
  outline: none !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  height: 100%;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 505;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer !important;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 504;
}

.mfp-preloader a {
  color: #cccccc;
}

.mfp-preloader a:hover {
  color: white;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  padding: 0;
  z-index: 506;
}

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
}

.mfp-arrow {
  position: absolute;
  top: 0;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: solid transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  opacity: 0.8;
  border-top-width: 12px;
  border-bottom-width: 12px;
  top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 20px;
  border-bottom-width: 20px;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 12px solid black;
  left: 5px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  border-right: 20px solid white;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 12px solid black;
  left: 3px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 20px solid white;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.mfp-figure {
  line-height: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-break: break-word;
  padding-right: 36px;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
    * Remove all paddings around the image on small screen
    */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  /* The shadow behind the image */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
}
@media all and (max-width: 800px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/* stacktable.js */
.stacktable {
  display: none;
}

@media screen and (max-width: 599px) {
  .stacktable {
    display: table;
  }
  .stacktable tbody {
    width: 100%;
  }
  .st-head-row {
    background-color: #f3f3f3;
    color: #000;
    font-size: 1.1em;
  }
  .st-key {
    text-align: right;
  }
  .st-key:after {
    content: ":";
  }
  .st-head-row-main {
    background-color: #ededed;
  }
}
/*
Media element player
https://github.com/johndyer/mediaelement/
*/
.mejs-container {
  position: relative;
  background: #000;
  font-family: Helvetica, Arial;
  text-align: left;
  vertical-align: top;
  text-indent: 0;
}

.me-plugin {
  position: absolute;
}

.mejs-embed,
.mejs-embed body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #000;
  overflow: hidden;
}

.mejs-fullscreen {
  /* set it to not show scroll bars so 100% will work */
  overflow: hidden !important;
}

.mejs-container-fullscreen {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1000;
}

.mejs-container-fullscreen .mejs-mediaelement,
.mejs-container-fullscreen video {
  width: 100%;
  height: 100%;
}

.mejs-clear {
  clear: both;
}

/* Start: LAYERS */
.mejs-background {
  position: absolute;
  top: 0;
  left: 0;
}

.mejs-mediaelement {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mejs-poster {
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

:root .mejs-poster img {
  display: none;
}

.mejs-poster img {
  border: 0;
  padding: 0;
  border: 0;
}

.mejs-overlay {
  position: absolute;
  top: 0;
  left: 0;
}

.mejs-overlay-play {
  cursor: pointer;
}

.mejs-overlay-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  background: url("img/bigplay.svg") no-repeat;
}

.no-svg .mejs-overlay-button {
  background-image: url("img/bigplay.png");
}

.mejs-overlay:hover .mejs-overlay-button {
  background-position: 0 -100px;
}

.mejs-overlay-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  background: #333;
  background: url("img/background.png");
  background: rgba(0, 0, 0, 0.9);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(50, 50, 50, 0.9)), to(rgba(0, 0, 0, 0.9)));
  background: -webkit-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
  background: -moz-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
  background: -o-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
  background: -ms-linear-gradient(top, rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
  background: linear-gradient(rgba(50, 50, 50, 0.9), rgba(0, 0, 0, 0.9));
}

.mejs-overlay-loading span {
  display: block;
  width: 80px;
  height: 80px;
  background: transparent url("img/loading.gif") 50% 50% no-repeat;
}

/* End: LAYERS */
/* Start: CONTROL BAR */
.mejs-container .mejs-controls {
  position: absolute;
  list-style-type: none;
  margin: 0;
  padding: 0;
  bottom: 0;
  left: 0;
  background: url("img/background.png");
  background: rgba(0, 0, 0, 0.7);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(50, 50, 50, 0.7)), to(rgba(0, 0, 0, 0.7)));
  background: -webkit-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -moz-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -o-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -ms-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: linear-gradient(rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  height: 30px;
  width: 100%;
}

.mejs-container .mejs-controls div {
  list-style-type: none;
  background-image: none;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 26px;
  height: 26px;
  font-size: 11px;
  line-height: 11px;
  font-family: Helvetica, Arial;
  border: 0;
}

.mejs-controls .mejs-button button {
  cursor: pointer;
  display: block;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
  margin: 7px 5px;
  padding: 0;
  position: absolute;
  height: 16px;
  width: 16px;
  border: 0;
  background: transparent url("img/controls.svg") no-repeat;
}

/* :focus for accessibility */
.mejs-controls .mejs-button button:focus {
  outline: solid 1px yellow;
}

/* End: CONTROL BAR */
/* Start: Time (Current / Duration) */
.mejs-container .mejs-controls .mejs-time {
  color: #fff;
  display: block;
  height: 17px;
  width: auto;
  padding: 8px 3px 0 3px;
  overflow: hidden;
  text-align: center;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.mejs-container .mejs-controls .mejs-time span {
  color: #fff;
  font-size: 11px;
  line-height: 12px;
  display: block;
  float: left;
  margin: 1px 2px 0 0;
  width: auto;
}

/* End: Time (Current / Duration) */
/* Start: Play/Pause/Stop */
.mejs-controls .mejs-play button {
  background-position: 0 0;
}

.mejs-controls .mejs-pause button {
  background-position: 0 -16px;
}

.mejs-controls .mejs-stop button {
  background-position: -112px 0;
}

/* Start: Play/Pause/Stop */
/* Start: Progress Bar */
.mejs-controls div.mejs-time-rail {
  width: 200px;
  padding-top: 5px;
}

.mejs-controls .mejs-time-rail span {
  display: block;
  position: absolute;
  width: 180px;
  height: 10px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
}

.mejs-controls .mejs-time-rail .mejs-time-total {
  margin: 5px;
  background: #333;
  background: rgba(50, 50, 50, 0.8);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30, 30, 30, 0.8)), to(rgba(60, 60, 60, 0.8)));
  background: -webkit-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -moz-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -o-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -ms-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: linear-gradient(rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
}

.mejs-controls .mejs-time-rail .mejs-time-buffering {
  width: 100%;
  background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-background-size: 15px 15px;
  -moz-background-size: 15px 15px;
  -o-background-size: 15px 15px;
  background-size: 15px 15px;
  -webkit-animation: buffering-stripes 2s linear infinite;
  -moz-animation: buffering-stripes 2s linear infinite;
  -ms-animation: buffering-stripes 2s linear infinite;
  -o-animation: buffering-stripes 2s linear infinite;
  animation: buffering-stripes 2s linear infinite;
}

@-webkit-keyframes buffering-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 30px 0;
  }
}
@-moz-keyframes buffering-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 30px 0;
  }
}
@-ms-keyframes buffering-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 30px 0;
  }
}
@-o-keyframes buffering-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 30px 0;
  }
}
@keyframes buffering-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 30px 0;
  }
}
.mejs-controls .mejs-time-rail .mejs-time-loaded {
  background: #3caac8;
  background: rgba(60, 170, 200, 0.8);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(44, 124, 145, 0.8)), to(rgba(78, 183, 212, 0.8)));
  background: -webkit-linear-gradient(top, rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
  background: -moz-linear-gradient(top, rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
  background: -o-linear-gradient(top, rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
  background: -ms-linear-gradient(top, rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
  background: linear-gradient(rgba(44, 124, 145, 0.8), rgba(78, 183, 212, 0.8));
  width: 0;
}

.mejs-controls .mejs-time-rail .mejs-time-current {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255, 255, 255, 0.9)), to(rgba(200, 200, 200, 0.8)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  width: 0;
}

.mejs-controls .mejs-time-rail .mejs-time-handle {
  display: none;
  position: absolute;
  margin: 0;
  width: 10px;
  background: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
  border: solid 2px #333;
  top: -2px;
  text-align: center;
}

.mejs-controls .mejs-time-rail .mejs-time-float {
  position: absolute;
  display: none;
  background: #eee;
  width: 36px;
  height: 17px;
  border: solid 1px #333;
  top: -26px;
  margin-left: -18px;
  text-align: center;
  color: #111;
}

.mejs-controls .mejs-time-rail .mejs-time-float-current {
  margin: 2px;
  width: 30px;
  display: block;
  text-align: center;
  left: 0;
}

.mejs-controls .mejs-time-rail .mejs-time-float-corner {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  line-height: 0;
  border: solid 5px #eee;
  border-color: #eee transparent transparent transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  top: 15px;
  left: 13px;
}

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float {
  width: 48px;
}

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-current {
  width: 44px;
}

.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-corner {
  left: 18px;
}

/*
.mejs-controls .mejs-time-rail:hover .mejs-time-handle {
	visibility:visible;
}
*/
/* End: Progress Bar */
/* Start: Fullscreen */
.mejs-controls .mejs-fullscreen-button button {
  background-position: -32px 0;
}

.mejs-controls .mejs-unfullscreen button {
  background-position: -32px -16px;
}

/* End: Fullscreen */
/* Start: Mute/Volume */
.mejs-controls .mejs-mute button {
  background-position: -16px -16px;
}

.mejs-controls .mejs-unmute button {
  background-position: -16px 0;
}

.mejs-controls .mejs-volume-button {
  position: relative;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider {
  display: none;
  height: 115px;
  width: 25px;
  background: url("img/background.png");
  background: rgba(50, 50, 50, 0.7);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  top: -115px;
  left: 0;
  z-index: 1;
  position: absolute;
  margin: 0;
}

.mejs-controls .mejs-volume-button:hover {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}

/*
.mejs-controls .mejs-volume-button:hover .mejs-volume-slider {
	display: block;
}
*/
.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total {
  position: absolute;
  left: 11px;
  top: 8px;
  width: 2px;
  height: 100px;
  background: #ddd;
  background: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current {
  position: absolute;
  left: 11px;
  top: 8px;
  width: 2px;
  height: 100px;
  background: #ddd;
  background: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-handle {
  position: absolute;
  left: 4px;
  top: -3px;
  width: 16px;
  height: 6px;
  background: #ddd;
  background: rgba(255, 255, 255, 0.9);
  cursor: N-resize;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  margin: 0;
}

/* horizontal version */
.mejs-controls div.mejs-horizontal-volume-slider {
  height: 26px;
  width: 60px;
  position: relative;
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
  position: absolute;
  left: 0;
  top: 11px;
  width: 50px;
  height: 8px;
  margin: 0;
  padding: 0;
  font-size: 1px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background: #333;
  background: rgba(50, 50, 50, 0.8);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30, 30, 30, 0.8)), to(rgba(60, 60, 60, 0.8)));
  background: -webkit-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -moz-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -o-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: -ms-linear-gradient(top, rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
  background: linear-gradient(rgba(30, 30, 30, 0.8), rgba(60, 60, 60, 0.8));
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
  position: absolute;
  left: 0;
  top: 11px;
  width: 50px;
  height: 8px;
  margin: 0;
  padding: 0;
  font-size: 1px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(255, 255, 255, 0.9)), to(rgba(200, 200, 200, 0.8)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.8));
}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle {
  display: none;
}

/* End: Mute/Volume */
/* Start: Track (Captions and Chapters) */
.mejs-controls .mejs-captions-button {
  position: relative;
}

.mejs-controls .mejs-captions-button button {
  background-position: -48px 0;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector {
  visibility: hidden;
  position: absolute;
  bottom: 26px;
  right: -10px;
  width: 130px;
  height: 100px;
  background: url("img/background.png");
  background: rgba(50, 50, 50, 0.7);
  border: solid 1px transparent;
  padding: 10px;
  overflow: hidden;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/*
.mejs-controls .mejs-captions-button:hover  .mejs-captions-selector {
	visibility: visible;
}
*/
.mejs-controls .mejs-captions-button .mejs-captions-selector ul {
  margin: 0;
  padding: 0;
  display: block;
  list-style-type: none !important;
  overflow: hidden;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li {
  margin: 0 0 6px 0;
  padding: 0;
  list-style-type: none !important;
  display: block;
  color: #fff;
  overflow: hidden;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li input {
  clear: both;
  float: left;
  margin: 3px 3px 0 5px;
}

.mejs-controls .mejs-captions-button .mejs-captions-selector ul li label {
  width: 100px;
  float: left;
  padding: 4px 0 0 0;
  line-height: 15px;
  font-family: helvetica, arial;
  font-size: 10px;
}

.mejs-controls .mejs-captions-button .mejs-captions-translations {
  font-size: 10px;
  margin: 0 0 5px 0;
}

.mejs-chapters {
  position: absolute;
  top: 0;
  left: 0;
  -xborder-right: solid 1px #fff;
  width: 10000px;
  z-index: 1;
}

.mejs-chapters .mejs-chapter {
  position: absolute;
  float: left;
  background: #222;
  background: rgba(0, 0, 0, 0.7);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(50, 50, 50, 0.7)), to(rgba(0, 0, 0, 0.7)));
  background: -webkit-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -moz-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -o-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: -ms-linear-gradient(top, rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  background: linear-gradient(rgba(50, 50, 50, 0.7), rgba(0, 0, 0, 0.7));
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr=#323232,endColorstr=#000000);
  overflow: hidden;
  border: 0;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block {
  font-size: 11px;
  color: #fff;
  padding: 5px;
  display: block;
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  cursor: pointer;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block-last {
  border-right: none;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block:hover {
  background: #666;
  background: rgba(102, 102, 102, 0.7);
  background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(102, 102, 102, 0.7)), to(rgba(50, 50, 50, 0.6)));
  background: -webkit-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  background: -moz-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  background: -o-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  background: -ms-linear-gradient(top, rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  background: linear-gradient(rgba(102, 102, 102, 0.7), rgba(50, 50, 50, 0.6));
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr=#666666,endColorstr=#323232);
}

.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-title {
  font-size: 12px;
  font-weight: bold;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 0 3px 0;
  line-height: 12px;
}

.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-timespan {
  font-size: 12px;
  line-height: 12px;
  margin: 3px 0 4px 0;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mejs-captions-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  color: #fff;
}

.mejs-captions-layer a {
  color: #fff;
  text-decoration: underline;
}

.mejs-captions-layer[lang=ar] {
  font-size: 20px;
  font-weight: normal;
}

.mejs-captions-position {
  position: absolute;
  width: 100%;
  bottom: 15px;
  left: 0;
}

.mejs-captions-position-hover {
  bottom: 45px;
}

.mejs-captions-text {
  padding: 3px 5px;
  background: url("img/background.png");
  background: rgba(20, 20, 20, 0.8);
}

/* End: Track (Captions and Chapters) */
/* Start: Error */
.me-cannotplay a {
  color: #fff;
  font-weight: bold;
}

.me-cannotplay span {
  padding: 15px;
  display: block;
}

/* End: Error */
/* Start: Loop */
.mejs-controls .mejs-loop-off button {
  background-position: -64px -16px;
}

.mejs-controls .mejs-loop-on button {
  background-position: -64px 0;
}

/* End: Loop */
/* Start: backlight */
.mejs-controls .mejs-backlight-off button {
  background-position: -80px -16px;
}

.mejs-controls .mejs-backlight-on button {
  background-position: -80px 0;
}

/* End: backlight */
/* Start: Picture Controls */
.mejs-controls .mejs-picturecontrols-button {
  background-position: -96px 0;
}

/* End: Picture Controls */
/* context menu */
.mejs-contextmenu {
  position: absolute;
  width: 150px;
  padding: 10px;
  border-radius: 4px;
  top: 0;
  left: 0;
  background: #fff;
  border: solid 1px #999;
  z-index: 1001; /* make sure it shows on fullscreen */
}

.mejs-contextmenu .mejs-contextmenu-separator {
  height: 1px;
  font-size: 0;
  margin: 5px 6px;
  background: #333;
}

.mejs-contextmenu .mejs-contextmenu-item {
  font-family: Helvetica, Arial;
  font-size: 12px;
  padding: 4px 6px;
  cursor: pointer;
  color: #333;
}

.mejs-contextmenu .mejs-contextmenu-item:hover {
  background: #2c7c91;
  color: #fff;
}

/* Start: Source Chooser */
.mejs-controls .mejs-sourcechooser-button {
  position: relative;
}

.mejs-controls .mejs-sourcechooser-button button {
  background-position: -128px 0;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector {
  visibility: hidden;
  position: absolute;
  bottom: 26px;
  right: -10px;
  width: 130px;
  height: 100px;
  background: url("img/background.png");
  background: rgba(50, 50, 50, 0.7);
  border: solid 1px transparent;
  padding: 10px;
  overflow: hidden;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul {
  margin: 0;
  padding: 0;
  display: block;
  list-style-type: none !important;
  overflow: hidden;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li {
  margin: 0 0 6px 0;
  padding: 0;
  list-style-type: none !important;
  display: block;
  color: #fff;
  overflow: hidden;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li input {
  clear: both;
  float: left;
  margin: 3px 3px 0 5px;
}

.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li label {
  width: 100px;
  float: left;
  padding: 4px 0 0 0;
  line-height: 15px;
  font-family: helvetica, arial;
  font-size: 10px;
}

/* End: Source Chooser */
/* Start: Postroll */
.mejs-postroll-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("img/background.png");
  background: rgba(50, 50, 50, 0.7);
  z-index: 1000;
  overflow: hidden;
}

.mejs-postroll-layer-content {
  width: 100%;
  height: 100%;
}

.mejs-postroll-close {
  position: absolute;
  right: 0;
  top: 0;
  background: url("img/background.png");
  background: rgba(50, 50, 50, 0.7);
  color: #fff;
  padding: 4px;
  z-index: 100;
  cursor: pointer;
}

/* End: Postroll */
/*ZURB Joyride plugin*/
/* Artfully masterminded by ZURB
 * https://github.com/zurb/joyride/
*/
/* Artfully masterminded by ZURB */
body {
  position: relative;
}

#joyRideTipContent {
  display: none;
}

.joyRideTipContent {
  display: none;
}

/* Default styles for the container */
.joyride-tip-guide {
  position: absolute;
  background: #fcdad8;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  display: none;
  width: 400px;
  z-index: 9999;
  top: 0; /* keeps the page from scrolling when calculating position */
  left: 0;
  font-family: "HelveticaNeue", "Helvetica Neue", "Helvetica", Helvetica, Arial, Lucida, sans-serif;
  font-weight: normal;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

.joyride-content-wrapper {
  padding: 1em;
}

/* Mobile */
@media only screen and (max-width: 767px) {
  .joyride-tip-guide {
    width: 95% !important;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    left: 2.5% !important;
  }
  .joyride-tip-guide-wrapper {
    width: 100%;
  }
}
/* Add a little css triangle pip, older browser just miss out on the fanciness of it */
.joyride-tip-guide span.joyride-nub {
  display: block;
  position: absolute;
  left: 22px;
  width: 0;
  height: 0;
  border: solid 14px;
  border: solid 14px;
}

.joyride-tip-guide span.joyride-nub.top {
  /*
   IE7/IE8 Don't support rgba so we set the fallback
   border color here. However, IE7/IE8 are also buggy
   in that the fallback color doesn't work for
   border-bottom-color so here we set the border-color
   and override the top,left,right colors below.
   */
  border-color: #fcdad8;
  border-top-color: transparent !important;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  top: -28px;
  bottom: none;
}

.joyride-tip-guide span.joyride-nub.bottom {
  /*
   IE7/IE8 Don't support rgba so we set the fallback
   border color here. However, IE7/IE8 are also buggy
   in that the fallback color doesn't work for
   border-top-color so here we set the border-color
   and override the bottom,left,right colors below.
   */
  border-color: #fcdad8;
  border-bottom-color: transparent !important;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  bottom: -28px;
  bottom: none;
}

.joyride-tip-guide span.joyride-nub.right {
  border-color: #fcdad8;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  top: 22px;
  bottom: none;
  left: auto;
  right: -28px;
}

.joyride-tip-guide span.joyride-nub.left {
  border-color: #fcdad8;
  border-top-color: transparent !important;
  border-left-color: transparent !important;
  border-bottom-color: transparent !important;
  top: 22px;
  left: -28px;
  right: auto;
  bottom: none;
}

.joyride-tip-guide span.joyride-nub.top-right {
  border-color: #fcdad8;
  border-top-color: transparent !important;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  top: -28px;
  bottom: none;
  left: auto;
  right: 28px;
}

/* Typography */
.joyride-tip-guide h1,
.joyride-tip-guide h2,
.joyride-tip-guide h3,
.joyride-tip-guide h4,
.joyride-tip-guide h5,
.joyride-tip-guide h6 {
  line-height: 1.25;
  font-weight: bold;
}

.joyride-tip-guide h1 {
  font-size: 30px;
}

.joyride-tip-guide h2 {
  font-size: 26px;
}

.joyride-tip-guide h3 {
  font-size: 22px;
}

.joyride-tip-guide h4 {
  font-size: 18px;
}

.joyride-tip-guide h5 {
  font-size: 16px;
}

.joyride-tip-guide h6 {
  font-size: 14px;
}

.joyride-tip-guide p {
  margin: 0 0 18px 0;
  font-size: 14px;
  line-height: 18px;
}

.joyride-tip-guide a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  border-bottom: dotted 1px rgba(255, 255, 255, 0.6);
}

.joyride-tip-guide a:hover {
  color: rgba(255, 255, 255, 0.8);
  border-bottom: none;
}

/* Button Style */
.joyride-tip-guide .joyride-next-tip {
  display: inline-block;
  -webkit-border-radius: 0.25em;
  border-radius: 0.25em;
  background-clip: padding-box; /* stops bg color from leaking outside the border: */
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
  padding: 0.3em 1.3em;
  text-decoration: none;
  text-align: center;
  background: #ed1941 url("img/bg-gradient-red.png") repeat-x top left;
  /* fallback/image non-cover color */
  background-color: rgb(162.5766129032, 12.7233870968, 40.9975806452);
  /* Firefox 3.6+ */
  background-image: -moz-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  /* Safari 4+, Chrome 1+ */
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ed1941), to(rgb(162.5766129032, 12.7233870968, 40.9975806452)));
  /* Safari 5.1+, Chrome 10+ */
  background-image: -webkit-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  /* Opera 11.10+ */
  background-image: -o-linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  background-image: linear-gradient(#ed1941, rgb(162.5766129032, 12.7233870968, 40.9975806452));
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.6);
  color: #fff;
  border: none;
}

.joyride-next-tip:focus {
  outline: none;
}

/*
 *
.joyride-tip-guide .joyride-next-tip {
  width: auto;
  padding: 6px 18px 4px;
  font-size: 13px;
  text-decoration: none;
  color: rgb(255,255,255);
  border: solid 1px rgb(0,60,180);
  background: rgb(0,99,255);
  background: -moz-linear-gradient(top, rgb(0,99,255) 0%, rgb(0,85,214) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(0,99,255)), color-stop(100%,rgb(0,85,214)));
  background: -webkit-linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
  background: -o-linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
  background: -ms-linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0063ff', endColorstr='#0055d6',GradientType=0 );
  background: linear-gradient(top, rgb(0,99,255) 0%,rgb(0,85,214) 100%);
  text-shadow: 0 -1px 0 rgba(0,0,0,0.5);
  -webkit-border-radius: 2px;
     -moz-border-radius: 2px;
          border-radius: 2px;
  -webkit-box-shadow: 0px 1px 0px rgba(255,255,255,0.3) inset;
     -moz-box-shadow: 0px 1px 0px rgba(255,255,255,0.3) inset;
          box-shadow: 0px 1px 0px rgba(255,255,255,0.3) inset;
}*/
/*
.joyride-next-tip:hover {
  color: rgb(255,255,255) !important;
  border: solid 1px rgb(0,60,180) !important;
  background: rgb(43,128,255);
  background: -moz-linear-gradient(top, rgb(43,128,255) 0%, rgb(29,102,211) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(43,128,255)), color-stop(100%,rgb(29,102,211)));
  background: -webkit-linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
  background: -o-linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
  background: -ms-linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2b80ff', endColorstr='#1d66d3',GradientType=0 );
  background: linear-gradient(top, rgb(43,128,255) 0%,rgb(29,102,211) 100%);
}
*/
.joyride-timer-indicator-wrap {
  width: 50px;
  height: 3px;
  border: solid 1px rgba(255, 255, 255, 0.1);
  position: absolute;
  right: 17px;
  bottom: 16px;
}

.joyride-timer-indicator {
  display: block;
  width: 0;
  height: inherit;
  background: rgba(255, 255, 255, 0.25);
}

.joyride-close-tip {
  position: absolute;
  right: 10px;
  top: 10px;
  color: #ed1941 !important;
  text-decoration: none;
  font-family: Verdana, sans-serif;
  font-size: 10px;
  font-weight: bold;
  padding: 8px;
  border-bottom: none !important;
}

.joyride-close-tip:hover {
  color: rgba(255, 255, 255, 0.9) !important;
}

.joyride-modal-bg {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75);
  opacity: 0.75;
  z-index: 100;
  display: none;
  top: 0;
  left: 0;
  cursor: pointer;
}

.joyride-expose-wrapper {
  background-color: #ffffff;
  position: absolute;
  z-index: 102;
  -moz-box-shadow: 0px 0px 30px #ffffff;
  -webkit-box-shadow: 0px 0px 30px #ffffff;
  box-shadow: 0px 0px 30px #ffffff;
}

.joyride-expose-cover {
  background: transparent;
  position: absolute;
  z-index: 10000;
  top: 0px;
  left: 0px;
}

/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */
/** RESET AND LAYOUT
===================================*/
.bx-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0;
  *zoom: 1;
}

.bx-wrapper img {
  max-width: 100%;
  display: block;
}

/** THEME
===================================*/
.bx-wrapper .bx-viewport {
  background: #fff;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%;
}

/* LOADER */
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url("/assets/css/img/loading.gif") center center no-repeat #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}

/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: 0.85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-wrapper .bx-prev {
  left: 10px;
  background: url(images/controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
  right: 10px;
  background: url(images/controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
  background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
  background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url(images/controls.png) -86px -11px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
  background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url(images/controls.png) -86px -44px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
  background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}

/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  /*	background: #6669;*/
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}

.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: 0.85em;
  padding: 10px;
}

/* 
* SHAME CSS - http://csswizardry.com/2013/04/shame-css/
* -------------
* 
* The idea of shame.css is that you have a stylesheet reserved just for
* hacky code and quick fixes - but you KNOW it'd bad and needs to be fixed later.
*
* RULES:
* 1. Document all hacks fully (where does it relate to?, why is it needed?)
* 2. Clean it up later
*/
/* =======================
   GENERAL
   ======================= */
p.indent {
  padding: 5px;
  margin: 0;
  background-color: #ffffff;
}

p.indentRED {
  padding-left: 35px;
  margin-bottom: 10px;
  background-color: #f9e6e8;
}

ul.indent {
  padding-left: 20px;
}

p.note {
  font-style: italic;
  color: #636466;
  font-size: 0.7em;
}

.members-callout {
  background-color: #f9e6e8;
  padding: 1em;
  line-height: 1.3em;
  font-size: 1.15em;
  margin-bottom: 10px;
}

/* BULLET LISTS ACROSS ALL PAGES */
ul.swlist li {
  margin-left: 2em;
}

ol.swnolist li {
  padding-left: 5px;
  margin-left: 60px;
}

/* CHERRY IMAGES */
div.cherry {
  background-image: url("img/bg-large-cherry.png");
  width: 100px;
  height: 125px;
  float: right;
  margin-top: -80px;
}

div.cherry-two {
  background-image: url("img/bg-large-cherry.png");
  width: 100px;
  height: 125px;
  float: right;
  margin-top: -126px;
}

/* KEY POINTS FOOTER */
div.keypoints-cherry {
  background-image: url("img/bg-large-cherry.png");
  width: 100px;
  height: 125px;
  float: right;
  margin-top: -10px;
  position: relative;
}

div.keypoints-boards {
  background-image: url("img/bg-boards.png");
  width: 177px;
  height: 125px;
  float: right;
  margin-top: -10px;
  position: relative;
}

div.keypoints-footprints {
  background-image: url("img/bg-keypoints-footprints.png");
  width: 100px;
  height: 125px;
  float: right;
  margin-top: -10px;
  position: relative;
}

div.keypoints-flowers {
  background-image: url("img/bg-keypoints-flowers.png");
  width: 100px;
  height: 72px;
  float: right;
  margin-top: 15px;
  position: relative;
}

div.benefits-success {
  background-image: url("img/bg-benefits-success.png");
  width: 468px;
  height: 96px;
  margin-top: 10px;
  position: relative;
}

/* =======================
   PAGE 36.1 
   ======================= */
/* 2 COL LAYOUT WITH WHITE BG AND NO MIDDLE BORDER */
#css-table {
  display: table;
}

#css-table .col {
  display: table-cell;
  width: 50%;
  padding: 10px;
}

#css-table .col:nth-child(even) {
  background: #fff;
}

#css-table .col:nth-child(odd) {
  background: #fff;
}

/* 2 COL LAYOUT WITH IMAGE */
#css-table .col-fact {
  display: table-cell;
  padding: 10px;
  margin-top: 15px;
  vertical-align: middle;
}

#css-table .col-fact:nth-child(even) {
  background: #f9e6e8;
  padding: 10px;
  width: 70%;
}

#css-table .col-fact:nth-child(odd) {
  background: #f9e6e8;
  padding: 20px;
  width: 30%;
}

/* CHERRIES */
ul.cherries li {
  list-style: none;
  padding-left: 55px;
  margin: 0;
  height: 50px;
}

.cherries li {
  background-image: url("img/bg-bullet-cherry.png");
  background-repeat: no-repeat;
  background-position: 5px -6px;
  padding-top: 9px;
}

/* =======================
   PAGE 36.2 
   ======================= */
/* 2 COL LAYOUT WITH RED BG AND MIDDLE WHITE BORDER */
#css-table .col-red {
  display: table-cell;
  width: 50%;
  padding: 10px;
}

#css-table .col-red:nth-child(even) {
  background: #f9e6e8;
}

#css-table .col-red:nth-child(odd) {
  background: #f9e6e8;
  border-right: #fff 10px solid;
}

/* =======================
   PAGE 36.3 
   ======================= */
/* FOOD FACTS TABLE */
#box-table-a {
  font-family: Arial, sans-serif;
  font-size: 1em;
  margin-bottom: 10px;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

#box-table-a th {
  font-size: 1em;
  font-weight: normal;
  padding: 8px;
  border-bottom: 1px solid #fff;
  color: #444444;
}

#box-table-a td {
  padding: 8px;
  background: #f9e4e0;
  border-bottom: 1px solid #fff;
  color: #444444;
  border-top: 1px solid transparent;
  vertical-align: middle;
}

#box-table-a td.pink {
  padding: 8px;
  background: #fcf2f0;
  border-bottom: 1px solid #fff;
  color: #444444;
  border-top: 1px solid transparent;
}

/* PULLQUOTE */
div.pullquote {
  border-left: 0px solid #c70f3f;
  background-color: #f9f2f1;
  margin-bottom: 30px;
  padding: 10px 20px 10px 20px;
}

div.pullquote h3 {
  font-style: italic;
}

/* SIDEINFO */
div.sideinfo {
  border-left: 2px dotted #edb6b0;
  margin-bottom: 20px;
  padding: 0px 20px 0px 20px;
  background-image: url("img/bg-sideinfo-cherry.png");
  background-repeat: no-repeat;
  background-position: bottom right;
}

/* RED BG WITH LEFT AND RIGHT INDENT */
div.indent {
  padding: 10px 10px 2px 10px;
  margin: 10px 50px 15px 50px;
  background-color: #f9e6e8;
}

/* =======================
   PAGE 36.11
   ======================= */
div.white-indent {
  padding: 10px;
  margin: 10px 50px 15px 50px;
  background-color: #ffffff;
  line-height: 1.3em;
}

/* =======================
   PAGE 36.15
   ======================= */
/* 2 COL LAYOUT WITH RED AND WHITE BG */
#css-table .col-white {
  display: table-cell;
  width: 50%;
  padding: 10px;
}

#css-table .col-white:nth-child(even) {
  background: #fff;
}

#css-table .col-white:nth-child(odd) {
  background: #f9e6e8;
  border-right: #fff 10px solid;
}

/* BLOCKQUOTE */
/* =======================
   PAGE 36.17
   ======================= */
/* 2 COL LAYOUT WITH RED AND GREEN BG */
#css-table .col-redgreen {
  display: table-cell;
  width: 50%;
  padding: 10px;
}

#css-table .col-redgreen:nth-child(even) {
  background: #f9e6e8;
}

#css-table .col-redgreen:nth-child(odd) {
  background: #e3f2e7;
  border-right: #fff 10px solid;
}

/* =======================
   CH 39 FACTS ABOUT FOOD 
   ======================= */
/* =======================
   PAGE 39.3 / 39.4
   ======================= */
div.bite {
  background-image: url("img/bg-bite.png");
  background-repeat: no-repeat;
  width: 110px;
  height: 98px;
  float: right;
  margin-top: -80px;
}

div.keypoints-apples {
  background-image: url("img/bg-apples.png");
  width: 196px;
  height: 98px;
  float: right;
  margin-top: 30px;
  position: relative;
}

/* NUTRIENTS IN FOOD TABLE */
#box-table-b {
  font-family: Arial, sans-serif;
  font-size: 1em;
  color: #000000;
  margin-bottom: 15px;
  width: 100%;
  border-collapse: collapse;
}

#box-table-b th {
  font-size: 1em;
  font-weight: bold;
  padding: 8px;
  border-bottom: 2px solid #c70f3f;
  background-color: #fcf2f0;
  text-align: center;
}

#box-table-b th.hdr {
  border-bottom: 0px;
  border-top: 1px solid transparent;
  background-color: #fcf2f0;
}

#box-table-b td {
  padding: 8px;
  border-bottom: 1px solid #c70f3f;
  border-top: 1px solid transparent;
  text-align: center;
}

#box-table-b td.ftr {
  border-bottom: 0px;
  border-top: 1px solid transparent;
}

#box-table-b td:nth-child(odd) {
  background-color: #f9e4e0;
}

#box-table-b td:nth-child(even) {
  background-color: #fcf2f0;
}

/* =======================
   PAGE 39.6
   ======================= */
/* 2 COL LAYOUT WITH CHICKEN IMAGES */
#css-table .col-chicken {
  display: table-cell;
  padding-left: 20px;
  margin-bottom: 10px;
}

#css-table .col-chicken:nth-child(even) {
  background: #ffffff;
  padding-top: 35px;
  width: 60%;
  vertical-align: top;
}

#css-table .col-chicken:nth-child(odd) {
  background: #ffffff;
  width: 40%;
}

p.ckn {
  height: 110px;
}

/* 2 COL LAYOUT WITH RED BG */
#css-table .col-ch39red {
  display: table-cell;
  width: 50%;
  padding: 10px 10px 50px 10px;
}

#css-table .col-ch39red:nth-child(even) {
  background: #f9e6e8;
  width: 30%;
}

#css-table .col-ch39red:nth-child(odd) {
  background: #f9e6e8;
  vertical-align: top;
  width: 20%;
}

#box-table-c {
  font-family: Arial, sans-serif;
  font-size: 1em;
  color: #000000;
  background-color: #ffffff;
  margin-bottom: 15px;
  padding: 10px;
  width: 100%;
  border: 1px solid #c70f3f;
  border-collapse: collapse;
}

#box-table-c th {
  font-size: 1em;
  font-weight: bold;
  padding: 8px;
  border-bottom: 2px solid #c70f3f;
  text-align: center;
}

#box-table-c td {
  padding: 8px;
  border-bottom: 1px solid #c70f3f;
  border-top: 1px solid transparent;
  text-align: center;
}

div.apples {
  background-image: url("img/bg-apples.png");
  width: 196px;
  height: 98px;
  float: right;
  margin-top: -50px;
}

/* =======================
   PAGE 39.8
   ======================= */
/* Q & A SECTION */
.faqs-callout {
  background-color: #f9e6e8;
  padding: 10px;
  font-size: 2em;
  border-radius: 0.25em 1em 0.25em 1em;
}

.faqs-callout h2 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  color: #ed1941;
  font-size: 1em;
}

.faqs-panel {
  padding-left: 75px;
  padding-top: 10px;
  position: relative;
}

span.question {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-style: italic;
  color: #ed1941;
  font-size: 2em;
  float: left;
  margin-top: -15px;
  padding-right: 20px;
}

span.answer {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-style: italic;
  color: #ed1941;
  font-size: 4em;
  float: left;
  position: absolute;
  margin-left: -65px;
  margin-top: -16px;
}

/* =======================
   PAGE 39.10
   ======================= */
/* 2 COL LAYOUT WITH CARBOHYDRATES IMAGES */
#css-table .col-sugars {
  display: table-cell;
  margin-bottom: 20px;
}

#css-table .col-sugars:nth-child(even) {
  background: #fcf2f0;
  padding-top: 35px;
  padding-left: 20px;
  width: 80%;
  vertical-align: top;
}

#css-table .col-sugars:nth-child(odd) {
  background: #fcf2f0;
  width: 20%;
}

p.sug {
  height: 100px;
}

/* =======================
   PAGE 39.12
   ======================= */
/* 2 COL LAYOUT WITH VITAMINS AND MINERALS IMAGES */
#css-table .col-vitamins {
  display: table-cell;
  width: 100%;
  padding: 10px;
}

#css-table .col-vitamins:nth-child(even) {
  background: #fcf2f0;
  padding-top: 100px;
  width: 55%;
}

#css-table .col-vitamins:nth-child(odd) {
  background: #fcf2f0;
  vertical-align: top;
  width: 45%;
}

.col-vitamins h1 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-style: italic;
  color: #ed1941;
  font-size: 4em;
  float: left;
  margin: 0;
  padding-right: 15px;
}

.col-vitamins img {
  margin-bottom: 0;
  margin-left: 40px;
}

p.vit {
  padding-top: 20px;
}

p.vit2 {
  padding-top: 20px;
  padding-bottom: 7px;
}

/* =======================
   PAGE 39.13 / 39.14
   ======================= */
/* VITAMINS AND MINERALS TABLE */
#box-table-d {
  font-family: Arial, sans-serif;
  font-size: 1em;
  color: #000000;
  margin-bottom: 15px;
  width: 100%;
  border-collapse: collapse;
}

#box-table-d th {
  font-size: 1em;
  font-weight: bold;
  padding: 8px;
  border-bottom: 2px solid #c70f3f;
  text-align: left;
  color: #ed1941;
}

#box-table-d td {
  padding: 8px;
  border-bottom: 1px solid #c70f3f;
  border-top: 1px solid transparent;
  text-align: left;
}

#box-table-d td.none {
  border-bottom: 0px;
  border-top: 1px solid transparent;
}

#box-table-d th:nth-child(odd) {
  background-color: #f9e4e0;
}

#box-table-d th:nth-child(even) {
  background-color: #fcf2f0;
}

#box-table-d td:nth-child(odd) {
  background-color: #f9e4e0;
}

#box-table-d td:nth-child(even) {
  background-color: #fcf2f0;
}

/* ==============================================
   CHAPTER 39 - FACTSHEET DIET, WEIGHT AND CANCER 
   ============================================== */
div.sign {
  background-image: url("img/bg-sign.png");
  width: 100px;
  height: 123px;
  float: right;
  margin-top: -70px;
}

/* PULLQUOTE */
div.pullquote-two {
  border-left: 5px solid #c70f3f;
  background-color: #f9f2f1;
  margin-bottom: 30px;
  padding: 10px 20px 0px 20px;
}

div.pullquote-two h3 {
  font-style: italic;
}

/* 2 COL LAYOUT WITH WHITE AND RED BG */
#css-table .col-whiteRED {
  display: table-cell;
  width: 50%;
  padding: 10px;
  margin-bottom: 10px;
}

#css-table .col-whiteRED:nth-child(even) {
  background: #f9e6e8;
}

#css-table .col-whiteRED:nth-child(odd) {
  background: #ffffff;
  border-right: #fff 10px solid;
}

/* 2 COL LAYOUT WITH RED BG AND NO MIDDLE BORDER */
#css-table {
  display: table;
}

#css-table .colredNO {
  display: table-cell;
  width: 50%;
  padding: 10px;
}

#css-table .colredNO:nth-child(even) {
  background: #f9e6e8;
}

#css-table .colredNO:nth-child(odd) {
  background: #f9e6e8;
}

/* NUTRITION MANUAL */
.nutrition-wrapper {
  background-color: #f9e6e8;
  padding: 20px 20px 20px 100px;
  border-radius: 0.25em 1em 0.25em 1em;
  margin-bottom: 20px;
}

.nutrition-wrapper h2 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  color: #ed1941;
  font-size: 1.8em;
}

.nutrition-panel {
  margin-left: 85px;
  position: relative;
}

span.circle {
  float: left;
  position: absolute;
  margin-left: -85px;
  margin-top: 0px;
}

/* FLUID INTAKE */
div.drops {
  background-image: url("img/bg-drops.png");
  width: 117px;
  height: 215px;
  float: left;
  margin-top: -250px;
}

/* HEALTHY EATING */
/* 2 COL LAYOUT WITH WHITE BG AND MIDDLE BORDER */
#css-table {
  display: table;
}

#css-table .colwhiteBORDER {
  display: table-cell;
  width: 50%;
  padding: 10px 10px 10px 0;
}

#css-table .colwhiteBORDER:nth-child(even) {
  background: #fff;
}

#css-table .colwhiteBORDER:nth-child(odd) {
  background: #fff;
  border-right: #fff 10px solid;
}

/* 1 TO 6 NUMBERED LIST */
span.number {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-style: italic;
  color: #ed1941;
  font-size: 2.5em;
  float: left;
  margin-top: -20px;
}

h2.hdg {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  color: #ed1941;
  font-size: 1.4em;
  padding-left: 35px;
}

p.padleft {
  padding-left: 35px;
}

div.knife-fork {
  background-image: url("img/bg-knife-fork.png");
  width: 117px;
  height: 178px;
  float: right;
  margin-top: -200px;
}

div.board {
  background-image: url("img/bg-board.png");
  width: 117px;
  height: 145px;
  float: right;
  margin-top: -120px;
}

/* CHAPTER 1 INTRODUCTION */
p.congrats {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-style: italic;
  color: #f14868;
  font-size: 2em;
  margin-top: -20px;
  margin-bottom: 15px;
  text-indent: 180px;
}

p.how1 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  color: #f14868;
  font-size: 1.6em;
  margin-top: -10px;
  margin-bottom: 15px;
  text-indent: 80px;
}

p.how2 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  color: #f14868;
  font-size: 1.6em;
  margin-bottom: 15px;
  text-indent: 80px;
}

p.how3 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  color: #f14868;
  font-size: 1.6em;
  margin-top: -10px;
  margin-bottom: 15px;
  text-indent: 80px;
}

p.how4 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  color: #f14868;
  font-size: 1.6em;
  margin-top: -10px;
  margin-bottom: 15px;
  text-indent: 80px;
}

p.how5 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  color: #f14868;
  font-size: 1.6em;
  margin-top: -10px;
  margin-bottom: 15px;
  text-indent: 80px;
}

.introlinegroup {
  padding-left: 100px;
}

p.introline1 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  color: #f14868;
  font-size: 2em;
  margin-bottom: 5px;
  line-height: 0.9em;
  text-indent: 10px;
}

p.introline2 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  color: #f14868;
  font-size: 2em;
  margin-bottom: 5px;
  line-height: 0.9em;
}

p.introline3 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  color: #f14868;
  font-size: 2em;
  margin-bottom: 15px;
  line-height: 0.9em;
  text-indent: 100px;
}

span.introstrong {
  font-weight: bold;
  font-size: 1.4em;
}

div.flowers-two {
  background-image: url("img/bg-flowers2.png");
  width: 269px;
  height: 138px;
  margin-left: 300px;
  margin-top: -170px;
}

/* RED BG RIGHT INDENT */
div.indentRIGHT {
  padding: 10px 10px 2px 10px;
  margin: 10px 120px 15px 0;
  background-color: #f9e6e8;
}

div.flowers {
  background-image: url("img/bg-flowers.png");
  width: 147px;
  height: 263px;
  float: right;
  margin-top: -890px;
  margin-right: -15px;
}

/* CHAPTER 1 MISSION STATEMENT */
.mission-callout {
  background-color: #f9e6e8;
  padding: 20px;
  margin-bottom: 10px;
}

.mission-callout h2 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  color: #ed1941;
  font-size: 1.3em;
  line-height: 1.2em;
}

span.ch1number {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-style: italic;
  color: #ed1941;
  font-size: 3.5em;
  float: left;
  padding-right: 20px;
  margin-top: -15px;
}

/* CSS STAGGERED TEXT */
div.textwrapper {
  margin-left: 40px;
}

p.line1 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-style: italic;
  color: #f14868;
  font-size: 2em;
  margin-bottom: 5px;
  line-height: 0.9em;
}

p.line1 strong {
  color: #f14868;
}

p.line3 strong {
  color: #f14868;
}

p.line4 strong {
  color: #f14868;
}

p.line5 strong {
  color: #f14868;
}

p.line6 strong {
  color: #f14868;
}

p.line2 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-style: italic;
  color: #f14868;
  font-size: 2em;
  margin-bottom: 5px;
  line-height: 0.9em;
  text-indent: 120px;
}

p.line3 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-style: italic;
  color: #f14868;
  font-size: 2em;
  margin-bottom: 5px;
  line-height: 0.9em;
  text-indent: 80px;
}

p.line4 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-style: italic;
  color: #f14868;
  font-size: 2em;
  margin-bottom: 5px;
  line-height: 0.9em;
  text-indent: 120px;
}

p.line5 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-style: italic;
  color: #f14868;
  font-size: 2em;
  margin-bottom: 5px;
  line-height: 0.9em;
  text-indent: 30px;
}

p.line6 {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-style: italic;
  color: #f14868;
  font-size: 2em;
  margin-bottom: 10px;
  line-height: 0.9em;
  text-indent: 360px;
}

/* CHAPTER 39 NUTRITION FOR CHILDREN & ADOLESCENTS */
div.footprints {
  background-image: url("img/bg-footprints.png");
  width: 269px;
  height: 224px;
  margin: 0 0 20px 300px;
}

/* CHAPTER 9 MAKING FIRST IMPRESSIONS COUNT */
/* 2 COL LAYOUT WITH IMAGE */
#css-table .colredIMAGE {
  display: table-cell;
  padding: 10px;
  margin-top: 15px;
  vertical-align: middle;
  width: 100%;
}

#css-table .colredIMAGE:nth-child(even) {
  background: #f9e6e8;
  padding: 20px 10px 10px 30px;
  width: 70%;
}

#css-table .colredIMAGE:nth-child(odd) {
  background: #f9e6e8;
  padding: 20px;
  width: 30%;
}

.tdcenter p {
  text-align: center;
}

/* MESSAGE FOR MARGARET RED BG WITH LEFT AND RIGHT INDENT */
div.mfmindent {
  padding: 10px 10px 2px 10px;
  margin: 10px 100px 15px 100px;
  background-color: #f9e6e8;
}

p.mfmtext {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-style: italic;
  color: #000000;
  font-size: 1.3em;
  margin-bottom: 10px;
  line-height: 1.3em;
}

span.member {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-style: italic;
  color: #ed1941;
  font-size: 1.4em;
  float: left;
  padding-right: 5px;
  margin-top: -5px;
}

/* WHITE BG INDENT */
div.indentWHITE {
  padding: 10px;
  margin: 0 50px 0 50px;
  background-color: #ffffff;
}

/* RED BG INDENT */
div.indentRED {
  padding: 10px 10px 2px 10px;
  margin: 10px 50px 15px 50px;
  background-color: #f9e6e8;
  color: #000000;
  font-family: "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-style: italic;
  font-size: 1.2em;
}

div.bgcol {
  background: #f9e6e8;
  padding: 10px;
}

/* CHAPTER 40 */
.qna {
  height: 50px;
}

.gparrow img {
  margin-bottom: 0px;
}

.boldred {
  color: #ed1941;
}

/*-----------
Table background colours for bank holiday planer
-------------*/
.Red {
  background-color: #F28585;
}

.Amber {
  background-color: #F9EA89;
}

.Green {
  background-color: #75C25C;
}

td.Green {
  background-color: #75C25C;
}

/* 
* PRINT STYLES
* ----------------------
*/
@media print {
  * {
    background: transparent !important;
    color: #000 !important; /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
    color: #4F4D4D;
    font-style: italic;
    font-size: 0.85em;
    word-wrap: break-word;
  }
  .app a[href]:after {
    content: "" !important;
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
    color: #4F4D4D;
    font-style: italic;
    font-size: 0.85em;
  }
  /*
   * Don't show links for images, or javascript/internal links
   */
  .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; /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .logo {
    color: #000;
    text-indent: 0;
  }
  a.logo[href]:after {
    display: none;
    content: "";
  }
  /*correcting explicit heights and widths*/
  .logo {
    height: auto;
    width: 100%;
  }
  .header-main .inner {
    height: auto;
    min-height: 0;
  }
  /*Resetting padding & margin*/
  .header-main .inner,
  .main .inner,
  .main-content {
    margin: 0;
    padding: 0;
  }
  /*print out source of a video iframe*/
  /*

        iframe[src*="vimeo.com"]:before {
            content: "attr(src)";

        }
  */
  blockquote {
    border: none;
  }
  /*hide stuff*/
  .logo a:after,
  .alert,
  .nav,
  .breadcrumb,
  .nav-secondary,
  .header-main .hl-links,
  .footer-main a,
  .form-search,
  .nav-direction,
  .comments {
    display: none;
  }
}
/*==========================================================================

  OWTV

========================================================================== */
@media (max-width: 929px) {
  .overlay-content {
    clear: both;
  }
}
@media (min-width: 930px) {
  .owtv-overlay {
    position: relative;
  }
}
@media (min-width: 930px) {
  .overlay-content {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 80%;
    min-height: 37%;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 11px;
    padding: 10px;
  }
}
.play-left {
  float: left;
  width: 90px;
  padding-right: 21px;
}

.featured-title {
  border-bottom: 1px solid #ed1941;
  margin-left: 90px;
  font-size: 1.25em;
}

.featured-subtitle {
  padding-top: 12px;
  line-height: 0;
}

.slats-owtv {
  clear: both;
}

body.search {
  overflow-y: scroll;
}
body.search .ui-tooltip {
  font-size: 11px;
  opacity: 0.9;
}
body.search .main-content div.form-full {
  width: 100%;
  width: 50%;
  float: left;
}
body.search .main-content form.form-search {
  margin-bottom: 60px;
}
body.search .main-content .search-tabs {
  clear: left;
  margin: 45px 0 0 0;
  list-style: none;
}
body.search .main-content .contentSortable li h2 {
  padding: 9px 15px;
  display: inline-block;
  border-radius: 3px 3px 0px 0px;
  background: #F9E6E8;
  color: rgb(200, 15, 63);
  font-weight: normal;
  margin: 0;
  text-decoration: none;
  width: 100%;
  position: relative;
  border-top: 5px solid #ebbdb7;
  background-color: #FFF4F5;
  font-size: 23px;
  font-family: "Times New Roman", Times, Georgia, serif;
  cursor: pointer;
}
body.search .main-content .contentSortable li .block-content li {
  display: list-item;
}
body.search .main-content .contentSortable li {
  list-style-image: none;
  list-style-type: none;
  margin: 0;
  background-color: #fff;
}
body.search .main-content .search-tabs .fa-minus-square {
  padding: 0 5px 0 0;
}
body.search .main-content .search-content {
  width: 100%;
  float: left;
}
body.search .main-content .block-content {
  overflow: hidden;
  padding: 5px;
  margin-top: 10px;
  height: 100%;
}
body.search .main-content .block-content.blockHeight,
body.search .main-content .block-content.blockHeight.block-minimized {
  height: 0px;
}
body.search .main-content .fade {
  width: 100%;
  position: relative;
  clear: both;
}
body.search .main-content .fade a {
  position: absolute;
  display: block;
  bottom: 10px;
  right: 2px;
  background-color: #ED1941;
  color: #fff;
  margin: 0;
  padding: 5px 11px;
  border-radius: 5px;
  opacity: 0.6;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  pointer-events: all;
}
body.search .main-content .block-minimized {
  height: 200px;
}
body.search .main-content .block-content + ul + .fade a:before {
  content: "fewer search results …";
  text-overflow: ellipsis;
}
body.search .main-content .block-content.block-minimized + ul + .fade a:before {
  content: "more search results …";
}
body.search .main-content .contentSortable .current-block h2,
body.search .main-content .contentSortable #search-apps h2 {
  pointer-events: none;
}
body.search .main-content .contentSortable #search-apps .fa-plus {
  visibility: hidden;
}
body.search .main-content .contentSortable li:not(.current-block) .pagination {
  background: transparent;
  visibility: hidden;
  height: 0px;
  margin-bottom: 0px;
}
body.search .main-content .contentSortable li:not(.current-block) .fade {
  display: none;
}
body.search .main-content .pagination {
  background: transparent;
  visibility: visible;
  height: inherit;
  margin-bottom: 50px;
}
body.search .main-content .pagination a {
  margin-bottom: 5px;
}
body.search .main-content .block-minimized + .pagination {
  background: transparent;
  visibility: hidden;
  height: 0px;
  margin-bottom: 0px;
}
body.search .main-content .fade.fadeCollapsed:before {
  background: transparent;
  height: 37px;
}
body.search .main-content .search-tabs li.shrink {
  width: 6.5%;
}
body.search .main-content .search-tabs li.expand,
body.search .main-content .expand {
  width: 92%;
}
body.search .main-content .noclick {
  pointer-events: none;
}
body.search .main-content .remove-fade:before {
  background: transparent;
}
body.search .main-content .more.bottom {
  bottom: 5px;
}
body.search .main-content .minimised {
  max-height: 100px;
  overflow: hidden;
}
body.search .main-content .joyride-tip-guide[data-index="1"] {
  margin-top: 14px;
}
body.search .main-content .joyride-tip-guide[data-index="2"] {
  margin-top: -30px;
  margin-left: -14px;
}
body.search .main-content #chooseID {
  display: none;
}
body.search .main-content h2 .fa {
  float: right;
}
body.search .main-content h2 .fa-caret-up,
body.search .main-content h2 .fa-caret-down {
  font-size: 14px;
  position: absolute;
  right: 25px;
  pointer-events: all;
}
body.search .main-content h2 .fa-caret-up {
  top: 7px;
}
body.search .main-content h2 .fa-caret-down {
  bottom: 7px;
}
body.search .main-content h2 .fa-minus,
body.search .main-content h2 .fa-plus {
  font-size: 14px;
  padding: 6px 0 0 0;
  margin-right: 40px;
}
body.search .main-content h2 .fa:hover {
  color: #666;
}
body.search .main-content .ui-sortable-helper:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  opacity: 0.6;
  z-index: 1;
  background-color: #EAEAEA;
}
body.search .main-content .ui-sortable-helper .fade:before {
  background: transparent;
}
body.search .main-content li.ui-sortable-handle h2:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  opacity: 0;
  background-color: #eee;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}
body.search .main-content li.ui-sortable-handle.swapped-result h2:before {
  opacity: 0.7;
}
@media only screen and (max-width: 599px) {
  body.search .main-content .contentSortable li h2 {
    padding: 9px;
  }
  body.search .main-content .ui-sortable-handle h2 .header-text {
    width: 70%;
    position: absolute;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-left: 25px;
  }
  body.search .main-content h2 .fa-caret-up, body.search .main-content h2 .fa-caret-down {
    font-size: 32px;
    position: absolute;
    right: 15px;
  }
  body.search .main-content h2 .fa-caret-down {
    bottom: -6px;
  }
  body.search .main-content h2 .fa-caret-up {
    top: -6px;
  }
  body.search .main-content h2 .fa-minus, body.search .main-content h2 .fa-plus {
    font-size: 22px;
    padding: 4px 0px 0px 0px;
    margin-right: 40px;
  }
  body.search .main-content .block-minimized {
    height: 150px;
  }
  body.search .main-content .fade a {
    position: inherit;
    width: 100%;
    font-size: 16px;
    margin: inherit;
    bottom: 10px;
  }
}
body.search .main-content .fadeCollapsed + .pagination {
  display: none;
}
@media screen and (min-width: 960px) {
  body.search .main-content .pagination a,
  body.search .main-content .pagination .pagination__link {
    min-width: 3.8em;
  }
  body.search .main-content .contentSortable li:last-child {
    padding-right: 0px;
  }
}

#dl-search {
  width: 100%;
  font-size: small;
  border-radius: 3px;
  height: 40px;
  padding-left: 15px;
  margin-bottom: 25px;
  outline: none;
  border: 1px solid lightgray;
  box-shadow: none;
}

#dl-search-icon {
  background-image: url("/assets/css/img/search.svg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  right: 20px;
  float: right;
  position: absolute;
  top: 10px;
}
#dl-search-icon.has-text {
  background-image: url("/assets/css/img/remove-selected.svg");
  opacity: 0.3;
}
#dl-search-icon.has-text:hover {
  opacity: 0.8;
  cursor: pointer;
}

.dl-title {
  margin: 0.45em 0 0 0;
}

#dl-no-results {
  margin-bottom: 80px;
}

#dl-accordion {
  margin-bottom: 80px;
}
#dl-accordion .ui-state-focus {
  outline: none;
}
#dl-accordion .ui-accordion .ui-accordion-content {
  padding: 5px;
}
#dl-accordion h1 {
  background: none;
  user-select: none;
  margin-top: 7px;
}
#dl-accordion h1.ui-state-active {
  border-bottom: none;
}
#dl-accordion .h2 {
  color: #ed1941;
  font-family: "Sorts Mill Goudy", "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-size: 1.3em;
  user-select: none;
}
#dl-accordion h3 {
  user-select: none;
}
#dl-accordion .ui-accordion-icons {
  padding-left: 10px;
}
#dl-accordion .ui-icon {
  width: 7px;
  height: 13px;
  right: 11px;
  left: auto;
  background: url("/assets/css/img/arrow.svg") no-repeat;
  background-size: cover;
}
#dl-accordion .ui-icon.iconOpen {
  transform: rotate(90deg);
}
#dl-accordion .dl-category {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 8px;
  justify-content: space-between;
}
#dl-accordion .dl-download {
  width: 49%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  vertical-align: top;
  box-shadow: 0px 0px 4px;
  margin-bottom: 20px;
  border-radius: 3px;
  padding: 8px 5px 5px 8px;
}
#dl-accordion .dl-download h3 {
  margin-bottom: 0px;
}
#dl-accordion .dl-download-description {
  font-style: italic;
  font-size: smaller;
}
#dl-accordion .dl-download-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-right: 5px;
}
#dl-accordion .dl-download-content > img {
  width: 80px;
  height: 80px;
  border: 1px solid #EEE;
}
#dl-accordion .dl-download-content .dl-link-container {
  margin-left: 10px;
  display: flex;
  flex-grow: 1;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: wrap;
}
#dl-accordion .dl-download-content .dl-link-container div {
  margin-right: 5px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}
#dl-accordion .dl-download-content .dl-link-container div a img {
  width: 40px;
  max-width: 38px;
  max-height: 38px;
}
#dl-accordion .dl-download-content .dl-link-container .dl-link-label {
  font-size: small;
  text-decoration-line: none;
}
#dl-accordion .dl-download-content .dl-link-container .dl-download-footer {
  background: linear-gradient(to right, transparent, gray, transparent);
  height: 2px;
  width: 100%;
  margin-top: 5px;
}

#photoPreview {
  display: inline;
  max-width: none;
  position: absolute;
}

#photoContainer {
  width: 150px;
  height: 200px;
  overflow: hidden;
  border: 1px solid black;
  position: relative;
}

#photoEditor {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
}

#photoSelection {
  width: 100%;
}

#photoRotateControls {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#photoMask {
  position: absolute;
}

#photoRotateClockwise {
  user-select: none;
  width: 45px;
  height: 45px;
  background: url("../css/img/new-clockwise.jpg");
  transform: rotate(-45deg);
  border: none;
}

#photoRotateAnticlockwise {
  user-select: none;
  width: 45px;
  height: 45px;
  background: url("../css/img/new-anticlockwise.jpg");
  transform: rotate(45deg);
  border: none;
}

#photoOverlay {
  width: 100%;
  position: relative;
}

#waitingForImage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1;
}

.photo-submit-confirm .ui-dialog-titlebar {
  background: #333 !important;
}
.photo-submit-confirm .ui-dialog-titlebar-close {
  display: none;
}
.photo-submit-confirm .ui-close {
  width: 18px;
  height: 18px;
  cursor: pointer;
  border-radius: 3px;
  z-index: 999;
  background-image: url("/assets/css/img/remove.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 5px;
  float: right;
}
.photo-submit-confirm .ui-close:hover {
  background-image: url("/assets/css/img/remove-selected.svg");
}

/*
 * Ratings
*/
#lowRatingFeedbackCancel {
  float: right;
}

#skipFeedback {
  margin-right: 10px;
  vertical-align: middle;
}
#skipFeedback + label {
  font-weight: normal;
  display: inline-block;
  margin-bottom: 10px;
  user-select: none;
}

#lowRatingFeedbackEntry {
  font-family: sans-serif;
}
#lowRatingFeedbackEntry :disabled {
  opacity: 0.3;
}
#lowRatingFeedbackEntry :disabled + label {
  color: lightgray;
}

#lowRatingFeedbackPopup {
  font-family: sans-serif;
}

#lowRatingFeedbackPopup input {
  font-family: sans-serif;
}

.ui-dialog-title {
  color: #fff;
  font-family: "Sorts Mill Goudy", "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-size: large;
}

.ui-dialog-titlebar {
  background: #ed1941 url(img/bg-gradient-red.png) repeat-x top left !important;
  background-color: #a30d29 !important;
}

#advent-header-sparkle {
  position: absolute;
  left: 0;
  top: 0;
}

.advent-all-button {
  display: flex;
  justify-content: flex-end;
  padding: 5px;
}

.advent {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #040507;
}
.advent .advent-day {
  margin: 5px;
  display: inline-block;
  position: relative;
  width: 150px;
  height: 250px;
  background-size: 150px 250px;
  background-repeat: no-repeat;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}
.advent .advent-day .door-text {
  position: absolute;
  top: 0;
  padding: 20px 12px 0 15px;
  color: #000000;
  z-index: 0;
  font-size: 1em;
  line-height: 1.25;
  height: 77%;
  display: table;
}
.advent .advent-day .door-text .text {
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
.advent .advent-day .door-text strong {
  color: #000000;
}
.advent .advent-day .door-text a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}
.advent .advent-door {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transform-origin: left;
  transition: all 0.5s ease-in-out;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  z-index: 2;
}
.advent .advent-door.opened {
  cursor: default;
  transform: perspective(3000px) translateZ(0px) translateX(0px) translateY(0px) rotateY(-97deg);
}
.advent .advent-image {
  width: 100%;
  height: 100%;
}
.advent canvas {
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  position: absolute;
  pointer-events: none;
}
.advent #snow-canvas {
  z-index: 1;
}
.advent #today-sparkle {
  z-index: 4;
}

.advent-footer {
  background-color: #ffffff;
}
.advent-footer img {
  margin-bottom: 0;
}

.ic-base {
  border: 1px solid lightgray;
  position: relative;
}
.ic-base .ic-gallery {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.ic-base .ic-inner {
  position: relative;
}
.ic-base .ic-images {
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.ic-base img.ic-image {
  visibility: hidden;
  position: relative;
  left: 0px;
  min-height: 100%;
  min-width: 100%;
}
.ic-base img.ic-image.current {
  visibility: visible;
  position: absolute;
}
.ic-base img.ic-image.next {
  margin-left: 100%;
  visibility: visible;
  position: absolute;
}
.ic-base img.ic-image.prev {
  margin-left: -100%;
  visibility: visible;
  position: absolute;
}
.ic-base .ic-controls {
  display: flex;
  position: absolute;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  top: 0px;
}
.ic-base .ic-controls .ic-control {
  user-select: none;
  height: 100%;
  width: 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
}
.ic-base .ic-controls .ic-control:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
.ic-base .ic-controls .ic-control.prev {
  padding-left: 3%;
}
.ic-base .ic-controls .ic-control.next {
  padding-right: 3%;
}
.ic-base .ic-controls .ic-control .ic-chevron {
  height: 30px;
  width: 30px;
  min-height: 30px;
  min-width: 30px;
}
.ic-base .ic-controls .ic-control .ic-chevron.ic-gt {
  transform: rotate(45deg);
  border-right: 2px solid lightgray;
  border-top: 2px solid lightgray;
}
.ic-base .ic-controls .ic-control .ic-chevron.ic-lt {
  transform: rotate(-45deg);
  border-left: 2px solid lightgray;
  border-top: 2px solid lightgray;
}
.ic-base div div.ic-breadcrumbs {
  position: absolute;
  bottom: 10px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 10px 10px 0px 10px;
  z-index: 1;
}
.ic-base div.ic-breadcrumb {
  border: 1px solid lightgray;
  border-radius: 100%;
  height: 10px;
  width: 10px;
  margin-right: 5px;
  cursor: pointer;
}
.ic-base div.ic-breadcrumb.current {
  background-color: gray;
}

.details {
  margin-bottom: 20px;
}
.details .details-name {
  margin-bottom: 0px;
}

.divider {
  border-top: 1px #9b9b9b solid;
  margin-bottom: 30px;
  margin-top: 20px;
  width: 100%;
}

#js-returnsForm input {
  border-color: #BBB;
}
#js-returnsForm .returns-submit {
  background-color: #ed1941;
  border-radius: 3px;
  color: white;
  height: 40px;
  width: 100px;
  margin-top: 20px;
}
#js-returnsForm .returns-submit:disabled {
  background-color: #bbb;
  color: lightgray;
}
#js-returnsForm .submit-container {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
#js-returnsForm .container {
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  font-weight: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#js-returnsForm .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#js-returnsForm .container input:checked ~ .checkmark:after {
  display: block;
}
#js-returnsForm .container .checkmark {
  border: #BBB solid 1px;
  border-radius: 3px;
  position: absolute;
  top: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  margin-left: 5px;
}
#js-returnsForm .container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
#js-returnsForm .container .checkmark:after {
  left: 8px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #ed1941;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#js-returnsForm .container:hover input ~ .checkmark {
  background-color: #ccc;
}
#js-returnsForm #questions {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#js-returnsForm #questions .flex-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
#js-returnsForm .question {
  border: 1px solid lightgray;
  box-shadow: 0px 0px 6px 0px #BBB;
  margin: 5px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-grow: 1;
  padding-left: 10px;
  margin: 5px;
}
#js-returnsForm .question.col {
  flex-direction: column;
}
#js-returnsForm .question .part1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 50%;
}
#js-returnsForm .question .part1 img {
  background-color: #CADAD7;
}
#js-returnsForm .question .part2 {
  flex-grow: 1;
}
#js-returnsForm .question .part2 input {
  margin-top: 15px;
}
#js-returnsForm .question .answers {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-top: 15px;
  padding-right: 10px;
}
#js-returnsForm .question .answers label {
  width: 60px;
}
#js-returnsForm .question .qty {
  width: 60px;
}
#js-returnsForm .question-card {
  height: 220px;
}
#js-returnsForm .question-image {
  overflow-y: visible;
  height: 75px;
}
#js-returnsForm #question1::before, #js-returnsForm #question1b::before, #js-returnsForm #question2::before, #js-returnsForm #question2b::before, #js-returnsForm #question3::before, #js-returnsForm #question4::before, #js-returnsForm #question4b::before {
  color: red;
  font-weight: bold;
  content: attr(data-content);
  font-size: 20px;
}
#js-returnsForm #addressContainer {
  padding-right: 10px;
}

#confirmationDialog {
  padding-bottom: 20px;
  font-family: Arial, sans-serif;
}
#confirmationDialog .btn-large {
  margin-top: 10px;
  height: 30px;
}

.returnsDialog .ui-dialog-titlebar {
  background: #333 !important;
}
.returnsDialog .ui-dialog-titlebar-close {
  display: none;
}
.returnsDialog .ui-close {
  width: 18px;
  height: 18px;
  cursor: pointer;
  border-radius: 3px;
  z-index: 999;
  background-image: url("/assets/css/img/remove.svg");
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 5px;
  float: right;
}
.returnsDialog .ui-close:hover {
  background-image: url("/assets/css/img/remove-selected.svg");
}

#sm-search {
  width: 100%;
  font-size: small;
  border-radius: 3px;
  height: 40px;
  padding-left: 15px;
  margin-bottom: 25px;
  outline: none;
  border: 1px solid lightgray;
  box-shadow: none;
}

#sm-search-icon {
  background-image: url("/assets/css/img/search.svg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  right: 20px;
  float: right;
  position: absolute;
  top: 10px;
}
#sm-search-icon.has-text {
  background-image: url("/assets/css/img/remove-selected.svg");
  opacity: 0.3;
}
#sm-search-icon.has-text:hover {
  opacity: 0.8;
  cursor: pointer;
}

.sm-title {
  margin: 0.45em 0 0 0;
}

#sm-accordion {
  margin-bottom: 80px;
}
#sm-accordion .ui-state-focus {
  outline: none;
}
#sm-accordion .ui-accordion-content {
  padding: 0px 5px 35px 5px;
}
#sm-accordion h1 {
  background: none;
  user-select: none;
  margin-top: 7px;
}
#sm-accordion h1.ui-state-active {
  border-bottom: none;
}
#sm-accordion .h2 {
  color: #ed1941;
  font-family: "Sorts Mill Goudy", "Times New Roman", Times, Georgia, serif;
  font-weight: normal;
  font-size: 1.3em;
  user-select: none;
}
#sm-accordion h3 {
  user-select: none;
}
#sm-accordion .ui-accordion-icons {
  padding-left: 10px;
}
#sm-accordion .ui-icon {
  width: 7px;
  height: 13px;
  right: 11px;
  left: auto;
  background: url("/assets/css/img/arrow.svg") no-repeat;
  background-size: cover;
}
#sm-accordion .ui-icon.iconOpen {
  transform: rotate(90deg);
}
#sm-accordion div.sm-social-media-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#sm-accordion div.sm-social-media-content > .sm-link-container {
  margin: 0px 5px 5px 5px;
  height: 150px;
}
#sm-accordion div.sm-social-media-content > .sm-link-container > div {
  margin-right: 5px;
  cursor: pointer;
}
#sm-accordion div.sm-social-media-content > .sm-link-container a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
#sm-accordion div.sm-social-media-content > .sm-link-container a img {
  min-width: 24px;
  min-height: 24px;
  float: left;
}
#sm-accordion div.sm-social-media-content > .sm-link-container .sm-link-options {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: nowrap;
  height: 150px;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  padding-bottom: 10px;
  padding-right: 5px;
}
#sm-accordion div.sm-social-media-content > .sm-link-container .sm-link-options:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
#sm-accordion div.sm-social-media-content > .sm-link-container .sm-link-options:hover .sm-link {
  color: white;
  display: block;
}
#sm-accordion div.sm-social-media-content > .sm-link-container .sm-link-options:hover .sm-link:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.5);
}
#sm-accordion div.sm-social-media-content > .sm-link-container .sm-link-options > .sm-link {
  width: 45px;
  height: 45px;
  margin: 0px;
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  line-height: 190px;
  color: transparent;
  justify-content: center;
  text-decoration: none;
  border-radius: 45px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  margin-right: 5px;
  display: none;
}
#sm-accordion div.sm-social-media-content > .sm-link-container .sm-link-options > .sm-link img {
  height: 100%;
  width: 100%;
  position: relative;
}
#sm-accordion .sm-link-label {
  font-size: small;
  text-decoration-line: none;
}

#photograph #profile-photo-container-primary {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
#photograph #profile-photo-container-primary #profile-photo-inner-primary {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
#photograph #profile-photo-container-primary #profile-photo-inner-primary #profile-photo-outer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse;
  margin-right: 20px;
}
#photograph #profile-photo-container-primary #profile-photo-inner-primary #profile-photo-outer > div {
  margin-right: 40px;
}
#photograph #profile-photo-container-primary #profile-photo-inner-primary #profile-photo-outer #profile-photo-active {
  border: 1px solid #ccc;
  max-width: 200px;
}
#photograph #profile-photo-container-primary #profile-photo-inner-primary #profile-photo-outer .photo-tips img {
  max-height: 200px;
}
#photograph #profile-photo-container-primary .photo-actions-primary {
  width: 100%;
  height: 40px;
  font-size: 14px;
  max-width: 250px;
}
#photograph #profile-photo-container-primary .photo-actions-primary .helpful-tips-text {
  display: none;
}
#photograph #profile-photo-container-primary .photo-actions-primary a {
  text-decoration: none;
}
#photograph #profile-photo-container-primary .photo-actions-primary a span.btn {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#photograph #profile-photo-container-primary .photo-actions-primary a span.btn:hover {
  text-shadow: none;
}
#photograph #profile-photo-container-primary #dialog-confirm {
  padding-bottom: 20px;
  font-family: Arial, sans-serif;
}
#photograph #profile-photo-container-primary #dialog-confirm .btn-large {
  margin-top: 10px;
  height: 30px;
}
#photograph #profile-photo-container-primary .dialog-confirm .ui-dialog-titlebar {
  background: #333 !important;
}
#photograph #profile-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 20px;
}
#photograph #profile-container .profile-photo-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 8px;
  border-radius: 3px;
}
#photograph #profile-container .profile-photo-container .photo-container {
  border: solid 1px #ccc;
  margin: 10px;
  width: 180px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
#photograph #profile-container .profile-photo-container .photo-container img {
  min-height: 100%;
}
#photograph #profile-container .profile-photo-container .photo-container .photo-awaiting-approval {
  position: absolute;
  bottom: 49px;
  margin: 0px 50% 0px 50%;
  transform: rotate(-45deg);
  background-color: rgba(0.9, 0.9, 0.9, 0.7);
  width: 150%;
  padding: 10px 83px;
  left: -94px;
  color: white;
}
#photograph #profile-container .profile-photo-container .photo-actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 10px;
}
#photograph #profile-container .profile-photo-container .photo-actions .btn-secondary:hover {
  background-color: #ed1941;
  color: white;
}
#photograph #profile-container .profile-photo-container .photo-actions div {
  padding: 5px;
}
#photograph .simple-link {
  text-decoration: none;
  color: black;
  cursor: pointer;
  display: block;
  text-align: right;
  margin-bottom: 20px;
}
#photograph .simple-link:hover {
  font-weight: bold;
}

.hr-simple {
  border-color: #ccc;
  margin-bottom: 20px;
}

#biography {
  margin-bottom: 20px;
}
#biography #error-container {
  border: 1px solid #ed1941;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
}
#biography #error-container li {
  list-style: none;
  margin-left: 0;
}
#biography #biography-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
#biography #biography-inner #editor-outer {
  position: relative;
  display: inline-block;
  flex-grow: 2;
  padding-bottom: -10px;
  max-width: 70%;
  width: 70%;
}
#biography #biography-inner #editor-outer trix-toolbar {
  display: none;
}
#biography #biography-inner #editor-outer trix-editor {
  min-height: 250px;
  background-color: #f5f5f5;
  cursor: text;
  overflow: auto;
}
#biography #biography-inner #editor-outer trix-editor del {
  font-weight: normal;
  background-color: lightcoral;
  text-decoration: none;
}
#biography #biography-inner #editor-outer #bio-state {
  display: inline-block;
  margin-top: 5px;
  font-family: Arial, sans-serif;
  user-select: none;
  font-weight: bold;
  height: 25px;
}
#biography #biography-inner #editor-outer #bio-state.rejected, #biography #biography-inner #editor-outer #bio-state.current {
  padding: 5px;
  text-align: center;
  width: 140px;
  border-radius: 3px;
  border: solid 1px #e01d34;
  color: #e01d34;
}
#biography #biography-inner #editor-outer #bio-state.pending {
  color: #4a90e2;
  font-size: 16px;
  border-radius: 3px;
  border: 1px solid #4a90e2;
  padding: 6px;
  line-height: 11px;
}
#biography #biography-inner #editor-outer::after {
  position: absolute;
  right: 0;
  bottom: 15px;
  content: attr(data-char-count);
  font-size: smaller;
  font-weight: bold;
}
#biography #biography-inner #biography-side {
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 150px;
  max-height: 150px;
  align-items: flex-start;
  align-content: flex-start;
}
#biography #biography-inner #biography-side a {
  width: 100%;
}
#biography #biography-inner #biography-side #helpful-tips {
  font-size: 14px;
  font-weight: bold;
  margin: 20px 0 40px 0;
}
#biography #biography-inner #biography-side #submit-link.disabled span.btn {
  cursor: not-allowed;
  background: linear-gradient(rgba(201, 9, 25, 0.5), rgba(86, 5, 15, 0.5));
}
#biography #biography-inner #biography-side #submit-link.disabled span.btn:hover {
  text-shadow: none;
}
#biography #biography-inner #biography-side span.btn {
  padding: 10px 20px;
}

@media (max-width: 599px) {
  .photo-tips img {
    display: none;
  }
  #photograph #profile-photo-container-primary #profile-photo-inner-primary #profile-photo-outer {
    width: 100%;
  }
  #photograph #profile-photo-container-primary #profile-photo-inner-primary #profile-photo-outer > div {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    margin-right: 0;
    width: 100%;
    justify-content: space-around;
  }
  #photograph #profile-photo-container-primary #profile-photo-inner-primary #profile-photo-outer #profile-photo-active {
    max-height: 120px;
  }
  #photograph #profile-photo-container-primary #profile-photo-inner-primary #profile-photo-outer .simple-link {
    align-self: flex-start;
    width: 120px;
  }
  #photograph #profile-photo-container-primary #profile-photo-inner-primary #profile-photo-outer .photo-actions-primary {
    align-content: flex-end;
    height: auto;
    margin: 0 10px;
  }
  #photograph #profile-photo-container-primary #profile-photo-inner-primary #profile-photo-outer .photo-actions-primary .helpful-tips-text {
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    cursor: pointer;
    text-decoration: underline;
  }
  #photograph #profile-photo-container-primary #profile-photo-inner-primary #profile-photo-outer a {
    display: block;
    height: 40px;
  }
  #biography #biography-inner #editor-outer {
    margin-right: 0;
  }
  #biography #biography-inner #biography-side {
    align-items: center;
  }
}
@media (max-width: 767px) {
  #biography #biography-inner #editor-outer {
    max-width: 100%;
  }
  #biography #biography-inner #biography-side {
    width: 90%;
    align-items: center;
  }
  #biography #biography-inner #biography-side #helpful-tips {
    margin: 0;
  }
  #biography #biography-inner #biography-side a {
    width: auto;
  }
}
div.comments {
  margin-top: 30px;
}
div.comments li.comment {
  position: relative;
  list-style: none;
  margin-left: 0px;
}
div.comments li.comment div.comment-inner {
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: 2px 2px 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 3px;
}
div.comments li.comment div.comment-inner img {
  height: 70px;
  flex-shrink: 0;
}
div.comments li.comment div.comment-inner div.comment-text {
  padding-left: 10px;
  flex-grow: 1;
}
div.comments li.comment div.comment-inner div.comment-text p {
  padding-right: 5px;
}
div.comments li.comment div.comment-inner div.comment-text span.comment-name {
  font-size: 1em;
  color: #707070;
}
div.comments li.comment div.comment-inner div.comment-text .submit-edit {
  height: 20px;
  cursor: pointer;
  margin-right: 10px;
  margin-top: 10px;
}
div.comments li.comment div.comment-inner div.comment-text .cancel-edit {
  height: 20px;
  cursor: pointer;
  margin-top: 10px;
}
div.comments li.comment div.comment-inner div.comment-text textarea {
  width: 85%;
  display: inline-block;
  margin-right: 10px;
}
div.comments li.comment div.comment-inner div.comment-actions {
  margin: 5px;
}
div.comments li.comment div.comment-inner div.comment-actions div.comment-action a {
  cursor: pointer;
}
div.comments li.comment div.comment-inner div.comment-actions div.comment-action img {
  min-height: 20px;
  min-width: 20px;
  max-height: 20px;
  max-width: 20px;
}
div.comments li.comment ol.comment-replies {
  padding: 10px 0px 0px 20px;
  margin: 0;
}
div.comments li.comment ol.comment-replies li.reply {
  position: relative;
  background-color: #F9E6E8;
  list-style: none;
  margin: 0px 0px 10px 0px;
}
div.comments li.comment ol.comment-replies li.reply div.reply-inner {
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: 2px 2px 5px;
  padding: 3px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
div.comments li.comment ol.comment-replies li.reply div.reply-inner img {
  height: 70px;
  flex-shrink: 0;
}
div.comments li.comment ol.comment-replies li.reply div.reply-inner div.reply-text {
  padding-left: 10px;
  flex-grow: 1;
}
div.comments li.comment ol.comment-replies li.reply div.reply-inner div.reply-text .submit-reply {
  height: 20px;
  cursor: pointer;
  margin-right: 10px;
  margin-top: 10px;
}
div.comments li.comment ol.comment-replies li.reply div.reply-inner div.reply-text .cancel-reply {
  height: 20px;
  cursor: pointer;
  margin-top: 10px;
}
div.comments li.comment ol.comment-replies li.reply div.reply-inner div.reply-text textarea {
  width: 85%;
  display: inline-block;
  margin-right: 10px;
}
div.comments li.comment ol.comment-replies li.reply div.reply-inner div.reply-text span.reply-name {
  font-size: 1em;
  color: #707070;
}
div.comments li.comment ol.comment-replies li.reply div.reply-inner div.reply-text p {
  padding-right: 5px;
}
div.comments li.comment ol.comment-replies li.reply div.reply-inner div.reply-actions {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 5px;
}
div.comments li.comment ol.comment-replies li.reply div.reply-inner div.reply-actions div.reply-action a {
  cursor: pointer;
}
div.comments li.comment ol.comment-replies li.reply div.reply-inner div.reply-actions div.reply-action img {
  min-height: 20px;
  min-width: 20px;
  max-height: 20px;
  max-width: 20px;
}
