@charset "UTF-8";
/******************************************************************
	
Stylesheet: Main Stylesheet

Here's where the magic happens. Here is where you import
all of your Sass files so they can compile into one
CSS file. 

******************************************************************/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,700,800,300italic,400italic,600,600italic,700italic,800italic);
/******************************************************************

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants.

******************************************************************/
/*********************
TOOLS
*********************/
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

/*********************
COLORS
*********************/
/*********************
TYPOGRAPHY
*********************/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('assets/fonts/font-name.eot');
    	src: url('assets/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('assets/fonts/font-name.woff') format('woff'),
             url('assets/fonts/font-name.ttf') format('truetype'),
             url('assets/fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

/*********************
CSS3 GRADIENTS.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/**
 * Foundation for Sites by ZURB
 * Version 6.2.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.slide-in-down.mui-enter, .slide-in-left.mui-enter, .slide-in-up.mui-enter, .slide-in-right.mui-enter, .slide-out-down.mui-leave, .slide-out-right.mui-leave, .slide-out-up.mui-leave, .slide-out-left.mui-leave, .fade-in.mui-enter, .fade-out.mui-leave, .hinge-in-from-top.mui-enter, .hinge-in-from-right.mui-enter, .hinge-in-from-bottom.mui-enter, .hinge-in-from-left.mui-enter, .hinge-in-from-middle-x.mui-enter, .hinge-in-from-middle-y.mui-enter, .hinge-out-from-top.mui-leave, .hinge-out-from-right.mui-leave, .hinge-out-from-bottom.mui-leave, .hinge-out-from-left.mui-leave, .hinge-out-from-middle-x.mui-leave, .hinge-out-from-middle-y.mui-leave, .scale-in-up.mui-enter, .scale-in-down.mui-enter, .scale-out-up.mui-leave, .scale-out-down.mui-leave, .spin-in.mui-enter, .spin-out.mui-leave, .spin-in-ccw.mui-enter, .spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear; }

.slide-in-down.mui-enter {
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0); }

.slide-in-left.mui-enter {
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0); }

.slide-in-up.mui-enter {
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0); }

.slide-in-right.mui-enter {
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0); }

.slide-out-down.mui-leave {
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%); }

.slide-out-right.mui-leave {
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%); }

.slide-out-up.mui-leave {
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%); }

.slide-out-left.mui-leave {
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%); }

.fade-in.mui-enter {
  opacity: 0;
  transition-property: opacity; }

.fade-in.mui-enter.mui-enter-active {
  opacity: 1; }

.fade-out.mui-leave {
  opacity: 1;
  transition-property: opacity; }

.fade-out.mui-leave.mui-leave-active {
  opacity: 0; }

.hinge-in-from-top.mui-enter {
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-right.mui-enter {
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-bottom.mui-enter {
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-left.mui-enter {
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-middle-x.mui-enter {
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-middle-y.mui-enter {
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-out-from-top.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0; }

.hinge-out-from-right.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0; }

.hinge-out-from-bottom.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0; }

.hinge-out-from-left.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0; }

.hinge-out-from-middle-x.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0; }

.hinge-out-from-middle-y.mui-leave {
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0; }

.scale-in-up.mui-enter {
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0; }

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1; }

.scale-in-down.mui-enter {
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0; }

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1; }

.scale-out-up.mui-leave {
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1; }

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0; }

.scale-out-down.mui-leave {
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1; }

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0; }

.spin-in.mui-enter {
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0; }

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1; }

.spin-out.mui-leave {
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1; }

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0; }

.spin-in-ccw.mui-enter {
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0; }

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1; }

.spin-out-ccw.mui-leave {
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1; }

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0; }

.slow {
  transition-duration: 750ms !important; }

.fast {
  transition-duration: 250ms !important; }

.linear {
  transition-timing-function: linear !important; }

.ease {
  transition-timing-function: ease !important; }

.ease-in {
  transition-timing-function: ease-in !important; }

.ease-out {
  transition-timing-function: ease-out !important; }

.ease-in-out {
  transition-timing-function: ease-in-out !important; }

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; }

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; }

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; }

.short-delay {
  transition-delay: 300ms !important; }

.long-delay {
  transition-delay: 700ms !important; }

.shake {
  animation-name: shake-7; }

@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%); }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%); } }

.spin-cw {
  animation-name: spin-cw-1turn; }

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn); }
  100% {
    transform: rotate(0); } }

.spin-ccw {
  animation-name: spin-cw-1turn; }

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(1turn); } }

.wiggle {
  animation-name: wiggle-7deg; }

@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg); }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg); }
  0%, 30%, 70%, 100% {
    transform: rotate(0); } }

.infinite {
  animation-iteration-count: infinite; }

.slow {
  animation-duration: 750ms !important; }

.fast {
  animation-duration: 250ms !important; }

.linear {
  animation-timing-function: linear !important; }

.ease {
  animation-timing-function: ease !important; }

.ease-in {
  animation-timing-function: ease-in !important; }

.ease-out {
  animation-timing-function: ease-out !important; }

.ease-in-out {
  animation-timing-function: ease-in-out !important; }

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; }

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; }

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; }

.short-delay {
  animation-delay: 300ms !important; }

.long-delay {
  animation-delay: 700ms !important; }

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
   * 1. Set default font family to sans-serif.
   * 2. Prevent iOS and IE text size adjust after device orientation change,
   *    without disabling user zoom.
   */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
   * Remove default margin.
   */
body {
  margin: 0; }

/* HTML5 display definitions
     ========================================================================== */
/**
   * Correct `block` display not defined for any HTML5 element in IE 8/9.
   * Correct `block` display not defined for `details` or `summary` in IE 10/11
   * and Firefox.
   * Correct `block` display not defined for `main` in IE 11.
   */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
   * 1. Correct `inline-block` display not defined in IE 8/9.
   * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
   */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

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

/**
   * Address `[hidden]` styling not present in IE 8/9/10.
   * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
   */
[hidden],
template {
  display: none; }

/* Links
     ========================================================================== */
/**
   * Remove the gray background color from active links in IE 10.
   */
a {
  background-color: transparent; }

/**
   * Improve readability of focused elements when they are also in an
   * active/hover state.
   */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
     ========================================================================== */
/**
   * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
   */
abbr[title] {
  border-bottom: 1px dotted; }

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

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

/**
   * Address variable `h1` font-size and margin within `section` and `article`
   * contexts in Firefox 4+, Safari, and Chrome.
   */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

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

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

/* Embedded content
     ========================================================================== */
/**
   * Remove border when inside `a` element in IE 8/9/10.
   */
img {
  border: 0; }

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

/* Grouping content
     ========================================================================== */
/**
   * Address margin not present in IE 8/9 and Safari.
   */
figure {
  margin: 1em 40px; }

/**
   * Address differences between Firefox and other browsers.
   */
hr {
  box-sizing: content-box;
  height: 0; }

/**
   * Contain overflow in all browsers.
   */
pre {
  overflow: auto; }

/**
   * Address odd `em`-unit font size rendering in all browsers.
   */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
     ========================================================================== */
/**
   * Known limitation: by default, Chrome and Safari on OS X allow very limited
   * styling of `select`, unless a `border` property is set.
   */
/**
   * 1. Correct color not being inherited.
   *    Known issue: affects color of disabled elements.
   * 2. Correct font properties not being inherited.
   * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
   */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
   * Address `overflow` set to `hidden` in IE 8/9/10/11.
   */
button {
  overflow: visible; }

/**
   * 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 Firefox, IE 8/9/10/11, and Opera.
   * Correct `select` style inheritance in Firefox.
   */
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.
   */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

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

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

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

/**
   * It's recommended that you don't attempt to style these elements.
   * Firefox's implementation doesn't respect box-sizing, padding, or width.
   *
   * 1. Address box sizing set to `content-box` in IE 8/9/10.
   * 2. Remove excess padding in IE 8/9/10.
   */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
   * Fix the cursor style for Chrome's increment/decrement buttons. For certain
   * `font-size` values of the `input`, it causes the cursor style of the
   * decrement button to change from `default` to `text`.
   */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

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

/**
   * Remove inner padding and search cancel button in Safari and Chrome on OS X.
   * Safari (but not Chrome) clips the cancel button when the search input has
   * padding (and `textfield` appearance).
   */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
   * Define consistent border, margin, and padding.
   * [NOTE] We don't enable this ruleset in Foundation, because we want the <fieldset> element to have plain styling.
   */
/* fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
  } */
/**
   * 1. Correct `color` not being inherited in IE 8/9/10/11.
   * 2. Remove padding so people aren't caught out if they zero out fieldsets.
   */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
   * Remove default vertical scrollbar in IE 8/9/10/11.
   */
textarea {
  overflow: auto; }

/**
   * Don't inherit the `font-weight` (applied by a rule above).
   * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
   */
optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

.foundation-mq {
  font-family: "small=0em&medium=47.9375em&large=64em&xlarge=75em&xxlarge=90em"; }

html {
  font-size: 100%;
  box-sizing: border-box; }

*,
*::before,
*::after {
  box-sizing: inherit; }

body {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  background: #fefefe;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0; }

select {
  width: 100%;
  border-radius: 0; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important; }

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  line-height: 1; }
  [data-whatinput='mouse'] button {
    outline: 0; }

.is-visible {
  display: block !important; }

.is-hidden {
  display: none !important; }

.row {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto; }
  .row::before, .row::after {
    content: ' ';
    display: table; }
  .row::after {
    clear: both; }
  .row.collapse > .column, .row.collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row .row {
    max-width: none;
    margin-left: -0.625rem;
    margin-right: -0.625rem;
    max-width: none; }
    @media screen and (min-width: 47.9375em) {
      .row .row {
        margin-left: -0.9375rem;
        margin-right: -0.9375rem; } }
    .row .row.collapse {
      margin-left: 0;
      margin-right: 0; }
  .row.expanded {
    max-width: none; }
    .row.expanded .row {
      margin-left: auto;
      margin-right: auto; }

.column, .columns {
  width: 100%;
  float: left;
  padding-left: 0.625rem;
  padding-right: 0.625rem; }
  @media screen and (min-width: 47.9375em) {
    .column, .columns {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  .column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: right; }
  .column.end:last-child:last-child, .end.columns:last-child:last-child {
    float: left; }

.column.row.row, .row.row.columns {
  float: none; }
  .row .column.row.row, .row .row.row.columns {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0; }

.small-1 {
  width: 8.3333333333%; }

.small-push-1 {
  position: relative;
  left: 8.3333333333%; }

.small-pull-1 {
  position: relative;
  left: -8.3333333333%; }

.small-offset-0 {
  margin-left: 0%; }

.small-2 {
  width: 16.6666666667%; }

.small-push-2 {
  position: relative;
  left: 16.6666666667%; }

.small-pull-2 {
  position: relative;
  left: -16.6666666667%; }

.small-offset-1 {
  margin-left: 8.3333333333%; }

.small-3 {
  width: 25%; }

.small-push-3 {
  position: relative;
  left: 25%; }

.small-pull-3 {
  position: relative;
  left: -25%; }

.small-offset-2 {
  margin-left: 16.6666666667%; }

.small-4 {
  width: 33.3333333333%; }

.small-push-4 {
  position: relative;
  left: 33.3333333333%; }

.small-pull-4 {
  position: relative;
  left: -33.3333333333%; }

.small-offset-3 {
  margin-left: 25%; }

.small-5 {
  width: 41.6666666667%; }

.small-push-5 {
  position: relative;
  left: 41.6666666667%; }

.small-pull-5 {
  position: relative;
  left: -41.6666666667%; }

.small-offset-4 {
  margin-left: 33.3333333333%; }

.small-6 {
  width: 50%; }

.small-push-6 {
  position: relative;
  left: 50%; }

.small-pull-6 {
  position: relative;
  left: -50%; }

.small-offset-5 {
  margin-left: 41.6666666667%; }

.small-7 {
  width: 58.3333333333%; }

.small-push-7 {
  position: relative;
  left: 58.3333333333%; }

.small-pull-7 {
  position: relative;
  left: -58.3333333333%; }

.small-offset-6 {
  margin-left: 50%; }

.small-8 {
  width: 66.6666666667%; }

.small-push-8 {
  position: relative;
  left: 66.6666666667%; }

.small-pull-8 {
  position: relative;
  left: -66.6666666667%; }

.small-offset-7 {
  margin-left: 58.3333333333%; }

.small-9 {
  width: 75%; }

.small-push-9 {
  position: relative;
  left: 75%; }

.small-pull-9 {
  position: relative;
  left: -75%; }

.small-offset-8 {
  margin-left: 66.6666666667%; }

.small-10 {
  width: 83.3333333333%; }

.small-push-10 {
  position: relative;
  left: 83.3333333333%; }

.small-pull-10 {
  position: relative;
  left: -83.3333333333%; }

.small-offset-9 {
  margin-left: 75%; }

.small-11 {
  width: 91.6666666667%; }

.small-push-11 {
  position: relative;
  left: 91.6666666667%; }

.small-pull-11 {
  position: relative;
  left: -91.6666666667%; }

.small-offset-10 {
  margin-left: 83.3333333333%; }

.small-12 {
  width: 100%; }

.small-offset-11 {
  margin-left: 91.6666666667%; }

.small-up-1 > .column, .small-up-1 > .columns {
  width: 100%;
  float: left; }
  .small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
    clear: both; }
  .small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
    float: left; }

.small-up-2 > .column, .small-up-2 > .columns {
  width: 50%;
  float: left; }
  .small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
    clear: both; }
  .small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
    float: left; }

.small-up-3 > .column, .small-up-3 > .columns {
  width: 33.3333333333%;
  float: left; }
  .small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
    clear: both; }
  .small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
    float: left; }

.small-up-4 > .column, .small-up-4 > .columns {
  width: 25%;
  float: left; }
  .small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
    clear: both; }
  .small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
    float: left; }

.small-up-5 > .column, .small-up-5 > .columns {
  width: 20%;
  float: left; }
  .small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
    clear: both; }
  .small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
    float: left; }

.small-up-6 > .column, .small-up-6 > .columns {
  width: 16.6666666667%;
  float: left; }
  .small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
    clear: both; }
  .small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
    float: left; }

.small-up-7 > .column, .small-up-7 > .columns {
  width: 14.2857142857%;
  float: left; }
  .small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
    clear: both; }
  .small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
    float: left; }

.small-up-8 > .column, .small-up-8 > .columns {
  width: 12.5%;
  float: left; }
  .small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
    clear: both; }
  .small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
    float: left; }

.small-collapse > .column, .small-collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

.small-collapse .row {
  margin-left: 0;
  margin-right: 0; }

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-left: 0.625rem;
  padding-right: 0.625rem; }

.small-centered {
  float: none;
  margin-left: auto;
  margin-right: auto; }

.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  margin-left: 0;
  margin-right: 0;
  float: left; }

@media screen and (min-width: 47.9375em) {
  .medium-1 {
    width: 8.3333333333%; }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%; }
  .medium-pull-1 {
    position: relative;
    left: -8.3333333333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    width: 16.6666666667%; }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%; }
  .medium-pull-2 {
    position: relative;
    left: -16.6666666667%; }
  .medium-offset-1 {
    margin-left: 8.3333333333%; }
  .medium-3 {
    width: 25%; }
  .medium-push-3 {
    position: relative;
    left: 25%; }
  .medium-pull-3 {
    position: relative;
    left: -25%; }
  .medium-offset-2 {
    margin-left: 16.6666666667%; }
  .medium-4 {
    width: 33.3333333333%; }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%; }
  .medium-pull-4 {
    position: relative;
    left: -33.3333333333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    width: 41.6666666667%; }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%; }
  .medium-pull-5 {
    position: relative;
    left: -41.6666666667%; }
  .medium-offset-4 {
    margin-left: 33.3333333333%; }
  .medium-6 {
    width: 50%; }
  .medium-push-6 {
    position: relative;
    left: 50%; }
  .medium-pull-6 {
    position: relative;
    left: -50%; }
  .medium-offset-5 {
    margin-left: 41.6666666667%; }
  .medium-7 {
    width: 58.3333333333%; }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%; }
  .medium-pull-7 {
    position: relative;
    left: -58.3333333333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    width: 66.6666666667%; }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%; }
  .medium-pull-8 {
    position: relative;
    left: -66.6666666667%; }
  .medium-offset-7 {
    margin-left: 58.3333333333%; }
  .medium-9 {
    width: 75%; }
  .medium-push-9 {
    position: relative;
    left: 75%; }
  .medium-pull-9 {
    position: relative;
    left: -75%; }
  .medium-offset-8 {
    margin-left: 66.6666666667%; }
  .medium-10 {
    width: 83.3333333333%; }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%; }
  .medium-pull-10 {
    position: relative;
    left: -83.3333333333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    width: 91.6666666667%; }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%; }
  .medium-pull-11 {
    position: relative;
    left: -91.6666666667%; }
  .medium-offset-10 {
    margin-left: 83.3333333333%; }
  .medium-12 {
    width: 100%; }
  .medium-offset-11 {
    margin-left: 91.6666666667%; }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    width: 100%;
    float: left; }
    .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
      float: left; }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    width: 50%;
    float: left; }
    .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
      float: left; }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    width: 33.3333333333%;
    float: left; }
    .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
      float: left; }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    width: 25%;
    float: left; }
    .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
      float: left; }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    width: 20%;
    float: left; }
    .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
      float: left; }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    width: 16.6666666667%;
    float: left; }
    .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
      float: left; }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    width: 14.2857142857%;
    float: left; }
    .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
      float: left; }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
      float: left; }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .medium-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .medium-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 64em) {
  .large-1 {
    width: 8.3333333333%; }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%; }
  .large-pull-1 {
    position: relative;
    left: -8.3333333333%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    width: 16.6666666667%; }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%; }
  .large-pull-2 {
    position: relative;
    left: -16.6666666667%; }
  .large-offset-1 {
    margin-left: 8.3333333333%; }
  .large-3 {
    width: 25%; }
  .large-push-3 {
    position: relative;
    left: 25%; }
  .large-pull-3 {
    position: relative;
    left: -25%; }
  .large-offset-2 {
    margin-left: 16.6666666667%; }
  .large-4 {
    width: 33.3333333333%; }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%; }
  .large-pull-4 {
    position: relative;
    left: -33.3333333333%; }
  .large-offset-3 {
    margin-left: 25%; }
  .large-5 {
    width: 41.6666666667%; }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%; }
  .large-pull-5 {
    position: relative;
    left: -41.6666666667%; }
  .large-offset-4 {
    margin-left: 33.3333333333%; }
  .large-6 {
    width: 50%; }
  .large-push-6 {
    position: relative;
    left: 50%; }
  .large-pull-6 {
    position: relative;
    left: -50%; }
  .large-offset-5 {
    margin-left: 41.6666666667%; }
  .large-7 {
    width: 58.3333333333%; }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%; }
  .large-pull-7 {
    position: relative;
    left: -58.3333333333%; }
  .large-offset-6 {
    margin-left: 50%; }
  .large-8 {
    width: 66.6666666667%; }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%; }
  .large-pull-8 {
    position: relative;
    left: -66.6666666667%; }
  .large-offset-7 {
    margin-left: 58.3333333333%; }
  .large-9 {
    width: 75%; }
  .large-push-9 {
    position: relative;
    left: 75%; }
  .large-pull-9 {
    position: relative;
    left: -75%; }
  .large-offset-8 {
    margin-left: 66.6666666667%; }
  .large-10 {
    width: 83.3333333333%; }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%; }
  .large-pull-10 {
    position: relative;
    left: -83.3333333333%; }
  .large-offset-9 {
    margin-left: 75%; }
  .large-11 {
    width: 91.6666666667%; }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%; }
  .large-pull-11 {
    position: relative;
    left: -91.6666666667%; }
  .large-offset-10 {
    margin-left: 83.3333333333%; }
  .large-12 {
    width: 100%; }
  .large-offset-11 {
    margin-left: 91.6666666667%; }
  .large-up-1 > .column, .large-up-1 > .columns {
    width: 100%;
    float: left; }
    .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
      float: left; }
  .large-up-2 > .column, .large-up-2 > .columns {
    width: 50%;
    float: left; }
    .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
      float: left; }
  .large-up-3 > .column, .large-up-3 > .columns {
    width: 33.3333333333%;
    float: left; }
    .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
      float: left; }
  .large-up-4 > .column, .large-up-4 > .columns {
    width: 25%;
    float: left; }
    .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
      float: left; }
  .large-up-5 > .column, .large-up-5 > .columns {
    width: 20%;
    float: left; }
    .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
      float: left; }
  .large-up-6 > .column, .large-up-6 > .columns {
    width: 16.6666666667%;
    float: left; }
    .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
      float: left; }
  .large-up-7 > .column, .large-up-7 > .columns {
    width: 14.2857142857%;
    float: left; }
    .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
      float: left; }
  .large-up-8 > .column, .large-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
      float: left; }
  .large-collapse > .column, .large-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .large-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .large-centered {
    float: none;
    margin-left: auto;
    margin-right: auto; }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }

p {
  font-size: inherit;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-rendering: optimizeLegibility; }

em,
i {
  font-style: italic;
  line-height: inherit; }

strong,
b {
  font-weight: bold;
  line-height: inherit; }

small {
  font-size: 80%;
  line-height: inherit; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.4; }
  h1 small,
  h2 small,
  h3 small,
  h4 small,
  h5 small,
  h6 small {
    color: #cacaca;
    line-height: 0; }

h1 {
  font-size: 2.25rem; }

h2 {
  font-size: 1.5rem; }

h3 {
  font-size: 1.1875rem; }

h4 {
  font-size: 1.125rem; }

h5 {
  font-size: 1.0625rem; }

h6 {
  font-size: 1rem; }

@media screen and (min-width: 47.9375em) {
  h1 {
    font-size: 2.25rem; }
  h2 {
    font-size: 1.5rem; }
  h3 {
    font-size: 1.1875rem; }
  h4 {
    font-size: 1.125rem; }
  h5 {
    font-size: 1.0625rem; }
  h6 {
    font-size: 1rem; } }

a {
  color: #f37e32;
  text-decoration: none;
  line-height: inherit;
  cursor: pointer; }
  a:hover, a:focus {
    color: #ee660e; }
  a img {
    border: 0; }

hr {
  max-width: 60rem;
  height: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
  margin: 1.25rem auto;
  clear: both; }

ul,
ol,
dl {
  line-height: 1.6;
  margin-bottom: 1rem;
  list-style-position: outside; }

li {
  font-size: inherit; }

ul {
  list-style-type: disc;
  margin-left: 1.25rem; }

ol {
  margin-left: 1.25rem; }

ul ul, ol ul, ul ol, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0; }

dl {
  margin-bottom: 1rem; }
  dl dt {
    margin-bottom: 0.3rem;
    font-weight: bold; }

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca; }
  blockquote, blockquote p {
    line-height: 1.6;
    color: #8a8a8a; }

cite {
  display: block;
  font-size: 0.8125rem;
  color: #8a8a8a; }
  cite:before {
    content: '\2014 \0020'; }

abbr {
  color: #0a0a0a;
  cursor: help;
  border-bottom: 1px dotted #0a0a0a; }

code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a;
  background-color: #e6e6e6;
  border: 1px solid #cacaca;
  padding: 0.125rem 0.3125rem 0.0625rem; }

kbd {
  padding: 0.125rem 0.25rem 0;
  margin: 0;
  background-color: #e6e6e6;
  color: #0a0a0a;
  font-family: Consolas, "Liberation Mono", Courier, monospace; }

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #8a8a8a; }

.lead {
  font-size: 125%;
  line-height: 1.6; }

.stat {
  font-size: 2.5rem;
  line-height: 1; }
  p + .stat {
    margin-top: -1rem; }

.no-bullet {
  margin-left: 0;
  list-style: none; }

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

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

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

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

@media screen and (min-width: 47.9375em) {
  .medium-text-left {
    text-align: left; }
  .medium-text-right {
    text-align: right; }
  .medium-text-center {
    text-align: center; }
  .medium-text-justify {
    text-align: justify; } }

@media screen and (min-width: 64em) {
  .large-text-left {
    text-align: left; }
  .large-text-right {
    text-align: right; }
  .large-text-center {
    text-align: center; }
  .large-text-justify {
    text-align: justify; } }

.show-for-print {
  display: none !important; }

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  .show-for-print {
    display: block !important; }
  .hide-for-print {
    display: none !important; }
  table.show-for-print {
    display: table !important; }
  thead.show-for-print {
    display: table-header-group !important; }
  tbody.show-for-print {
    display: table-row-group !important; }
  tr.show-for-print {
    display: table-row !important; }
  td.show-for-print {
    display: table-cell !important; }
  th.show-for-print {
    display: table-cell !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: ''; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  pre,
  blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #0a0a0a;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  border-radius: 0;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none; }
  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
  textarea:focus {
    border: 1px solid #8a8a8a;
    background-color: #fefefe;
    outline: none;
    box-shadow: 0 0 5px #cacaca;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }

textarea {
  max-width: 100%; }
  textarea[rows] {
    height: auto; }

input::placeholder,
textarea::placeholder {
  color: #cacaca; }

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: default; }

[type='submit'],
[type='button'] {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none; }

input[type="search"] {
  box-sizing: border-box; }

[type='file'],
[type='checkbox'],
[type='radio'] {
  margin: 0 0 1rem; }

[type='checkbox'] + label,
[type='radio'] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline; }
  [type='checkbox'] + label[for],
  [type='radio'] + label[for] {
    cursor: pointer; }

label > [type='checkbox'],
label > [type='radio'] {
  margin-right: 0.5rem; }

[type='file'] {
  width: 100%; }

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a; }
  label.middle {
    margin: 0 0 1rem;
    padding: 0.5625rem 0; }

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #0a0a0a; }

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 1rem; }
  .input-group > :first-child {
    border-radius: 0 0 0 0; }
  .input-group > :last-child > * {
    border-radius: 0 0 0 0; }

.input-group-label, .input-group-field, .input-group-button {
  margin: 0;
  display: table-cell;
  vertical-align: middle; }

.input-group-label {
  text-align: center;
  padding: 0 1rem;
  background: #e6e6e6;
  color: #0a0a0a;
  border: 1px solid #cacaca;
  white-space: nowrap;
  width: 1%;
  height: 100%; }
  .input-group-label:first-child {
    border-right: 0; }
  .input-group-label:last-child {
    border-left: 0; }

.input-group-field {
  border-radius: 0;
  height: 2.5rem; }

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  height: 100%;
  width: 1%; }
  .input-group-button a,
  .input-group-button input,
  .input-group-button button {
    margin: 0; }

.input-group .input-group-button {
  display: table-cell; }

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

legend {
  margin-bottom: 0.5rem;
  max-width: 100%; }

.fieldset {
  border: 1px solid #cacaca;
  padding: 1.25rem;
  margin: 1.125rem 0; }
  .fieldset legend {
    background: #fefefe;
    padding: 0 0.1875rem;
    margin: 0;
    margin-left: -0.1875rem; }

select {
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: normal;
  color: #0a0a0a;
  background-color: #fefefe;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28138, 138, 138%29"></polygon></svg>');
  background-size: 9px 6px;
  background-position: right center;
  background-origin: content-box;
  background-repeat: no-repeat; }
  @media screen and (min-width: 0\0) {
    select {
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
  select:disabled {
    background-color: #e6e6e6;
    cursor: default; }
  select::-ms-expand {
    display: none; }
  select[multiple] {
    height: auto;
    background-image: none; }

.is-invalid-input:not(:focus) {
  background-color: rgba(236, 88, 64, 0.1);
  border-color: #ec5840; }

.is-invalid-label {
  color: #ec5840; }

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #ec5840; }
  .form-error.is-visible {
    display: block; }

.button {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.85em 1em;
  margin: 0 0 15px 0;
  font-size: 0.9rem;
  background-color: #f37e32;
  color: #fefefe; }
  [data-whatinput='mouse'] .button {
    outline: 0; }
  .button:hover, .button:focus {
    background-color: #eb650e;
    color: #fefefe; }
  .button.tiny {
    font-size: 0.6rem; }
  .button.small {
    font-size: 0.75rem; }
  .button.large {
    font-size: 1.25rem; }
  .button.expanded {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0; }
  .button.primary {
    background-color: #f37e32;
    color: #fefefe; }
    .button.primary:hover, .button.primary:focus {
      background-color: #dd5f0d;
      color: #fefefe; }
  .button.secondary {
    background-color: #992319;
    color: #fefefe; }
    .button.secondary:hover, .button.secondary:focus {
      background-color: #7a1c14;
      color: #fefefe; }
  .button.success {
    background-color: #3adb76;
    color: #fefefe; }
    .button.success:hover, .button.success:focus {
      background-color: #22bb5b;
      color: #fefefe; }
  .button.warning {
    background-color: #ffae00;
    color: #fefefe; }
    .button.warning:hover, .button.warning:focus {
      background-color: #cc8b00;
      color: #fefefe; }
  .button.alert {
    background-color: #ec5840;
    color: #fefefe; }
    .button.alert:hover, .button.alert:focus {
      background-color: #da3116;
      color: #fefefe; }
  .button.police {
    background-color: #466fb4;
    color: #fefefe; }
    .button.police:hover, .button.police:focus {
      background-color: #385990;
      color: #fefefe; }
  .button.childrens-services {
    background-color: #b63d7f;
    color: #fefefe; }
    .button.childrens-services:hover, .button.childrens-services:focus {
      background-color: #923166;
      color: #fefefe; }
  .button.education {
    background-color: #4b8b34;
    color: #fefefe; }
    .button.education:hover, .button.education:focus {
      background-color: #3c6f2a;
      color: #fefefe; }
  .button.not-from-uk {
    background-color: #2ba88e;
    color: #fefefe; }
    .button.not-from-uk:hover, .button.not-from-uk:focus {
      background-color: #228672;
      color: #fefefe; }
  .button.home-and-family {
    background-color: #9c48a5;
    color: #fefefe; }
    .button.home-and-family:hover, .button.home-and-family:focus {
      background-color: #7d3a84;
      color: #fefefe; }
  .button.at-what-age {
    background-color: #c66028;
    color: #fefefe; }
    .button.at-what-age:hover, .button.at-what-age:focus {
      background-color: #9e4d20;
      color: #fefefe; }
  .button.abuse-and-bullying {
    background-color: #80959e;
    color: #fefefe; }
    .button.abuse-and-bullying:hover, .button.abuse-and-bullying:focus {
      background-color: #637982;
      color: #fefefe; }
  .button.sex-health-drugs {
    background-color: #ea505c;
    color: #0a0a0a; }
    .button.sex-health-drugs:hover, .button.sex-health-drugs:focus {
      background-color: #e01b2a;
      color: #0a0a0a; }
  .button.my-rights {
    background-color: #439aa8;
    color: #fefefe; }
    .button.my-rights:hover, .button.my-rights:focus {
      background-color: #367b86;
      color: #fefefe; }
  .button.online-safety {
    background-color: #c3315c;
    color: #fefefe; }
    .button.online-safety:hover, .button.online-safety:focus {
      background-color: #9c274a;
      color: #fefefe; }
  .button.glossary {
    background-color: #907dcc;
    color: #0a0a0a; }
    .button.glossary:hover, .button.glossary:focus {
      background-color: #684eb9;
      color: #0a0a0a; }
  .button.whos-who {
    background-color: #b29005;
    color: #fefefe; }
    .button.whos-who:hover, .button.whos-who:focus {
      background-color: #8e7304;
      color: #fefefe; }
  .button.contact-us {
    background-color: #eeb469;
    color: #0a0a0a; }
    .button.contact-us:hover, .button.contact-us:focus {
      background-color: #e7952b;
      color: #0a0a0a; }
  .button.lawstuff-yellow {
    background-color: #f8ddb2;
    color: #0a0a0a; }
    .button.lawstuff-yellow:hover, .button.lawstuff-yellow:focus {
      background-color: #f1bb64;
      color: #0a0a0a; }
  .button.hollow {
    border: 1px solid #f37e32;
    color: #f37e32; }
    .button.hollow, .button.hollow:hover, .button.hollow:focus {
      background-color: transparent; }
    .button.hollow:hover, .button.hollow:focus {
      border-color: #8a3b08;
      color: #8a3b08; }
    .button.hollow.primary {
      border: 1px solid #f37e32;
      color: #f37e32; }
      .button.hollow.primary:hover, .button.hollow.primary:focus {
        border-color: #8a3b08;
        color: #8a3b08; }
    .button.hollow.secondary {
      border: 1px solid #992319;
      color: #992319; }
      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
        border-color: #4d120d;
        color: #4d120d; }
    .button.hollow.success {
      border: 1px solid #3adb76;
      color: #3adb76; }
      .button.hollow.success:hover, .button.hollow.success:focus {
        border-color: #157539;
        color: #157539; }
    .button.hollow.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.hollow.warning:hover, .button.hollow.warning:focus {
        border-color: #805700;
        color: #805700; }
    .button.hollow.alert {
      border: 1px solid #ec5840;
      color: #ec5840; }
      .button.hollow.alert:hover, .button.hollow.alert:focus {
        border-color: #881f0e;
        color: #881f0e; }
    .button.hollow.police {
      border: 1px solid #466fb4;
      color: #466fb4; }
      .button.hollow.police:hover, .button.hollow.police:focus {
        border-color: #23385a;
        color: #23385a; }
    .button.hollow.childrens-services {
      border: 1px solid #b63d7f;
      color: #b63d7f; }
      .button.hollow.childrens-services:hover, .button.hollow.childrens-services:focus {
        border-color: #5b1f40;
        color: #5b1f40; }
    .button.hollow.education {
      border: 1px solid #4b8b34;
      color: #4b8b34; }
      .button.hollow.education:hover, .button.hollow.education:focus {
        border-color: #26461a;
        color: #26461a; }
    .button.hollow.not-from-uk {
      border: 1px solid #2ba88e;
      color: #2ba88e; }
      .button.hollow.not-from-uk:hover, .button.hollow.not-from-uk:focus {
        border-color: #165447;
        color: #165447; }
    .button.hollow.home-and-family {
      border: 1px solid #9c48a5;
      color: #9c48a5; }
      .button.hollow.home-and-family:hover, .button.hollow.home-and-family:focus {
        border-color: #4e2453;
        color: #4e2453; }
    .button.hollow.at-what-age {
      border: 1px solid #c66028;
      color: #c66028; }
      .button.hollow.at-what-age:hover, .button.hollow.at-what-age:focus {
        border-color: #633014;
        color: #633014; }
    .button.hollow.abuse-and-bullying {
      border: 1px solid #80959e;
      color: #80959e; }
      .button.hollow.abuse-and-bullying:hover, .button.hollow.abuse-and-bullying:focus {
        border-color: #3e4b51;
        color: #3e4b51; }
    .button.hollow.sex-health-drugs {
      border: 1px solid #ea505c;
      color: #ea505c; }
      .button.hollow.sex-health-drugs:hover, .button.hollow.sex-health-drugs:focus {
        border-color: #8c111a;
        color: #8c111a; }
    .button.hollow.my-rights {
      border: 1px solid #439aa8;
      color: #439aa8; }
      .button.hollow.my-rights:hover, .button.hollow.my-rights:focus {
        border-color: #224d54;
        color: #224d54; }
    .button.hollow.online-safety {
      border: 1px solid #c3315c;
      color: #c3315c; }
      .button.hollow.online-safety:hover, .button.hollow.online-safety:focus {
        border-color: #62192e;
        color: #62192e; }
    .button.hollow.glossary {
      border: 1px solid #907dcc;
      color: #907dcc; }
      .button.hollow.glossary:hover, .button.hollow.glossary:focus {
        border-color: #402e76;
        color: #402e76; }
    .button.hollow.whos-who {
      border: 1px solid #b29005;
      color: #b29005; }
      .button.hollow.whos-who:hover, .button.hollow.whos-who:focus {
        border-color: #594803;
        color: #594803; }
    .button.hollow.contact-us {
      border: 1px solid #eeb469;
      color: #eeb469; }
      .button.hollow.contact-us:hover, .button.hollow.contact-us:focus {
        border-color: #9a5e11;
        color: #9a5e11; }
    .button.hollow.lawstuff-yellow {
      border: 1px solid #f8ddb2;
      color: #f8ddb2; }
      .button.hollow.lawstuff-yellow:hover, .button.hollow.lawstuff-yellow:focus {
        border-color: #c37f12;
        color: #c37f12; }
  .button.disabled, .button[disabled] {
    opacity: 0.25;
    cursor: not-allowed; }
  .button.dropdown::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    border-color: #fefefe transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    position: relative;
    top: 0.4em;
    float: right;
    margin-left: 1em;
    display: inline-block; }
  .button.arrow-only::after {
    margin-left: 0;
    float: none;
    top: -0.1em; }

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

@media screen and (max-width: 47.875em) {
  .hide-for-small-only {
    display: none !important; } }

@media screen and (max-width: 0em), screen and (min-width: 47.9375em) {
  .show-for-small-only {
    display: none !important; } }

@media screen and (min-width: 47.9375em) {
  .hide-for-medium {
    display: none !important; } }

@media screen and (max-width: 47.875em) {
  .show-for-medium {
    display: none !important; } }

@media screen and (min-width: 47.9375em) and (max-width: 63.9375em) {
  .hide-for-medium-only {
    display: none !important; } }

@media screen and (max-width: 47.875em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important; } }

@media screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important; } }

@media screen and (max-width: 63.9375em) {
  .show-for-large {
    display: none !important; } }

@media screen and (min-width: 64em) and (max-width: 74.9375em) {
  .hide-for-large-only {
    display: none !important; } }

@media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important; } }

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0); }

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto; }

.show-for-landscape,
.hide-for-portrait {
  display: block !important; }
  @media screen and (orientation: landscape) {
    .show-for-landscape,
    .hide-for-portrait {
      display: block !important; } }
  @media screen and (orientation: portrait) {
    .show-for-landscape,
    .hide-for-portrait {
      display: none !important; } }

.hide-for-landscape,
.show-for-portrait {
  display: none !important; }
  @media screen and (orientation: landscape) {
    .hide-for-landscape,
    .show-for-portrait {
      display: none !important; } }
  @media screen and (orientation: portrait) {
    .hide-for-landscape,
    .show-for-portrait {
      display: block !important; } }

.float-left {
  float: left !important; }

.float-right {
  float: right !important; }

.float-center {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.clearfix::before, .clearfix::after {
  content: ' ';
  display: table; }

.clearfix::after {
  clear: both; }

.accordion {
  list-style-type: none;
  background: #fefefe;
  border: 1px solid #e6e6e6;
  border-bottom: 0;
  border-radius: 0;
  margin-left: 0; }

.accordion-title {
  display: block;
  padding: 1.25rem 1rem;
  line-height: 1;
  font-size: 0.75rem;
  color: #f37e32;
  position: relative;
  border-bottom: 1px solid #e6e6e6; }
  .accordion-title:hover, .accordion-title:focus {
    background-color: #e6e6e6; }
  .accordion-title::before {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -0.5rem; }
  .is-active > .accordion-title::before {
    content: '–'; }

.accordion-content {
  padding: 1rem;
  display: none;
  border-bottom: 1px solid #e6e6e6;
  background-color: #fefefe; }

.is-accordion-submenu-parent > a {
  position: relative; }
  .is-accordion-submenu-parent > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    border-color: #f37e32 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    position: absolute;
    top: 50%;
    margin-top: -4px;
    right: 1rem; }

.is-accordion-submenu-parent[aria-expanded='true'] > a::after {
  transform-origin: 50% 50%;
  transform: scaleY(-1); }

.badge {
  display: inline-block;
  padding: 0.3em;
  min-width: 2.1em;
  font-size: 0.6rem;
  text-align: center;
  border-radius: 50%;
  background: #f37e32;
  color: #fefefe; }
  .badge.secondary {
    background: #992319;
    color: #fefefe; }
  .badge.success {
    background: #3adb76;
    color: #fefefe; }
  .badge.warning {
    background: #ffae00;
    color: #fefefe; }
  .badge.alert {
    background: #ec5840;
    color: #fefefe; }
  .badge.police {
    background: #466fb4;
    color: #fefefe; }
  .badge.childrens-services {
    background: #b63d7f;
    color: #fefefe; }
  .badge.education {
    background: #4b8b34;
    color: #fefefe; }
  .badge.not-from-uk {
    background: #2ba88e;
    color: #fefefe; }
  .badge.home-and-family {
    background: #9c48a5;
    color: #fefefe; }
  .badge.at-what-age {
    background: #c66028;
    color: #fefefe; }
  .badge.abuse-and-bullying {
    background: #80959e;
    color: #fefefe; }
  .badge.sex-health-drugs {
    background: #ea505c;
    color: #0a0a0a; }
  .badge.my-rights {
    background: #439aa8;
    color: #fefefe; }
  .badge.online-safety {
    background: #c3315c;
    color: #fefefe; }
  .badge.glossary {
    background: #907dcc;
    color: #0a0a0a; }
  .badge.whos-who {
    background: #b29005;
    color: #fefefe; }
  .badge.contact-us {
    background: #eeb469;
    color: #0a0a0a; }
  .badge.lawstuff-yellow {
    background: #f8ddb2;
    color: #0a0a0a; }

.breadcrumbs {
  list-style: none;
  margin: 0 0 15px 0; }
  .breadcrumbs::before, .breadcrumbs::after {
    content: ' ';
    display: table; }
  .breadcrumbs::after {
    clear: both; }
  .breadcrumbs li {
    float: left;
    color: #0a0a0a;
    font-size: 0.6875rem;
    cursor: default;
    text-transform: uppercase; }
    .breadcrumbs li:not(:last-child)::after {
      color: #cacaca;
      content: "/";
      margin: 0 0.75rem;
      position: relative;
      top: 1px;
      opacity: 1; }
  .breadcrumbs a {
    color: #f37e32; }
    .breadcrumbs a:hover {
      text-decoration: underline; }
  .breadcrumbs .disabled {
    color: #cacaca;
    cursor: not-allowed; }

.button-group {
  margin-bottom: 1rem;
  font-size: 0; }
  .button-group::before, .button-group::after {
    content: ' ';
    display: table; }
  .button-group::after {
    clear: both; }
  .button-group .button {
    margin: 0;
    font-size: 0.9rem; }
    .button-group .button:not(:last-child) {
      margin-right: 1px; }
  .button-group.tiny .button {
    font-size: 0.6rem; }
  .button-group.small .button {
    font-size: 0.75rem; }
  .button-group.large .button {
    font-size: 1.25rem; }
  .button-group.expanded {
    margin-right: -1px; }
    .button-group.expanded::before, .button-group.expanded::after {
      display: none; }
    .button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
      display: inline-block;
      width: 50%;
      margin-right: 1px; }
    .button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
      display: inline-block;
      width: 33.3333333333%;
      margin-right: 1px; }
    .button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
      display: inline-block;
      width: 25%;
      margin-right: 1px; }
    .button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
      display: inline-block;
      width: 20%;
      margin-right: 1px; }
    .button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
      display: inline-block;
      width: 16.6666666667%;
      margin-right: 1px; }
  .button-group.primary .button {
    background-color: #f37e32;
    color: #fefefe; }
    .button-group.primary .button:hover, .button-group.primary .button:focus {
      background-color: #dd5f0d;
      color: #fefefe; }
  .button-group.secondary .button {
    background-color: #992319;
    color: #fefefe; }
    .button-group.secondary .button:hover, .button-group.secondary .button:focus {
      background-color: #7a1c14;
      color: #fefefe; }
  .button-group.success .button {
    background-color: #3adb76;
    color: #fefefe; }
    .button-group.success .button:hover, .button-group.success .button:focus {
      background-color: #22bb5b;
      color: #fefefe; }
  .button-group.warning .button {
    background-color: #ffae00;
    color: #fefefe; }
    .button-group.warning .button:hover, .button-group.warning .button:focus {
      background-color: #cc8b00;
      color: #fefefe; }
  .button-group.alert .button {
    background-color: #ec5840;
    color: #fefefe; }
    .button-group.alert .button:hover, .button-group.alert .button:focus {
      background-color: #da3116;
      color: #fefefe; }
  .button-group.police .button {
    background-color: #466fb4;
    color: #fefefe; }
    .button-group.police .button:hover, .button-group.police .button:focus {
      background-color: #385990;
      color: #fefefe; }
  .button-group.childrens-services .button {
    background-color: #b63d7f;
    color: #fefefe; }
    .button-group.childrens-services .button:hover, .button-group.childrens-services .button:focus {
      background-color: #923166;
      color: #fefefe; }
  .button-group.education .button {
    background-color: #4b8b34;
    color: #fefefe; }
    .button-group.education .button:hover, .button-group.education .button:focus {
      background-color: #3c6f2a;
      color: #fefefe; }
  .button-group.not-from-uk .button {
    background-color: #2ba88e;
    color: #fefefe; }
    .button-group.not-from-uk .button:hover, .button-group.not-from-uk .button:focus {
      background-color: #228672;
      color: #fefefe; }
  .button-group.home-and-family .button {
    background-color: #9c48a5;
    color: #fefefe; }
    .button-group.home-and-family .button:hover, .button-group.home-and-family .button:focus {
      background-color: #7d3a84;
      color: #fefefe; }
  .button-group.at-what-age .button {
    background-color: #c66028;
    color: #fefefe; }
    .button-group.at-what-age .button:hover, .button-group.at-what-age .button:focus {
      background-color: #9e4d20;
      color: #fefefe; }
  .button-group.abuse-and-bullying .button {
    background-color: #80959e;
    color: #fefefe; }
    .button-group.abuse-and-bullying .button:hover, .button-group.abuse-and-bullying .button:focus {
      background-color: #637982;
      color: #fefefe; }
  .button-group.sex-health-drugs .button {
    background-color: #ea505c;
    color: #0a0a0a; }
    .button-group.sex-health-drugs .button:hover, .button-group.sex-health-drugs .button:focus {
      background-color: #e01b2a;
      color: #0a0a0a; }
  .button-group.my-rights .button {
    background-color: #439aa8;
    color: #fefefe; }
    .button-group.my-rights .button:hover, .button-group.my-rights .button:focus {
      background-color: #367b86;
      color: #fefefe; }
  .button-group.online-safety .button {
    background-color: #c3315c;
    color: #fefefe; }
    .button-group.online-safety .button:hover, .button-group.online-safety .button:focus {
      background-color: #9c274a;
      color: #fefefe; }
  .button-group.glossary .button {
    background-color: #907dcc;
    color: #0a0a0a; }
    .button-group.glossary .button:hover, .button-group.glossary .button:focus {
      background-color: #684eb9;
      color: #0a0a0a; }
  .button-group.whos-who .button {
    background-color: #b29005;
    color: #fefefe; }
    .button-group.whos-who .button:hover, .button-group.whos-who .button:focus {
      background-color: #8e7304;
      color: #fefefe; }
  .button-group.contact-us .button {
    background-color: #eeb469;
    color: #0a0a0a; }
    .button-group.contact-us .button:hover, .button-group.contact-us .button:focus {
      background-color: #e7952b;
      color: #0a0a0a; }
  .button-group.lawstuff-yellow .button {
    background-color: #f8ddb2;
    color: #0a0a0a; }
    .button-group.lawstuff-yellow .button:hover, .button-group.lawstuff-yellow .button:focus {
      background-color: #f1bb64;
      color: #0a0a0a; }
  .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
    width: 100%;
    border-right: 1px solid transparent; }
    .button-group.stacked .button:not(:last-child), .button-group.stacked-for-small .button:not(:last-child), .button-group.stacked-for-medium .button:not(:last-child) {
      border-bottom: 1px solid #fefefe; }
  @media screen and (min-width: 47.9375em) {
    .button-group.stacked-for-small .button {
      width: auto; }
      .button-group.stacked-for-small .button:not(:last-child) {
        margin-right: 1px; } }
  @media screen and (min-width: 64em) {
    .button-group.stacked-for-medium .button {
      width: auto; }
      .button-group.stacked-for-medium .button:not(:last-child) {
        margin-right: 1px; } }
  @media screen and (max-width: 47.875em) {
    .button-group.stacked-for-small.expanded {
      display: block; }
      .button-group.stacked-for-small.expanded .button {
        display: block;
        margin-right: 0; } }

.callout {
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 0;
  position: relative;
  color: #0a0a0a;
  background-color: white; }
  .callout > :first-child {
    margin-top: 0; }
  .callout > :last-child {
    margin-bottom: 0; }
  .callout.primary {
    background-color: #fdece0; }
  .callout.secondary {
    background-color: #f8d7d4; }
  .callout.success {
    background-color: #e1faea; }
  .callout.warning {
    background-color: #fff3d9; }
  .callout.alert {
    background-color: #fce6e2; }
  .callout.police {
    background-color: #e3e9f4; }
  .callout.childrens-services {
    background-color: #f5e1ec; }
  .callout.education {
    background-color: #e2f2dc; }
  .callout.not-from-uk {
    background-color: #dbf6f0; }
  .callout.home-and-family {
    background-color: #f1e2f3; }
  .callout.at-what-age {
    background-color: #f8e7dd; }
  .callout.abuse-and-bullying {
    background-color: #eceff0; }
  .callout.sex-health-drugs {
    background-color: #fce5e7; }
  .callout.my-rights {
    background-color: #e2f1f3; }
  .callout.online-safety {
    background-color: #f7dfe6; }
  .callout.glossary {
    background-color: #eeecf7; }
  .callout.whos-who {
    background-color: #fef5cf; }
  .callout.contact-us {
    background-color: #fcf4e9; }
  .callout.lawstuff-yellow {
    background-color: #fefaf3; }
  .callout.small {
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem; }
  .callout.large {
    padding-top: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    padding-left: 3rem; }

.close-button {
  position: absolute;
  color: #8a8a8a;
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
  cursor: pointer; }
  [data-whatinput='mouse'] .close-button {
    outline: 0; }
  .close-button:hover, .close-button:focus {
    color: #0a0a0a; }

.is-drilldown {
  position: relative;
  overflow: hidden; }
  .is-drilldown li {
    display: block !important; }

.is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  height: 100%;
  width: 100%;
  background: #fefefe;
  transition: transform 0.15s linear; }
  .is-drilldown-submenu.is-active {
    z-index: 1;
    display: block;
    transform: translateX(-100%); }
  .is-drilldown-submenu.is-closing {
    transform: translateX(100%); }

.is-drilldown-submenu-parent > a {
  position: relative; }
  .is-drilldown-submenu-parent > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    border-color: transparent transparent transparent #f37e32;
    border-left-style: solid;
    border-right-width: 0;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 1rem; }

.js-drilldown-back > a::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  border-color: transparent #f37e32 transparent transparent;
  border-right-style: solid;
  border-left-width: 0;
  border-left-width: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem; }

.dropdown-pane {
  background-color: #fefefe;
  border: 1px solid #cacaca;
  border-radius: 0;
  display: block;
  font-size: 1rem;
  padding: 1rem;
  position: absolute;
  visibility: hidden;
  width: 300px;
  z-index: 10; }
  .dropdown-pane.is-open {
    visibility: visible; }

.dropdown-pane.tiny {
  width: 100px; }

.dropdown-pane.small {
  width: 200px; }

.dropdown-pane.large {
  width: 400px; }

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  left: auto;
  right: 0;
  top: 100%; }

.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 0;
  top: 100%; }

.dropdown.menu > li.is-dropdown-submenu-parent > a {
  padding-right: 1.5rem;
  position: relative; }

.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: #f37e32 transparent transparent;
  border-top-style: solid;
  border-bottom-width: 0;
  right: 5px;
  margin-top: -2px; }

[data-whatinput='mouse'] .dropdown.menu a {
  outline: 0; }

.no-js .dropdown.menu ul {
  display: none; }

.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0; }

.dropdown.menu.vertical > li.opens-left .is-dropdown-submenu {
  left: auto;
  right: 100%; }

.dropdown.menu.vertical > li.opens-right .is-dropdown-submenu {
  right: auto;
  left: 100%; }

.dropdown.menu.vertical > li > a::after {
  right: 14px;
  margin-top: -3px; }

.dropdown.menu.vertical > li.opens-left > a::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent #f37e32 transparent transparent;
  border-right-style: solid;
  border-left-width: 0; }

.dropdown.menu.vertical > li.opens-right > a::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  border-color: transparent transparent transparent #f37e32;
  border-left-style: solid;
  border-right-width: 0; }

@media screen and (min-width: 47.9375em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%; }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%; }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative; }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #f37e32 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px; }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.medium-vertical > li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  .dropdown.menu.medium-vertical > li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
    margin-top: -3px; }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #f37e32 transparent transparent;
    border-right-style: solid;
    border-left-width: 0; }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #f37e32;
    border-left-style: solid;
    border-right-width: 0; } }

@media screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%; }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%; }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative; }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #f37e32 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px; }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.large-vertical > li.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  .dropdown.menu.large-vertical > li.opens-right .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
    margin-top: -3px; }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #f37e32 transparent transparent;
    border-right-style: solid;
    border-left-width: 0; }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #f37e32;
    border-left-style: solid;
    border-right-width: 0; } }

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  left: auto;
  right: 0; }

.is-dropdown-menu.vertical {
  width: 100px; }
  .is-dropdown-menu.vertical.align-right {
    float: right; }

.is-dropdown-submenu-parent {
  position: relative; }
  .is-dropdown-submenu-parent a::after {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -2px; }
  .is-dropdown-submenu-parent.opens-inner .is-dropdown-submenu {
    top: 100%; }
  .is-dropdown-submenu-parent.opens-left .is-dropdown-submenu {
    left: auto;
    right: 100%; }

.is-dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  z-index: 1;
  background: #fefefe;
  border: 1px solid #cacaca; }
  .is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
    right: 14px;
    margin-top: -3px; }
  .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #f37e32 transparent transparent;
    border-right-style: solid;
    border-left-width: 0; }
  .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #f37e32;
    border-left-style: solid;
    border-right-width: 0; }
  .is-dropdown-submenu .is-dropdown-submenu {
    margin-top: -1px; }
  .is-dropdown-submenu > li {
    width: 100%; }
  .is-dropdown-submenu:not(.js-dropdown-nohover) > .is-dropdown-submenu-parent:hover > .is-dropdown-submenu, .is-dropdown-submenu.js-dropdown-active {
    display: block; }

.flex-video {
  position: relative;
  height: 0;
  padding-bottom: 75%;
  margin-bottom: 1rem;
  overflow: hidden; }
  .flex-video iframe,
  .flex-video object,
  .flex-video embed,
  .flex-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .flex-video.widescreen {
    padding-bottom: 56.25%; }
  .flex-video.vimeo {
    padding-top: 0; }

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  border-radius: 0;
  background: #f37e32;
  color: #fefefe; }
  .label.secondary {
    background: #992319;
    color: #fefefe; }
  .label.success {
    background: #3adb76;
    color: #fefefe; }
  .label.warning {
    background: #ffae00;
    color: #fefefe; }
  .label.alert {
    background: #ec5840;
    color: #fefefe; }
  .label.police {
    background: #466fb4;
    color: #fefefe; }
  .label.childrens-services {
    background: #b63d7f;
    color: #fefefe; }
  .label.education {
    background: #4b8b34;
    color: #fefefe; }
  .label.not-from-uk {
    background: #2ba88e;
    color: #fefefe; }
  .label.home-and-family {
    background: #9c48a5;
    color: #fefefe; }
  .label.at-what-age {
    background: #c66028;
    color: #fefefe; }
  .label.abuse-and-bullying {
    background: #80959e;
    color: #fefefe; }
  .label.sex-health-drugs {
    background: #ea505c;
    color: #0a0a0a; }
  .label.my-rights {
    background: #439aa8;
    color: #fefefe; }
  .label.online-safety {
    background: #c3315c;
    color: #fefefe; }
  .label.glossary {
    background: #907dcc;
    color: #0a0a0a; }
  .label.whos-who {
    background: #b29005;
    color: #fefefe; }
  .label.contact-us {
    background: #eeb469;
    color: #0a0a0a; }
  .label.lawstuff-yellow {
    background: #f8ddb2;
    color: #0a0a0a; }

.media-object {
  margin-bottom: 15px;
  display: block; }
  .media-object img {
    max-width: none; }
  @media screen and (max-width: 47.875em) {
    .media-object.stack-for-small .media-object-section {
      padding: 0;
      padding-bottom: 15px;
      display: block; }
      .media-object.stack-for-small .media-object-section img {
        width: 100%; } }

.media-object-section {
  display: table-cell;
  vertical-align: top; }
  .media-object-section:first-child {
    padding-right: 15px; }
  .media-object-section:last-child:not(:nth-child(2)) {
    padding-left: 15px; }
  .media-object-section.middle {
    vertical-align: middle; }
  .media-object-section.bottom {
    vertical-align: bottom; }

.menu {
  margin: 0;
  list-style-type: none; }
  .menu > li {
    display: table-cell;
    vertical-align: middle; }
    [data-whatinput='mouse'] .menu > li {
      outline: 0; }
  .menu > li > a {
    display: block;
    padding: 0.7rem 1rem;
    line-height: 1; }
  .menu input,
  .menu a,
  .menu button {
    margin-bottom: 0; }
  .menu > li > a img,
  .menu > li > a i {
    vertical-align: middle; }
  .menu > li > a i + span,
  .menu > li > a img + span {
    vertical-align: middle; }
  .menu > li > a img,
  .menu > li > a i {
    margin-right: 0.25rem;
    display: inline-block; }
  .menu > li {
    display: table-cell; }
  .menu.vertical > li {
    display: block; }
  @media screen and (min-width: 47.9375em) {
    .menu.medium-horizontal > li {
      display: table-cell; }
    .menu.medium-vertical > li {
      display: block; } }
  @media screen and (min-width: 64em) {
    .menu.large-horizontal > li {
      display: table-cell; }
    .menu.large-vertical > li {
      display: block; } }
  .menu.simple li {
    line-height: 1;
    display: inline-block;
    margin-right: 1rem; }
  .menu.simple a {
    padding: 0; }
  .menu.align-right::before, .menu.align-right::after {
    content: ' ';
    display: table; }
  .menu.align-right::after {
    clear: both; }
  .menu.align-right > li {
    float: right; }
  .menu.expanded {
    width: 100%;
    display: table;
    table-layout: fixed; }
    .menu.expanded > li:first-child:last-child {
      width: 100%; }
  .menu.icon-top > li > a {
    text-align: center; }
    .menu.icon-top > li > a img,
    .menu.icon-top > li > a i {
      display: block;
      margin: 0 auto 0.25rem; }
  .menu.nested {
    margin-left: 1rem; }
  .menu .active > a {
    color: #fefefe;
    background: #f37e32; }

.menu-text {
  font-weight: bold;
  color: inherit;
  line-height: 1;
  padding-top: 0;
  padding-bottom: 0;
  padding: 0.7rem 1rem; }

.menu-centered {
  text-align: center; }
  .menu-centered > .menu {
    display: inline-block; }

.no-js [data-responsive-menu] ul {
  display: none; }

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 20px;
  height: 16px; }
  .menu-icon::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #fefefe;
    top: 0;
    left: 0;
    box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe; }
  .menu-icon:hover::after {
    background: #cacaca;
    box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; }

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 20px;
  height: 16px; }
  .menu-icon.dark::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #0a0a0a;
    top: 0;
    left: 0;
    box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a; }
  .menu-icon.dark:hover::after {
    background: #8a8a8a;
    box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; }

html,
body {
  height: 100%; }

.off-canvas-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: auto; }

.off-canvas-wrapper-inner {
  position: relative;
  width: 100%;
  transition: transform 0.5s ease; }
  .off-canvas-wrapper-inner::before, .off-canvas-wrapper-inner::after {
    content: ' ';
    display: table; }
  .off-canvas-wrapper-inner::after {
    clear: both; }

.off-canvas-content,
.off-canvas-content {
  min-height: 100%;
  background: #fefefe;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  z-index: 1;
  padding-bottom: 0.1px;
  box-shadow: 0 0 10px rgba(10, 10, 10, 0.5); }

.js-off-canvas-exit {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(254, 254, 254, 0.25);
  cursor: pointer;
  transition: background 0.5s ease; }

.off-canvas {
  position: absolute;
  background: #e6e6e6;
  z-index: -1;
  max-height: 100%;
  overflow-y: auto;
  transform: translateX(0); }
  [data-whatinput='mouse'] .off-canvas {
    outline: 0; }
  .off-canvas.position-left {
    left: -250px;
    top: 0;
    width: 250px; }
    .is-open-left {
      transform: translateX(250px); }
  .off-canvas.position-right {
    right: -250px;
    top: 0;
    width: 250px; }
    .is-open-right {
      transform: translateX(-250px); }

@media screen and (min-width: 47.9375em) {
  .position-left.reveal-for-medium {
    left: 0;
    z-index: auto;
    position: fixed; }
    .position-left.reveal-for-medium ~ .off-canvas-content {
      margin-left: 250px; }
  .position-right.reveal-for-medium {
    right: 0;
    z-index: auto;
    position: fixed; }
    .position-right.reveal-for-medium ~ .off-canvas-content {
      margin-right: 250px; } }

@media screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    left: 0;
    z-index: auto;
    position: fixed; }
    .position-left.reveal-for-large ~ .off-canvas-content {
      margin-left: 250px; }
  .position-right.reveal-for-large {
    right: 0;
    z-index: auto;
    position: fixed; }
    .position-right.reveal-for-large ~ .off-canvas-content {
      margin-right: 250px; } }

.orbit {
  position: relative; }

.orbit-container {
  position: relative;
  margin: 0;
  overflow: hidden;
  list-style: none; }

.orbit-slide {
  width: 100%;
  max-height: 100%; }
  .orbit-slide.no-motionui.is-active {
    top: 0;
    left: 0; }

.orbit-figure {
  margin: 0; }

.orbit-image {
  margin: 0;
  width: 100%;
  max-width: 100%; }

.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  margin-bottom: 0;
  color: #fefefe;
  background-color: rgba(10, 10, 10, 0.5); }

.orbit-previous, .orbit-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #fefefe; }
  [data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next {
    outline: 0; }
  .orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus {
    background-color: rgba(10, 10, 10, 0.5); }

.orbit-previous {
  left: 0; }

.orbit-next {
  left: auto;
  right: 0; }

.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center; }
  [data-whatinput='mouse'] .orbit-bullets {
    outline: 0; }
  .orbit-bullets button {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0.1rem;
    background-color: #cacaca;
    border-radius: 50%; }
    .orbit-bullets button:hover {
      background-color: #8a8a8a; }
    .orbit-bullets button.is-active {
      background-color: #8a8a8a; }

.pagination {
  margin-left: 0;
  margin-bottom: 15px; }
  .pagination::before, .pagination::after {
    content: ' ';
    display: table; }
  .pagination::after {
    clear: both; }
  .pagination li {
    font-size: 0.875rem;
    margin-right: 0.0625rem;
    border-radius: 0;
    display: none; }
    .pagination li:last-child, .pagination li:first-child {
      display: inline-block; }
    @media screen and (min-width: 47.9375em) {
      .pagination li {
        display: inline-block; } }
  .pagination a,
  .pagination button {
    color: #0a0a0a;
    display: block;
    padding: 0.1875rem 0.625rem;
    border-radius: 0; }
    .pagination a:hover,
    .pagination button:hover {
      background: #e6e6e6; }
  .pagination .current {
    padding: 0.1875rem 0.625rem;
    background: #f37e32;
    color: #fefefe;
    cursor: default; }
  .pagination .disabled {
    padding: 0.1875rem 0.625rem;
    color: #cacaca;
    cursor: not-allowed; }
    .pagination .disabled:hover {
      background: transparent; }
  .pagination .ellipsis::after {
    content: '\2026';
    padding: 0.1875rem 0.625rem;
    color: #0a0a0a; }

.pagination-previous a::before,
.pagination-previous.disabled::before {
  content: '\00ab';
  display: inline-block;
  margin-right: 0.5rem; }

.pagination-next a::after,
.pagination-next.disabled::after {
  content: '\00bb';
  display: inline-block;
  margin-left: 0.5rem; }

.progress {
  background-color: #cacaca;
  height: 1rem;
  margin-bottom: 15px;
  border-radius: 0; }
  .progress.primary .progress-meter {
    background-color: #f37e32; }
  .progress.secondary .progress-meter {
    background-color: #992319; }
  .progress.success .progress-meter {
    background-color: #3adb76; }
  .progress.warning .progress-meter {
    background-color: #ffae00; }
  .progress.alert .progress-meter {
    background-color: #ec5840; }
  .progress.police .progress-meter {
    background-color: #466fb4; }
  .progress.childrens-services .progress-meter {
    background-color: #b63d7f; }
  .progress.education .progress-meter {
    background-color: #4b8b34; }
  .progress.not-from-uk .progress-meter {
    background-color: #2ba88e; }
  .progress.home-and-family .progress-meter {
    background-color: #9c48a5; }
  .progress.at-what-age .progress-meter {
    background-color: #c66028; }
  .progress.abuse-and-bullying .progress-meter {
    background-color: #80959e; }
  .progress.sex-health-drugs .progress-meter {
    background-color: #ea505c; }
  .progress.my-rights .progress-meter {
    background-color: #439aa8; }
  .progress.online-safety .progress-meter {
    background-color: #c3315c; }
  .progress.glossary .progress-meter {
    background-color: #907dcc; }
  .progress.whos-who .progress-meter {
    background-color: #b29005; }
  .progress.contact-us .progress-meter {
    background-color: #eeb469; }
  .progress.lawstuff-yellow .progress-meter {
    background-color: #f8ddb2; }

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #f37e32; }

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fefefe;
  white-space: nowrap; }

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #e6e6e6;
  cursor: pointer;
  user-select: none;
  touch-action: none; }

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #cacaca;
  transition: all 0.2s ease-in-out; }
  .slider-fill.is-dragging {
    transition: all 0s linear; }

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #f37e32;
  transition: all 0.2s ease-in-out;
  touch-action: manipulation;
  border-radius: 0; }
  [data-whatinput='mouse'] .slider-handle {
    outline: 0; }
  .slider-handle:hover {
    background-color: #eb650e; }
  .slider-handle.is-dragging {
    transition: all 0s linear; }

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed; }

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  transform: scale(1, -1); }
  .slider.vertical .slider-fill {
    top: 0;
    width: 0.5rem;
    max-height: 100%; }
  .slider.vertical .slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1.4rem;
    height: 1.4rem;
    transform: translateX(-50%); }

.sticky-container {
  position: relative; }

.sticky {
  position: absolute;
  z-index: 0;
  transform: translate3d(0, 0, 0); }

.sticky.is-stuck {
  position: fixed;
  z-index: 5; }
  .sticky.is-stuck.is-at-top {
    top: 0; }
  .sticky.is-stuck.is-at-bottom {
    bottom: 0; }

.sticky.is-anchored {
  position: absolute;
  left: auto;
  right: auto; }
  .sticky.is-anchored.is-at-bottom {
    bottom: 0; }

body.is-reveal-open {
  overflow: hidden; }

.reveal-overlay {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1005;
  background-color: rgba(10, 10, 10, 0.45);
  overflow-y: scroll; }

.reveal {
  display: none;
  z-index: 1006;
  padding: 15px;
  border: 1px solid #cacaca;
  background-color: #fefefe;
  border-radius: 0;
  position: relative;
  top: 100px;
  margin-left: auto;
  margin-right: auto;
  overflow-y: auto; }
  [data-whatinput='mouse'] .reveal {
    outline: 0; }
  @media screen and (min-width: 47.9375em) {
    .reveal {
      min-height: 0; } }
  .reveal .column, .reveal .columns,
  .reveal .columns {
    min-width: 0; }
  .reveal > :last-child {
    margin-bottom: 0; }
  @media screen and (min-width: 47.9375em) {
    .reveal {
      width: 600px;
      max-width: 60rem; } }
  @media screen and (min-width: 47.9375em) {
    .reveal .reveal {
      left: auto;
      right: auto;
      margin: 0 auto; } }
  .reveal.collapse {
    padding: 0; }
  @media screen and (min-width: 47.9375em) {
    .reveal.tiny {
      width: 30%;
      max-width: 60rem; } }
  @media screen and (min-width: 47.9375em) {
    .reveal.small {
      width: 50%;
      max-width: 60rem; } }
  @media screen and (min-width: 47.9375em) {
    .reveal.large {
      width: 90%;
      max-width: 60rem; } }
  .reveal.full {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    max-width: none;
    margin-left: 0;
    border: 0;
    border-radius: 0; }
  @media screen and (max-width: 47.875em) {
    .reveal {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      height: 100vh;
      min-height: 100vh;
      max-width: none;
      margin-left: 0;
      border: 0;
      border-radius: 0; } }
  .reveal.without-overlay {
    position: fixed; }

.switch {
  margin-bottom: 15px;
  outline: 0;
  position: relative;
  user-select: none;
  color: #fefefe;
  font-weight: bold;
  font-size: 0.875rem; }

.switch-input {
  opacity: 0;
  position: absolute; }

.switch-paddle {
  background: #cacaca;
  cursor: pointer;
  display: block;
  position: relative;
  width: 4rem;
  height: 2rem;
  transition: all 0.25s ease-out;
  border-radius: 0;
  color: inherit;
  font-weight: inherit; }
  input + .switch-paddle {
    margin: 0; }
  .switch-paddle::after {
    background: #fefefe;
    content: '';
    display: block;
    position: absolute;
    height: 1.5rem;
    left: 0.25rem;
    top: 0.25rem;
    width: 1.5rem;
    transition: all 0.25s ease-out;
    transform: translate3d(0, 0, 0);
    border-radius: 0; }
  input:checked ~ .switch-paddle {
    background: #f37e32; }
    input:checked ~ .switch-paddle::after {
      left: 2.25rem; }
  [data-whatinput='mouse'] input:focus ~ .switch-paddle {
    outline: 0; }

.switch-active, .switch-inactive {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

.switch-active {
  left: 8%;
  display: none; }
  input:checked + label > .switch-active {
    display: block; }

.switch-inactive {
  right: 15%; }
  input:checked + label > .switch-inactive {
    display: none; }

.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: 0.625rem; }

.switch.tiny .switch-paddle::after {
  width: 1rem;
  height: 1rem; }

.switch.tiny input:checked ~ .switch-paddle::after {
  left: 1.75rem; }

.switch.small .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: 0.75rem; }

.switch.small .switch-paddle::after {
  width: 1.25rem;
  height: 1.25rem; }

.switch.small input:checked ~ .switch-paddle::after {
  left: 2rem; }

.switch.large .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 1rem; }

.switch.large .switch-paddle::after {
  width: 2rem;
  height: 2rem; }

.switch.large input:checked ~ .switch-paddle::after {
  left: 2.75rem; }

table {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 0; }
  thead, tbody, tfoot {
    border: 1px solid #f1f1f1;
    background-color: #fefefe; }
  caption {
    font-weight: bold;
    padding: 0.5rem 0.625rem 0.625rem; }
  thead, tfoot {
    background: #f8f8f8;
    color: #0a0a0a; }
    thead tr, tfoot tr {
      background: transparent; }
    thead th, thead td, tfoot th, tfoot td {
      padding: 0.5rem 0.625rem 0.625rem;
      font-weight: bold;
      text-align: left; }
  tbody tr:nth-child(even) {
    background-color: #f1f1f1; }
  tbody th, tbody td {
    padding: 0.5rem 0.625rem 0.625rem; }

@media screen and (max-width: 63.9375em) {
  table.stack thead {
    display: none; }
  table.stack tfoot {
    display: none; }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block; }
  table.stack td {
    border-top: 0; } }

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto; }

table.hover tr:hover {
  background-color: #f9f9f9; }

table.hover tr:nth-of-type(even):hover {
  background-color: #ececec; }

.table-scroll {
  overflow-x: auto; }
  .table-scroll table {
    width: auto; }

.tabs {
  margin: 0;
  list-style-type: none;
  background: #fefefe;
  border: 1px solid #e6e6e6; }
  .tabs::before, .tabs::after {
    content: ' ';
    display: table; }
  .tabs::after {
    clear: both; }

.tabs.vertical > li {
  width: auto;
  float: none;
  display: block; }

.tabs.simple > li > a {
  padding: 0; }
  .tabs.simple > li > a:hover {
    background: transparent; }

.tabs.primary {
  background: #f37e32; }
  .tabs.primary > li > a {
    color: #fefefe; }
    .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
      background: #f27524; }

.tabs-title {
  float: left; }
  .tabs-title > a {
    display: block;
    padding: 1.25rem 1.5rem;
    line-height: 1;
    font-size: 0.75rem; }
    .tabs-title > a:hover {
      background: #fefefe; }
    .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
      background: #e6e6e6; }

.tabs-content {
  background: #fefefe;
  transition: all 0.5s ease;
  border: 1px solid #e6e6e6;
  border-top: 0; }

.tabs-content.vertical {
  border: 1px solid #e6e6e6;
  border-left: 0; }

.tabs-panel {
  display: none;
  padding: 1rem; }
  .tabs-panel.is-active {
    display: block; }

.thumbnail {
  border: solid 4px #fefefe;
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
  display: inline-block;
  line-height: 0;
  max-width: 100%;
  transition: box-shadow 200ms ease-out;
  border-radius: 0;
  margin-bottom: 15px; }
  .thumbnail:hover, .thumbnail:focus {
    box-shadow: 0 0 6px 1px rgba(243, 126, 50, 0.5); }

.title-bar {
  background: #0a0a0a;
  color: #fefefe;
  padding: 0.5rem; }
  .title-bar::before, .title-bar::after {
    content: ' ';
    display: table; }
  .title-bar::after {
    clear: both; }
  .title-bar .menu-icon {
    margin-left: 0.25rem;
    margin-right: 0.5rem; }

.title-bar-left {
  float: left; }

.title-bar-right {
  float: right;
  text-align: right; }

.title-bar-title {
  font-weight: bold;
  vertical-align: middle;
  display: inline-block; }

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 20px;
  height: 16px; }
  .menu-icon.dark::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #0a0a0a;
    top: 0;
    left: 0;
    box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a; }
  .menu-icon.dark:hover::after {
    background: #8a8a8a;
    box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; }

.has-tip {
  border-bottom: dotted 1px #8a8a8a;
  font-weight: bold;
  position: relative;
  display: inline-block;
  cursor: help; }

.tooltip {
  background-color: #0a0a0a;
  color: #fefefe;
  font-size: 80%;
  padding: 0.75rem;
  position: absolute;
  z-index: 10;
  top: calc(100% + 0.6495rem);
  max-width: 10rem !important;
  border-radius: 0; }
  .tooltip::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    border-color: transparent transparent #0a0a0a;
    border-bottom-style: solid;
    border-top-width: 0;
    bottom: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); }
  .tooltip.top::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    border-color: #0a0a0a transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    top: 100%;
    bottom: auto; }
  .tooltip.left::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    border-color: transparent transparent transparent #0a0a0a;
    border-left-style: solid;
    border-right-width: 0;
    bottom: auto;
    left: 100%;
    top: 50%;
    transform: translateY(-50%); }
  .tooltip.right::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    border-color: transparent #0a0a0a transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
    bottom: auto;
    left: auto;
    right: 100%;
    top: 50%;
    transform: translateY(-50%); }

.top-bar {
  padding: 0.5rem; }
  .top-bar::before, .top-bar::after {
    content: ' ';
    display: table; }
  .top-bar::after {
    clear: both; }
  .top-bar,
  .top-bar ul {
    background-color: #e6e6e6; }
  .top-bar input {
    max-width: 200px;
    margin-right: 1rem; }
  .top-bar .input-group-field {
    width: 100%;
    margin-right: 0; }
  .top-bar input.button {
    width: auto; }
  .top-bar .top-bar-left,
  .top-bar .top-bar-right {
    width: 100%; }
  @media screen and (min-width: 47.9375em) {
    .top-bar .top-bar-left,
    .top-bar .top-bar-right {
      width: auto; } }
  @media screen and (max-width: 63.9375em) {
    .top-bar.stacked-for-medium .top-bar-left,
    .top-bar.stacked-for-medium .top-bar-right {
      width: 100%; } }
  @media screen and (max-width: 74.9375em) {
    .top-bar.stacked-for-large .top-bar-left,
    .top-bar.stacked-for-large .top-bar-right {
      width: 100%; } }

.top-bar-title {
  float: left;
  margin-right: 1rem; }

.top-bar-left {
  float: left; }

.top-bar-right {
  float: right; }

/************************************************

Stylesheet: Main Stylesheet


*************************************************/
/* Survey monkey */
p.survey-popup.first {
  margin-top: 15px; }

.survey-button {
  margin: 5px;
  display: block;
  width: 130px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  background-color: #992319;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }
  .survey-button:hover {
    background-color: #b62a1e; }
  .survey-button h3 {
    color: #fff !important;
    margin-top: 10px;
    text-align: center; }

.pum-close.popmake-close {
  background-color: #992319 !important;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }
  .pum-close.popmake-close:hover {
    background-color: #b62a1e !important; }

.pum-title.popmake-title {
  padding-right: 60px; }

/* Fix Windows scrolling */
/* AddThis social buttons mobile styling */
.shiftnav-social-icons-wrapper {
  padding: 15px 20px 0 20px; }
  .shiftnav-social-icons-wrapper .at-icon-wrapper {
    line-height: 0.8em !important; }

/* About us */
.row.coram-charities {
  padding: 15px 10px;
  background: #fff;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 20px; }
  .row.coram-charities h3 {
    color: #000;
    font-weight: 700; }
  .row.coram-charities hr {
    border-bottom: 2px solid #992319; }

#content #inner-content {
  min-height: 1500px;
  padding: 0; }

/********* Reveal *********/
.reveal {
  border-radius: 10px; }

/**/
/*  Better search results */
.search-results .off-canvas-content {
  background-color: #fbebd1; }
  .search-results .off-canvas-content #content.bsearch_results_page {
    max-width: 960px;
    margin: -20px auto 0; }
    .search-results .off-canvas-content #content.bsearch_results_page .bsearch_date {
      display: none; }

/* Footer copyright */
p.source-org.copyright {
  display: none; }

/* Contact link */
.contact-div-wrapper {
  position: absolute;
  right: 90px;
  top: 43px;
  z-index: 200; }
  .contact-div-wrapper .contact-div a.contact-link {
    color: #fff;
    transition: color 0.25s ease-out, color 0.25s ease-out; }
  .contact-div-wrapper .contact-div a.contact-link:hover {
    color: #eb650e; }

/* topbar search icon */
.top-bar-search-wrapper {
  position: absolute;
  top: 41px;
  right: 45px;
  z-index: 200; }
  .top-bar-search-wrapper .search-button {
    font-size: 16px;
    width: 20px;
    color: #fff;
    transition: color 0.25s ease-out, color 0.25s ease-out; }
  .top-bar-search-wrapper .search-button:hover {
    cursor: pointer;
    color: #eb650e; }
  .top-bar-search-wrapper div.search-tooltip {
    visibility: hidden;
    position: absolute;
    right: -5px;
    top: 40px;
    width: 150px;
    background-color: #992319;
    border-radius: 10px;
    z-index: 200;
    padding: 10px; }
    .top-bar-search-wrapper div.search-tooltip p {
      color: white;
      font-family: "Open Sans", Helvetica, Roboto, Arial, sans-serif;
      margin: 5px; }
      .top-bar-search-wrapper div.search-tooltip p a {
        color: #f37e32; }
        .top-bar-search-wrapper div.search-tooltip p a:hover {
          color: #eb650e; }

div.top-bar-search-wrapper:hover div.search-tooltip {
  visibility: visible;
  z-index: 1000; }

/********* Hide my visit *********/
.top-bar-hide-my-visit-wrapper {
  position: absolute;
  top: 41px;
  right: 5px;
  width: 40px;
  height: 60px;
  padding-left: 20px;
  z-index: 200; }
  .top-bar-hide-my-visit-wrapper a.hide-my-visit-button {
    display: block;
    font-size: 16px;
    width: 20px;
    color: #fff;
    transition: color 0.25s ease-out, color 0.25s ease-out; }
  .top-bar-hide-my-visit-wrapper a.hide-my-visit-button:hover {
    cursor: pointer;
    color: #eb650e; }
  .top-bar-hide-my-visit-wrapper div.hide-my-visit-tooltip {
    visibility: hidden;
    position: absolute;
    right: 0;
    top: 40px;
    width: 300px;
    background-color: #992319;
    border-radius: 10px;
    z-index: 200;
    padding: 10px; }
    .top-bar-hide-my-visit-wrapper div.hide-my-visit-tooltip p {
      color: white;
      font-family: "Open Sans", Helvetica, Roboto, Arial, sans-serif;
      margin: 5px; }
      .top-bar-hide-my-visit-wrapper div.hide-my-visit-tooltip p a {
        color: #f37e32; }
        .top-bar-hide-my-visit-wrapper div.hide-my-visit-tooltip p a:hover {
          color: #eb650e; }

div.top-bar-hide-my-visit-wrapper:hover div.hide-my-visit-tooltip {
  visibility: visible;
  z-index: 1000; }

/* Contact form */
.wpcf7 label {
  padding: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.4rem; }

.wpcf7 .how-to-contact-row .wpcf7-list-item label, .wpcf7 .voicemail-row .wpcf7-list-item label, .wpcf7 .risk-row .wpcf7-list-item label {
  display: inline-block;
  width: 100%; }
  .wpcf7 .how-to-contact-row .wpcf7-list-item label input, .wpcf7 .voicemail-row .wpcf7-list-item label input, .wpcf7 .risk-row .wpcf7-list-item label input {
    margin-left: -3px; }

.wpcf7 .what-do-you-want-to-talk-about-row .wpcf7-list-item label {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-left: 20px;
  line-height: 1.4rem; }
  .wpcf7 .what-do-you-want-to-talk-about-row .wpcf7-list-item label input {
    margin-left: -25px;
    margin-bottom: 0; }

.wpcf7 input#send-this-form {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 40px;
  padding: 0 10px;
  width: 200px;
  border-radius: 10px;
  font-size: 20px; }

.wpcf7 input#datefield {
  width: 180px; }

.wpcf7 input.wpcf7-text {
  margin-top: 10px; }

.wpcf7 input#your-question-field {
  height: 100px; }

.wpcf7 .submit-row {
  margin-top: 20px; }

/************** Tables ****************/
/* Homelessness */
#tablepress-1 th {
  background-color: #b467bd;
  color: #fff;
  text-align: center;
  z-index: 200; }

#tablepress-1 tbody tr.even td {
  background-color: #f1e2f3; }

#tablepress-1 tbody tr.odd td {
  background-color: #f6ecf7; }

#tablepress-1 tbody .column-1 {
  width: 50%; }

/* different colours for each table 

#tablepress-1 {

	th {
		background-color: $home-and-family-sidebar-heading;
		color: #fff;
		text-align: center;
	}

	tbody {

		tr.even {

			td {
			background-color: scale-color($home-and-family-background, $lightness: 25%);
			}
		}

		tr.odd {

			td {
			background-color: $home-and-family-accordion
			}
		}
	}
}

/* Police > If you are arrested > convictions */
#tablepress-2 tbody tr.even td {
  background-color: #e3e9f4; }

#tablepress-2 tbody tr.odd td {
  background-color: #ecf1f8; }

#tablepress-2 tbody tr.row-1 td, #tablepress-2 tbody tr.row-7 td {
  background-color: #ecf1f8;
  text-align: center;
  font-size: 18px;
  color: #3c5e99; }

#tablepress-2 tbody tr.row-2 td, #tablepress-2 tbody tr.row-8 td {
  background-color: #698bc5;
  color: #fff; }

#tablepress-2 tbody tr.row-5 td, #tablepress-2 tbody tr.row-11 td {
  background-color: #e3e9f4; }

#tablepress-2 tbody tr.row-10 td {
  background-color: #ecf1f8; }

#tablepress-2 tbody .column-1 {
  width: 50%;
  font-weight: 700; }

#tablepress-2 tbody tr.row-4 td.column-1, #tablepress-2 tbody tr.row-5 td.column-1, #tablepress-2 tbody tr.row-9 td.column-1, #tablepress-2 tbody tr.row-11 td.column-1 {
  border-bottom: none; }

#tablepress-2 tbody tr.row-5 td.column-1, #tablepress-2 tbody tr.row-6 td.column-1, #tablepress-2 tbody tr.row-10 td.column-1, #tablepress-2 tbody tr.row-12 td.column-1 {
  border-top: none; }

/* Who's who tables */
/* Same colour for all tbles */
#tablepress-3 th, #tablepress-4 th, #tablepress-5 th, #tablepress-6 th {
  background-color: #f2c307;
  color: #fff;
  text-align: center; }

#tablepress-3 tbody tr.even td, #tablepress-4 tbody tr.even td, #tablepress-5 tbody tr.even td, #tablepress-6 tbody tr.even td {
  background-color: #fef5cf; }

#tablepress-3 tbody tr.odd td, #tablepress-4 tbody tr.odd td, #tablepress-5 tbody tr.odd td, #tablepress-6 tbody tr.odd td {
  background-color: #fef8df; }

#tablepress-3 tbody .column-1, #tablepress-4 tbody .column-1, #tablepress-5 tbody .column-1, #tablepress-6 tbody .column-1 {
  width: 33%;
  font-weight: 700; }

#tablepress-3 tbody td, #tablepress-4 tbody td, #tablepress-5 tbody td, #tablepress-6 tbody td {
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px solid #fff; }

/* Different colours for each table */
/*

#tablepress-3 {

	th {
		background-color: $education-sidebar-heading;
		color: #fff;
		text-align: center;
	}

	tbody {

		tr.even {

			td {
			background-color: scale-color($education-background, $lightness: 25%);
			}
		}

		tr.odd {

			td {
			background-color: $education-accordion
			}
		}

		.column-1 {
			width: 25%;
		}
	}
}

#tablepress-4 {

	th {
		background-color: $childrens-services-sidebar-heading;
		color: #fff;
		text-align: center;
	}

	tbody {

		tr.even {

			td {
			background-color: scale-color($childrens-services-background, $lightness: 25%);
			}
		}

		tr.odd {

			td {
			background-color: $childrens-services-accordion
			}
		}

		.column-1 {
			width: 25%;
		}
	}
}

#tablepress-5 {

	th {
		background-color: $home-and-family-sidebar-heading;
		color: #fff;
		text-align: center;
	}

	tbody {

		tr.even {

			td {
			background-color: scale-color($home-and-family-background, $lightness: 25%);
			}
		}

		tr.odd {

			td {
			background-color: $home-and-family-accordion
			}
		}

		.column-1 {
			width: 25%;
		}
	}
}

#tablepress-6 {

	th {
		background-color: $police-sidebar-heading;
		color: #fff;
		text-align: center;
	}

	tbody {

		tr.even {

			td {
			background-color: scale-color($police-background, $lightness: 25%);
			}
		}

		tr.odd {

			td {
			background-color: $police-accordion
			}
		}

		.column-1 {
			width: 25%;
		}
	}
}

*/
/********* Breadcrumbs *************/
.breadcrumb-wrapper.show-for-small-only {
  margin-bottom: 15px; }
  .breadcrumb-wrapper.show-for-small-only span.separator:last-child {
    display: none; }

/* Breadcrumbs at desktop in the sidebar top colour block */
#text-3 .breadcrumb-wrapper, #text-7 .breadcrumb-wrapper {
  color: #fff; }
  #text-3 .breadcrumb-wrapper .breadcrumb-container, #text-7 .breadcrumb-wrapper .breadcrumb-container {
    padding: 5px;
    text-align: right; }
    #text-3 .breadcrumb-wrapper .breadcrumb-container a, #text-7 .breadcrumb-wrapper .breadcrumb-container a {
      color: #fff !important; }
    #text-3 .breadcrumb-wrapper .breadcrumb-container span.separator:last-child, #text-7 .breadcrumb-wrapper .breadcrumb-container span.separator:last-child {
      display: none; }

/******************/
body {
  background: #fbebd1 url("https://lawstuff.org.uk/wp-content/uploads/wallpaper.gif") top left; }

.off-canvas-content {
  background-color: transparent; }

/* Search field */
.search-input-wrapper {
  position: relative; }
  .search-input-wrapper .search-field {
    border-radius: 10px; }
  .search-input-wrapper .search-submit {
    height: 37px;
    width: 37px;
    position: absolute;
    top: 1px;
    right: 0;
    z-index: 1;
    border-radius: 0 10px 10px 0; }
  .search-input-wrapper .fa-search {
    position: absolute;
    top: 8px;
    right: 9px;
    font-size: 20px;
    color: #fff;
    z-index: 2; }

/* Search field on glossary page */
/* Not used 

.fa-search-wrapper {
		position: relative;
		width: 100%;

		.fa-search {
			color: #fff;
			position: absolute;
			left: 320px;
			top: 28px;
			z-index: 10;
			font-size: 20px;
		}
	}

*/
div.glossary-container {
  position: relative; }
  div.glossary-container .cmtt_help {
    display: none; }
  div.glossary-container input#glossary-search-term.glossary-search-term {
    height: 37px;
    border-radius: 10px 0 0 10px;
    border: none;
    width: 300px;
    padding-left: 10px;
    position: absolute;
    left: 8px; }
  div.glossary-container input#glossary-search.glossary-search.button {
    height: 37px;
    margin-left: 230px;
    font-size: 20px;
    border: 1px solid #cacaca;
    border-radius: 0 10px 10px 0;
    padding: 0 10px 0 20px; }
    div.glossary-container input#glossary-search.glossary-search.button:hover {
      /*			color: $primary-dark; */ }

/* Icons row */
.icons-row {
  margin-left: 0.625rem;
  margin-right: 0.625rem; }
  .icons-row h3 {
    text-align: center;
    font-size: 17px; }
  .icons-row img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto; }

/* Link colours */
.blue a img {
  background-color: #466fb4;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.blue a:hover img {
  background-color: #3c5e99; }

.magenta a img {
  background-color: #b63d7f;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.magenta a:hover img {
  background-color: #9b346c; }

.green a img {
  background-color: #4b8b34;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.green a:hover img {
  background-color: #40762c; }

.aqua a img {
  background-color: #2ba88e;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.aqua a:hover img {
  background-color: #258f79; }

.violet a img {
  background-color: #9c48a5;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.violet a:hover img {
  background-color: #853d8c; }

.orange a img {
  background-color: #c66028;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.orange a:hover img {
  background-color: #a85222; }

.grey a img {
  background-color: #80959e;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.grey a:hover img {
  background-color: #69808a; }

.coral a img {
  background-color: #ea505c;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.coral a:hover img {
  background-color: #e52635; }

.teal a img {
  background-color: #439aa8;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.teal a:hover img {
  background-color: #39838f; }

.red a img {
  background-color: #c3315c;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.red a:hover img {
  background-color: #a62a4e; }

.lilac a img {
  background-color: #907dcc;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.lilac a:hover img {
  background-color: #725abe; }

.olive a img {
  background-color: #b29005;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.olive a:hover img {
  background-color: #977a04; }

/**/
/* Link icon colours, hovers and transitions */
.police a img {
  background-color: #466fb4;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.police a:hover img {
  background-color: #3c5e99; }

.childrens-services a img {
  background-color: #b63d7f;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.childrens-services a:hover img {
  background-color: #9b346c; }

.education a img {
  background-color: #4b8b34;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.education a:hover img {
  background-color: #40762c; }

.not-from-uk a img {
  background-color: #2ba88e;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.not-from-uk a:hover img {
  background-color: #258f79; }

.home-and-family a img {
  background-color: #9c48a5;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.home-and-family a:hover img {
  background-color: #853d8c; }

.at-what-age a img {
  background-color: #c66028;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.at-what-age a:hover img {
  background-color: #a85222; }

.abuse-and-bullying a img {
  background-color: #80959e;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.abuse-and-bullying a:hover img {
  background-color: #69808a; }

.sex-health-drugs a img {
  background-color: #ea505c;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.sex-health-drugs a:hover img {
  background-color: #e52635; }

.my-rights a img {
  background-color: #439aa8;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.my-rights a:hover img {
  background-color: #39838f; }

.online-safety a img {
  background-color: #c3315c;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.online-safety a:hover img {
  background-color: #a62a4e; }

.glossary a img {
  background-color: #907dcc;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.glossary a:hover img {
  background-color: #725abe; }

.whos-who a img {
  background-color: #b29005;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.whos-who a:hover img {
  background-color: #977a04; }

.contact-us a img {
  background-color: #eeb469;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.contact-us a:hover img {
  background-color: #e99d3b; }

/* Front page */
.page-id-2 {
  background-color: #f8ddb2;
  /*
	footer {
		display: none;
	}
*/ }
  .page-id-2 hr {
    display: none; }
  .page-id-2 #content #inner-content {
    background: #f8ddb2; }
    .page-id-2 #content #inner-content .hero-image.show-for-small-only {
      margin-top: -22px; }
    .page-id-2 #content #inner-content article {
      margin-top: -15px; }
    .page-id-2 #content #inner-content .page-title {
      display: none; }
    .page-id-2 #content #inner-content .column, .page-id-2 #content #inner-content .columns, .page-id-2 #content #inner-content .columns {
      padding-left: 0;
      padding-right: 0; }
    .page-id-2 #content #inner-content .front-page-text-h1 {
      color: #000;
      padding: 20px 30px 0;
      font-size: 1.25rem;
      font-weight: 100; }
    .page-id-2 #content #inner-content .front-page-text-h2 {
      color: #000;
      padding: 0 30px;
      font-size: 1.25rem;
      font-weight: 100; }
    .page-id-2 #content #inner-content a.get-started-button {
      margin-top: 15px;
      margin-left: auto;
      margin-right: auto;
      display: block;
      width: 160px;
      font-weight: 700;
      padding: 0.5rem 1rem; }
    .page-id-2 #content #inner-content #front-page-scroll-target {
      height: 20px;
      margin-top: 20px; }
    .page-id-2 #content #inner-content #subject-icons {
      margin-top: 30px;
      display: none; }
    .page-id-2 #content #inner-content .choose-a-subject, .page-id-2 #content #inner-content .or-search-the-site, .page-id-2 #content #inner-content .whats-on-this-site {
      color: #444;
      padding: 10px 30px 0;
      font-size: 1.5rem;
      font-weight: 400; }
    .page-id-2 #content #inner-content .icons-row {
      margin-left: 0;
      margin-right: 0; }
      .page-id-2 #content #inner-content .icons-row .front-page-button {
        margin: 5px; }
        .page-id-2 #content #inner-content .icons-row .front-page-button img {
          display: block;
          width: 130px;
          border-radius: 10px;
          margin-left: auto;
          margin-right: auto; }
    .page-id-2 #content #inner-content .details-row {
      margin-left: 0;
      margin-right: 0; }
      .page-id-2 #content #inner-content .details-row .medium-6 {
        padding: 5px 15px; }
        .page-id-2 #content #inner-content .details-row .medium-6 a {
          float: left; }
          .page-id-2 #content #inner-content .details-row .medium-6 a h4 {
            width: 170px;
            margin-top: 20px; }
        .page-id-2 #content #inner-content .details-row .medium-6 img {
          width: 60px;
          border-radius: 10px;
          margin: 15px; }
        .page-id-2 #content #inner-content .details-row .medium-6 p {
          float: left;
          clear: both;
          padding: 0 15px 15px; }
        .page-id-2 #content #inner-content .details-row .medium-6 .row {
          margin: 10px;
          border-radius: 10px; }
        .page-id-2 #content #inner-content .details-row .medium-6 .blue {
          background-color: #dae2f0; }
        .page-id-2 #content #inner-content .details-row .medium-6 .magenta {
          background-color: #f2d7e6; }
        .page-id-2 #content #inner-content .details-row .medium-6 .green {
          background-color: #d8eed1; }
        .page-id-2 #content #inner-content .details-row .medium-6 .aqua {
          background-color: #cff3eb; }
        .page-id-2 #content #inner-content .details-row .medium-6 .violet {
          background-color: #ecd9ee; }
        .page-id-2 #content #inner-content .details-row .medium-6 .orange {
          background-color: #f6dfd2; }
        .page-id-2 #content #inner-content .details-row .medium-6 .grey {
          background-color: #e6eaec; }
        .page-id-2 #content #inner-content .details-row .medium-6 .coral {
          background-color: #fbdcde; }
        .page-id-2 #content #inner-content .details-row .medium-6 .teal {
          background-color: #dae2f0; }
        .page-id-2 #content #inner-content .details-row .medium-6 .red {
          background-color: #f4d4de; }
        .page-id-2 #content #inner-content .details-row .medium-6 .lilac {
          background-color: #e9e5f5; }
        .page-id-2 #content #inner-content .details-row .medium-6 .olive {
          background-color: #fdf1bf; }

/* article header */
.article-header {
  margin-left: -15px;
  margin-right: -16px;
  padding-left: 15px;
  padding-right: 15px; }

.page-template-template-full-width .article-header {
  margin-right: -15px; }

/* Font awesome icons */
i.fa.fa-arrow-circle-right {
  padding-right: 10px; }

i.fa.fa-external-link {
  font-size: 12px;
  margin-left: 8px; }

/* Hide 'What's on this page on mobile for full width pages */
.page-template-template-full-width .toc-title {
  display: none; }

/*********************
Back-to-top STYLES
*********************/
.cd-container {
  width: 90%;
  max-width: 768px;
  margin: 2em auto; }

.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both; }

.cd-top {
  display: inline-block;
  z-index: 1000;
  /*  height: 40px;
  width: 40px; */
  height: 50px;
  width: 50px;
  position: fixed;
  /*  bottom: 30px;
  left: 10px; */
  bottom: 0;
  right: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(153, 35, 25, 0.5) url(https://lawstuff.org.uk/wp-content/uploads/cd-top-arrow.png) no-repeat center 50%;
  background-size: contain;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s; }

.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s; }

.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1; }

.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5; }

.no-touch .cd-top:hover {
  background-color: #f37e32;
  opacity: 1; }

/* end of Back to Top styles */
/* Horizontal rule hr styles */
hr {
  border-bottom: 2px solid #fff; }

/* Table of contents */
#sidebar1 nav.table-of-contents ul li, .entry-content nav.table-of-contents ul li {
  padding: 5px; }
  #sidebar1 nav.table-of-contents ul li a.toc-link, .entry-content nav.table-of-contents ul li a.toc-link {
    display: block;
    color: #fff !important;
    width: 80%;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 5px;
    transition: background-color 0.25s ease-out, color 0.25s ease-out; }

/*
#text-6 {

	nav.table-of-contents {

		ul {

			li {
				display: block;
				width: 33.3%;
				float: left;


				a.toc-link {
				display: block;
				color: #fff;
				border-radius: 10px;
				margin-left: auto;
				margin-right: auto;
				padding: 10px;
				text-align: center;
				transition: background-color 0.25s ease-out, color 0.25s ease-out;

				}
			}
		}
	}
}

*/
/* Hide hr when it is generated for heading at top of page */
nav.show-for-small-only + hr.hide-for-print {
  display: none; }

/* Small display styles */
nav.table-of-contents.show-for-small-only {
  margin-left: -15px;
  margin-right: -15px;
  margin-top: -8px; }
  nav.table-of-contents.show-for-small-only .toc-title {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    color: #fff; }
  nav.table-of-contents.show-for-small-only ul {
    list-style-type: none;
    margin-left: 15px;
    margin-right: 15px; }
    nav.table-of-contents.show-for-small-only ul li {
      font-size: 1.1rem; }

/* End of Table of contents */
/*********************
GENERAL STYLES
*********************/
.entry-content > p:first-child {
  margin-top: 30px; }

/* ul with ticks */
ul.ticks {
  list-style: none; }
  ul.ticks li {
    margin: 5px 0;
    padding: 0 15px 0 30px;
    background: url(https://lawstuff.org.uk/wp-content/uploads/red-tick.png) no-repeat 0 4px;
    background-size: 18px 18px; }

/* ul with red bullets */
ul.bullets li {
  color: #992319; }
  ul.bullets li span {
    color: #000; }

/********************** 

Top level pages)

**********************/
.page-id-45 #inner-content div.hero-image.show-for-medium, .page-id-47 #inner-content div.hero-image.show-for-medium, .page-id-49 #inner-content div.hero-image.show-for-medium, .page-id-51 #inner-content div.hero-image.show-for-medium,
.page-id-53 #inner-content div.hero-image.show-for-medium, .page-id-57 #inner-content div.hero-image.show-for-medium, .page-id-59 #inner-content div.hero-image.show-for-medium, .page-id-55 #inner-content div.hero-image.show-for-medium,
.page-id-61 #inner-content div.hero-image.show-for-medium, .page-id-63 #inner-content div.hero-image.show-for-medium, .page-id-65 #inner-content div.hero-image.show-for-medium, .page-id-746 #inner-content div.hero-image.show-for-medium {
  margin-top: -8px;
  margin-bottom: 20px; }

.page-id-45 #inner-content div.hero-image.show-for-small-only, .page-id-47 #inner-content div.hero-image.show-for-small-only, .page-id-49 #inner-content div.hero-image.show-for-small-only, .page-id-51 #inner-content div.hero-image.show-for-small-only,
.page-id-53 #inner-content div.hero-image.show-for-small-only, .page-id-57 #inner-content div.hero-image.show-for-small-only, .page-id-59 #inner-content div.hero-image.show-for-small-only, .page-id-55 #inner-content div.hero-image.show-for-small-only,
.page-id-61 #inner-content div.hero-image.show-for-small-only, .page-id-63 #inner-content div.hero-image.show-for-small-only, .page-id-65 #inner-content div.hero-image.show-for-small-only, .page-id-746 #inner-content div.hero-image.show-for-small-only {
  margin-top: 0;
  margin-bottom: 20px; }

.page-id-45 #inner-content p, .page-id-47 #inner-content p, .page-id-49 #inner-content p, .page-id-51 #inner-content p,
.page-id-53 #inner-content p, .page-id-57 #inner-content p, .page-id-59 #inner-content p, .page-id-55 #inner-content p,
.page-id-61 #inner-content p, .page-id-63 #inner-content p, .page-id-65 #inner-content p, .page-id-746 #inner-content p {
  padding: 0 10px; }

.page-id-45 #inner-content h2.top-level, .page-id-47 #inner-content h2.top-level, .page-id-49 #inner-content h2.top-level, .page-id-51 #inner-content h2.top-level,
.page-id-53 #inner-content h2.top-level, .page-id-57 #inner-content h2.top-level, .page-id-59 #inner-content h2.top-level, .page-id-55 #inner-content h2.top-level,
.page-id-61 #inner-content h2.top-level, .page-id-63 #inner-content h2.top-level, .page-id-65 #inner-content h2.top-level, .page-id-746 #inner-content h2.top-level {
  margin-bottom: 15px;
  margin-left: 10px; }

.page-id-45 #inner-content .row.top-level, .page-id-47 #inner-content .row.top-level, .page-id-49 #inner-content .row.top-level, .page-id-51 #inner-content .row.top-level,
.page-id-53 #inner-content .row.top-level, .page-id-57 #inner-content .row.top-level, .page-id-59 #inner-content .row.top-level, .page-id-55 #inner-content .row.top-level,
.page-id-61 #inner-content .row.top-level, .page-id-63 #inner-content .row.top-level, .page-id-65 #inner-content .row.top-level, .page-id-746 #inner-content .row.top-level {
  margin: 20px 0; }
  .page-id-45 #inner-content .row.top-level .columns, .page-id-47 #inner-content .row.top-level .columns, .page-id-49 #inner-content .row.top-level .columns, .page-id-51 #inner-content .row.top-level .columns,
  .page-id-53 #inner-content .row.top-level .columns, .page-id-57 #inner-content .row.top-level .columns, .page-id-59 #inner-content .row.top-level .columns, .page-id-55 #inner-content .row.top-level .columns,
  .page-id-61 #inner-content .row.top-level .columns, .page-id-63 #inner-content .row.top-level .columns, .page-id-65 #inner-content .row.top-level .columns, .page-id-746 #inner-content .row.top-level .columns {
    padding-left: 10px;
    padding-right: 10px; }
  .page-id-45 #inner-content .row.top-level a, .page-id-47 #inner-content .row.top-level a, .page-id-49 #inner-content .row.top-level a, .page-id-51 #inner-content .row.top-level a,
  .page-id-53 #inner-content .row.top-level a, .page-id-57 #inner-content .row.top-level a, .page-id-59 #inner-content .row.top-level a, .page-id-55 #inner-content .row.top-level a,
  .page-id-61 #inner-content .row.top-level a, .page-id-63 #inner-content .row.top-level a, .page-id-65 #inner-content .row.top-level a, .page-id-746 #inner-content .row.top-level a {
    /*				display: flex;  */
    display: table;
    width: 100%;
    /*				justify-content: center; /* align horizontal */
    /*				align-items: center; /* align vertical */
    /*				text-align: center; */
    height: 70px;
    line-height: 70px;
    text-align: center;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 15px; }
    .page-id-45 #inner-content .row.top-level a h3, .page-id-47 #inner-content .row.top-level a h3, .page-id-49 #inner-content .row.top-level a h3, .page-id-51 #inner-content .row.top-level a h3,
    .page-id-53 #inner-content .row.top-level a h3, .page-id-57 #inner-content .row.top-level a h3, .page-id-59 #inner-content .row.top-level a h3, .page-id-55 #inner-content .row.top-level a h3,
    .page-id-61 #inner-content .row.top-level a h3, .page-id-63 #inner-content .row.top-level a h3, .page-id-65 #inner-content .row.top-level a h3, .page-id-746 #inner-content .row.top-level a h3 {
      display: inline-block;
      text-align: center;
      vertical-align: middle;
      line-height: normal;
      margin-bottom: 0;
      color: #fff; }

.page-id-45 #inner-content .row.accordion-row, .page-id-47 #inner-content .row.accordion-row, .page-id-49 #inner-content .row.accordion-row, .page-id-51 #inner-content .row.accordion-row,
.page-id-53 #inner-content .row.accordion-row, .page-id-57 #inner-content .row.accordion-row, .page-id-59 #inner-content .row.accordion-row, .page-id-55 #inner-content .row.accordion-row,
.page-id-61 #inner-content .row.accordion-row, .page-id-63 #inner-content .row.accordion-row, .page-id-65 #inner-content .row.accordion-row, .page-id-746 #inner-content .row.accordion-row {
  margin-left: 0;
  margin-right: 0;
  padding: 10px; }
  .page-id-45 #inner-content .row.accordion-row .accordion, .page-id-47 #inner-content .row.accordion-row .accordion, .page-id-49 #inner-content .row.accordion-row .accordion, .page-id-51 #inner-content .row.accordion-row .accordion,
  .page-id-53 #inner-content .row.accordion-row .accordion, .page-id-57 #inner-content .row.accordion-row .accordion, .page-id-59 #inner-content .row.accordion-row .accordion, .page-id-55 #inner-content .row.accordion-row .accordion,
  .page-id-61 #inner-content .row.accordion-row .accordion, .page-id-63 #inner-content .row.accordion-row .accordion, .page-id-65 #inner-content .row.accordion-row .accordion, .page-id-746 #inner-content .row.accordion-row .accordion {
    border: none;
    border-bottom: none; }
    .page-id-45 #inner-content .row.accordion-row .accordion a.accordion-title, .page-id-47 #inner-content .row.accordion-row .accordion a.accordion-title, .page-id-49 #inner-content .row.accordion-row .accordion a.accordion-title, .page-id-51 #inner-content .row.accordion-row .accordion a.accordion-title,
    .page-id-53 #inner-content .row.accordion-row .accordion a.accordion-title, .page-id-57 #inner-content .row.accordion-row .accordion a.accordion-title, .page-id-59 #inner-content .row.accordion-row .accordion a.accordion-title, .page-id-55 #inner-content .row.accordion-row .accordion a.accordion-title,
    .page-id-61 #inner-content .row.accordion-row .accordion a.accordion-title, .page-id-63 #inner-content .row.accordion-row .accordion a.accordion-title, .page-id-65 #inner-content .row.accordion-row .accordion a.accordion-title, .page-id-746 #inner-content .row.accordion-row .accordion a.accordion-title {
      color: #fff;
      transition: background-color 0.25s ease-out, color 0.25s ease-out;
      font-size: 16px;
      line-height: 24px;
      padding: 10px 35px 10px 10px;
      border-radius: 10px; }
    .page-id-45 #inner-content .row.accordion-row .accordion .is-active > .accordion-title, .page-id-47 #inner-content .row.accordion-row .accordion .is-active > .accordion-title, .page-id-49 #inner-content .row.accordion-row .accordion .is-active > .accordion-title, .page-id-51 #inner-content .row.accordion-row .accordion .is-active > .accordion-title,
    .page-id-53 #inner-content .row.accordion-row .accordion .is-active > .accordion-title, .page-id-57 #inner-content .row.accordion-row .accordion .is-active > .accordion-title, .page-id-59 #inner-content .row.accordion-row .accordion .is-active > .accordion-title, .page-id-55 #inner-content .row.accordion-row .accordion .is-active > .accordion-title,
    .page-id-61 #inner-content .row.accordion-row .accordion .is-active > .accordion-title, .page-id-63 #inner-content .row.accordion-row .accordion .is-active > .accordion-title, .page-id-65 #inner-content .row.accordion-row .accordion .is-active > .accordion-title, .page-id-746 #inner-content .row.accordion-row .accordion .is-active > .accordion-title {
      border-radius: 10px 10px 0 0; }
    .page-id-45 #inner-content .row.accordion-row .accordion .accordion-title::before, .page-id-47 #inner-content .row.accordion-row .accordion .accordion-title::before, .page-id-49 #inner-content .row.accordion-row .accordion .accordion-title::before, .page-id-51 #inner-content .row.accordion-row .accordion .accordion-title::before,
    .page-id-53 #inner-content .row.accordion-row .accordion .accordion-title::before, .page-id-57 #inner-content .row.accordion-row .accordion .accordion-title::before, .page-id-59 #inner-content .row.accordion-row .accordion .accordion-title::before, .page-id-55 #inner-content .row.accordion-row .accordion .accordion-title::before,
    .page-id-61 #inner-content .row.accordion-row .accordion .accordion-title::before, .page-id-63 #inner-content .row.accordion-row .accordion .accordion-title::before, .page-id-65 #inner-content .row.accordion-row .accordion .accordion-title::before, .page-id-746 #inner-content .row.accordion-row .accordion .accordion-title::before {
      content: '\25BC';
      margin-top: -10px;
      font-size: 16px; }
    .page-id-45 #inner-content .row.accordion-row .accordion .is-active > .accordion-title::before, .page-id-47 #inner-content .row.accordion-row .accordion .is-active > .accordion-title::before, .page-id-49 #inner-content .row.accordion-row .accordion .is-active > .accordion-title::before, .page-id-51 #inner-content .row.accordion-row .accordion .is-active > .accordion-title::before,
    .page-id-53 #inner-content .row.accordion-row .accordion .is-active > .accordion-title::before, .page-id-57 #inner-content .row.accordion-row .accordion .is-active > .accordion-title::before, .page-id-59 #inner-content .row.accordion-row .accordion .is-active > .accordion-title::before, .page-id-55 #inner-content .row.accordion-row .accordion .is-active > .accordion-title::before,
    .page-id-61 #inner-content .row.accordion-row .accordion .is-active > .accordion-title::before, .page-id-63 #inner-content .row.accordion-row .accordion .is-active > .accordion-title::before, .page-id-65 #inner-content .row.accordion-row .accordion .is-active > .accordion-title::before, .page-id-746 #inner-content .row.accordion-row .accordion .is-active > .accordion-title::before {
      content: '\25B2'; }
    .page-id-45 #inner-content .row.accordion-row .accordion .accordion-content, .page-id-47 #inner-content .row.accordion-row .accordion .accordion-content, .page-id-49 #inner-content .row.accordion-row .accordion .accordion-content, .page-id-51 #inner-content .row.accordion-row .accordion .accordion-content,
    .page-id-53 #inner-content .row.accordion-row .accordion .accordion-content, .page-id-57 #inner-content .row.accordion-row .accordion .accordion-content, .page-id-59 #inner-content .row.accordion-row .accordion .accordion-content, .page-id-55 #inner-content .row.accordion-row .accordion .accordion-content,
    .page-id-61 #inner-content .row.accordion-row .accordion .accordion-content, .page-id-63 #inner-content .row.accordion-row .accordion .accordion-content, .page-id-65 #inner-content .row.accordion-row .accordion .accordion-content, .page-id-746 #inner-content .row.accordion-row .accordion .accordion-content {
      border-radius: 0 0 10px 10px; }
      .page-id-45 #inner-content .row.accordion-row .accordion .accordion-content p, .page-id-45 #inner-content .row.accordion-row .accordion .accordion-content h6, .page-id-45 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-47 #inner-content .row.accordion-row .accordion .accordion-content p, .page-id-47 #inner-content .row.accordion-row .accordion .accordion-content h6, .page-id-47 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-49 #inner-content .row.accordion-row .accordion .accordion-content p, .page-id-49 #inner-content .row.accordion-row .accordion .accordion-content h6, .page-id-49 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-51 #inner-content .row.accordion-row .accordion .accordion-content p, .page-id-51 #inner-content .row.accordion-row .accordion .accordion-content h6, .page-id-51 #inner-content .row.accordion-row .accordion .accordion-content ul,
      .page-id-53 #inner-content .row.accordion-row .accordion .accordion-content p,
      .page-id-53 #inner-content .row.accordion-row .accordion .accordion-content h6,
      .page-id-53 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-57 #inner-content .row.accordion-row .accordion .accordion-content p, .page-id-57 #inner-content .row.accordion-row .accordion .accordion-content h6, .page-id-57 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-59 #inner-content .row.accordion-row .accordion .accordion-content p, .page-id-59 #inner-content .row.accordion-row .accordion .accordion-content h6, .page-id-59 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-55 #inner-content .row.accordion-row .accordion .accordion-content p, .page-id-55 #inner-content .row.accordion-row .accordion .accordion-content h6, .page-id-55 #inner-content .row.accordion-row .accordion .accordion-content ul,
      .page-id-61 #inner-content .row.accordion-row .accordion .accordion-content p,
      .page-id-61 #inner-content .row.accordion-row .accordion .accordion-content h6,
      .page-id-61 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-63 #inner-content .row.accordion-row .accordion .accordion-content p, .page-id-63 #inner-content .row.accordion-row .accordion .accordion-content h6, .page-id-63 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-65 #inner-content .row.accordion-row .accordion .accordion-content p, .page-id-65 #inner-content .row.accordion-row .accordion .accordion-content h6, .page-id-65 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-746 #inner-content .row.accordion-row .accordion .accordion-content p, .page-id-746 #inner-content .row.accordion-row .accordion .accordion-content h6, .page-id-746 #inner-content .row.accordion-row .accordion .accordion-content ul {
        padding-left: 0; }
      .page-id-45 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-47 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-49 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-51 #inner-content .row.accordion-row .accordion .accordion-content ul,
      .page-id-53 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-57 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-59 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-55 #inner-content .row.accordion-row .accordion .accordion-content ul,
      .page-id-61 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-63 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-65 #inner-content .row.accordion-row .accordion .accordion-content ul, .page-id-746 #inner-content .row.accordion-row .accordion .accordion-content ul {
        margin-bottom: 20px; }

/********************** Police and law **********************/
.page-id-45 #inner-content, .parent-pageid-45 #inner-content {
  background-color: #dae2f0; }
  .page-id-45 #inner-content .article-header, .parent-pageid-45 #inner-content .article-header {
    background-color: #3c5e99; }
  .page-id-45 #inner-content a, .parent-pageid-45 #inner-content a {
    color: #466fb4; }
  .page-id-45 #inner-content a:hover, .page-id-45 #inner-content a:active, .parent-pageid-45 #inner-content a:hover, .parent-pageid-45 #inner-content a:active {
    color: #3c5e99; }
  .page-id-45 #inner-content h2.top-level, .parent-pageid-45 #inner-content h2.top-level {
    color: #3c5e99; }
  .page-id-45 #inner-content .row.top-level a, .parent-pageid-45 #inner-content .row.top-level a {
    background-color: #3c5e99; }
  .page-id-45 #inner-content .row.top-level a:hover, .parent-pageid-45 #inner-content .row.top-level a:hover {
    color: #466fb4;
    background-color: #c7d4e9; }
    .page-id-45 #inner-content .row.top-level a:hover h3, .parent-pageid-45 #inner-content .row.top-level a:hover h3 {
      color: #3c5e99; }
  .page-id-45 #inner-content .row.accordion-row .accordion, .parent-pageid-45 #inner-content .row.accordion-row .accordion {
    background-color: #dae2f0; }
    .page-id-45 #inner-content .row.accordion-row .accordion a.accordion-title, .parent-pageid-45 #inner-content .row.accordion-row .accordion a.accordion-title {
      background-color: #3c5e99; }
    .page-id-45 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .parent-pageid-45 #inner-content .row.accordion-row .accordion a.accordion-title:hover {
      color: #3c5e99;
      background-color: #c7d4e9; }
    .page-id-45 #inner-content .row.accordion-row .accordion .accordion-content, .parent-pageid-45 #inner-content .row.accordion-row .accordion .accordion-content {
      background-color: #ecf1f8; }

.parent-pageid-45 h2, .parent-pageid-45 h3 {
  color: #3c5e99; }

.parent-pageid-45 h6 {
  color: #3c5e99;
  font-size: 0.8rem;
  margin-top: -15px;
  margin-bottom: 20px; }

.parent-pageid-45 .sidebar, .parent-pageid-45 .table-of-contents {
  background-color: #c7d4e9; }
  .parent-pageid-45 .sidebar .sidebar-top-colour-block, .parent-pageid-45 .table-of-contents .sidebar-top-colour-block {
    background: #3c5e99; }
  .parent-pageid-45 .sidebar .toc-title, .parent-pageid-45 .table-of-contents .toc-title {
    background: #698bc5; }
  .parent-pageid-45 .sidebar .toc-link, .parent-pageid-45 .table-of-contents .toc-link {
    background: #3c5e99; }
  .parent-pageid-45 .sidebar .toc-link:hover, .parent-pageid-45 .table-of-contents .toc-link:hover {
    background: #698bc5; }

/********************** Children's services **********************/
.page-id-47 #inner-content, .parent-pageid-47 #inner-content {
  background-color: #f2d7e6; }
  .page-id-47 #inner-content .article-header, .parent-pageid-47 #inner-content .article-header {
    background-color: #9b346c; }
  .page-id-47 #inner-content a, .parent-pageid-47 #inner-content a {
    color: #b63d7f; }
  .page-id-47 #inner-content a:hover, .page-id-47 #inner-content a:active, .parent-pageid-47 #inner-content a:hover, .parent-pageid-47 #inner-content a:active {
    color: #9b346c; }
  .page-id-47 #inner-content h2.top-level, .parent-pageid-47 #inner-content h2.top-level {
    color: #9b346c; }
  .page-id-47 #inner-content .row.top-level a, .parent-pageid-47 #inner-content .row.top-level a {
    background-color: #9b346c; }
  .page-id-47 #inner-content .row.top-level a:hover, .parent-pageid-47 #inner-content .row.top-level a:hover {
    color: #b63d7f;
    background-color: #ebc3d9; }
    .page-id-47 #inner-content .row.top-level a:hover h3, .parent-pageid-47 #inner-content .row.top-level a:hover h3 {
      color: #9b346c; }
  .page-id-47 #inner-content .row.accordion-row .accordion, .parent-pageid-47 #inner-content .row.accordion-row .accordion {
    background-color: #f2d7e6; }
    .page-id-47 #inner-content .row.accordion-row .accordion a.accordion-title, .parent-pageid-47 #inner-content .row.accordion-row .accordion a.accordion-title {
      background-color: #9b346c; }
    .page-id-47 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .parent-pageid-47 #inner-content .row.accordion-row .accordion a.accordion-title:hover {
      color: #9b346c;
      background-color: #ebc3d9; }
    .page-id-47 #inner-content .row.accordion-row .accordion .accordion-content, .parent-pageid-47 #inner-content .row.accordion-row .accordion .accordion-content {
      background-color: #f8ebf2; }

.parent-pageid-47 h2, .parent-pageid-47 h3 {
  color: #9b346c; }

.parent-pageid-47 .sidebar, .parent-pageid-47 .table-of-contents {
  background-color: #ebc3d9; }
  .parent-pageid-47 .sidebar .sidebar-top-colour-block, .parent-pageid-47 .table-of-contents .sidebar-top-colour-block {
    background: #9b346c; }
  .parent-pageid-47 .sidebar .toc-title, .parent-pageid-47 .table-of-contents .toc-title {
    background: #c95f99; }
  .parent-pageid-47 .sidebar .toc-link, .parent-pageid-47 .table-of-contents .toc-link {
    background: #9b346c; }
  .parent-pageid-47 .sidebar .toc-link:hover, .parent-pageid-47 .table-of-contents .toc-link:hover {
    background: #c95f99; }

/********************** Education **********************/
.page-id-49 #inner-content, .parent-pageid-49 #inner-content {
  background-color: #d8eed1; }
  .page-id-49 #inner-content .article-header, .parent-pageid-49 #inner-content .article-header {
    background-color: #40762c; }
  .page-id-49 #inner-content a, .parent-pageid-49 #inner-content a {
    color: #4b8b34; }
  .page-id-49 #inner-content a:hover, .page-id-49 #inner-content a:active, .parent-pageid-49 #inner-content a:hover, .parent-pageid-49 #inner-content a:active {
    color: #40762c; }
  .page-id-49 #inner-content h2.top-level, .parent-pageid-49 #inner-content h2.top-level {
    color: #40762c; }
  .page-id-49 #inner-content .row.top-level a, .parent-pageid-49 #inner-content .row.top-level a {
    background-color: #40762c; }
  .page-id-49 #inner-content .row.top-level a:hover, .parent-pageid-49 #inner-content .row.top-level a:hover {
    color: #4b8b34;
    background-color: #c5e5b9; }
    .page-id-49 #inner-content .row.top-level a:hover h3, .parent-pageid-49 #inner-content .row.top-level a:hover h3 {
      color: #40762c; }
  .page-id-49 #inner-content .row.accordion-row .accordion, .parent-pageid-49 #inner-content .row.accordion-row .accordion {
    background-color: #d8eed1; }
    .page-id-49 #inner-content .row.accordion-row .accordion a.accordion-title, .parent-pageid-49 #inner-content .row.accordion-row .accordion a.accordion-title {
      background-color: #40762c; }
    .page-id-49 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .parent-pageid-49 #inner-content .row.accordion-row .accordion a.accordion-title:hover {
      color: #40762c;
      background-color: #c5e5b9; }
    .page-id-49 #inner-content .row.accordion-row .accordion .accordion-content, .parent-pageid-49 #inner-content .row.accordion-row .accordion .accordion-content {
      background-color: #ecf6e8; }

.parent-pageid-49 .sidebar, .parent-pageid-49 .table-of-contents {
  background-color: #c5e5b9; }
  .parent-pageid-49 .sidebar .sidebar-top-colour-block, .parent-pageid-49 .table-of-contents .sidebar-top-colour-block {
    background: #40762c; }
  .parent-pageid-49 .sidebar .toc-title, .parent-pageid-49 .table-of-contents .toc-title {
    background: #64b945; }
  .parent-pageid-49 .sidebar .toc-link, .parent-pageid-49 .table-of-contents .toc-link {
    background: #40762c; }
  .parent-pageid-49 .sidebar .toc-link:hover, .parent-pageid-49 .table-of-contents .toc-link:hover {
    background: #64b945; }

/********************** Not from the UK **********************/
.page-id-51 #inner-content, .parent-pageid-51 #inner-content {
  background-color: #cff3eb; }
  .page-id-51 #inner-content .article-header, .parent-pageid-51 #inner-content .article-header {
    background-color: #258f79; }
  .page-id-51 #inner-content a, .parent-pageid-51 #inner-content a {
    color: #2ba88e; }
  .page-id-51 #inner-content a:hover, .page-id-51 #inner-content a:active, .parent-pageid-51 #inner-content a:hover, .parent-pageid-51 #inner-content a:active {
    color: #258f79; }
  .page-id-51 #inner-content h2.top-level, .parent-pageid-51 #inner-content h2.top-level {
    color: #258f79; }
  .page-id-51 #inner-content .row.top-level a, .parent-pageid-51 #inner-content .row.top-level a {
    background-color: #258f79; }
  .page-id-51 #inner-content .row.top-level a:hover, .parent-pageid-51 #inner-content .row.top-level a:hover {
    color: #2ba88e;
    background-color: #b8ede2; }
    .page-id-51 #inner-content .row.top-level a:hover h3, .parent-pageid-51 #inner-content .row.top-level a:hover h3 {
      color: #258f79; }
  .page-id-51 #inner-content .row.accordion-row .accordion, .parent-pageid-51 #inner-content .row.accordion-row .accordion {
    background-color: #cff3eb; }
    .page-id-51 #inner-content .row.accordion-row .accordion a.accordion-title, .parent-pageid-51 #inner-content .row.accordion-row .accordion a.accordion-title {
      background-color: #258f79; }
    .page-id-51 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .parent-pageid-51 #inner-content .row.accordion-row .accordion a.accordion-title:hover {
      color: #258f79;
      background-color: #b8ede2; }
    .page-id-51 #inner-content .row.accordion-row .accordion .accordion-content, .parent-pageid-51 #inner-content .row.accordion-row .accordion .accordion-content {
      background-color: #e7f9f5; }

.parent-pageid-51 h2, .parent-pageid-51 h3 {
  color: #258f79; }

.parent-pageid-51 .sidebar, .parent-pageid-51 .table-of-contents {
  background-color: #b8ede2; }
  .parent-pageid-51 .sidebar .sidebar-top-colour-block, .parent-pageid-51 .table-of-contents .sidebar-top-colour-block {
    background: #258f79; }
  .parent-pageid-51 .sidebar .toc-title, .parent-pageid-51 .table-of-contents .toc-title {
    background: #41ceb1; }
  .parent-pageid-51 .sidebar .toc-link, .parent-pageid-51 .table-of-contents .toc-link {
    background: #258f79; }
  .parent-pageid-51 .sidebar .toc-link:hover, .parent-pageid-51 .table-of-contents .toc-link:hover {
    background: #41ceb1; }

/********************** Home and family **********************/
.page-id-53 #inner-content, .parent-pageid-53 #inner-content {
  background-color: #ecd9ee; }
  .page-id-53 #inner-content .article-header, .parent-pageid-53 #inner-content .article-header {
    background-color: #853d8c; }
  .page-id-53 #inner-content a, .parent-pageid-53 #inner-content a {
    color: #9c48a5; }
  .page-id-53 #inner-content a:hover, .page-id-53 #inner-content a:active, .parent-pageid-53 #inner-content a:hover, .parent-pageid-53 #inner-content a:active {
    color: #853d8c; }
  .page-id-53 #inner-content h2.top-level, .parent-pageid-53 #inner-content h2.top-level {
    color: #853d8c; }
  .page-id-53 #inner-content .row.top-level a, .parent-pageid-53 #inner-content .row.top-level a {
    background-color: #853d8c; }
  .page-id-53 #inner-content .row.top-level a:hover, .parent-pageid-53 #inner-content .row.top-level a:hover {
    color: #9c48a5;
    background-color: #e3c6e6; }
    .page-id-53 #inner-content .row.top-level a:hover h3, .parent-pageid-53 #inner-content .row.top-level a:hover h3 {
      color: #853d8c; }
  .page-id-53 #inner-content .row.accordion-row .accordion, .parent-pageid-53 #inner-content .row.accordion-row .accordion {
    background-color: #ecd9ee; }
    .page-id-53 #inner-content .row.accordion-row .accordion a.accordion-title, .parent-pageid-53 #inner-content .row.accordion-row .accordion a.accordion-title {
      background-color: #853d8c; }
    .page-id-53 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .parent-pageid-53 #inner-content .row.accordion-row .accordion a.accordion-title:hover {
      color: #853d8c;
      background-color: #e3c6e6; }
    .page-id-53 #inner-content .row.accordion-row .accordion .accordion-content, .parent-pageid-53 #inner-content .row.accordion-row .accordion .accordion-content {
      background-color: #f6ecf7; }

.parent-pageid-53 h2, .parent-pageid-53 h3 {
  color: #853d8c; }

.parent-pageid-53 .sidebar, .parent-pageid-53 .table-of-contents {
  background-color: #e3c6e6; }
  .parent-pageid-53 .sidebar .sidebar-top-colour-block, .parent-pageid-53 .table-of-contents .sidebar-top-colour-block {
    background: #853d8c; }
  .parent-pageid-53 .sidebar .toc-title, .parent-pageid-53 .table-of-contents .toc-title {
    background: #b467bd; }
  .parent-pageid-53 .sidebar .toc-link, .parent-pageid-53 .table-of-contents .toc-link {
    background: #853d8c; }
  .parent-pageid-53 .sidebar .toc-link:hover, .parent-pageid-53 .table-of-contents .toc-link:hover {
    background: #b467bd; }

/********************** At what age **********************/
.page-id-55 #inner-content, .parent-pageid-55 #inner-content {
  background-color: #f6dfd2; }
  .page-id-55 #inner-content .article-header, .parent-pageid-55 #inner-content .article-header {
    background-color: #a85222; }
  .page-id-55 #inner-content a, .parent-pageid-55 #inner-content a {
    color: #c66028; }
  .page-id-55 #inner-content a:hover, .page-id-55 #inner-content a:active, .parent-pageid-55 #inner-content a:hover, .parent-pageid-55 #inner-content a:active {
    color: #a85222; }

.page-id-55 .icon-rows-wrapper {
  margin-left: 5px;
  margin-right: 5px; }
  .page-id-55 .icon-rows-wrapper .buttons-row {
    padding: 0;
    height: 60px;
    margin-top: 40px; }
    .page-id-55 .icon-rows-wrapper .buttons-row .small-6 {
      padding: 0; }
      .page-id-55 .icon-rows-wrapper .buttons-row .small-6 a.timeline-button, .page-id-55 .icon-rows-wrapper .buttons-row .small-6 a.category-button {
        margin-top: 0;
        color: #fff !important;
        font-weight: 700;
        font-size: 20px;
        width: 90%;
        height: 74px;
        margin-bottom: 10px;
        padding: 26px 20px 10px;
        border-radius: 10px;
        background-color: #a85222;
        transition: background-color 0.25s ease-out, color 0.25s ease-out; }
      .page-id-55 .icon-rows-wrapper .buttons-row .small-6 a.timeline-button:hover, .page-id-55 .icon-rows-wrapper .buttons-row .small-6 a.category-button:hover {
        background-color: #f1cebb;
        color: #a85222 !important; }
      .page-id-55 .icon-rows-wrapper .buttons-row .small-6 a.category-button {
        float: right; }
  .page-id-55 .icon-rows-wrapper .category-tab-and-icons {
    display: none; }
    .page-id-55 .icon-rows-wrapper .category-tab-and-icons .category-tab-row {
      position: relative; }
      .page-id-55 .icon-rows-wrapper .category-tab-and-icons .category-tab-row .small-6 {
        padding: 0; }
        .page-id-55 .icon-rows-wrapper .category-tab-and-icons .category-tab-row .small-6 a.category-tab {
          position: absolute;
          z-index: 200;
          right: 0;
          top: -60px;
          width: 45%;
          color: #fff !important;
          font-size: 20px;
          font-weight: 700;
          float: right;
          text-align: center;
          height: 88px;
          padding: 26px 20px 10px;
          border-radius: 10px 10px 0 0;
          background-color: #a85222;
          transition: background-color 0.25s ease-out, color 0.25s ease-out;
          margin-bottom: 0; }
        .page-id-55 .icon-rows-wrapper .category-tab-and-icons .category-tab-row .small-6 a.category-tab:hover {
          background-color: #f1cebb;
          color: #a85222 !important; }
    .page-id-55 .icon-rows-wrapper .category-tab-and-icons .category-icons-row {
      padding-top: 20px;
      margin-top: -20px;
      background-color: #f1cebb;
      border-radius: 10px 0 10px 10px; }
      .page-id-55 .icon-rows-wrapper .category-tab-and-icons .category-icons-row .small-4 {
        padding-left: 4px;
        padding-right: 4px; }
        .page-id-55 .icon-rows-wrapper .category-tab-and-icons .category-icons-row .small-4 h3 {
          margin-top: 5px;
          margin-bottom: 15px; }

.page-id-55 li.accordion-item {
  margin-left: -16px;
  margin-right: -16px; }

.page-id-55 .accordion-row {
  margin-top: 40px; }

/********* New FAQ styles for top level 'At what age' *********/
.page-id-55 #inner-content {
  background-color: #f6dfd2; }
  .page-id-55 #inner-content .article-header {
    background-color: #a85222; }
  .page-id-55 #inner-content a {
    color: #c66028; }
  .page-id-55 #inner-content a:hover, .page-id-55 #inner-content a:active {
    color: #a85222; }
  .page-id-55 #inner-content h2.top-level {
    color: #a85222; }
  .page-id-55 #inner-content .row.top-level a {
    background-color: #a85222; }
  .page-id-55 #inner-content .row.top-level a:hover {
    color: #c66028;
    background-color: #f1cebb; }
    .page-id-55 #inner-content .row.top-level a:hover h3 {
      color: #a85222; }
  .page-id-55 #inner-content .row.accordion-row .accordion {
    background-color: #f6dfd2; }
    .page-id-55 #inner-content .row.accordion-row .accordion a.accordion-title {
      background-color: #a85222; }
    .page-id-55 #inner-content .row.accordion-row .accordion a.accordion-title:hover {
      color: #a85222;
      background-color: #f1cebb; }
    .page-id-55 #inner-content .row.accordion-row .accordion .accordion-content {
      background-color: #faefe8; }

.parent-pageid-55 #inner-content .entry-content h2 {
  color: #a85222;
  background-color: #e8ae8e;
  margin: 10px -15px 20px;
  padding: 10px 15px; }

.parent-pageid-55 #inner-content .entry-content h2.first-h2 {
  margin: -8px -16px 10px -15px; }

.parent-pageid-55 #inner-content .entry-content h2 + hr {
  display: none; }

.parent-pageid-55 #inner-content .entry-content hr.hide-for-print {
  display: none; }

.parent-pageid-55 #inner-content .entry-content img {
  width: 60px;
  margin-right: 30px;
  margin-bottom: 30px; }

.parent-pageid-55 #inner-content .entry-content h3 {
  color: #a85222;
  font-size: 1.3rem;
  font-weight: 700; }

.parent-pageid-55 #inner-content .entry-content h6 {
  color: #a85222;
  padding-left: 90px;
  font-size: 0.8rem;
  margin-top: -15px;
  margin-bottom: 20px; }

.parent-pageid-55 #inner-content .entry-content h3 + h6 {
  margin-top: 10px; }

.parent-pageid-55 #inner-content .entry-content ul.bullets {
  padding-left: 90px; }

.parent-pageid-55 #inner-content .entry-content .logo-wrapper img {
  width: 240px; }

.parent-pageid-55 #inner-content .entry-content p {
  padding-left: 90px; }

.parent-pageid-55 #inner-content .entry-content hr {
  margin: 1.0rem auto; }

.parent-pageid-55 #inner-content .sidebar, .parent-pageid-55 #inner-content .table-of-contents {
  background-color: #f1cebb; }
  .parent-pageid-55 #inner-content .sidebar .sidebar-top-colour-block, .parent-pageid-55 #inner-content .table-of-contents .sidebar-top-colour-block {
    background: #a85222; }
  .parent-pageid-55 #inner-content .sidebar .toc-title, .parent-pageid-55 #inner-content .table-of-contents .toc-title {
    background: #da7d4a; }
  .parent-pageid-55 #inner-content .sidebar .toc-link, .parent-pageid-55 #inner-content .table-of-contents .toc-link {
    background: #a85222; }
  .parent-pageid-55 #inner-content .sidebar .toc-link:hover, .parent-pageid-55 #inner-content .table-of-contents .toc-link:hover {
    background: #da7d4a; }

/************* At what age timeline ********/
/*

.page-id-797 {

	#inner-content {



		.toc-heading {
			transition: background-color 0.25s ease-out, color 0.25s ease-out;
			padding: 20px;
		}

		.toc-heading:hover {
			background-color: $at-what-age-sidebar-heading;
			color: #fff;
		}

		.toc-heading:after {
			content: '\25BC';
			margin-top: -0.4rem;
			font-size: 16px;
			float: right;
			padding: 12px 36px;
		}

		.age-panel-open.toc-heading:after {
			content: '\25B2';
		}

		.age-panel {
			display: none;
		}		

		nav.table-of-contents {

			ul {

				li {
					display: block;
					width: 33.3%;
					float: left;


					a.toc-link {
					display: block;
					color: #fff;
					border-radius: 10px;
					margin-left: auto;
					margin-right: auto;
					padding: 10px;
					text-align: center;
					transition: background-color 0.25s ease-out, color 0.25s ease-out;

					}
				}
			}
		}

		.entry-content {


			h2 {

				margin: 30px -15px;
			}

			img {
				margin-right: 10px;
				margin-bottom: 0;

			}

			ul.accordion {
				background-color: $at-what-age-background;
				margin-left: 70px;
				margin-bottom: 0;
				border: none;
				border-bottom: none;
				padding-right: 20px;


				.accordion-title {
					height: 30px;
					font-size: 1.3rem;
					padding: 20px 1rem 40px;
					border-radius: 10px;
				}

				.accordion-title:hover {
					background-color: $at-what-age-dark;
					color: #fff;	
				}


				.accordion-title::before {
					content: '\25BC';
					margin-top: -0.4rem;
					font-size: 16px
				}

				.is-active > .accordion-title {
					border-radius: 10px 10px 0 0;
					background-color: $at-what-age-dark;
					color: #fff;
				}

				.is-active > .accordion-title::before {
					content: '\25B2';
				}

				.accordion-content {
					background-color: $at-what-age-accordion;
					border-radius: 0 0 10px 10px;

					p, h6, ul {
						padding-left: 0;
					}

					ul{
						margin-bottom: 20px;
					}
				}
			}

			nav.table-of-contents.show-for-small-only {
				display: none;
			}

			nav.table-of-contents.show-for-small-only.hard-wired {
				display: block;
			}

			ul.accordion:last-child {
				margin-bottom: 20px;			
			}
		}
	}
}

*/
.page-id-797 #inner-content nav.table-of-contents ul li {
  display: block;
  /* fix for accessibility larger text sizes 
						width: 33.3%; */
  width: 50%;
  float: left;
  /* fix for accessibility larger text sizes */
  height: auto; }
  .page-id-797 #inner-content nav.table-of-contents ul li a.toc-link {
    display: block;
    color: #fff;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    text-align: center;
    transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.page-id-797 #inner-content .entry-content .data-toggle {
  display: block;
  padding: 10px 15px 8px;
  margin: 20px 0px;
  color: #fff;
  border-radius: 10px;
  background-color: #e8ae8e;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

.page-id-797 #inner-content .entry-content .data-toggle.first-toggle {
  margin-top: 20px; }

.page-id-797 #inner-content .entry-content .toc-heading {
  background-color: transparent;
  margin: -60px -15px 10px 80px; }

.page-id-797 #inner-content .entry-content .toc-heading.first-h2 {
  margin: -60px -16px 10px 80px; }

.page-id-797 #inner-content .entry-content .data-toggle:hover {
  background-color: #da7d4a;
  color: #fff; }
  .page-id-797 #inner-content .entry-content .data-toggle:hover .toc-heading {
    color: #fff; }

.page-id-797 #inner-content .entry-content .toc-heading:after {
  content: '\25BC';
  margin-top: -0.4rem;
  font-size: 16px;
  float: right;
  padding: 12px 0px; }

.page-id-797 #inner-content .entry-content .age-panel-open.toc-heading:after {
  content: '\25B2'; }

.page-id-797 #inner-content .entry-content .age-panel {
  display: none;
  /*				background-color: $at-what-age-sidebar; */
  padding: 0 0 0 15px; }

.page-id-797 #inner-content .entry-content img {
  margin-right: 10px;
  margin-bottom: 0; }

.page-id-797 #inner-content .entry-content ul.accordion {
  background-color: #f6dfd2;
  margin-left: 70px;
  margin-bottom: 0;
  border: none;
  border-bottom: none;
  /*				padding-right: 20px; */ }
  .page-id-797 #inner-content .entry-content ul.accordion .accordion-title {
    height: 30px;
    font-size: 1.3rem;
    padding: 20px 1rem 40px;
    border-radius: 10px; }
  .page-id-797 #inner-content .entry-content ul.accordion .accordion-title:hover {
    background-color: #a85222;
    color: #fff; }
  .page-id-797 #inner-content .entry-content ul.accordion .accordion-title::before {
    content: '\25BC';
    margin-top: -0.4rem;
    font-size: 16px; }
  .page-id-797 #inner-content .entry-content ul.accordion .is-active > .accordion-title {
    border-radius: 10px 10px 0 0;
    background-color: #a85222;
    color: #fff; }
  .page-id-797 #inner-content .entry-content ul.accordion .is-active > .accordion-title::before {
    content: '\25B2'; }
  .page-id-797 #inner-content .entry-content ul.accordion .accordion-content {
    background-color: #faefe8;
    border-radius: 0 0 10px 10px; }
    .page-id-797 #inner-content .entry-content ul.accordion .accordion-content p, .page-id-797 #inner-content .entry-content ul.accordion .accordion-content h6, .page-id-797 #inner-content .entry-content ul.accordion .accordion-content ul {
      padding-left: 0; }
    .page-id-797 #inner-content .entry-content ul.accordion .accordion-content ul {
      margin-bottom: 20px; }

.page-id-797 #inner-content .entry-content nav.table-of-contents.show-for-small-only {
  display: none; }

.page-id-797 #inner-content .entry-content nav.table-of-contents.show-for-small-only.hard-wired {
  display: block; }

.page-id-797 #inner-content .entry-content ul.accordion:last-child {
  margin-bottom: 20px; }

/* Buy and consume */
.page-id-530 p {
  line-height: 30px; }

/* Age-span */
.age-span {
  display: inline-block;
  line-height: 24px;
  height: 30px;
  width: 30px;
  font-weight: 700;
  color: #fff;
  background-color: #992319;
  border: 2px solid #fff;
  border-radius: 15px;
  padding-left: 3px;
  padding-top: 1px; }

/********************** Abuse and bullying **********************/
.page-id-57 #inner-content, .parent-pageid-57 #inner-content {
  background-color: #e6eaec; }
  .page-id-57 #inner-content .article-header, .parent-pageid-57 #inner-content .article-header {
    background-color: #69808a; }
  .page-id-57 #inner-content a, .parent-pageid-57 #inner-content a {
    color: #80959e; }
  .page-id-57 #inner-content a:hover, .page-id-57 #inner-content a:active, .parent-pageid-57 #inner-content a:hover, .parent-pageid-57 #inner-content a:active {
    color: #69808a; }
  .page-id-57 #inner-content h2.top-level, .parent-pageid-57 #inner-content h2.top-level {
    color: #69808a; }
  .page-id-57 #inner-content .row.top-level a, .parent-pageid-57 #inner-content .row.top-level a {
    background-color: #69808a; }
  .page-id-57 #inner-content .row.top-level a:hover, .parent-pageid-57 #inner-content .row.top-level a:hover {
    color: #80959e;
    background-color: #d9dfe2; }
    .page-id-57 #inner-content .row.top-level a:hover h3, .parent-pageid-57 #inner-content .row.top-level a:hover h3 {
      color: #69808a; }
  .page-id-57 #inner-content .row.accordion-row .accordion, .parent-pageid-57 #inner-content .row.accordion-row .accordion {
    background-color: #e6eaec; }
    .page-id-57 #inner-content .row.accordion-row .accordion a.accordion-title, .parent-pageid-57 #inner-content .row.accordion-row .accordion a.accordion-title {
      background-color: #69808a; }
    .page-id-57 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .parent-pageid-57 #inner-content .row.accordion-row .accordion a.accordion-title:hover {
      color: #69808a;
      background-color: #d9dfe2; }
    .page-id-57 #inner-content .row.accordion-row .accordion .accordion-content, .parent-pageid-57 #inner-content .row.accordion-row .accordion .accordion-content {
      background-color: #f2f4f5; }

.parent-pageid-57 h2, .parent-pageid-57 h3 {
  color: #69808a; }

.parent-pageid-57 .sidebar, .parent-pageid-57 .table-of-contents {
  background-color: #d9dfe2; }
  .parent-pageid-57 .sidebar .sidebar-top-colour-block, .parent-pageid-57 .table-of-contents .sidebar-top-colour-block {
    background: #69808a; }
  .parent-pageid-57 .sidebar .toc-title, .parent-pageid-57 .table-of-contents .toc-title {
    background: #99aab1; }
  .parent-pageid-57 .sidebar .toc-link:hover, .parent-pageid-57 .table-of-contents .toc-link:hover {
    background: #99aab1; }

/********************** Sex, drugs and health **********************/
.page-id-59 #inner-content, .parent-pageid-59 #inner-content {
  background-color: #fbdcde; }
  .page-id-59 #inner-content .article-header, .parent-pageid-59 #inner-content .article-header {
    background-color: #e52635; }
  .page-id-59 #inner-content a, .parent-pageid-59 #inner-content a {
    color: #ea505c; }
  .page-id-59 #inner-content a:hover, .page-id-59 #inner-content a:active, .parent-pageid-59 #inner-content a:hover, .parent-pageid-59 #inner-content a:active {
    color: #e52635; }
  .page-id-59 #inner-content h2.top-level, .parent-pageid-59 #inner-content h2.top-level {
    color: #e52635; }
  .page-id-59 #inner-content .row.top-level a, .parent-pageid-59 #inner-content .row.top-level a {
    background-color: #e52635; }
  .page-id-59 #inner-content .row.top-level a:hover, .parent-pageid-59 #inner-content .row.top-level a:hover {
    color: #ea505c;
    background-color: #f9cbce; }
    .page-id-59 #inner-content .row.top-level a:hover h3, .parent-pageid-59 #inner-content .row.top-level a:hover h3 {
      color: #e52635; }
  .page-id-59 #inner-content .row.accordion-row .accordion, .parent-pageid-59 #inner-content .row.accordion-row .accordion {
    background-color: #fbdcde; }
    .page-id-59 #inner-content .row.accordion-row .accordion a.accordion-title, .parent-pageid-59 #inner-content .row.accordion-row .accordion a.accordion-title {
      background-color: #e52635; }
    .page-id-59 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .parent-pageid-59 #inner-content .row.accordion-row .accordion a.accordion-title:hover {
      color: #e52635;
      background-color: #f9cbce; }
    .page-id-59 #inner-content .row.accordion-row .accordion .accordion-content, .parent-pageid-59 #inner-content .row.accordion-row .accordion .accordion-content {
      background-color: #fdeeef; }

.parent-pageid-59 h2, .parent-pageid-59 h3 {
  color: #e52635; }

.parent-pageid-59 .sidebar, .parent-pageid-59 .table-of-contents {
  background-color: #f9cbce; }
  .parent-pageid-59 .sidebar .sidebar-top-colour-block, .parent-pageid-59 .table-of-contents .sidebar-top-colour-block {
    background: #e52635; }
  .parent-pageid-59 .sidebar .toc-title, .parent-pageid-59 .table-of-contents .toc-title {
    background: #ee737d; }
  .parent-pageid-59 .sidebar .toc-link, .parent-pageid-59 .table-of-contents .toc-link {
    background: #e52635; }
  .parent-pageid-59 .sidebar .toc-link:hover, .parent-pageid-59 .table-of-contents .toc-link:hover {
    background: #ee737d; }

/********************** My rights **********************/
.page-id-61 #inner-content, .parent-pageid-61 #inner-content {
  background-color: #d8ecef; }
  .page-id-61 #inner-content .article-header, .parent-pageid-61 #inner-content .article-header {
    background-color: #39838f; }
  .page-id-61 #inner-content a, .parent-pageid-61 #inner-content a {
    color: #439aa8; }
  .page-id-61 #inner-content a:hover, .page-id-61 #inner-content a:active, .parent-pageid-61 #inner-content a:hover, .parent-pageid-61 #inner-content a:active {
    color: #39838f; }
  .page-id-61 #inner-content h2.top-level, .parent-pageid-61 #inner-content h2.top-level {
    color: #39838f; }
  .page-id-61 #inner-content .row.top-level a, .parent-pageid-61 #inner-content .row.top-level a {
    background-color: #39838f; }
  .page-id-61 #inner-content .row.top-level a:hover, .parent-pageid-61 #inner-content .row.top-level a:hover {
    color: #439aa8;
    background-color: #c4e3e7; }
    .page-id-61 #inner-content .row.top-level a:hover h3, .parent-pageid-61 #inner-content .row.top-level a:hover h3 {
      color: #39838f; }
  .page-id-61 #inner-content .row.accordion-row .accordion, .parent-pageid-61 #inner-content .row.accordion-row .accordion {
    background-color: #d8ecef; }
    .page-id-61 #inner-content .row.accordion-row .accordion a.accordion-title, .parent-pageid-61 #inner-content .row.accordion-row .accordion a.accordion-title {
      background-color: #39838f; }
    .page-id-61 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .parent-pageid-61 #inner-content .row.accordion-row .accordion a.accordion-title:hover {
      color: #39838f;
      background-color: #c4e3e7; }
    .page-id-61 #inner-content .row.accordion-row .accordion .accordion-content, .parent-pageid-61 #inner-content .row.accordion-row .accordion .accordion-content {
      background-color: #ebf6f7; }

.parent-pageid-61 h2, .parent-pageid-61 h3 {
  color: #39838f; }

.parent-pageid-61 .sidebar, .parent-pageid-61 .table-of-contents {
  background-color: #c4e3e7; }
  .parent-pageid-61 .sidebar .sidebar-top-colour-block, .parent-pageid-61 .table-of-contents .sidebar-top-colour-block {
    background: #39838f; }
  .parent-pageid-61 .sidebar .toc-title, .parent-pageid-61 .table-of-contents .toc-title {
    background: #62b3c0; }
  .parent-pageid-61 .sidebar .toc-link, .parent-pageid-61 .table-of-contents .toc-link {
    background: #39838f; }
  .parent-pageid-61 .sidebar .toc-link:hover, .parent-pageid-61 .table-of-contents .toc-link:hover {
    background: #62b3c0; }

/********************** Online health **********************/
.page-id-63 #inner-content, .parent-pageid-63 #inner-content {
  background-color: #f4d4de; }
  .page-id-63 #inner-content .article-header, .parent-pageid-63 #inner-content .article-header {
    background-color: #a62a4e; }
  .page-id-63 #inner-content a, .parent-pageid-63 #inner-content a {
    color: #c3315c; }
  .page-id-63 #inner-content a:hover, .page-id-63 #inner-content a:active, .parent-pageid-63 #inner-content a:hover, .parent-pageid-63 #inner-content a:active {
    color: #a62a4e; }
  .page-id-63 #inner-content h2.top-level, .parent-pageid-63 #inner-content h2.top-level {
    color: #a62a4e; }
  .page-id-63 #inner-content .row.top-level a, .parent-pageid-63 #inner-content .row.top-level a {
    background-color: #a62a4e; }
  .page-id-63 #inner-content .row.top-level a:hover, .parent-pageid-63 #inner-content .row.top-level a:hover {
    color: #c3315c;
    background-color: #efbfcd; }
    .page-id-63 #inner-content .row.top-level a:hover h3, .parent-pageid-63 #inner-content .row.top-level a:hover h3 {
      color: #a62a4e; }
  .page-id-63 #inner-content .row.accordion-row .accordion, .parent-pageid-63 #inner-content .row.accordion-row .accordion {
    background-color: #f4d4de; }
    .page-id-63 #inner-content .row.accordion-row .accordion a.accordion-title, .parent-pageid-63 #inner-content .row.accordion-row .accordion a.accordion-title {
      background-color: #a62a4e; }
    .page-id-63 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .parent-pageid-63 #inner-content .row.accordion-row .accordion a.accordion-title:hover {
      color: #a62a4e;
      background-color: #efbfcd; }
    .page-id-63 #inner-content .row.accordion-row .accordion .accordion-content, .parent-pageid-63 #inner-content .row.accordion-row .accordion .accordion-content {
      background-color: #faeaee; }

.parent-pageid-63 h2, .parent-pageid-63 h3 {
  color: #a62a4e; }

.parent-pageid-63 .sidebar, .parent-pageid-63 .table-of-contents {
  background-color: #efbfcd; }
  .parent-pageid-63 .sidebar .sidebar-top-colour-block, .parent-pageid-63 .table-of-contents .sidebar-top-colour-block {
    background: #a62a4e; }
  .parent-pageid-63 .sidebar .toc-title, .parent-pageid-63 .table-of-contents .toc-title {
    background: #d4557a; }
  .parent-pageid-63 .sidebar .toc-link, .parent-pageid-63 .table-of-contents .toc-link {
    background: #a62a4e; }
  .parent-pageid-63 .sidebar .toc-link:hover, .parent-pageid-63 .table-of-contents .toc-link:hover {
    background: #d4557a; }

/********************** Glossary **********************/
.page-id-746 #inner-content, .parent-pageid-746 #inner-content {
  background-color: #e9e5f5;
  /* Glossary list styles */
  /************/ }
  .page-id-746 #inner-content .article-header, .parent-pageid-746 #inner-content .article-header {
    background-color: #402e76; }
  .page-id-746 #inner-content a, .parent-pageid-746 #inner-content a {
    color: #907dcc; }
  .page-id-746 #inner-content a:hover, .page-id-746 #inner-content a:active, .parent-pageid-746 #inner-content a:hover, .parent-pageid-746 #inner-content a:active {
    color: #402e76; }
  .page-id-746 #inner-content .glossary-container, .parent-pageid-746 #inner-content .glossary-container {
    padding: 10px; }
    .page-id-746 #inner-content .glossary-container li, .parent-pageid-746 #inner-content .glossary-container li {
      margin: 8px 0; }
      .page-id-746 #inner-content .glossary-container li span.glossaryLink, .page-id-746 #inner-content .glossary-container li a.glossaryLink, .parent-pageid-746 #inner-content .glossary-container li span.glossaryLink, .parent-pageid-746 #inner-content .glossary-container li a.glossaryLink {
        color: #402e76 !important; }
  .page-id-746 #inner-content h2.top-level, .parent-pageid-746 #inner-content h2.top-level {
    color: #402e76; }
  .page-id-746 #inner-content .row.top-level a, .parent-pageid-746 #inner-content .row.top-level a {
    background-color: #402e76; }
  .page-id-746 #inner-content .row.top-level a:hover, .parent-pageid-746 #inner-content .row.top-level a:hover {
    color: #907dcc;
    background-color: #ded8f0; }
    .page-id-746 #inner-content .row.top-level a:hover h3, .parent-pageid-746 #inner-content .row.top-level a:hover h3 {
      color: #402e76; }
  .page-id-746 #inner-content .row.accordion-row .accordion, .parent-pageid-746 #inner-content .row.accordion-row .accordion {
    background-color: #e9e5f5; }
    .page-id-746 #inner-content .row.accordion-row .accordion a.accordion-title, .parent-pageid-746 #inner-content .row.accordion-row .accordion a.accordion-title {
      background-color: #402e76; }
    .page-id-746 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .parent-pageid-746 #inner-content .row.accordion-row .accordion a.accordion-title:hover {
      color: #402e76;
      background-color: #ded8f0; }
    .page-id-746 #inner-content .row.accordion-row .accordion .accordion-content, .parent-pageid-746 #inner-content .row.accordion-row .accordion .accordion-content {
      background-color: #f4f2fa; }

.page-id-746 input#glossary-search.glossary-search.button {
  border-radius: 10px;
  margin-left: 20px; }

.parent-pageid-746 h2, .parent-pageid-746 h3 {
  color: #402e76; }

.parent-pageid-746 .sidebar, .parent-pageid-746 .table-of-contents {
  background-color: #ded8f0; }
  .parent-pageid-746 .sidebar .sidebar-top-colour-block, .parent-pageid-746 .table-of-contents .sidebar-top-colour-block {
    background: #402e76; }
  .parent-pageid-746 .sidebar .toc-title, .parent-pageid-746 .table-of-contents .toc-title {
    background: #a697d6;
    height: 53px;
    padding: 16px 10px 4px; }
  .parent-pageid-746 .sidebar .toc-link, .parent-pageid-746 .table-of-contents .toc-link {
    background: #402e76; }
  .parent-pageid-746 .sidebar .toc-link:hover, .parent-pageid-746 .table-of-contents .toc-link:hover {
    background: #a697d6; }

/********************** Who’s who **********************/
.page-id-65, .parent-pageid-65 {
  /* Who's who top level page has a sidebar 
(it doesn't use full width template) so below are 
the normal child styles 
with tweeks for h2 toc heading */
  /* end of normal child styles */ }
  .page-id-65 h2, .parent-pageid-65 h2 {
    color: #977a04;
    margin-left: 10px; }
  .page-id-65 .sidebar, .page-id-65 .table-of-contents, .parent-pageid-65 .sidebar, .parent-pageid-65 .table-of-contents {
    background-color: #fceaa0; }
    .page-id-65 .sidebar .sidebar-top-colour-block, .page-id-65 .table-of-contents .sidebar-top-colour-block, .parent-pageid-65 .sidebar .sidebar-top-colour-block, .parent-pageid-65 .table-of-contents .sidebar-top-colour-block {
      background: #977a04; }
    .page-id-65 .sidebar .toc-title, .page-id-65 .table-of-contents .toc-title, .parent-pageid-65 .sidebar .toc-title, .parent-pageid-65 .table-of-contents .toc-title {
      background: #f2c307; }
    .page-id-65 .sidebar .toc-link, .page-id-65 .table-of-contents .toc-link, .parent-pageid-65 .sidebar .toc-link, .parent-pageid-65 .table-of-contents .toc-link {
      background: #977a04; }
    .page-id-65 .sidebar .toc-link:hover, .page-id-65 .table-of-contents .toc-link:hover, .parent-pageid-65 .sidebar .toc-link:hover, .parent-pageid-65 .table-of-contents .toc-link:hover {
      background: #f2c307; }
  .page-id-65 #inner-content, .parent-pageid-65 #inner-content {
    background-color: #fdf1bf; }
    .page-id-65 #inner-content .article-header, .parent-pageid-65 #inner-content .article-header {
      background-color: #977a04; }
    .page-id-65 #inner-content a, .parent-pageid-65 #inner-content a {
      color: #b29005; }
    .page-id-65 #inner-content a:hover, .page-id-65 #inner-content a:active, .parent-pageid-65 #inner-content a:hover, .parent-pageid-65 #inner-content a:active {
      color: #977a04; }
    .page-id-65 #inner-content h2.top-level, .parent-pageid-65 #inner-content h2.top-level {
      color: #977a04; }
    .page-id-65 #inner-content .row.top-level a, .parent-pageid-65 #inner-content .row.top-level a {
      background-color: #977a04; }
    .page-id-65 #inner-content .row.top-level a:hover, .parent-pageid-65 #inner-content .row.top-level a:hover {
      color: #b29005;
      background-color: #fceaa0; }
      .page-id-65 #inner-content .row.top-level a:hover h3, .parent-pageid-65 #inner-content .row.top-level a:hover h3 {
        color: #977a04; }
    .page-id-65 #inner-content .row.accordion-row .accordion, .parent-pageid-65 #inner-content .row.accordion-row .accordion {
      background-color: #fdf1bf; }
      .page-id-65 #inner-content .row.accordion-row .accordion a.accordion-title, .parent-pageid-65 #inner-content .row.accordion-row .accordion a.accordion-title {
        background-color: #977a04; }
      .page-id-65 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .parent-pageid-65 #inner-content .row.accordion-row .accordion a.accordion-title:hover {
        color: #977a04;
        background-color: #fceaa0; }
      .page-id-65 #inner-content .row.accordion-row .accordion .accordion-content, .parent-pageid-65 #inner-content .row.accordion-row .accordion .accordion-content {
        background-color: #fef8df; }

.page-id-65 div#sidebar1.sidebar.large-4.medium-4.columns {
  margin-top: 302px; }

.page-id-65 div.sidebar-top-colour-block.breadcrumb-wrapper.show-for-medium {
  margin-top: -302px; }

.page-id-65 div#text-2.widget.widget_text.show-for-medium-up {
  margin-top: 250px; }

.page-id-65 .hero-image.show-for-medium {
  width: 960px; }

/**********************/
/********************** Contact us, Terms and conditions, 
Deleting your browser history, Feedback, Broken links, About us, Volunteer
 **********************/
.page-id-1496 #inner-content, .page-id-1508 #inner-content, .page-id-1757 #inner-content, .page-id-1751 #inner-content,
.page-id-1749 #inner-content, .page-id-1759 #inner-content, .page-id-2557 #inner-content, .parent-pageid-2 #inner-content {
  background-color: #fcf0e1; }
  .page-id-1496 #inner-content .article-header, .page-id-1508 #inner-content .article-header, .page-id-1757 #inner-content .article-header, .page-id-1751 #inner-content .article-header,
  .page-id-1749 #inner-content .article-header, .page-id-1759 #inner-content .article-header, .page-id-2557 #inner-content .article-header, .parent-pageid-2 #inner-content .article-header {
    background-color: #e99d3b; }
  .page-id-1496 #inner-content a, .page-id-1508 #inner-content a, .page-id-1757 #inner-content a, .page-id-1751 #inner-content a,
  .page-id-1749 #inner-content a, .page-id-1759 #inner-content a, .page-id-2557 #inner-content a, .parent-pageid-2 #inner-content a {
    color: #d88418; }
  .page-id-1496 #inner-content a:hover, .page-id-1496 #inner-content a:active, .page-id-1508 #inner-content a:hover, .page-id-1508 #inner-content a:active, .page-id-1757 #inner-content a:hover, .page-id-1757 #inner-content a:active, .page-id-1751 #inner-content a:hover, .page-id-1751 #inner-content a:active,
  .page-id-1749 #inner-content a:hover,
  .page-id-1749 #inner-content a:active, .page-id-1759 #inner-content a:hover, .page-id-1759 #inner-content a:active, .page-id-2557 #inner-content a:hover, .page-id-2557 #inner-content a:active, .parent-pageid-2 #inner-content a:hover, .parent-pageid-2 #inner-content a:active {
    color: #e99d3b; }
  .page-id-1496 #inner-content h1.page-title, .page-id-1508 #inner-content h1.page-title, .page-id-1757 #inner-content h1.page-title, .page-id-1751 #inner-content h1.page-title,
  .page-id-1749 #inner-content h1.page-title, .page-id-1759 #inner-content h1.page-title, .page-id-2557 #inner-content h1.page-title, .parent-pageid-2 #inner-content h1.page-title {
    margin-bottom: 30px; }
  .page-id-1496 #inner-content h2.top-level, .page-id-1508 #inner-content h2.top-level, .page-id-1757 #inner-content h2.top-level, .page-id-1751 #inner-content h2.top-level,
  .page-id-1749 #inner-content h2.top-level, .page-id-1759 #inner-content h2.top-level, .page-id-2557 #inner-content h2.top-level, .parent-pageid-2 #inner-content h2.top-level {
    color: #e99d3b; }
  .page-id-1496 #inner-content .row.top-level a, .page-id-1508 #inner-content .row.top-level a, .page-id-1757 #inner-content .row.top-level a, .page-id-1751 #inner-content .row.top-level a,
  .page-id-1749 #inner-content .row.top-level a, .page-id-1759 #inner-content .row.top-level a, .page-id-2557 #inner-content .row.top-level a, .parent-pageid-2 #inner-content .row.top-level a {
    background-color: #e99d3b; }
  .page-id-1496 #inner-content .row.top-level a:hover, .page-id-1508 #inner-content .row.top-level a:hover, .page-id-1757 #inner-content .row.top-level a:hover, .page-id-1751 #inner-content .row.top-level a:hover,
  .page-id-1749 #inner-content .row.top-level a:hover, .page-id-1759 #inner-content .row.top-level a:hover, .page-id-2557 #inner-content .row.top-level a:hover, .parent-pageid-2 #inner-content .row.top-level a:hover {
    color: #eeb469;
    background-color: #fae9d2; }
    .page-id-1496 #inner-content .row.top-level a:hover h3, .page-id-1508 #inner-content .row.top-level a:hover h3, .page-id-1757 #inner-content .row.top-level a:hover h3, .page-id-1751 #inner-content .row.top-level a:hover h3,
    .page-id-1749 #inner-content .row.top-level a:hover h3, .page-id-1759 #inner-content .row.top-level a:hover h3, .page-id-2557 #inner-content .row.top-level a:hover h3, .parent-pageid-2 #inner-content .row.top-level a:hover h3 {
      color: #e99d3b; }
  .page-id-1496 #inner-content .row.accordion-row .accordion, .page-id-1508 #inner-content .row.accordion-row .accordion, .page-id-1757 #inner-content .row.accordion-row .accordion, .page-id-1751 #inner-content .row.accordion-row .accordion,
  .page-id-1749 #inner-content .row.accordion-row .accordion, .page-id-1759 #inner-content .row.accordion-row .accordion, .page-id-2557 #inner-content .row.accordion-row .accordion, .parent-pageid-2 #inner-content .row.accordion-row .accordion {
    background-color: #fcf0e1; }
    .page-id-1496 #inner-content .row.accordion-row .accordion a.accordion-title, .page-id-1508 #inner-content .row.accordion-row .accordion a.accordion-title, .page-id-1757 #inner-content .row.accordion-row .accordion a.accordion-title, .page-id-1751 #inner-content .row.accordion-row .accordion a.accordion-title,
    .page-id-1749 #inner-content .row.accordion-row .accordion a.accordion-title, .page-id-1759 #inner-content .row.accordion-row .accordion a.accordion-title, .page-id-2557 #inner-content .row.accordion-row .accordion a.accordion-title, .parent-pageid-2 #inner-content .row.accordion-row .accordion a.accordion-title {
      background-color: #e99d3b; }
    .page-id-1496 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .page-id-1508 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .page-id-1757 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .page-id-1751 #inner-content .row.accordion-row .accordion a.accordion-title:hover,
    .page-id-1749 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .page-id-1759 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .page-id-2557 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .parent-pageid-2 #inner-content .row.accordion-row .accordion a.accordion-title:hover {
      color: #e99d3b;
      background-color: #fae9d2; }
    .page-id-1496 #inner-content .row.accordion-row .accordion .accordion-content, .page-id-1508 #inner-content .row.accordion-row .accordion .accordion-content, .page-id-1757 #inner-content .row.accordion-row .accordion .accordion-content, .page-id-1751 #inner-content .row.accordion-row .accordion .accordion-content,
    .page-id-1749 #inner-content .row.accordion-row .accordion .accordion-content, .page-id-1759 #inner-content .row.accordion-row .accordion .accordion-content, .page-id-2557 #inner-content .row.accordion-row .accordion .accordion-content, .parent-pageid-2 #inner-content .row.accordion-row .accordion .accordion-content {
      background-color: #fdf8f0; }

/****************   Privacy and Volunteer *************** /

top level pages with sidebar 
(they don't use full width template) 
below are normal child styles 
with tweeks for h2 toc heading */
.page-id-1527, .page-id-2557 {
  /************ normal top level styles start here *********/ }
  .page-id-1527 h2, .page-id-1527 h3, .page-id-2557 h2, .page-id-2557 h3 {
    color: #e99d3b; }
  .page-id-1527 .sidebar, .page-id-1527 .table-of-contents, .page-id-2557 .sidebar, .page-id-2557 .table-of-contents {
    background-color: #fae9d2; }
    .page-id-1527 .sidebar .sidebar-top-colour-block, .page-id-1527 .table-of-contents .sidebar-top-colour-block, .page-id-2557 .sidebar .sidebar-top-colour-block, .page-id-2557 .table-of-contents .sidebar-top-colour-block {
      background: #e99d3b; }
    .page-id-1527 .sidebar .toc-title, .page-id-1527 .table-of-contents .toc-title, .page-id-2557 .sidebar .toc-title, .page-id-2557 .table-of-contents .toc-title {
      background: #f1c387; }
    .page-id-1527 .sidebar .toc-link, .page-id-1527 .table-of-contents .toc-link, .page-id-2557 .sidebar .toc-link, .page-id-2557 .table-of-contents .toc-link {
      background: #e99d3b; }
    .page-id-1527 .sidebar .toc-link:hover, .page-id-1527 .table-of-contents .toc-link:hover, .page-id-2557 .sidebar .toc-link:hover, .page-id-2557 .table-of-contents .toc-link:hover {
      background: #f1c387; }
  .page-id-1527 #inner-content, .page-id-2557 #inner-content {
    background-color: #fcf0e1; }
    .page-id-1527 #inner-content .article-header, .page-id-2557 #inner-content .article-header {
      background-color: #e99d3b; }
    .page-id-1527 #inner-content a, .page-id-2557 #inner-content a {
      color: #d88418; }
    .page-id-1527 #inner-content a:hover, .page-id-1527 #inner-content a:active, .page-id-2557 #inner-content a:hover, .page-id-2557 #inner-content a:active {
      color: #e99d3b; }
    .page-id-1527 #inner-content h1.page-title, .page-id-2557 #inner-content h1.page-title {
      margin-bottom: 30px; }
    .page-id-1527 #inner-content h2.top-level, .page-id-2557 #inner-content h2.top-level {
      color: #e99d3b; }
    .page-id-1527 #inner-content .row.top-level a, .page-id-2557 #inner-content .row.top-level a {
      background-color: #e99d3b; }
    .page-id-1527 #inner-content .row.top-level a:hover, .page-id-2557 #inner-content .row.top-level a:hover {
      color: #eeb469;
      background-color: #fae9d2; }
      .page-id-1527 #inner-content .row.top-level a:hover h3, .page-id-2557 #inner-content .row.top-level a:hover h3 {
        color: #e99d3b; }
    .page-id-1527 #inner-content .row.accordion-row .accordion, .page-id-2557 #inner-content .row.accordion-row .accordion {
      background-color: #fcf0e1; }
      .page-id-1527 #inner-content .row.accordion-row .accordion a.accordion-title, .page-id-2557 #inner-content .row.accordion-row .accordion a.accordion-title {
        background-color: #e99d3b; }
      .page-id-1527 #inner-content .row.accordion-row .accordion a.accordion-title:hover, .page-id-2557 #inner-content .row.accordion-row .accordion a.accordion-title:hover {
        color: #e99d3b;
        background-color: #fae9d2; }
      .page-id-1527 #inner-content .row.accordion-row .accordion .accordion-content, .page-id-2557 #inner-content .row.accordion-row .accordion .accordion-content {
        background-color: #fdf8f0; }

/*************/
/* buttons */
.button.round {
  border-radius: 10px; }

/* Screen reader text */
.screen-reader-text {
  visibility: hidden; }

/* Search input field */
/*

input.search-field {
	width: 90%;
	border-radius: 10px;
	margin-left: auto;
	margin-right: auto;
	}

input.search-submit.button {
		width: 40%;
		border-radius: 10px;
		margin-left: 5%;
	}

*/
/* Search row: Front page*/
.search-row {
  margin-top: -30px;
  margin-left: 10px;
  margin-right: 10px;
  /*
	input.search-field {
		width: 80%;
		border-radius: 10px;
		margin-left: auto;
		margin-right: auto;
		}

	input.search-submit.button {
		width: 20%;
		border-radius: 10px;
		margin-left: 10%;
	}
*/ }
  .search-row .screen-reader-text {
    visibility: hidden; }

/**/
/* Shitnav toggle bar */
#shiftnav-toggle-main {
  height: 80px;
  /* z-index change to show AddThis icons above ShiftNav */
  /*	z-index: 2000; */ }
  #shiftnav-toggle-main .logo-wrapper {
    display: block;
    width: 240px;
    margin-left: auto;
    margin-right: auto;
    padding: 0; }
  #shiftnav-toggle-main .shiftnav-toggle-burger {
    padding: 35px 15px 15px 20px; }

#shiftnav-menu-image-shiftnav-main {
  background-color: #992319; }

.shiftnav-submenu-activation {
  background-color: #f9bf99; }

/* Menu item hover colors */
#menu-item-871 a, #menu-item-2719 a, #menu-item-2720 a, #menu-item-2721 a, #menu-item-2722 a, #menu-item-2723 a, #menu-item-2724 a, #menu-item-2725 a {
  background-color: #fbd8c2;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

#menu-item-871 a:hover, #menu-item-2719 a:hover, #menu-item-2720 a:hover, #menu-item-2721 a:hover, #menu-item-2722 a:hover, #menu-item-2723 a:hover, #menu-item-2724 a:hover, #menu-item-2725 a:hover {
  background-color: #992319; }

#menu-item-872 a, #menu-item-76 a, #menu-item-2727 a {
  background-color: #fbd8c2;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

#menu-item-872 a:hover, #menu-item-872 a:active, #menu-item-76 a:hover, #menu-item-76 a:active, #menu-item-2727 a:hover, #menu-item-2727 a:active {
  background-color: #466fb4; }

#menu-item-872 .shiftnav-submenu-activation:hover, #menu-item-76 .shiftnav-submenu-activation:hover, #menu-item-2727 .shiftnav-submenu-activation:hover {
  background-color: #698bc5; }

#menu-item-880 a, #menu-item-78 a, #menu-item-2736 a {
  background-color: #fbd8c2;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

#menu-item-880 a:hover, #menu-item-880 a:active, #menu-item-78 a:hover, #menu-item-78 a:active, #menu-item-2736 a:hover, #menu-item-2736 a:active {
  background-color: #b63d7f; }

#menu-item-880 .shiftnav-submenu-activation:hover, #menu-item-78 .shiftnav-submenu-activation:hover, #menu-item-2736 .shiftnav-submenu-activation:hover {
  background-color: #c95f99; }

#menu-item-895 a, #menu-item-69 a, #menu-item-2755 a {
  background-color: #fbd8c2;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

#menu-item-895 a:hover, #menu-item-895 a:active, #menu-item-69 a:hover, #menu-item-69 a:active, #menu-item-2755 a:hover, #menu-item-2755 a:active {
  background-color: #4b8b34; }

#menu-item-895 .shiftnav-submenu-activation:hover, #menu-item-69 .shiftnav-submenu-activation:hover, #menu-item-2755 .shiftnav-submenu-activation:hover {
  background-color: #64b945; }

#menu-item-896 a, #menu-item-75 a, #menu-item-2775 a {
  background-color: #fbd8c2;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

#menu-item-896 a:hover, #menu-item-896 a:active, #menu-item-75 a:hover, #menu-item-75 a:active, #menu-item-2775 a:hover, #menu-item-2775 a:active {
  background-color: #2ba88e; }

#menu-item-896 .shiftnav-submenu-activation:hover, #menu-item-75 .shiftnav-submenu-activation:hover, #menu-item-2775 .shiftnav-submenu-activation:hover {
  background-color: #41ceb1; }

#menu-item-897 a, #menu-item-73 a, #menu-item-2782 a {
  background-color: #fbd8c2;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

#menu-item-897 a:hover, #menu-item-897 a:active, #menu-item-73 a:hover, #menu-item-73 a:active, #menu-item-2782 a:hover, #menu-item-2782 a:active {
  background-color: #9c48a5; }

#menu-item-897 .shiftnav-submenu-activation:hover, #menu-item-73 .shiftnav-submenu-activation:hover, #menu-item-2782 .shiftnav-submenu-activation:hover {
  background-color: #b467bd; }

#menu-item-898 a, #menu-item-68 a, #menu-item-2798 a {
  background-color: #fbd8c2;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

#menu-item-898 a:hover, #menu-item-898 a:active, #menu-item-68 a:hover, #menu-item-68 a:active, #menu-item-2798 a:hover, #menu-item-2798 a:active {
  background-color: #c66028; }

#menu-item-898 .shiftnav-submenu-activation:hover, #menu-item-68 .shiftnav-submenu-activation:hover, #menu-item-2798 .shiftnav-submenu-activation:hover {
  background-color: #da7d4a; }

#menu-item-900 a, #menu-item-67 a, #menu-item-2812 a {
  background-color: #fbd8c2;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

#menu-item-900 a:hover, #menu-item-900 a:active, #menu-item-67 a:hover, #menu-item-67 a:active, #menu-item-2812 a:hover, #menu-item-2812 a:active {
  background-color: #80959e; }

#menu-item-900 .shiftnav-submenu-activation:hover, #menu-item-67 .shiftnav-submenu-activation:hover, #menu-item-2812 .shiftnav-submenu-activation:hover {
  background-color: #99aab1; }

#menu-item-901 a, #menu-item-77 a, #menu-item-2821 a {
  background-color: #fbd8c2;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

#menu-item-901 a:hover, #menu-item-901 a:active, #menu-item-77 a:hover, #menu-item-77 a:active, #menu-item-2821 a:hover, #menu-item-2821 a:active {
  background-color: #ea505c; }

#menu-item-901 .shiftnav-submenu-activation:hover, #menu-item-77 .shiftnav-submenu-activation:hover, #menu-item-2821 .shiftnav-submenu-activation:hover {
  background-color: #ee737d; }

#menu-item-902 a, #menu-item-74 a, #menu-item-2831 a {
  background-color: #fbd8c2;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

#menu-item-902 a:hover, #menu-item-902 a:active, #menu-item-74 a:hover, #menu-item-74 a:active, #menu-item-2831 a:hover, #menu-item-2831 a:active {
  background-color: #439aa8; }

#menu-item-902 .shiftnav-submenu-activation:hover, #menu-item-74 .shiftnav-submenu-activation:hover, #menu-item-2831 .shiftnav-submenu-activation:hover {
  background-color: #62b3c0; }

#menu-item-903 a, #menu-item-72 a, #menu-item-2845 a {
  background-color: #fbd8c2;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

#menu-item-903 a:hover, #menu-item-903 a:active, #menu-item-72 a:hover, #menu-item-72 a:active, #menu-item-2845 a:hover, #menu-item-2845 a:active {
  background-color: #c3315c; }

#menu-item-903 .shiftnav-submenu-activation:hover, #menu-item-72 .shiftnav-submenu-activation:hover, #menu-item-2845 .shiftnav-submenu-activation:hover {
  background-color: #d4557a; }

#menu-item-904 a, #menu-item-764 a, #menu-item-2853 a {
  background-color: #fbd8c2;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

#menu-item-904 a:hover, #menu-item-904 a:active, #menu-item-764 a:hover, #menu-item-764 a:active, #menu-item-2853 a:hover, #menu-item-2853 a:active {
  background-color: #907dcc; }

#menu-item-904 .shiftnav-submenu-activation:hover, #menu-item-764 .shiftnav-submenu-activation:hover, #menu-item-2853 .shiftnav-submenu-activation:hover {
  background-color: #a697d6; }

#menu-item-905 a, #menu-item-79 a, #menu-item-2854 a {
  background-color: #fbd8c2;
  transition: background-color 0.25s ease-out, color 0.25s ease-out; }

#menu-item-905 a:hover, #menu-item-905 a:active, #menu-item-79 a:hover, #menu-item-79 a:active, #menu-item-2854 a:hover, #menu-item-2854 a:active {
  background-color: #b29005; }

#menu-item-905 .shiftnav-submenu-activation:hover, #menu-item-79 .shiftnav-submenu-activation:hover, #menu-item-2854 .shiftnav-submenu-activation:hover {
  background-color: #f2c307; }

/* Main menu without submenus */
ul#ubermenu-nav-main-9-main-nav li ul li {
  padding: 5px; }
  ul#ubermenu-nav-main-9-main-nav li ul li a {
    display: block;
    height: 60px;
    border-radius: 10px;
    text-align: center;
    padding: 1rem 0 0 0; }

/*********************
LINK STYLES
*********************/
a,
a:visited {
  color: #0645AD; }
  a:link, a:visited:link {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }

/* Button links */
a.button {
  color: #fff; }

/*********************
H1, H2, H3, H4, H5 P STYLES
*********************/
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none; }

h2, .h2 {
  font-size: 24px;
  font-weight: 700; }

/*********************
HEADER STYLES
*********************/
.header ul.off-canvas-list li {
  list-style: none; }

/*********************
NAVIGATION STYLES
*********************/
.top-bar .title-area {
  z-index: 1; }

.off-canvas-list ul {
  margin-left: 0; }
  .off-canvas-list ul li a {
    border-bottom: 0px; }
  .off-canvas-list ul .dropdown {
    margin-left: 20px; }

/*********************
POSTS & CONTENT STYLES
*********************/
.single-title,
.page-title {
  color: #fff;
  line-height: 52px; }

.page-title .vcard {
  border: 0px;
  padding: 0px; }

.byline {
  color: #999; }

.entry-content img {
  max-width: 100%;
  height: auto; }

.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left; }

.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right; }

.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both; }

.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto; }

.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px; }

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px; }
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center; }

.post-password-form input[type="submit"] {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.85em 1em;
  margin: 0 0 15px 0;
  font-size: 0.9rem;
  background-color: #f37e32;
  color: #fefefe; }
  [data-whatinput='mouse'] .post-password-form input[type="submit"] {
    outline: 0; }
  .post-password-form input[type="submit"]:hover, .post-password-form input[type="submit"]:focus {
    background-color: #eb650e;
    color: #fefefe; }

/*********************
IMAGE GALLERY STYLES
*********************/
/*********************
PAGE NAVI STYLES
*********************/
.page-navigation {
  margin-top: 1rem; }

/*********************
COMMENT STYLES
*********************/
#comments .commentlist {
  margin-left: 0px; }

#respond ul {
  margin-left: 0px; }

.commentlist li {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
  margin-bottom: 1.5em;
  padding: 0.7335em 10px; }
  .commentlist li:last-child {
    margin-bottom: 0; }
  .commentlist li ul.children {
    margin: 0; }

.commentlist li[class*=depth-] {
  margin-top: 1.1em; }

.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0; }

.commentlist li:not(.depth-1) {
  margin-left: 10px;
  margin-top: 0;
  padding-bottom: 0; }

.commentlist .vcard {
  margin-left: 50px; }
  .commentlist .vcard cite.fn {
    font-weight: 700;
    font-style: normal; }
  .commentlist .vcard time {
    float: right; }
    .commentlist .vcard time a {
      color: #999;
      text-decoration: none; }
      .commentlist .vcard time a:hover {
        text-decoration: underline; }
  .commentlist .vcard img.avatar {
    position: absolute;
    left: 10px;
    padding: 2px;
    border: 1px solid #cecece;
    background: #fff; }

.commentlist .comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em; }

.commentlist .comment-reply-link {
  float: right; }

/*********************
COMMENT FORM STYLES
*********************/
.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em; }
  .respond-form form {
    margin: 0.75em 0; }
    .respond-form form li {
      list-style-type: none;
      clear: both;
      margin-bottom: 0.7335em; }
      .respond-form form li label,
      .respond-form form li small {
        display: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url],
    .respond-form form textarea {
      padding: 3px 6px;
      background: #efefef;
      border: 2px solid #cecece;
      line-height: 1.5em; }
      .respond-form form input[type=text]:focus,
      .respond-form form input[type=email]:focus,
      .respond-form form input[type=url]:focus,
      .respond-form form textarea:focus {
        background: #fff; }
      .respond-form form input[type=text]:invalid,
      .respond-form form input[type=email]:invalid,
      .respond-form form input[type=url]:invalid,
      .respond-form form textarea:invalid {
        outline: none;
        border-color: #fbc2c4;
        background-color: #f6e7eb;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        box-shadow: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url] {
      max-width: 400px;
      min-width: 250px; }
    .respond-form form textarea {
      resize: none;
      width: 97.3%;
      height: 150px; }

#comment-form-title {
  margin: 0 0 1.1em; }

#allowed_tags {
  margin: 1.5em 10px 0.7335em 0; }

.nocomments {
  margin: 0 20px 1.1em; }

/*********************
SIDEBARS & ASIDES
*********************/
.sidebar .sidebar-top-colour-block {
  margin-left: -15px;
  margin-right: -15px;
  height: 52px; }

.sidebar .toc-title {
  color: #fff;
  height: 53px;
  padding: 16px 10px 4px;
  margin-left: -15px;
  margin-right: -15px; }

/* Adjust height of sidebar colour block for pages with two line page titles */
.page-id-181 .sidebar-top-colour-block {
  height: 104px; }

/**/
.widget ul {
  margin: 0; }
  .widget ul li {
    list-style: none; }

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both; }
  .footer #inner-footer {
    background-color: #992319;
    margin-top: 0;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto; }
    .footer #inner-footer .copyright {
      margin-top: 30px; }

/*********************
FOUNDATION STYLES
*********************/
/*********************
PLUGIN STYLES
*********************/
.gform_body ul {
  list-style: none outside none;
  margin: 0; }

/*********************
DESKTOP STYLES
*********************/
.top-bar {
  position: relative;
  height: 80px;
  background-color: #992319;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 0; }
  .top-bar .top-bar-right {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%; }
  .top-bar .top-bar-left {
    width: 100%; }
    .top-bar .top-bar-left a.logo-wrapper {
      display: block;
      width: 240px;
      /*			margin-top: 10px;
			margin-left: auto;
			margin-right: auto;
*/
      position: absolute;
      top: 10px;
      left: 50%;
      margin-left: -120px;
      z-index: 200; }

/****** Uber Menu ********/
.ubermenu.ubermenu-disable-submenu-scroll .ubermenu-item > .ubermenu-submenu.ubermenu-submenu-type-mega {
  overflow: visible; }

.ubermenu-submenu .ubermenu-target {
  padding: 8px 20px; }

/* second level submenu width */
.ubermenu-item ul li ul a.ubermenu-target {
  width: 300px; }

/* Add box-shadow for Desktop */
@media screen and (min-width: 769px) {
  #content #inner-content {
    margin-top: -80px;
    padding-top: 80px;
    margin-bottom: -52px;
    padding-bottom: 52px;
    box-shadow: -10px 0px 30px rgba(0, 0, 0, 0.3), 10px 0px 30px rgba(0, 0, 0, 0.3); } }

@media screen and (min-width: 767px) {
  .cd-top {
    bottom: 0;
    left: 0; }
  .wpcf7 .how-to-contact-row .wpcf7-list-item label, .wpcf7 .voicemail-row .wpcf7-list-item label, .wpcf7 .risk-row .wpcf7-list-item label {
    width: 31%; }
  .wpcf7 .what-do-you-want-to-talk-about-row .wpcf7-list-item label {
    /*	width: 27%; */
    width: 100%; }
  /* Front page */
  .page-id-2 {
    background-color: #fbebd1; }
    .page-id-2 #content #inner-content article {
      margin-top: 0; }
    .page-id-2 #content #inner-content #subject-icons {
      display: block;
      margin-top: 0px; }
    .page-id-2 #content #inner-content .icons-row {
      margin-left: 30px;
      margin-right: 30px; }
  .page-id-45 #inner-content .row.top-level a, .page-id-47 #inner-content .row.top-level a, .page-id-49 #inner-content .row.top-level a, .page-id-51 #inner-content .row.top-level a,
  .page-id-53 #inner-content .row.top-level a, .page-id-57 #inner-content .row.top-level a, .page-id-59 #inner-content .row.top-level a,
  .page-id-61 #inner-content .row.top-level a, .page-id-63 #inner-content .row.top-level a, .page-id-65 #inner-content .row.top-level a, .page-id-746 #inner-content .row.top-level a {
    height: 100px;
    line-height: 100px; }
  .page-id-45 #inner-content .accordion, .page-id-47 #inner-content .accordion, .page-id-49 #inner-content .accordion, .page-id-51 #inner-content .accordion,
  .page-id-53 #inner-content .accordion, .page-id-57 #inner-content .accordion, .page-id-59 #inner-content .accordion,
  .page-id-61 #inner-content .accordion, .page-id-63 #inner-content .accordion, .page-id-65 #inner-content .accordion, .page-id-746 #inner-content .accordion {
    max-width: 80%;
    margin-left: 10%; }
  /***********  desktop styles ********/
  .page-id-55 .icon-rows-wrapper {
    margin-left: 25px;
    margin-right: 25px; }
    .page-id-55 .icon-rows-wrapper .buttons-row .small-4 {
      padding: 0; }
      .page-id-55 .icon-rows-wrapper .buttons-row .small-4 a.timeline-button, .page-id-55 .icon-rows-wrapper .buttons-row .small-4 a.category-button {
        height: 55px; }
    .page-id-55 .icon-rows-wrapper .category-tab-and-icons .category-tab-row .small-4 a.category-tab {
      height: 69px; }
    .page-id-55 .icon-rows-wrapper .category-tab-and-icons .category-icons-row .small-4 h3 {
      height: 40px; }
  .page-id-55 li.accordion-item {
    margin-left: 0;
    margin-right: 0; } }

/* @media (max-width:931px) and (min-width:767px) { */
@media (max-width: 882px) and (min-width: 767px) {
  .page-id-797 #inner-content nav.table-of-contents .toc-link {
    /*					height: 105px;	*/
    min-height: 70px; } }

@media screen and (max-width: 766px) {
  .page-id-797 #inner-content nav.table-of-contents {
    /*				margin-bottom: 260px; */
    margin-bottom: 380px; } }

@media screen and (max-width: 493px) {
  .page-id-797 #inner-content .entry-content ul.accordion .accordion-title {
    padding: 20px 1rem 50px; } }

@media screen and (max-width: 445px) {
  .page-id-797 #inner-content nav.table-of-contents {
    margin-bottom: 370px; }
    .page-id-797 #inner-content nav.table-of-contents .toc-link {
      /*					height: 76px; */ } }

/* Style for search reveal at mobile sizes */
@media screen and (max-width: 766px) {
  .reveal-overlay {
    margin-top: 160px;
    height: 120px; }
    .reveal-overlay .reveal {
      border-radius: 0; }
  .search-results .top-bar-search-wrapper {
    display: none; } }

/* Centre text below 480px */
@media screen and (max-width: 479px) {
  .page-id-55 .icon-rows-wrapper .buttons-row .small-6 a.timeline-button, .page-id-55 .icon-rows-wrapper .buttons-row .small-6 a.category-button {
    padding: 16px 20px 10px; } }

body {
  overflow: auto !important; }

/******************************************************************

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /* 

EXAMPLE 
Let's say you have an image and you need to make sure it looks ok
on retina screens. Let's say we have an icon which dimension are
24px x 24px. In your regular stylesheets, it would look something
like this:

.icon {
	width: 24px;
	height: 24px;
	background: url(img/test.png) no-repeat;
}

For retina screens, we have to make some adjustments, so that image
doesn't look blurry. So, taking into account the image above and the
dimensions, this is what we would put in our retina stylesheet:

.icon {
	background: url(img/test@2x.png) no-repeat;
	background-size: 24px 24px;
}

So, you would create the same icon, but at double the resolution, meaning 
it would be 48px x 48px. You'd name it the same, but with a @2x at the end
(this is pretty standard practice). Set the background image so it matches
the original dimensions and you are good to go. 

*/ }

/******************************************************************

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. 

Remember to add things that won't make sense to print at 
the bottom. Things like nav, ads, and forms shouldbe set 
to display none.
******************************************************************/
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }
  a,
  a:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }
  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }
