<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 *  Alias for edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Uncenter an element.
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Unstack an element.
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Apply a clearfix to an element.
 */
.is-hidden {
  display: none; }

.container {
  *zoom: 1;
  width: auto;
  max-width: 1120px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  padding: 0 20px; }

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

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

.container:after {
  clear: both; }

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

.mix .list__item,
.mix-vids .list__item,
.mix-pres .list__item {
  display: none; }

.list--filter, .list--themes, .list--speakers, .list--contacts, .list--sponsors, .list--videos, .list--presentations, .list--photos, .list--insights {
  list-style: none;
  padding: 0; }

.list--filter::after, .list--themes::after, .list--speakers::after, .list--contacts::after, .list--sponsors::after, .list--videos::after, .list--presentations::after, .list--photos::after, .list--insights::after {
  clear: both;
  content: "";
  display: table; }

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after 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/11, Safari, and Firefox &lt; 22.
 */
[hidden],
template {
  display: none; }

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

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
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: default; }

/**
 * 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
 *    (include `-moz` to future-proof).
 */
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.
 */
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; }

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top; }

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020; }

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  border-radius: 4px; }

.fancybox-opened {
  z-index: 8030; }

.fancybox-opened .fancybox-skin {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }

.fancybox-outer, .fancybox-inner {
  position: relative; }

.fancybox-inner {
  overflow: hidden; }

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch; }

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap; }

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%; }

.fancybox-image {
  max-width: 100%;
  max-height: 100%; }

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060; }

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040; }

.fancybox-prev {
  left: 0; }

.fancybox-next {
  right: 0; }

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden; }

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px; }

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px; }

.fancybox-nav:hover span {
  visibility: visible; }

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important; }

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto; }

.fancybox-lock body {
  overflow: hidden !important; }

.fancybox-lock-test {
  overflow-y: hidden !important; }

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0; }

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll; }

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050; }

.fancybox-opened .fancybox-title {
  visibility: visible; }

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center; }

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap; }

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff; }

.fancybox-title-inside-wrap {
  padding-top: 10px; }

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8); }

/*.cc-cookies { position:fixed; width: 90%; left: 0; top: 0; padding: 0.5em 5%; background: #565656; background: rgba(86,86,86,0.95); color: #fff; font-size: 13px; font-weight: 700; text-shadow: 0 -1px 0 rgba(0,0,0,0.35); z-index: 99999; text-align: center; color: #fff; }
.cc-cookies a, .cc-cookies a:hover { color: #fff; text-decoration: underline; }
.cc-cookies a:hover { text-decoration: none; }
.cc-overlay { height: 100%; padding-top: 25%; }
.cc-cookies-error { float: left; width: 90%; text-align: center; margin: 1em 0 2em 0; background: #fff; padding: 2em 5%; border: 1px solid #ccc; font-size: 18px; color: #333; }
.cc-cookies a.cc-cookie-accept, .cc-cookies-error a.cc-cookie-accept, .cc-cookies a.cc-cookie-decline, .cc-cookies-error a.cc-cookie-decline, .cc-cookies a.cc-cookie-reset { display: inline-block; color: #fff; text-decoration: none; background: #7DAF3B; padding: 0.5em 0.75em; border-radius: 3px; box-shadow: 0 0 2px rgba(0,0,0,0.25); text-shadow: 0 -1px 0 rgba(0,0,0,0.35); -o-transition: background 0.5s ease-in; -webkit-transition: background 0.25s ease-in; -moz-transition: background 0.25s ease-in; }
.cc-cookies a.cc-cookie-decline, .cc-cookies-error a.cc-cookie-decline { background: #af3b3b; margin-left: 0.5em; }
.cc-cookies a.cc-cookie-reset { background: #f15b00; }
.cc-cookies a:hover.cc-cookie-accept, .cc-cookies-error a:hover.cc-cookie-accept, .cc-cookies a:hover.cc-cookie-decline, .cc-cookies-error a:hover.cc-cookie-decline, .cc-cookies a:hover.cc-cookie-reset  { background: #000; -o-transition: background 0.5s ease-in; -webkit-transition: background 0.25s ease-in; -moz-transition: background 0.25s ease-in; }
.cc-cookies-error a.cc-cookie-accept, .cc-cookies-error a.cc-cookie-decline { display: block; margin-top: 1em; }
.cc-cookies.cc-discreet { width: auto; padding: 0.5em 1em; left: auto; top: auto; }
.cc-cookies.cc-discreet a.cc-cookie-reset { background: none; text-shadow: none; padding: 0; text-decoration: underline; }
.cc-cookies.cc-discreet a:hover.cc-cookie-reset { text-decoration: none; }

@media screen and (max-width: 768px) {
.cc-cookies a.cc-cookie-accept, .cc-cookies a.cc-cookie-decline, .cc-cookies a.cc-cookie-reset { display: block; margin: 1em 0; }
}

@media screen and (max-width: 480px) {
.cc-cookies { position: relative; float: left; }
}*/
.cc-cookies {
  position: fixed;
  padding: 20px;
  background: #00a0e1;
  color: #fff;
  z-index: 99999;
  bottom: 0; }

@media (min-width: 768px) {
  .cc-cookies {
    width: 250px;
    right: 20px;
    bottom: 20px;
    top: auto; } }

.cc-cookies h2 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 20px; }

.cc-cookies p &gt; a {
  color: #fff;
  text-decoration: underline; }

.cc-cookies .cc-cookie-accept {
  background-color: #172e78;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px; }

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

html,
body {
  height: 100%; }

body {
  position: relative;
  -webkit-font-smoothing: antialiased;
  font-family: "open-sans", arial;
  font-size: 14px;
  line-height: 1.6em;
  letter-spacing: 0.8px; }

img {
  height: auto;
  max-width: 100%;
  display: block; }

h1, h2, h3 {
  font-weight: 500;
  margin-top: 0;
  line-height: 1.1em; }

h2 {
  font-size: 23px;
  color: black;
  text-align: left;
  margin-bottom: 40px; }

h3 {
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 700; }

blockquote {
  margin: 0; }

ul,
ol {
  margin-top: 0; }

a {
  color: #00a0e1;
  text-decoration: none; }

a:hover {
  color: #000; }

p {
  margin-top: 0; }

@media (min-width: 1040px) {
  body {
    padding-top: 60px; } }

.bold {
  font-weight: bold; }

.uppercase {
  text-transform: uppercase; }

.header {
  padding: 15px 0;
  background-color: #000; }

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

.header__date {
  background-color: #00a0e1;
  color: #fff;
  text-align: center;
  padding: 5px 0; }

.header__date__sep {
  display: none; }

@media (min-width: 660px) {
  .header__date__sep {
    display: inline; } }

.header__date__date {
  display: block; }

@media (min-width: 660px) {
  .header__date__date {
    display: inline; } }

.header__date p {
  margin: 0;
  font-size: 13px; }

@media (min-width: 1040px) {
  .header__date {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 500; } }

@media (min-width: 1040px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500; } }

.header__logo {
  margin: 0; }

@media (min-width: 768px) {
  .header__logo {
    float: left;
    margin: 0; } }

.header__logo a {
  background-image: url(//www.deloitte.co.uk/smartid/img/logo-deloitte.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
  display: block;
  width: 155px;
  height: 29px;
  margin-top: 4px; }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .header__logo a {
    background-image: url(//www.deloitte.co.uk/smartid/img/logo-deloitte@2x.png);
    background-size: 155px 29px; } }

.header__nav {
  display: none;
  clear: both;
  padding-top: 20px;
  padding-bottom: 20px;
  z-index: 500; }

.header__nav.is-open {
  display: block; }

@media (min-width: 768px) {
  .header__nav {
    clear: none;
    float: right;
    display: block;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    padding-bottom: 0;
    padding-top: 0;
    box-shadow: none; } }

.header__nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 33px; }

.header__nav__bold {
  font-weight: 600; }

.header__nav__item {
  position: relative;
  text-align: center; }

.header__nav__item .small {
  font-size: 11px;
  line-height: 1em; }

@media (min-width: 1040px) {
  .header__nav__item {
    display: inline-block;
    margin-left: 15px; }
  .header__nav__item:first-child {
    margin-left: 0; } }

@media (min-width: 960px) {
  .header__nav__item {
    margin-left: 30px; } }

.header__nav__item &gt; a {
  color: #fff;
  display: block;
  padding: 6px 20px;
  border-bottom: 1px solid #333;
  font-weight: 600; }

@media (min-width: 768px) {
  .header__nav__item &gt; a {
    border: none;
    padding: 0;
    font-weight: 400; } }

.header__nav__item.is-active &gt; a {
  color: #00a0e1; }

.header__nav__item.item-7 a {
  margin-bottom: 10px; }

@media (min-width: 1040px) {
  .header__nav__item.item-7 a {
    margin-bottom: 0; } }

.header__nav__item.button .button__inner {
  display: block;
  background-color: #88c700;
  color: #fff;
  text-align: center;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  text-transform: none; }

@media (min-width: 1040px) {
  .header__nav__item.button .button__inner {
    padding: 6px;
    display: inline-block;
    margin: 0;
    font-size: 14px; } }

.header__nav__sub__list {
  list-style: none;
  padding: 0; }

@media (min-width: 768px) {
  .header__nav__sub__list {
    display: none;
    position: absolute;
    top: 20px;
    left: 0;
    width: 200px; } }

.header__nav__list__item:hover .header__nav__sub__list {
  display: block; }

.panel {
  background-color: #000;
  background-size: 420px 400px;
  background-repeat: no-repeat;
  background-position: 50% -50px;
  padding-top: 280px; }

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

@media (min-width: 768px) {
  .panel {
    background-position: 105% 50%;
    padding: 110px 0px 30px;
    height: 400px; } }

.panel__title {
  color: #fff;
  margin-bottom: 0; }

@media (min-width: 768px) {
  .panel__title {
    width: 100%; } }

.panel__subtitle {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 20px; }

@media (min-width: 768px) {
  .panel__subtitle {
    text-align: left; } }

@media (min-width: 960px) {
  .panel__subtitle {
    font-size: 25px; } }

@media (min-width: 768px) {
  .panel__title span, .panel__subtitle span {
    display: block; } }

.panel__title, .panel__date {
  font-size: 16px;
  line-height: 1.2em;
  font-weight: 300; }

@media (min-width: 768px) {
  .panel__title, .panel__date {
    font-size: 18px; } }

.panel__date {
  margin-bottom: 20px;
  color: #fff; }

.panel__button {
  margin-bottom: 0; }

.panel__button__inner {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 2px;
  padding: 10px 20px;
  display: inline-block; }

.panel__button__inner:hover {
  color: #00a0e1;
  background-color: #fff; }

.panel__detail {
  text-align: center;
  background-color: #000;
  border-top: 1px solid #fff;
  padding: 30px 20px; }

@media (min-width: 768px) {
  .panel__detail {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    background-color: transparent;
    text-align: left;
    padding: 0;
    border: none; }
  .panel__detail:before, .panel__detail:after {
    content: '';
    display: table; }
  .panel__detail:after {
    clear: both; }
  .panel__detail:last-child {
    margin-right: 0%; } }

.panel__boxes .container {
  padding: 0; }

@media (min-width: 768px) {
  .panel__boxes .container {
    padding: 0 20px; } }

.panel__inner {
  padding: 0 10px; }

.panel__box {
  text-align: center;
  margin-top: 0;
  border-bottom: 1px solid #f2f2f2; }

@media (min-width: 768px) {
  .panel__box {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.3333333333%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: center;
    border-bottom: 0; }
  .panel__box:before, .panel__box:after {
    content: '';
    display: table; }
  .panel__box:after {
    clear: both; }
  .panel__box:nth-child(3n) {
    margin-right: 0%;
    float: right; }
  .panel__box:nth-child(3n + 1) {
    clear: both; } }

.panel__box &gt; a,
.panel__box &gt; span {
  padding: 15px 0;
  display: block; }

.panel__box &gt; span .panel__box__summary {
  color: white; }

@media (min-width: 768px) {
  .panel__box__inner {
    border-right: 1px solid #C0C2C2; } }

.panel__box.last .panel__box__inner {
  border-right: 0; }

.panel__box__title {
  color: #000;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 0;
  display: inline-block;
  line-height: 30px;
  vertical-align: middle;
  padding-left: 7px; }

@media (min-width: 400px) {
  .panel__box__title {
    font-size: 15px; } }

.panel__box__title:hover {
  text-decoration: underline;
  color: black; }

.panel__box__icon {
  max-width: 30px;
  max-height: 30px;
  display: inline-block;
  vertical-align: middle; }

.panel__box__summary {
  margin-bottom: 0;
  color: #00a0e1; }

.panel__box.green .panel__box__summary {
  color: #88c700; }

.panel__box a .panel__box__title,
.panel__box a .panel__box__summary {
  color: #000; }

.panel__box a .panel__box__icon {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out; }

.panel__box a:hover .panel__box__title,
.panel__box a:hover .panel__box__summary {
  color: black; }

.panel__box a:hover .panel__box__icon {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out; }

.github__panel {
  background-color: #e8f7fc;
  padding: 30px;
  text-align: center;
  border-radius: 0px; }

.github__panel .panel__title {
  background-image: url(//www.deloitte.co.uk/smartid/img/github.svg);
  background-repeat: no-repeat;
  background-position: 50% 0;
  padding-top: 45px;
  color: #00a0e1;
  font-size: 25px; }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .github__panel .panel__title {
    background-image: url(//www.deloitte.co.uk/smartid/img/github.svg);
    background-size: 101px 27px; } }

@media (min-width: 768px) {
  .github__panel .panel__title {
    font-size: 30px; } }

.page__header {
  position: relative;
  background-position: 50% 0;
  padding-top: 30px;
  background-color: #f2f2f2; }

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

.page__header .container {
  padding: 0; }

@media (min-width: 768px) {
  .page__header .container {
    padding: 0 20px; } }

.page__header__inner {
  background-color: #000;
  background-size: 420px 400px;
  background-repeat: no-repeat;
  padding: 210px 0 0 0;
  background-position: 50% -90px; }

@media (min-width: 768px) {
  .page__header__inner {
    background-position: 85% 50%;
    padding: 130px 30px 0; } }

.page__header .page__title {
  color: white;
  margin-bottom: 0; }

.page__header .page__title span {
  display: block;
  border-top: 1px solid #fff;
  padding: 30px;
  background-color: #000; }

@media (min-width: 768px) {
  .page__header .page__title span {
    border: none;
    background-color: transparent; } }

.page__feature__header {
  background-color: #000; }

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

.page__feature__header .container {
  padding: 0; }

@media (min-width: 768px) {
  .page__feature__header .container {
    padding: 0 20px; } }

.page__feature__intro {
  background-color: #f2f2f2;
  padding: 0 0; }

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

.page__feature__intro__inner {
  background-color: #fff;
  padding: 30px;
  position: initial;
  margin-bottom: 40px; }

@media (min-width: 768px) {
  .page__feature__intro__inner {
    position: relative; } }

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

.page__feature__intro h2 {
  text-align: center; }

.page__feature__intro .quote {
  margin-bottom: 40px; }

@media (min-width: 768px) {
  .page__feature__intro .quote {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 42.5%;
    margin-left: 0%;
    margin-right: 3%;
    margin-bottom: 0; }
  .page__feature__intro .quote:before, .page__feature__intro .quote:after {
    content: '';
    display: table; }
  .page__feature__intro .quote:after {
    clear: both; }
  .page__feature__intro .quote:last-child {
    margin-right: 0%; } }

.page__feature__intro .quote__content {
  font-size: 18px;
  line-height: 1.4em; }

@media (min-width: 768px) {
  .page__feature__intro .quote__content {
    font-size: 19px; } }

.page__feature__intro .quote__caption {
  font-size: 12px; }

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

.page__feature__intro .quote__image {
  float: left; }

.page__feature__intro .quote__name {
  font-size: 16px;
  font-weight: bold;
  margin: 0; }

.page__feature__intro .quote__meta {
  color: #88c700;
  margin-bottom: 0; }

.page__feature__intro .quote__name, .page__feature__intro .quote__title, .page__feature__intro .quote__meta {
  padding-left: 80px; }

.page__feature__intro .github__panel a {
  color: black; }

@media (min-width: 768px) {
  .page__feature__intro .github__panel {
    *zoom: 1;
    float: right;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    text-align: center; }
  .page__feature__intro .github__panel a {
    color: black; }
  .page__feature__intro .github__panel:before, .page__feature__intro .github__panel:after {
    content: '';
    display: table; }
  .page__feature__intro .github__panel:after {
    clear: both; }
  .page__feature__intro .github__panel:last-child {
    margin-right: 0%; } }

.page__container {
  position: relative;
  background-color: #fff;
  padding: 40px 20px;
  margin-top: 40px;
  margin-bottom: 40px;
  float: left;
  width: 100%; }

.page__container__team {
  position: relative;
  padding: 20px 20px;
  margin-top: 36px;
  margin-bottom: 40px;
  float: left;
  width: 100%; }

.page__container__team a {
  text-decoration: underline;
  color: black; }

.page__container::after, .page__container__team {
  clear: both;
  content: "";
  display: table; }

@media (min-width: 768px) {
  .page__container {
    padding: 40px 100px; }
  .page__container__team {
    padding: 0px 100px 40px; } }

.page__title {
  color: black;
  font-size: 25px;
  margin-bottom: 40px; }

@media (min-width: 768px) {
  .page__title {
    font-size: 26px; } }

.page__intro {
  text-align: left;
  font-size: 15px;
  line-height: 1.6em;
  font-weight: normal;
  max-width: 740px;
  margin: 0 0 40px; }

@media (min-width: 768px) {
  .page__intro {
    font-size: 16px; } }

.page__main {
  background-color: #f2f2f2;
  padding: 3px 0; }

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

.one__third {
  float: none;
  width: 100%; }

.two__thirds {
  width: 100%;
  float: none;
  text-align: left; }

.one__half {
  width: 100%;
  float: none;
  text-align: left; }

.one__half.team {
  margin-bottom: 40px;
  height: 250px;
  max-width: 100%;
  height: auto;
  background-position: center center;
  background-repeat: no-repeat;
  display: block; }

.team__image {
  background-image: url(//www.deloitte.co.uk/smartid/img/team/group-29.png);
  background-size: 440px 250px; }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .team__image {
    background-image: url(//www.deloitte.co.uk/smartid/img/team/group-29@2x.png); } }

@media only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min--moz-device-pixel-ratio: 3), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 3dppx) {
  .team__image {
    background-image: url(//www.deloitte.co.uk/smartid/img/team/group-29@3x.png); } }

@media (min-width: 768px) {
  .page__columns {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px; }
  .one__third {
    float: left;
    width: 31.33%; }
  .two__thirds {
    width: 61.33%;
    float: right;
    text-align: left; }
  .one__half {
    float: right;
    width: 50%; }
  .one__half p {
    padding-right: 10%; }
  .one__half.team {
    margin-top: 0;
    height: 250px;
    background-position: center center; }
  .team__image {
    background-size: 440px 250px; } }

@media (min-width: 421px) and (max-width: 1024px) {
  .one__half {
    width: 100%;
    float: none;
    text-align: left; }
  .one__half.team {
    height: 250px;
    background-position: left center; }
  .team__image {
    background-size: 440px 250px; } }

@media (min-width: 375px) and (max-width: 420px) {
  .one__half.team {
    height: 168px;
    background-position: left center; }
  .team__image {
    background-size: 295px 168px; } }

@media (min-width: 320px) and (max-width: 374px) {
  .one__half.team {
    height: 137px;
    background-position: left center; }
  .team__image {
    background-size: 240px 137px; } }

.list__downloads {
  list-style: none;
  padding: 0;
  text-align: center;
  padding-top: 20px; }

.list__downloads li {
  margin-bottom: 20px; }

@media (min-width: 768px) {
  .list__downloads li {
    display: inline-block;
    width: 33%;
    vertical-align: middle; } }

.list__downloads li img {
  display: inline-block; }

.addthis .addthis_toolbox {
  clear: both;
  text-align: left; }

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

.addthis .addthis_toolbox a {
  display: inline-block;
  float: none; }

.caption {
  margin-top: 5px;
  font-size: 12px; }

.clr {
  clear: both; }

.conf2016 .page__container .button__container {
  text-align: center;
  padding-top: 20px; }

.conf2016 .page__container .button__inner {
  font-size: 18px; }

.footer {
  background-color: white;
  margin-bottom: 1.5%; }

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

.footer__upper {
  background-color: #414141;
  padding: 40px 0;
  margin-bottom: 1.5%;
  text-align: center; }

.footer .download {
  margin-bottom: 10px; }

.footer .download .button__inner {
  display: block;
  text-transform: none;
  font-size: 19px;
  padding: 10px 20px; }

@media (min-width: 768px) {
  .footer__pair &gt; div {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
  .footer__pair &gt; div:before, .footer__pair &gt; div:after {
    content: '';
    display: table; }
  .footer__pair &gt; div:after {
    clear: both; }
  .footer__pair &gt; div:nth-child(2n) {
    margin-right: 0%;
    float: right; }
  .footer__pair &gt; div:nth-child(2n + 1) {
    clear: both; } }

.footer__single {
  max-width: 460px;
  margin: 0 auto;
  display: block; }

@media (min-width: 768px) {
  .footer__single {
    float: left;
    width: 34.33%;
    display: inline-block; } }

@media (min-width: 960px) {
  .footer__single {
    float: left;
    width: 37.33%;
    display: inline-block; } }

.footer__single__first {
  margin-right: inherit;
  margin-bottom: 20px; }

@media (min-width: 768px) {
  .footer__single__first {
    margin-right: 5%;
    margin-bottom: 0; } }

.footer__copyright {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 12px; }

.footer__copyright a {
  color: #172e78;
  text-decoration: underline; }

.footer__image {
  display: none; }

@media (min-width: 768px) {
  .footer__image {
    display: block;
    float: right;
    vertical-align: bottom;
    position: absolute;
    bottom: 5px;
    right: 20px; } }

.footer__relative {
  position: relative; }

.block__image.right {
  margin: 0 auto 30px; }

@media (min-width: 768px) {
  .block__image.right {
    float: right;
    padding: 0 0 30px 30px; } }

.block {
  clear: both; }

.block--intro {
  font-weight: bold; }

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

.block--image {
  margin: 0; }

.block--image img {
  display: block;
  width: 100px;
  margin-bottom: 10px; }

.block--image--full img {
  margin-left: auto;
  margin-right: auto; }

.block--image--left .block--image {
  float: left;
  padding: 0 30px 30px 0; }

.block--image--right .block--image {
  float: right;
  padding: 0 0 30px 30px; }

.block--image--caption {
  font-size: 12px; }

.block--quote {
  *zoom: 1;
  width: auto;
  max-width: 640px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0; }

.block--quote:before, .block--quote:after {
  content: '';
  display: table; }

.block--quote:after {
  clear: both; }

.block--presentations.has-tabs, .block--videos.has-tabs, .block--photos.has-tabs, .block__presentations.has-tabs, .block__videos.has-tabs, .block__photos.has-tabs {
  margin-top: 20px; }

.block--presentations.has-tabs::after, .block--videos.has-tabs::after, .block--photos.has-tabs::after, .block__presentations.has-tabs::after, .block__videos.has-tabs::after, .block__photos.has-tabs::after {
  clear: both;
  content: "";
  display: table; }

@media (min-width: 480px) {
  .block--presentations.has-tabs, .block--videos.has-tabs, .block--photos.has-tabs, .block__presentations.has-tabs, .block__videos.has-tabs, .block__photos.has-tabs {
    margin-top: 60px; } }

.button__inner {
  display: inline-block;
  background-color: #000000;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 2px; }

.button:hover .button__inner {
  background-color: #58cdf7;
  color: white; }

.button:active .button__inner {
  background-color: #065e7d; }

.button:link .button__inner, .button:visited .button__inner {
  color: white;
  background-color: #00a0e1; }

.popup--date .button {
  margin-bottom: 20px; }

.popup--date .button__inner {
  font-size: 15px;
  padding: 10px 20px;
  font-weight: 700;
  background-color: white;
  color: #00a0e1; }

.list--filter {
  border: 1px solid #F0F0F0;
  border-radius: 0px;
  padding: 10px 20px 0;
  margin-bottom: 30px;
  text-align: center; }

.list--filter .list__item {
  cursor: pointer;
  margin-bottom: 10px; }

@media (min-width: 768px) {
  .list--filter .list__item {
    display: inline-block;
    margin-left: 7px; }
  .list--filter .list__item:first-child {
    margin-left: 0; } }

.list--filter .list__item span {
  display: block;
  border: 1px solid #00a0e1;
  padding: 5px 10px;
  color: #00a0e1;
  border-radius: 2px;
  box-shadow: 0; }

.list--filter .list__item.active span {
  color: white;
  background-color: #00a0e1; }

.list--themes::after {
  clear: both;
  content: "";
  display: table; }

.list--themes .list__item {
  margin-bottom: 40px; }

@media (min-width: 480px) and (max-width: 768px) {
  .list--themes .list__item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
  .list--themes .list__item:before, .list--themes .list__item:after {
    content: '';
    display: table; }
  .list--themes .list__item:after {
    clear: both; }
  .list--themes .list__item:nth-child(2n) {
    margin-right: 0%;
    float: right; }
  .list--themes .list__item:nth-child(2n + 1) {
    clear: both; } }

@media (min-width: 769px) {
  .list--themes .list__item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.3333333333%;
    margin-left: 0%;
    margin-right: 3%; }
  .list--themes .list__item:before, .list--themes .list__item:after {
    content: '';
    display: table; }
  .list--themes .list__item:after {
    clear: both; }
  .list--themes .list__item:nth-child(2n) {
    margin-right: 3%;
    float: left; }
  .list--themes .list__item:nth-child(2n + 1) {
    clear: none; }
  .list--themes .list__item:nth-child(3n) {
    margin-right: 0%;
    float: right; }
  .list--themes .list__item:nth-child(3n + 1) {
    clear: both; } }

.list--themes .list__image {
  height: 173px;
  max-width: 100%;
  background-position: center 0;
  background-repeat: no-repeat;
  display: block;
  margin-bottom: 20px; }

.list__individuals {
  background-image: url(//www.deloitte.co.uk/smartid/img/topics/group-8.png);
  background-size: 315px 173px; }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .list__individuals {
    background-image: url(//www.deloitte.co.uk/smartid/img/topics/group-8@2x.png); } }

@media only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min--moz-device-pixel-ratio: 3), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 3dppx) {
  .list__individuals {
    background-image: url(//www.deloitte.co.uk/smartid/img/topics/group-8@3x.png); } }

.list__organisations {
  background-image: url(//www.deloitte.co.uk/smartid/img/topics/group-9.png);
  background-size: 315px 173px; }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .list__organisations {
    background-image: url(//www.deloitte.co.uk/smartid/img/topics/group-9@2x.png); } }

@media only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min--moz-device-pixel-ratio: 3), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 3dppx) {
  .list__organisations {
    background-image: url(//www.deloitte.co.uk/smartid/img/topics/group-9@3x.png); } }

.list__internet {
  background-image: url(//www.deloitte.co.uk/smartid/img/topics/group-14.png);
  background-size: 315px 173px; }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .list__internet {
    background-image: url(//www.deloitte.co.uk/smartid/img/topics/group-14@2x.png); } }

@media only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min--moz-device-pixel-ratio: 3), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 3dppx) {
  .list__internet {
    background-image: url(//www.deloitte.co.uk/smartid/img/topics/group-14@3x.png); } }

.list--themes .list__title {
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 10px;
  letter-spacing: 1.1px;
  color: #85bc22; }

.list--themes .list__summary {
  font-size: 13px;
  color: #606060; }

.topics, .works {
  padding-top: 40px; }

.topics pre, .works pre {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.8px;
  padding: 7px;
  white-space: pre-wrap;
  /* Since CSS 2.1 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
  scroll: none;
  height: auto;
  background-color: #f6f9fc;
  color: #000000; }

.topics pre .blue, .works pre .blue {
  color: #00a0e1; }

.topics pre .green, .works pre .green {
  color: #85bc22; }

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

@media (min-width: 768px) {
  .topics, .works {
    padding-top: 65px;
    margin-bottom: 40px; } }

.speaker__panel {
  float: left;
  width: 100%;
  border: 1px solid #D1D1D1;
  padding: 30px;
  border-radius: 0px;
  margin-bottom: 40px; }

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

.speaker__panel .panel__title {
  color: black;
  font-size: 31px; }

.speaker__panel .panel__sub {
  font-size: 22px;
  line-height: 1.1em;
  color: black; }

@media (min-width: 768px) {
  .speaker__panel .panel__sub {
    font-size: 27px; } }

.speaker__panel__image {
  margin-bottom: 20px; }

@media (min-width: 768px) {
  .speaker__panel__image {
    float: left;
    margin-bottom: 0; } }

@media (min-width: 768px) {
  .speaker__panel__content {
    padding-left: 210px;
    max-width: 740px; } }

.speaker .page__container {
  padding-left: 50px;
  padding-right: 50px; }

.speaker .speaker__content {
  padding: 40px 0;
  max-width: 650px;
  margin: 0 auto; }

.speaker .speaker__content h2 {
  padding-top: 20px; }

.speaker .speaker__content .list--videos .list__item {
  min-height: 1px; }

.list--speakers .list__item {
  background-color: white;
  color: black;
  margin-bottom: 20px;
  border-radius: 0px;
  box-shadow: 0; }

@media (min-width: 0) and (max-width: 767px) {
  .list--speakers .list__item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
  .list--speakers .list__item:before, .list--speakers .list__item:after {
    content: '';
    display: table; }
  .list--speakers .list__item:after {
    clear: both; }
  .list--speakers .list__item:nth-child(2n) {
    margin-right: 0%;
    float: right; }
  .list--speakers .list__item:nth-child(2n + 1) {
    clear: both; } }

@media (min-width: 480px) {
  .list--speakers .list__item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.3333333333%;
    margin-left: 0%;
    margin-right: 3%; }
  .list--speakers .list__item:before, .list--speakers .list__item:after {
    content: '';
    display: table; }
  .list--speakers .list__item:after {
    clear: both; }
  .list--speakers .list__item:nth-child(2n) {
    margin-right: 3%;
    float: left; }
  .list--speakers .list__item:nth-child(2n + 1) {
    clear: none; }
  .list--speakers .list__item:nth-child(3n) {
    margin-right: 0%;
    float: right; }
  .list--speakers .list__item:nth-child(3n + 1) {
    clear: both; } }

@media (min-width: 960px) {
  .list--speakers .list__item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%; }
  .list--speakers .list__item:before, .list--speakers .list__item:after {
    content: '';
    display: table; }
  .list--speakers .list__item:after {
    clear: both; }
  .list--speakers .list__item:nth-child(3n) {
    margin-right: 3%;
    float: left; }
  .list--speakers .list__item:nth-child(3n + 1) {
    clear: none; }
  .list--speakers .list__item:nth-child(4n) {
    margin-right: 0%;
    float: right; }
  .list--speakers .list__item:nth-child(4n + 1) {
    clear: both; } }

.list--speakers .list__item a {
  color: black; }

.list--speakers .list__item:hover .list__more {
  color: #00a0e1; }

.list--speakers .list__image {
  border-radius: 0px 0px 0 0; }

.list--speakers .list__content {
  padding: 10px 10px 10px 0px; }

.list--speakers .list__title {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 700; }

.list--speakers .jobtitle {
  font-size: 12px;
  margin-bottom: 5px; }

.list--speakers .list__more {
  font-size: 14px;
  margin: 0; }

.real--world {
  margin-bottom: 40px;
  background-color: #f2f2f2;
  padding: 42px 42px 0px 42px; }

.real--world .page-title {
  color: black;
  font-size: 25px;
  margin-bottom: 40px;
  font-weight: 500;
  margin-top: 0;
  line-height: 1.1em; }

@media (min-width: 768px) {
  .real--world {
    margin-top: 65px; }
  .real--world .page-title {
    font-size: 26px; } }

@media (min-width: 320px) and (max-width: 480px) {
  .real--world {
    padding: 10px; } }

.list--sponsors .list__item {
  margin-bottom: 20px;
  width: 100%; }

.list--sponsors .list__item::after {
  clear: both;
  content: "";
  display: table; }

.list--sponsors .list__item:last-child {
  border-bottom: none; }

@media (min-width: 1000px) {
  .list--sponsors .list__item &gt; div {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
  .list--sponsors .list__item &gt; div:before, .list--sponsors .list__item &gt; div:after {
    content: '';
    display: table; }
  .list--sponsors .list__item &gt; div:after {
    clear: both; }
  .list--sponsors .list__item &gt; div:nth-child(2n) {
    margin-right: 0%;
    float: right; }
  .list--sponsors .list__item &gt; div:nth-child(2n + 1) {
    clear: both; }
  .list--sponsors .list__item:nth-child(2) &gt; div:nth-child(1) {
    margin-left: 3%;
    float: right;
    margin-right: 0%; }
  .list--sponsors .list__item:nth-child(2) &gt; div:nth-child(2n) {
    margin-right: 0%;
    float: left; } }

.list--sponsors .website {
  font-size: 11px; }

.list--sponsors .website a {
  color: #00a0e1; }

.list--sponsors .website a:hover {
  color: #000; }

.list--sponsors .list__image {
  height: 363px;
  max-width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  display: block; }

.list__idLarge {
  background-image: url(//www.deloitte.co.uk/smartid/img/realWorld/group-15.png);
  background-size: 356px 333px; }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .list__idLarge {
    background-image: url(//www.deloitte.co.uk/smartid/img/realWorld/group-15@2x.png); } }

@media only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min--moz-device-pixel-ratio: 3), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 3dppx) {
  .list__idLarge {
    background-image: url(//www.deloitte.co.uk/smartid/img/realWorld/group-15@3x.png); } }

.list__idSmall {
  background-image: url(//www.deloitte.co.uk/smartid/img/realWorld/id-img.png);
  background-size: 386px 363px; }

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .list__idSmall {
    background-image: url(//www.deloitte.co.uk/smartid/img/realWorld/id-img@2x.png); } }

@media only screen and (-webkit-min-device-pixel-ratio: 3), only screen and (min--moz-device-pixel-ratio: 3), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 3dppx) {
  .list__idSmall {
    background-image: url(//www.deloitte.co.uk/smartid/img/realWorld/id-img@3x.png); } }

@media (min-width: 768px) and (max-width: 1024px) {
  .list--sponsors .list__image {
    height: 300px; }
  .list__idLarge {
    background-size: 320px 288px; }
  .list__idSmall {
    background-size: 400px 368px; } }

@media (min-width: 375px) and (max-width: 480px) {
  .list--sponsors .list__image {
    height: 240px;
    margin-bottom: 0; }
  .list__idLarge {
    background-size: 240px 213px; }
  .list__idSmall {
    background-size: 340px 313px; } }

@media (min-width: 320px) and (max-width: 568px) {
  .list--sponsors .list__image {
    height: 200px;
    margin-bottom: 0; }
  .list__idLarge {
    background-size: 220px 198px; }
  .list__idSmall {
    background-size: 260px 238px; } }

@media (min-width: 960px) {
  .list--sponsors .list__image {
    margin-bottom: 0; } }

.list--sponsors .list__content {
  margin-bottom: 20px; }

@media (min-width: 768px) {
  .list--sponsors .list__content {
    padding-left: 170px;
    margin-bottom: 0; } }

.list--sponsors .list__title {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 700; }

.list--sponsors .sponsor__type {
  font-weight: normal; }

.list--sponsors .sponsor__summary {
  clear: both;
  margin-top: 8%; }

.list--videos .list__item {
  background-color: black;
  color: #fff;
  margin-bottom: 20px;
  border-radius: 0px;
  box-shadow: 0; }

@media (min-width: 530px) {
  .list--videos .list__item {
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
    float: left;
    min-height: 310px; } }

@media (min-width: 1030px) {
  .list--videos .list__item {
    width: 31.3333333333%; } }

@media (min-width: 480px) {
  .speaker__content .list--videos .list__item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
  .speaker__content .list--videos .list__item:before, .speaker__content .list--videos .list__item:after {
    content: '';
    display: table; }
  .speaker__content .list--videos .list__item:after {
    clear: both; }
  .speaker__content .list--videos .list__item:nth-child(3n) {
    margin-right: 3%;
    float: left; }
  .speaker__content .list--videos .list__item:nth-child(3n + 1) {
    clear: none; }
  .speaker__content .list--videos .list__item:nth-child(2n) {
    margin-right: 0%;
    float: right; }
  .speaker__content .list--videos .list__item:nth-child(2n + 1) {
    clear: both; } }

.list--videos .list__item a {
  color: #fff; }

.list--videos .list__item:hover .list__more {
  color: #00a0e1; }

.list--videos img {
  border-radius: 0px 0px 0 0; }

.list--videos .list__image {
  position: relative; }

.list--videos .list__content {
  padding: 10px; }

.list--videos .list__summary {
  font-size: 13px; }

.list--videos .list__title {
  font-size: 17px;
  margin-bottom: 5px; }

.list--videos .jobtitle {
  font-size: 12px;
  margin-bottom: 5px; }

.list--videos .list__more {
  font-size: 14px;
  margin: 0; }

.list--presentations .list__item {
  position: relative;
  margin-bottom: 20px; }

.list--presentations .list__item .list__content {
  padding-left: 50px; }

.list--presentations .list__item .list__title {
  margin-bottom: 5px; }

.list--presentations .list__item .list__summary {
  font-size: 12px;
  color: black; }

.list--presentations .list__item .list__more {
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 32px;
  height: 32px; }

.list--photos .list__item {
  background-color: black;
  color: #fff;
  margin-bottom: 20px;
  border-radius: 0px;
  box-shadow: 0; }

@media (min-width: 530px) {
  .list--photos .list__item {
    width: 48%;
    margin-left: 1%;
    margin-right: 1%;
    float: left; } }

@media (min-width: 1030px) {
  .list--photos .list__item {
    width: 31.3333333333%; } }

.list--photos img {
  border-radius: 0px 0px 0 0; }

.list--photos .list__image {
  position: relative; }

.list--insights {
  max-width: 690px;
  margin: 0 auto 0; }

.list--insights .list__item {
  margin-bottom: 40px; }

.list--insights .list__item::after {
  clear: both;
  content: "";
  display: table; }

.list--insights .list__image {
  float: left;
  border: 1px solid #f2f2f2; }

.list--insights .list__content {
  padding-left: 130px; }

.list--insights .list__title {
  font-size: 17px; }

.list--insights .list__summary {
  font-size: 14px; }

.has-tabs .page__container {
  position: relative;
  padding-top: 80px; }

.block__tabs {
  text-align: center;
  background-color: #F4F4F4;
  border-radius: 0px 0px 0 0; }

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

@media (min-width: 480px) {
  .block__tabs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 20px;
    list-style: none;
    padding: 0; }
  .block__tabs::after {
    clear: both;
    content: "";
    display: table; } }

@media (min-width: 768px) {
  .block__tabs {
    font-size: 17px; } }

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

@media (min-width: 480px) {
  .block__tabs ul {
    padding-top: 20px; }
  .block__tabs ul li {
    margin-left: 10px; }
  .block__tabs ul li:first-child {
    margin-left: 0; } }

.block__tabs a {
  border-radius: 0px 0px 0 0;
  box-shadow: 0;
  display: block;
  padding: 10px 20px; }

@media (min-width: 768px) {
  .block__tabs a {
    padding: 10px 50px; } }

.block__tabs .is-active a {
  background-color: #fff;
  color: #000; }

.block__tabs .is-inactive a {
  background-color: #00a0e1;
  color: #fff; }

@media (min-width: 480px) {
  .block__tabs .tab {
    display: inline-block; } }

.block__spacer {
  position: relative;
  background-color: #fff;
  margin: 0;
  border: none;
  padding: 0;
  width: 100%;
  height: 5px; }

.block.is-inactive {
  display: none; }

.location .page__header__inner {
  background-position: 50% 50%;
  background-size: auto; }

.location .page__title {
  color: black; }

.list--locations::after {
  clear: both;
  content: "";
  display: table; }

@media (min-width: 768px) {
  .list--locations {
    margin-bottom: 40px; } }

.list--locations .list__item {
  margin-bottom: 40px; }

.list--locations .list__item::after {
  clear: both;
  content: "";
  display: table; }

@media (min-width: 768px) {
  .list--locations .list__item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%;
    margin-bottom: 0; }
  .list--locations .list__item:before, .list--locations .list__item:after {
    content: '';
    display: table; }
  .list--locations .list__item:after {
    clear: both; }
  .list--locations .list__item:nth-child(2n) {
    margin-right: 0%;
    float: right; }
  .list--locations .list__item:nth-child(2n + 1) {
    clear: both; } }

.wheretostay {
  clear: both;
  margin-bottom: 40px; }

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

@media (min-width: 768px) {
  .usefulinfo {
    margin-bottom: 40px; } }

.usefulinfo .section {
  margin-bottom: 40px; }

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

@media (min-width: 768px) {
  .usefulinfo .section {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 48.5%;
    margin-left: 0%;
    margin-right: 3%; }
  .usefulinfo .section:before, .usefulinfo .section:after {
    content: '';
    display: table; }
  .usefulinfo .section:after {
    clear: both; }
  .usefulinfo .section:nth-child(2n) {
    margin-right: 0%;
    float: right; }
  .usefulinfo .section:nth-child(2n + 1) {
    clear: both; } }

.list--information .list__item {
  margin-bottom: 30px; }

span.small-body-copy {
  font-size: .79em; }

.small-body-copy {
  font-family: tahoma , arial , helvetica , sans-serif;
  font-size: 1.1em;
  color: #000;
  font-weight: 400; }

.small-body {
  font-family: tahoma , arial , helvetica , sans-serif;
  font-size: 12px; }

.social-media-links {
  float: left;
  margin-top: 12px; }

.social-media-links ul {
  padding-left: 0;
  margin-bottom: 0; }

.social-media-links ul li {
  list-style: none;
  list-style-type: none;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  margin-right: 0.6em; }

.social-media-links ul li a {
  color: #fff;
  display: block;
  height: 32px;
  width: 32px;
  font-size: 1.15em;
  background-color: #d0d0ce;
  -webkit-border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 100%;
  -moz-background-clip: padding;
  border-radius: 100%;
  background-clip: padding-box;
  display: table-cell;
  vertical-align: middle; }

.social-media-links ul li a:focus {
  outline: dotted 1px #00a3e0; }

.social-media-links li:hover a:hover {
  text-decoration: none; }

.social-media-links li:hover a.icon-facebook {
  background-color: #3b5998; }

.social-media-links li:hover a.icon-linkedin {
  background-color: #007bb6; }

.social-media-links li:hover a.icon-twitter {
  background-color: #00aced; }

.social-media-links li:hover a.icon-youtube {
  background-color: #b00; }
</pre></body></html>