@charset "UTF-8";
/*! normalize.css v1.0.1 | MIT License | git.io/normalize */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
  display: block;
}

audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html, button, input, select, textarea {
  font-family: sans-serif;
}

body {
  margin: 0;
}

a:focus {
  outline: thin dotted;
}

a:active, a:hover {
  outline: 0;
}

h1 {
  font-size: 2em;
  margin: .67em 0;
}

h2 {
  font-size: 1.5em;
  margin: .83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: .83em;
  margin: 1.67em 0;
}

h6 {
  font-size: .75em;
  margin: 2.33em 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

p, pre {
  margin: 0.3em 0;
}

code, kbd, pre, samp {
  font-family: monospace,serif;
  _font-family: 'courier new',monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: none;
}

q:before, q:after {
  content: '';
  content: none;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

dl, menu, ol, ul {
  margin: 1em 0;
}

dd {
  margin: 0 0 0 40px;
}

menu, ol, ul {
  padding: 0 0 0 40px;
}

nav ul, nav ol {
  list-style: none;
  list-style-image: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: .35em .625em .75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
}

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button, input {
  line-height: normal;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
}

button[disabled], input[disabled] {
  cursor: default;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html,
button,
input,
select,
textarea {
  color: #222;
}

body {
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */
img {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   Theses examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links for images, or javascript/internal links
   */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
.clearfix, .section, .section-canvas, .module .module-header, .box, .footer .widget-container > .module, .image-list, .info, .article-list, .teaser, .pagination, .overlay-window, .row, .widget-container, .main-content, .top-bar {
  zoom: 1;
}
.clearfix:before, .section:before, .section-canvas:before, .module .module-header:before, .box:before, .footer .widget-container > .module:before, .image-list:before, .info:before, .article-list:before, .teaser:before, .pagination:before, .overlay-window:before, .row:before, .widget-container:before, .main-content:before, .top-bar:before, .clearfix:after, .section:after, .section-canvas:after, .module .module-header:after, .box:after, .footer .widget-container > .module:after, .image-list:after, .info:after, .article-list:after, .teaser:after, .pagination:after, .overlay-window:after, .row:after, .widget-container:after, .main-content:after, .top-bar:after {
  content: " ";
  display: table;
}
.clearfix:after, .section:after, .section-canvas:after, .module .module-header:after, .box:after, .footer .widget-container > .module:after, .image-list:after, .info:after, .article-list:after, .teaser:after, .pagination:after, .overlay-window:after, .row:after, .widget-container:after, .main-content:after, .top-bar:after {
  clear: both;
}

@font-face {
  font-family: 'TescoRegular';
  src: url("../fonts/regular/tesco-regular.eot");
  src: url("../fonts/regular/tesco-regular.eot") format("embedded-opentype"), url("../fonts/regular/tesco-regular.woff") format("woff"), url("../fonts/regular/tesco-regular.ttf") format("truetype"), url("../fonts/regular/tesco-regular.svg#TescoRegular") format("svg");
}
@font-face {
  font-family: 'TescoBold';
  src: url("../fonts/bold/tesco-bold.eot");
  src: url("../fonts/bold/tesco-bold.eot") format("embedded-opentype"), url("../fonts/bold/tesco-bold.woff") format("woff"), url("../fonts/bold/tesco-bold.ttf") format("truetype"), url("../fonts/bold/tesco-bold.svg#TescoBold") format("svg");
}
@font-face {
  font-family: 'tescoDisplaybold';
  src: url("../fonts/displaybold/tescodisplay-bold-webfont.eot");
  src: url("../fonts/displaybold/tescodisplay-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/displaybold/tescodisplay-bold-webfont.woff") format("woff"), url("../fonts/displaybold/tescodisplay-bold-webfont.ttf") format("truetype"), url("../fonts/displaybold/tescodisplay-bold-webfont.svg#tesco_displaybold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'tescoDisplayregular';
  src: url("../fonts/displayregular/tescodisplay-regular-webfont.eot");
  src: url("../fonts/displayregular/tescodisplay-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/displayregular/tescodisplay-regular-webfont.woff") format("woff"), url("../fonts/displayregular/tescodisplay-regular-webfont.ttf") format("truetype"), url("../fonts/displayregular/tescodisplay-regular-webfont.svg#tesco_displayregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* 
	1 ├À base/parent font size (px) ├ù required pixels = em equivalent
	@ 16px base - 18px = 1.125em
	@ 16px base - 16px = 1em
	@ 16px base - 14px = 0.875em
	@ 16px base - 12px = 0.75em 
*/
/* example:
@include box-shadow(-5px,0px,5px,rgba(0,0,0,0.3)); for transparent shadow.
@include box-shadow(4px,4px,2px,#000,true); for inset shadow.
*/
body {
  font-family: arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #00549f;
  font-size: 13px;
  font-size: 13px;
  line-height: 1.5em;
  background: #ffffff;
}

h1 {
  color: inherit;
  font-size: 1.84615em;
}

h2 {
  font-size: 1.53846em;
}

h3 {
  font-size: 1.38462em;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
}

h4 {
  font-size: 1.23077em;
}

h5 {
  font-size: 1.38462em;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #000;
}

.standard-page ul {
  list-style-type: disc;
}
.standard-page ul li {
  font-size: 1.3em;
  line-height: 1.8em;
  color: #666;
  padding: 0 0 0 20px;
}

p {
  font-size: 100%;
  color: #666666;
  font-size: 1.231em;
  /* 16px */
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: #004996;
  text-decoration: none;
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.077em;
  display: block;
}
.standard-page a {
  display: inline-block;
  font-size: 1em;
}
a:hover, a:focus {
  color: #004996;
}

hr {
  border: 1px dashed #ddd;
  height: 1px;
  margin: 1em 0;
}

.section-canvas {
  margin: 0 auto;
  text-align: left;
}

.identity {
  float: left;
}
.identity .logo {
  /* Edit logo dimensions in the variables sass file */
  background-color: #ffffff;
}
.identity .logo a span {
  display: none;
  font-size: 0.92308em;
}

.utility {
  float: right;
}
.utility .navigation {
  float: right;
  clear: both;
}
.utility .navigation li {
  font-size: 1em;
}
.utility .authentication {
  display: none;
}
.utility .authentication form {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin: 1em;
  float: left;
}

.search-form {
  float: right;
  padding: 1em;
  clear: both;
}

.search-form .field {
  white-space: nowrap;
}
.search-form .field input[type="text"] {
  color: #ccc;
}
.search-form .field input[type="text"]:focus {
  color: #222;
}
.search-form .field input[type="text"].activeState {
  color: #ccc;
}

.no-js .search-form .action input[type="submit"] {
  display: none;
}

.main .module .module-header {
  display: none;
}
.module .regular, .module .tabular {
  margin-bottom: 1em;
  position: relative;
}
.module .graphics img {
  width: 100%;
}
.highlighted .module {
  background-color: #00549f;
  border: 1px solid #001e39;
  padding: 0.6em;
  position: relative;
}
.highlighted .module li, .highlighted .module p {
  color: #ffffff;
}

.frame, .utility .authentication form {
  background-color: #f0f0f0;
  padding: 0.6em;
}

.box, .footer .widget-container > .module {
  padding: 0.48em;
  background-color: #00549f;
  margin-bottom: 1em;
}
.box .module-header, .footer .widget-container > .module .module-header {
  color: #ffffff;
}
.box .module-header h2, .footer .widget-container > .module .module-header h2 {
  margin-bottom: 0;
  color: #ffffff;
}
.box .regular, .footer .widget-container > .module .regular {
  margin-bottom: 0;
  border: none;
}

.image-list ul {
  margin: 0;
  padding: 0;
}
.image-list ul li {
  float: left;
  list-style-type: none;
  margin-left: 0.3em;
}
.image-list ul li:first-child {
  margin-left: 0;
}

.image-left {
  margin: 0 0 0 1em;
  float: left;
}

.image-right {
  margin: 0 1em 0 0;
  float: right;
}

.info {
  line-height: normal;
  color: #8c8c8c;
  font-size: 0.92308em;
  padding-bottom: 0.48em;
}
.info span {
  vertical-align: middle;
}
.info .icons {
  float: right;
  font-size: 1.23077em;
}
.info .icons a {
  text-decoration: none;
}
.info .icons a em {
  display: none;
}

.article-list {
  margin: 0;
  padding: 0;
}
.article-list li {
  list-style-type: none;
  font-size: 100%;
}
.article-list h4 {
  margin-top: -0.4em;
}

.teaser {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 1em;
  margin-bottom: 0.8em;
}
.teaser:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.teaser h2, .teaser h3 {
  margin-bottom: 0;
  display: inline-block;
}
.teaser .graphics {
  float: left;
  width: 20%;
  padding-right: 2%;
}
.teaser .graphics img {
  width: 100%;
}
.teaser .text {
  float: left;
  width: 78%;
}
.teaser.no-image .graphics {
  display: none;
}
.teaser.no-image .text {
  float: none;
  width: auto;
}
.teaser .action .button-list {
  margin-bottom: 0;
}

.thumb-teaser {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  margin: 0 0.5% 1%;
  padding: 0;
  width: 32%;
  height: 32%;
  overflow: hidden;
  float: left;
}
.thumb-teaser.teaser {
  border: none;
}
.thumb-teaser a {
  position: relative;
  display: block;
}
.thumb-teaser a .graphics, .thumb-teaser a .text {
  float: none;
  width: auto;
  display: block;
}
.thumb-teaser a .graphics {
  padding: 0;
}
.thumb-teaser a .graphics img {
  width: 100%;
}
.thumb-teaser a .text {
  position: absolute;
  top: 100%;
  display: block;
  padding: 0.48em;
  color: #ffffff;
  font-weight: bold;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: top, 0.5s, ease-out;
  -moz-transition: top, 0.5s, ease-out;
  -o-transition: top, 0.5s, ease-out;
  transition: top, 0.5s, ease-out;
}
.thumb-teaser a .text h3 {
  font-size: 1em;
  color: #ffffff;
}
.thumb-teaser a:hover .text {
  top: 0;
}
.sidebar .thumb-teaser a, .footer .thumb-teaser a {
  text-decoration: none;
}
.sidebar .thumb-teaser a .text, .footer .thumb-teaser a .text {
  position: relative;
  top: 0;
  height: auto;
  width: auto;
  padding: 0;
  -webkit-transition: top, 0s, ease-out;
  -moz-transition: top, 0s, ease-out;
  -o-transition: top, 0s, ease-out;
  transition: top, 0s, ease-out;
  background-color: transparent;
  color: inherit;
}
.sidebar .thumb-teaser {
  width: 49%;
}
.sidebar .thumb-teaser a .text {
  color: #00549f;
}
.footer .thumb-teaser {
  width: auto;
}

.pagination.top {
  margin-bottom: 1em;
}
.pagination.bottom {
  margin-top: 1em;
  padding-top: 0.2em;
  border-top: 1px solid #f0f0f0;
}
.pagination ul {
  float: right;
  margin: 0;
  padding: 0;
}
.pagination ul li {
  list-style-type: none;
  float: left;
  margin-right: 0.2em;
  font-size: 1em;
}
.pagination ul li a {
  display: block;
}
.pagination ul li a span {
  background-color: #00549f;
  color: #ffffff;
}
.pagination ul li a:hover span {
  background-color: #b5bf00;
}
.pagination ul li span {
  display: block;
  padding: 0 0.4em;
  color: #333333;
  background-color: #f0f0f0;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.pagination ul li:last-child {
  margin-right: 0;
}
.pagination .pag-number {
  float: left;
  color: #666666;
  font-size: 1em;
  line-height: 1.47692em;
}

.overlay-content {
  display: none;
}

.overlay-mask {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.overlay-window {
  position: absolute;
  left: 300px;
  top: 300px;
  background-color: #fff;
  padding: 0.6em;
  height: auto;
  min-width: 50px;
  min-height: 30px;
  max-width: 630px;
  margin: 0 auto;
  z-index: 1000;
  border: 1px solid #e6e6e6;
  box-shadow: 0 0 10px #000;
  text-align: left;
}
.overlay-window p:last-child {
  margin-bottom: 0;
}
.overlay-window .overlay-content {
  display: block;
}
.overlay-window .page-section {
  width: auto;
}
.overlay-window .close-link {
  position: absolute;
  z-index: 10;
  right: 5px;
  top: 5px;
  text-decoration: none;
  color: #00549f;
  font-size: 0.92308em;
  line-height: 1.47692em;
  background: url("../img/bg-close.gif") right 50% no-repeat;
  float: right;
  padding: 0 14px 0 0;
  display: inline;
}

/* ---------------------------------------------
Calculates round number figures
-----------------------------------------------*/
/* ---------------------------------------------
/Calculates round number figures
-----------------------------------------------*/
#header > .gu24,
.content-area > .gu24,
#footer > .gu24 {
  max-width: 1200px;
}

div .gu24 .row,
div .gu24 {
  width: auto;
}

.row {
  position: relative;
  margin-left: -1.63934%;
}

.m-logo a, .m-logo-main a, .m-division-selector .division-select li a span {
  background: url(../img/png/sprite.png) no-repeat 0 0;
}
.svg .m-logo a, .svg .m-logo-main a, .svg .m-division-selector .division-select li a span {
  background: url(../img/svg/sprite.svg) no-repeat 0 0;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  background-color: #ffffff;
}

tr:hover {
  background-color: #f0f0f0 !important;
}
tbody tr:nth-child(2n+2) {
  background-color: #fafafa;
}

th, td {
  font-size: 1em;
  line-height: 1.47692em;
  border-collapse: collapse;
  border: 1px solid #ddd;
}
th p, td p {
  margin: 0;
}

th {
  color: #ffffff;
  background-color: #00549f;
  text-align: center;
  padding: 0.4em 0.5em;
}
th.sortable a {
  color: #00549f;
  display: block;
  background-repeat: no-repeat;
  padding-right: 12px;
}
th.sortable a.asc {
  background-image: url("../img/sprites/bg-arrow-sprite.png");
  background-position: right -170px;
}
th.sortable a.desc {
  background-image: url("../img/sprites/bg-arrow-sprite.png");
  background-position: right -200px;
}
th.sortable a:hover {
  color: #b3b3b3;
}

td {
  text-align: left;
  padding: 0.2em 0.4em;
}

.widget-container {
  position: relative;
  margin-left: -1.63934%;
}
.widget-container > .module {
  float: left;
  padding-left: 1.63934%;
}
.widget-container.widget-count-1 > .module {
  width: 98.36066%;
}
.widget-container.widget-count-2 > .module {
  width: 48.36066%;
}
.widget-container.widget-count-3 > .module {
  width: 31.69399%;
}
.widget-container.widget-count-4 > .module {
  width: 23.36066%;
}
.widget-container.widget-count-5 > .module {
  width: 18.36066%;
}
.widget-container.widget-count-6 > .module {
  width: 15.02732%;
}
.widget-container.widget-count-7 > .module {
  width: 12.64637%;
}
.widget-container.widget-count-8 > .module {
  width: 10.86066%;
}
.widget-container.widget-count-9 > .module {
  width: 9.47177%;
}
.widget-container.widget-count-10 > .module {
  width: 8.36066%;
}
.section-top .widget-container > .module .regular .text, .section-middle .widget-container > .module .regular .text {
  min-height: 110px;
}
.footer .widget-container > .module {
  min-height: 260px;
}
.sidebar .widget-container > .module {
  width: auto;
  float: none;
  padding-left: 0;
  margin-left: 0;
  padding-bottom: 0;
}

.btn {
  line-height: 37px;
  border: 7px solid #edf1f2;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: block;
  padding: 0 30px;
  position: relative;
}
.btn.style-one {
  background-color: #762457;
  color: #ffffff;
}
.btn.style-one:before {
  content: "";
  position: absolute;
  width: 11px;
  height: 17px;
  left: 10px;
  top: 9px;
  background: url(../img/sprite.png) no-repeat -573px -44px;
}
.btn.style-one {
  background-color: #762457;
  color: #ffffff;
}
.btn.style-two {
  background-color: #b5bf00;
  color: #ffffff;
  text-align: center;
}
.btn:hover, .btn:focus {
  opacity: 0.8;
}

.forward, .back, .up, .down {
  position: relative;
}
.forward:after, .back:after, .up:after, .down:after {
  content: " ";
  display: block;
  position: absolute;
  top: 10%;
  height: 15px;
  width: 15px;
  background-image: url("../img/icons/bg-arrow-sprite.png");
  background-repeat: no-repeat;
}
.svg .forward:after, .svg .back:after, .svg .up:after, .svg .down:after {
  top: 30%;
  height: 10px;
  width: 10px;
  background-position: left top;
}

.forward, .up, .down {
  padding-right: 20px;
}
.forward:after, .up:after, .down:after {
  right: 3px;
}

.back {
  padding-left: 60px;
}
.back:after {
  background-position: left -141px;
  left: 5px;
}
.svg .back:after {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAgLS0+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiIFsNCgk8IUVOVElUWSBuc19mbG93cyAiaHR0cDovL25zLmFkb2JlLmNvbS9GbG93cy8xLjAvIj4NCl0+DQo8c3ZnIHZlcnNpb249IjEuMSINCgkgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6YT0iaHR0cDovL25zLmFkb2JlLmNvbS9BZG9iZVNWR1ZpZXdlckV4dGVuc2lvbnMvMy4wLyINCgkgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iMTBweCIgdmlld0JveD0iMCAwIDYgMTAiIG92ZXJmbG93PSJ2aXNpYmxlIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA2IDEwIg0KCSB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxkZWZzPg0KPC9kZWZzPg0KPHBvbHlnb24gZmlsbD0iI0ZGRkZGRiIgcG9pbnRzPSIwLDQuOTkgNS42OSw5Ljk4MiA1LjY5LDAgIi8+DQo8L3N2Zz4NCg==");
}

.forward:after {
  background-position: right -113px;
}
.svg .forward:after {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAgLS0+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiIFsNCgk8IUVOVElUWSBuc19mbG93cyAiaHR0cDovL25zLmFkb2JlLmNvbS9GbG93cy8xLjAvIj4NCl0+DQo8c3ZnIHZlcnNpb249IjEuMSINCgkgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6YT0iaHR0cDovL25zLmFkb2JlLmNvbS9BZG9iZVNWR1ZpZXdlckV4dGVuc2lvbnMvMy4wLyINCgkgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iMTBweCIgdmlld0JveD0iMC4wMDUgMCA2IDEwIiBvdmVyZmxvdz0idmlzaWJsZSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwLjAwNSAwIDYgMTAiDQoJIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGRlZnM+DQo8L2RlZnM+DQo8cG9seWdvbiBmaWxsPSIjRkZGRkZGIiBwb2ludHM9IjUuNjk1LDQuOTkgMCw5Ljk4MiAwLDAgIi8+DQo8L3N2Zz4NCg==");
}

.up:after {
  background-position: right -170px;
}
.svg .up:after {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAgLS0+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiIFsNCgk8IUVOVElUWSBuc19mbG93cyAiaHR0cDovL25zLmFkb2JlLmNvbS9GbG93cy8xLjAvIj4NCl0+DQo8c3ZnIHZlcnNpb249IjEuMSINCgkgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6YT0iaHR0cDovL25zLmFkb2JlLmNvbS9BZG9iZVNWR1ZpZXdlckV4dGVuc2lvbnMvMy4wLyINCgkgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxMHB4IiBoZWlnaHQ9IjZweCIgdmlld0JveD0iMCAwIDEwIDYiIG92ZXJmbG93PSJ2aXNpYmxlIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMCA2Ig0KCSB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxkZWZzPg0KPC9kZWZzPg0KPHBvbHlnb24gZmlsbD0iI0ZGRkZGRiIgcG9pbnRzPSI0Ljk5LDAgOS45ODIsNS42OTUgMCw1LjY5NSAiLz4NCjwvc3ZnPg0K");
}

.down:after {
  background-position: right -199px;
}
.svg .down:after {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAgLS0+DQo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiIFsNCgk8IUVOVElUWSBuc19mbG93cyAiaHR0cDovL25zLmFkb2JlLmNvbS9GbG93cy8xLjAvIj4NCl0+DQo8c3ZnIHZlcnNpb249IjEuMSINCgkgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6YT0iaHR0cDovL25zLmFkb2JlLmNvbS9BZG9iZVNWR1ZpZXdlckV4dGVuc2lvbnMvMy4wLyINCgkgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxMHB4IiBoZWlnaHQ9IjZweCIgdmlld0JveD0iMCAwIDEwIDYiIG92ZXJmbG93PSJ2aXNpYmxlIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMCA2Ig0KCSB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxkZWZzPg0KPC9kZWZzPg0KPHBvbHlnb24gZmlsbD0iI0ZGRkZGRiIgcG9pbnRzPSI0Ljk5Miw1LjY5NSAwLDAgOS45ODEsMCAiLz4NCjwvc3ZnPg0K");
}

.navigation.accordion .hidden-menu {
  display: none;
}
.navigation.accordion ul {
  background-color: #f7f7f7;
}
.navigation.accordion ul li {
  float: none;
  border-right: none;
  border-bottom: 1px solid #fff;
}
.navigation.accordion ul li:last-child {
  border-bottom: none;
}
.navigation.accordion ul li.has-child a:after {
  content: " ";
  display: block;
  position: absolute;
  top: 10%;
  height: 15px;
  width: 15px;
  background-image: url("../img/icons/bg-arrow-sprite.png");
  background-repeat: no-repeat;
  background-position: left -88px;
}
.svg .navigation.accordion ul li.has-child a:after {
  top: 43%;
  left: 5px;
  height: 10px;
  width: 10px;
  background-position: left top;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiDQoJIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxMHB4IiBoZWlnaHQ9IjZweCIgdmlld0JveD0iMCAwIDEwIDYiIG92ZXJmbG93PSJ2aXNpYmxlIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMCA2Ig0KCSB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxkZWZzPg0KPC9kZWZzPg0KPHBvbHlnb24gZmlsbD0iIzkwOTA5MCIgcG9pbnRzPSI0Ljk5Miw1LjY5NSAwLDAgOS45ODEsMCAiLz4NCjwvc3ZnPg0K");
}
.navigation.accordion ul li.has-child.expanded a:after {
  background-position: right -55px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  -moz-opacity: 0.3;
  -khtml-opacity: 0.3;
  /* Safari 1.x */
  opacity: 0.3;
}
.svg .navigation.accordion ul li.has-child.expanded a:after {
  top: 43%;
  height: 10px;
  width: 10px;
  background-position: left top;
}
.navigation.accordion ul li.has-child ul a:after {
  display: none;
}
.navigation.accordion ul li a {
  position: relative;
  text-decoration: none;
  display: block;
  padding: 0.4em 0.6em 0.4em 1.2em;
  text-align: left;
}
.navigation.accordion ul li ul {
  display: block;
  background-color: #fff;
}
.navigation.accordion ul li ul li {
  border-bottom: none;
}
.navigation.accordion ul li ul li a {
  padding: 0.2em 0.6em 0.2em 2em;
  line-height: 1.47692em;
}
.navigation.accordion ul li ul li a:last-child {
  padding-bottom: 0.4em;
}
.navigation.accordion ul li ul li:first-child {
  border-top: none;
}

.expandable .toggle {
  cursor: pointer;
  background-image: url("../img/icons/bg-arrow-sprite.png");
  background-repeat: no-repeat;
  background-position: left 6px;
  padding-left: 0.72em;
  margin-bottom: 0.6em;
}
.svg .expandable .toggle {
  background-position: left 50%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMTBweCIgaGVpZ2h0PSIxMHB4IiB2aWV3Qm94PSItMy4wMjUgMCAzNiAzNiIgb3ZlcmZsb3c9InZpc2libGUiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgLTMuMDI1IDAgMzYgMzYiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBvbHlsaW5lIGZpbGw9IiM5MDkwOTAiIHBvaW50cz0iMTguMDU1LDE4LjA1NiAxMy43MzIsMTMuNzM0IDAsMCAxMS45MDgsMCAyNC4wMSwxMi4xMDIgMjQuMTExLDEyLjIwNSAyNC4xNjYsMTIuMTUyIA0KCTMwLjExOSwxOC4xMDUgMjQuMTY2LDI0LjA2MSAxMi4wNjQsMzYuMTYyIDAuMTU2LDM2LjE2MiAxMy44ODksMjIuNDMgIi8+DQo8L3N2Zz4=");
}
.expandable.open .toggle {
  background-position: left -84px;
}
.svg .expandable.open .toggle {
  background-position: left 50%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMTBweCIgaGVpZ2h0PSIxMHB4IiB2aWV3Qm94PSItMC4wMDMgLTMuMDIxIDM2IDM2Ig0KCSBvdmVyZmxvdz0idmlzaWJsZSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAtMC4wMDMgLTMuMDIxIDM2IDM2IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwb2x5bGluZSBmaWxsPSIjOTA5MDkwIiBwb2ludHM9IjE4LjEwNSwxOC4wNTUgMjIuNDI4LDEzLjczMiAzNi4xNjIsMCAzNi4xNjIsMTEuOTA4IDI0LjA2MSwyNC4wMSAyMy45NTcsMjQuMTExIDI0LjAxLDI0LjE2NiANCgkxOC4wNTcsMzAuMTE5IDEyLjEwMiwyNC4xNjYgMCwxMi4wNjQgMCwwLjE1NiAxMy43MzIsMTMuODg5ICIvPg0KPC9zdmc+");
}
.expandable.open .content {
  display: block;
}
.expandable.close .toggle {
  background-position: left 6px;
}
.svg .expandable.close .toggle {
  background-position: left 50%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iMTBweCIgaGVpZ2h0PSIxMHB4IiB2aWV3Qm94PSItMy4wMjUgMCAzNiAzNiIgb3ZlcmZsb3c9InZpc2libGUiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgLTMuMDI1IDAgMzYgMzYiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBvbHlsaW5lIGZpbGw9IiM5MDkwOTAiIHBvaW50cz0iMTguMDU1LDE4LjA1NiAxMy43MzIsMTMuNzM0IDAsMCAxMS45MDgsMCAyNC4wMSwxMi4xMDIgMjQuMTExLDEyLjIwNSAyNC4xNjYsMTIuMTUyIA0KCTMwLjExOSwxOC4xMDUgMjQuMTY2LDI0LjA2MSAxMi4wNjQsMzYuMTYyIDAuMTU2LDM2LjE2MiAxMy44ODksMjIuNDMgIi8+DQo8L3N2Zz4=");
}
.expandable.close .content {
  display: none;
}
.expandable .content {
  padding-left: 0.72em;
  display: none;
}

.no-js .expandable .toggle {
  cursor: default;
  background-image: none;
  padding-left: 0;
  margin-bottom: 0;
}
.no-js .expandable .content {
  padding-left: 0;
  display: block;
}

@-webkit-keyframes redCharacter {
  to {
    -webkit-transform: translateX(-90px);
  }
}
@-moz-keyframes redCharacter {
  to {
    -moz-transform: translateX(-90px);
  }
}
@keyframes redCharacter {
  to {
    transform: translateX(-90px);
  }
}
@-webkit-keyframes handRotate {
  to {
    -webkit-transform: rotate(-5deg);
  }
}
@-moz-keyframes handRotate {
  to {
    -moz-transform: rotate(-5deg);
  }
}
@keyframes handRotate {
  to {
    transform: rotate(-5deg);
  }
}
.m-division-selector {
  background: #f5f5f5;
  background: -moz-linear-gradient(top, #d1d3d2 0%, #f5f5f5 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d1d3d2), color-stop(100%, #f5f5f5));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #d1d3d2 0%, #f5f5f5 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #d1d3d2 0%, #f5f5f5 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #d1d3d2 0%, #f5f5f5 100%);
  /* W3C */
}
.m-division-selector .section-canvas {
  background: transparent;
  position: relative;
}
.m-division-selector .division-panel {
  float: none;
  margin: 10px 0 0;
}
.m-division-selector .division-welcome, .m-division-selector .welcome-login {
  position: relative;
  overflow: hidden;
  padding: 5%;
  background-color: white;
  background-color: rgba(255, 255, 255, 0.8);
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.m-logo a {
  display: block;
  text-align: center;
  text-indent: -999em;
  margin: 0 auto;
}

/* basic scrollbar styling */
/* vertical scrollbar */
.mCSB_container {
  width: auto;
  margin-right: 30px;
  overflow: hidden;
}

.mCSB_container.mCS_no_scrollbar {
  margin-right: 0;
}

.mCS_disabled > .mCustomScrollBox > .mCSB_container.mCS_no_scrollbar,
.mCS_destroyed > .mCustomScrollBox > .mCSB_container.mCS_no_scrollbar {
  margin-right: 30px;
}

.mCustomScrollBox > .mCSB_scrollTools {
  width: 16px;
  height: 100%;
  top: 0;
  right: 0;
}

.mCSB_scrollTools .mCSB_draggerContainer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
}

.mCSB_scrollTools a + .mCSB_draggerContainer {
  margin: 20px 0;
}

.mCSB_scrollTools .mCSB_draggerRail {
  width: 4px;
  height: 100%;
  margin: 0 auto;
}

.mCSB_scrollTools .mCSB_dragger {
  cursor: pointer;
  width: 100%;
  height: 30px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 4px;
  height: 100%;
  margin: 0 auto;
  text-align: center;
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
  display: block;
  position: relative;
  height: 20px;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}

.mCSB_scrollTools .mCSB_buttonDown {
  top: 100%;
  margin-top: -40px;
}

.mCustomScrollBox {
  -ms-touch-action: none;
  /*MSPointer events - direct all pointer events to js*/
}

/* default scrollbar colors and backgrounds (default theme) */
.mCustomScrollBox > .mCSB_scrollTools {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
  /* old ie */
}

.mCustomScrollBox:hover > .mCSB_scrollTools {
  opacity: 1;
  filter: "alpha(opacity=100)";
  -ms-filter: "alpha(opacity=100)";
  /* old ie */
}

.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #505050;
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
  /* old ie */
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #fff;
  /* rgba fallback */
  background-color: #00549f;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
  /* old ie */
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background: rgba(255, 255, 255, 0.85);
  filter: "alpha(opacity=85)";
  -ms-filter: "alpha(opacity=85)";
  /* old ie */
}

.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background: rgba(255, 255, 255, 0.9);
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
  /* old ie */
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
  background-image: url(../mCSB_buttons.png);
  background-repeat: no-repeat;
  opacity: 0.4;
  filter: "alpha(opacity=40)";
  -ms-filter: "alpha(opacity=40)";
  /* old ie */
}

.mCSB_scrollTools .mCSB_buttonUp {
  background-position: 0 0;
  /* 
  sprites locations are 0 0/-16px 0/-32px 0/-48px 0 (light) and -80px 0/-96px 0/-112px 0/-128px 0 (dark) 
  */
}

.mCSB_scrollTools .mCSB_buttonDown {
  background-position: 0 -20px;
  /* 
  sprites locations are 0 -20px/-16px -20px/-32px -20px/-48px -20px (light) and -80px -20px/-96px -20px/-112px -20px/-128px -20px (dark) 
  */
}

.mCSB_scrollTools .mCSB_buttonLeft {
  background-position: 0 -40px;
  /* 
  sprites locations are 0 -40px/-20px -40px/-40px -40px/-60px -40px (light) and -80px -40px/-100px -40px/-120px -40px/-140px -40px (dark) 
  */
}

.mCSB_scrollTools .mCSB_buttonRight {
  background-position: 0 -56px;
  /* 
  sprites locations are 0 -56px/-20px -56px/-40px -56px/-60px -56px (light) and -80px -56px/-100px -56px/-120px -56px/-140px -56px (dark) 
  */
}

.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover {
  opacity: 0.75;
  filter: "alpha(opacity=75)";
  -ms-filter: "alpha(opacity=75)";
  /* old ie */
}

.mCSB_scrollTools .mCSB_buttonUp:active,
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active {
  opacity: 0.9;
  filter: "alpha(opacity=90)";
  -ms-filter: "alpha(opacity=90)";
  /* old ie */
}

/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.1.0
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  zoom: 1;
  *display: inline;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}

.chosen-container.chosen-with-drop .chosen-drop {
  left: 0;
}

.chosen-container a {
  cursor: pointer;
}

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 37px;
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 37px;
}
.chosen-container-single .chosen-single span {
  position: relative;
}
.m-country-select .chosen-container-single .chosen-single span:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 13px;
  right: 18px;
  top: 12px;
  background: url(../img/sprite.png) no-repeat;
}
.gb .m-country-select .chosen-container-single .chosen-single span:before {
  background-position: -630px -59px;
}
.ie .m-country-select .chosen-container-single .chosen-single span:before {
  background-position: -630px -72px;
}
.th .m-country-select .chosen-container-single .chosen-single span:before {
  background-position: -630px -59px;
}
.my .m-country-select .chosen-container-single .chosen-single span:before {
  background-position: -630px -98px;
}
.m-country-select .chosen-container-single .chosen-single {
  background-color: #f0f0f0;
}
.m-search-form .chosen-container-single .chosen-single {
  background-color: #fff;
}

.chosen-container-single .chosen-default {
  color: #999;
}

.chosen-container-single .chosen-single span {
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-search-form .chosen-container-single .chosen-single span {
  color: #004996;
}

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("../img/chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 34px;
  height: 100%;
}
.m-country-select .chosen-container-single .chosen-single div {
  background-color: #91a9af;
}
.m-search-form .chosen-container-single .chosen-single div {
  background-color: #004996;
}

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/sprite.png) no-repeat;
}
.wg-ucas-cal .chosen-container-single .chosen-single div b {
  background-position: -432px 16px;
}

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}
.chosen-container-single .chosen-search input {
  width: 100%;
}

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px;
}

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
}

.wg-ucas-cal .chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -406px 16px;
}

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #111 !important;
}

.chosen-results li {
  line-height: 27px;
  padding: 0 0 0 10px;
  font-family: "tescoDisplaybold", arial, "Helvetica Neue", Helvetica, sans-serif;
  position: relative;
}
.chosen-results li.result-selected {
  background-color: #eff2f3;
}
.chosen-results li:hover, .chosen-results li:focus, .chosen-results li .selected {
  background-color: #004996;
  color: #ffffff;
  cursor: pointer;
}

.m-country-select .chosen-results li:before {
  position: relative;
  content: "";
  position: absolute;
  width: 20px;
  height: 13px;
  right: 44px;
  top: 7px;
  background: url(../img/sprite.png) no-repeat;
}
.m-country-select .chosen-results li.gb:before {
  background-position: -630px -59px;
}
.m-country-select .chosen-results li.ie:before {
  background-position: -630px -72px;
}
.m-country-select .chosen-results li.th:before {
  background-position: -630px -98px;
}
.m-country-select .chosen-results li.my:before {
  background-position: -630px -85px;
}

/*
 * jQuery FlexSlider v2.2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Icon Fonts
*********************************/
/* Font-face Icons */
@font-face {
  font-family: 'flexslider-icon';
  src: url("fonts/flexslider-icon.eot");
  src: url("fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("fonts/flexslider-icon.woff") format("woff"), url("fonts/flexslider-icon.ttf") format("truetype"), url("fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .slides {
  display: block;
}

* html .slides {
  height: 1%;
}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block;
}

/* FlexSlider Default Theme
*********************************/
.flexslider {
  position: relative;
  background: #fff;
  zoom: 1;
}

.flex-viewport {
  z-index: 10;
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  /*max-height: 300px;*/
}

.flexslider .slides {
  zoom: 1;
  padding-top: 30px;
}

.custom-dt.flexslider .slides {
  padding-top: 0;
}

/*.carousel li { margin-right: 5px; }*/
/* Direction Nav */
.flex-direction-nav {
  *height: 0;
  position: absolute;
  z-index: 999999;
  display: block;
  width: 100%;
  top: 45%;
  position: absolute;
}

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  transition: all .3s ease;
}

.flex-direction-nav .flex-prev {
  left: -50px;
}

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
  position: absolute;
  text-indent: 9999px;
  overflow: hidden;
}

.flexslider:hover .flex-prev {
  opacity: 0.7;
  left: 10px;
}

.flexslider:hover .flex-next {
  opacity: 0.7;
  right: 10px;
}

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
  opacity: 1;
}

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default;
}

/*.flex-direction-nav a:before  { font-family: "flexslider-icon"; font-size: 40px; display: inline-block; content: '\f001'; }*/
/*.flex-direction-nav a.flex-next:before  { content: '\f002'; }*/
.flex-direction-nav {
  float: right;
}

.flex-direction-nav .flex-next,
.flex-direction-nav .flex-prev {
  width: 90px;
  height: 90px;
  text-indent: 99999px;
}

.flex-direction-nav .flex-next {
  background: url("../img/assets-careers/right-arrow.png") no-repeat 0 0;
}

.flex-direction-nav .flex-prev {
  background: url("../img/assets-careers/left-arrow.png") no-repeat 0 0;
}

/* Pause/Play */
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}

.flex-pauseplay a:hover {
  opacity: 1;
}

.flex-pauseplay a.flex-play:before {
  content: '\f003';
}

/* Control Nav */
.flex-control-nav {
  width: 100%;
  position: absolute;
  text-align: center;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-paging li a {
  width: 16px;
  height: 16px;
  display: block;
  background: #d8d2dd;
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
  background: #000;
  background: #762457;
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: .7;
  cursor: pointer;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

.carousel .controls {
  width: 76%;
  margin: 0px auto;
  position: relative;
  display: block;
  top: -200px;
  z-index: 99999;
}

.flex-direction-nav a {
  display: block;
  cursor: pointer;
  position: absolute;
  width: 50px;
  height: 90px;
}

.carousel .slide-content {
  width: 490px;
  height: 100%;
  margin: 0px 0% 0px 4%;
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 40px;
  color: #666;
}

.carousel .slide-content h3,
.carousel .slide-content p {
  text-align: left;
}

.carousel .slide-content h3 {
  font-size: 3.5em;
  color: #762457;
  line-height: normal;
  margin-top: 0;
}

.carousel .slide-content p {
  font-size: 1.5em;
  line-height: 120%;
}

.flex-direction-nav {
  display: block;
}
.wg-images .flex-direction-nav li {
  list-style-type: none;
}

.flex-control-nav {
  top: 0px;
  z-index: 99;
}

.slide-content {
  float: left;
}

.flex-direction-nav .flex-prev {
  left: 0px;
  width: 50px;
}

.flex-direction-nav .flex-next {
  right: 0px;
  width: 50px;
}

.flexslider.wg-sortable-videos.custom-dt {
  margin-top: 50px;
}

.multi {
  position: relative;
}

.flexslider.wg-sortable-videos.custom-dt .flex-direction-nav {
  display: block;
  top: -29px;
  width: inherit;
  right: 0;
}
.flexslider.wg-sortable-videos.custom-dt .flex-direction-nav li {
  background-color: transparent;
  border: none;
  width: 28px;
  height: 28px;
  float: left;
  margin: 0;
}
.flexslider.wg-sortable-videos.custom-dt .flex-direction-nav li:first-child {
  margin: 0 10px 0 0;
}
.flexslider.wg-sortable-videos.custom-dt .flex-direction-nav li .flex-next, .flexslider.wg-sortable-videos.custom-dt .flex-direction-nav li .flex-prev {
  width: 27px;
  height: 27px;
  background: url(../img/sprite.png) no-repeat;
}
.flexslider.wg-sortable-videos.custom-dt .flex-direction-nav li .flex-next:before, .flexslider.wg-sortable-videos.custom-dt .flex-direction-nav li .flex-prev:before {
  display: none;
}
.flexslider.wg-sortable-videos.custom-dt .flex-direction-nav li .flex-next {
  left: inherit;
  background-position: -159px -337px;
}
.flexslider.wg-sortable-videos.custom-dt .flex-direction-nav li .flex-prev {
  left: -4px;
  right: inherit;
  background-position: -159px -369px;
}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }

  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }

  .carousel .slide-content h3 {
    font-size: 1.846em;
  }

  .flexslider .slides > li {
    min-height: 305px;
    position: relative;
  }

  .flexslider.custom-dt .slides > li {
    min-height: inherit;
  }

  .flex-control-paging li a {
    width: 24px;
    height: 24px;
  }

  .timeline-container .flex-direction-nav {
    display: block;
  }

  .flex-direction-nav {
    display: none;
  }

  .flexslider.wg-sortable-videos .flex-direction-nav {
    display: block;
    top: 3px;
    width: inherit;
    right: 0;
  }
  .flexslider.wg-sortable-videos .flex-direction-nav li {
    background-color: transparent;
    border: none;
    width: 25px;
    height: 25px;
    float: left;
    margin: 0;
  }
  .flexslider.wg-sortable-videos .flex-direction-nav li:first-child {
    margin: 0 10px 0 0;
  }
  .flexslider.wg-sortable-videos .flex-direction-nav li .flex-next, .flexslider.wg-sortable-videos .flex-direction-nav li .flex-prev {
    width: 27px;
    height: 27px;
    background: url(../img/sprite.png) no-repeat;
  }
  .flexslider.wg-sortable-videos .flex-direction-nav li .flex-next:before, .flexslider.wg-sortable-videos .flex-direction-nav li .flex-prev:before {
    display: none;
  }
  .flexslider.wg-sortable-videos .flex-direction-nav li .flex-next {
    left: inherit;
    background-position: -159px -337px;
  }
  .flexslider.wg-sortable-videos .flex-direction-nav li .flex-prev {
    left: -10px;
    right: inherit;
    background-position: -159px -369px;
  }
}
@media screen and (max-width: 770px) {
  .carousel .controls {
    top: -240px;
  }

  .flexslider .slides > li {
    position: relative;
  }

  .flexslider .slides img {
    height: 100%;
    /**/
  }

  .carousel .slide-content {
    margin: 0px 0% 0px 0%;
    width: 100%;
    padding: 0px 5%;
    min-height: 230px;
  }
}
/*! 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;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  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, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("../img/assets-lightbox/fancybox_sprite.png");
}

#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-loading div {
  width: 44px;
  height: 44px;
  background: url("../img/assets-lightbox/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../img/assets-lightbox/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  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 {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("../img/assets-lightbox/fancybox_overlay.png");
}

.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;
  top: -38px;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: none;
  color: #ffffff;
  font-weight: bold;
  line-height: normal;
}

.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);
}

/*Retina graphics!*/
@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) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("../img/assets-lightbox/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/
  }

  #fancybox-loading div {
    background-image: url("../img/assets-lightbox/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/
  }
}
@media (min-width: 36.92308em) {
  .lt-ie8 .navigation.primary > ul {
    display: inline-block;
  }
  .lt-ie8 .navigation.primary > ul li {
    display: block;
    float: left;
  }
  .lt-ie8 .navigation.primary > ul li li {
    float: none;
    display: block;
    min-width: inherit;
  }
  .lt-ie8 .navigation.primary > ul li li ul {
    display: none;
  }
}
.lt-ie8 input[type=text] {
  padding-left: 1%;
  padding-right: 1%;
  width: 98%;
}
.lt-ie8 input[type=text].search-criteria {
  padding-left: inherit;
  padding-right: inherit;
  width: auto;
}
.lt-ie8 input {
  border: none;
}

.lt-ie9 {
  filter: expression(document.execCommand("BackgroundImageCache", false, true));
}
.lt-ie9 .regular {
  zoom: 1;
}

/*
 *  Media queries
 *
 *  100% = 1 em ~= 16px ~= 14pt
 *
 *  48em ~= 768px
 *  50em ~= 800px
 *  35em ~= 560px
 *  64em ~= 1024px
 *  70em ~= 1120px
 *  http://blog.cloudfour.com/the-ems-have-it-proportional-media-queria
 s-ftw/
/*
  Mobile-first

  havaspeople
*/
div[role="main"] .block {
  background-color: yellow;
  width: 100%;
  z-index: 999;
  position: fixed;
  top: 0;
  height: 20px;
  display: none;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1 {
  color: #ffffff;
  font-weight: normal;
  letter-spacing: -1px;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: normal;
  margin: 0;
}
h1 span {
  display: block;
}

h2 {
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
  margin: 0;
  font-size: 1.846em;
  line-height: normal;
  text-align: center;
}

/*------------------------------------------
some helpers..
-------------------------------------------*/
.desktop-only {
  display: none;
}

.small-desktop {
  display: none;
}

.medium-desktop {
  display: block;
}

.large-desktop-only {
  display: none;
}

.mobile-tablet-only {
  display: block;
}

.mobile-only {
  display: block;
}

.primary-theme {
  background-color: #91a9af;
}

/*------------------------------------------
@start general..
-------------------------------------------*/
.grid-container {
  margin: 0 auto;
  max-width: 1200px;
}

.content-area.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.content-area.section-lg {
  max-width: 1200px;
  margin: 0 auto;
}

.standard-page .site-map {
  text-align: left;
  list-style-type: none;
}
.standard-page .site-map li {
  font-size: 1em;
}
.standard-page .site-map a:hover, .standard-page .site-map a:focus {
  text-decoration: underline;
  color: #992727;
}
.standard-page .site-map .level-2 {
  padding: 0 0 0 10px;
}
.standard-page .site-map .level-2 > a {
  font-size: 1.2em;
  line-height: 1.5em;
  text-decoration: underline;
  font-weight: bold;
}
.standard-page .site-map .level-2 .site-map {
  padding: 0 0 0 10px;
}

.main-content {
  padding: 6%;
}
.main-content.intro-content {
  padding-bottom: 0;
}

.main-content.no-vert-padd {
  padding-top: 0px;
  padding-bottom: 0px;
}

.heading-section {
  padding: 6% 6% 0% 6%;
}

.main-content.span-full-width {
  padding-top: 0px;
  width: 100% !important;
}

img {
  max-width: 100%;
}

.lv-10.purple {
  background-color: #762457;
}

.lv-1 p, .lv-2 p, .lv-3 p, .lv-4 p, .lv-5 p, .lv-6 p, .lv-7 p, .lv-8 p, .lv-9 p, .lv-10 p, .lv-11 p, .lv-12 p {
  line-height: normal;
  font-size: 1.4em;
  line-height: 1.4;
  color: #666666;
}
.lv-1 h2 + p, .lv-2 h2 + p, .lv-3 h2 + p, .lv-4 h2 + p, .lv-5 h2 + p, .lv-6 h2 + p, .lv-7 h2 + p, .lv-8 h2 + p, .lv-9 h2 + p, .lv-10 h2 + p, .lv-11 h2 + p, .lv-12 h2 + p {
  text-align: center;
  font-size: 1.692em;
}
.lv-1 h3, .lv-2 h3, .lv-3 h3, .lv-4 h3, .lv-5 h3, .lv-6 h3, .lv-7 h3, .lv-8 h3, .lv-9 h3, .lv-10 h3, .lv-11 h3, .lv-12 h3 {
  color: #762457;
  display: block;
  width: 100%;
  clear: both;
  margin: 15px 0px 0px 0px;
  display: block;
  float: left;
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
}

.lv-1 {
  background-color: #ffffff;
}
.lv-1 h2, .lv-1 h2 + p {
  color: #762457;
}

.lv-2 {
  background-color: #762457;
}
.lv-2 h2, .lv-2 h2 + p, .lv-2 a {
  color: #ffffff;
}

.lv-3 {
  background-color: #ffffff;
}
.lv-3 h2, .lv-3 h2 + p {
  color: #762457;
}

.lv-4 {
  background-color: #91a9af;
}
.lv-4 h2, .lv-4 h2 + p {
  color: #ffffff;
}

.lv-5 {
  background-color: #ffffff;
}
.lv-5 h2, .lv-5 h2 + p {
  color: #b5bf00;
}

.lv-6 {
  background-color: #eff2f3;
}
.lv-6 h2, .lv-6 h2 + p {
  color: #b5bf00;
}

.lv-7 {
  background-color: #91a9af;
}
.lv-7 h2, .lv-7 h2 + p {
  color: #ffffff;
}

.lv-8 {
  background-color: #7d6990;
}
.lv-8 h2, .lv-8 h2 + p {
  color: #ffffff;
}

.lv-9 {
  background-color: #ffffff;
}
.lv-9 h2, .lv-9 h2 + p {
  color: #7d6990;
}
.lv-9 .content {
  display: block;
  width: 100%;
  padding: 40px 7%;
}
.lv-9 .content h2, .lv-9 .content p {
  text-align: left;
}

.lv-10 {
  background-color: #ece9ee;
}
.lv-10 h2, .lv-10 h2 + p {
  color: #7d6990;
}

.lv-11 {
  background-color: #7ba296;
}
.lv-11 h2, .lv-11 h2 + p {
  color: #ffffff;
}

.lv-12 {
  background-color: #eff2f3;
}
.lv-12 h2, .lv-12 h2 + p {
  color: #666666;
}

/*------------------------------------------
@start HOMEPAGE GRID STYLES..
-------------------------------------------*/
.masonry .col {
  margin: 0;
  padding: 0;
}

.photos .photo img {
  display: block;
  width: 100%;
}

.masonry.row {
  margin-left: 0;
  width: 100%;
}

.item {
  display: block;
  float: left;
  width: 300px;
  margin: 0 0px 0px 0;
  -webkit-transition: top .4s ease-in-out .4s;
  -moz-transition: top .4s ease-in-out .4s;
  -ms-transition: top .4s ease-in-out .4s;
  -o-transition: top .4s ease-in-out .4s;
  transition: top .4s ease-in-out .4s;
}

#grid {
  min-height: 100%;
  margin: 0 auto;
}
#grid p {
  color: #ffffff;
}

#grid .generic {
  float: left;
  width: 200px;
  height: 200px;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
#grid .generic img {
  width: 100%;
}

#grid .wide {
  width: 400px;
}

#grid .tall {
  height: 400px;
}

#grid .big {
  height: 400px;
  width: 400px;
}

#grid div.corner-stamp {
  /*float: left;*/
  width: 100%;
  min-height: 600px;
  background-color: #b4c113;
  padding: 2% 3% 0;
}
.lt-ie9 #grid div.corner-stamp {
  min-height: 564px;
}
#grid div.corner-stamp p {
  font-size: 1.385em;
  /* 18px */
  color: #ffffff;
  line-height: normal;
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: normal;
  line-height: 25px;
  margin: 0 0 15px;
}
#grid div.corner-stamp h1 {
  position: relative;
  line-height: 0.9em;
  font-size: 6em;
  font-family: "tescoDisplaybold", arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: normal;
  margin: 0 0 0.4em;
}
#grid div.corner-stamp .stamp-cta {
  display: block;
  font-family: "tescoDisplaybold", arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.538em;
  /* 20px */
  color: #ffffff;
  margin: 0 0 30px;
  position: relative;
  float: left;
  clear: both;
  border: 3px solid #ffffff;
  border-radius: 3px;
  padding: 9px 60px 9px 9px;
}
#grid div.corner-stamp .stamp-cta:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 39px;
  margin: -10px 0 0 10px;
  background: url("../img/sprite.png") no-repeat -288px -50px;
  background-size: 340px;
  top: 10px;
  right: 8px;
  border-left: 3px solid #fff;
}
#grid div.corner-stamp .stamp-cta:hover {
  text-decoration: underline;
}
#grid div.corner-stamp .stamp-cta:hover:after, #grid div.corner-stamp .stamp-cta:focus:after {
  text-decoration: underline;
}

#grid .isotope-item .bottom-caption {
  -webkit-transition: background-color .15s ease-in-out;
  -moz-transition: background-color .15s ease-in-out;
  -o-transition: background-color .15s ease-in-out;
  transition: background-color .15s ease-in-out;
}
#grid .light-purple {
  background-color: #7a6691;
}
#grid .dark-purple {
  background-color: #762457;
}
#grid .burgandy {
  background-color: #762457;
}
#grid .burgandy .bottom-caption {
  background-color: #762457;
}
#grid .burgandy a:hover .bottom-caption {
  background-color: #6a204e;
}
#grid .light-blue {
  background-color: #00a0df;
}
#grid .light-blue .bottom-caption {
  background-color: #1aa0e5;
}
#grid .light-blue a:hover .bottom-caption {
  background-color: #0095d0;
}
#grid .light-purple {
  background-color: #7a6691;
}
#grid .lime-green {
  background-color: #b5bf00;
}
#grid .light-green {
  background-color: #7ba296;
}
#grid .light-orange {
  background-color: #cb8a23;
}
#grid .purple {
  background-color: #7d688f;
}
#grid .purple .bottom-caption {
  background-color: #7d688f;
}
#grid .purple a:hover .bottom-caption {
  background-color: #756286;
}
#grid .fresh-green {
  background-color: #b5bf00;
}
#grid .fresh-green .bottom-caption {
  background-color: #b5bf00;
}
#grid .fresh-green a:hover .bottom-caption {
  background-color: #a7b000;
}
#grid .dark-blue {
  background-color: #00539f;
}
#grid .dark-blue .bottom-caption {
  background-color: #00539f;
}
#grid .dark-blue a:hover .bottom-caption {
  background-color: #004b90;
}
#grid .grey {
  background-color: #91a9af;
}
#grid .grey .bottom-caption {
  background-color: #91a9af;
}
#grid .grey a:hover .bottom-caption {
  background-color: #88a2a9;
}

.lt-ie10 .element-container,
.lt-ie10 .element-container a {
  width: 100%;
  height: 100%;
}

.element-container {
  position: relative;
}
.element-container .element-content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 9;
  text-align: center;
}
.element-container .element-content .icon-plus {
  display: none;
  position: absolute;
  top: 45%;
  left: 45%;
  width: 38px;
  height: 38px;
  background: url("../img/sprite.png") no-repeat -204px -368px;
}
.element-container .element-content .tile-heading {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9;
}
#grid .element-container .element-content .tile-heading.social-heading {
  margin-top: 30px;
}
#grid .element-container .element-content .tile-heading.social-heading p {
  width: 100%;
  padding-left: 30px;
  font-size: 1.5em;
  text-shadow: none;
  color: #ffffff;
  text-align: left;
}
.element-container .element-content p {
  width: 70%;
  height: 50%;
  line-height: normal;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  font-size: 2.538em;
  /* 33px */
  text-shadow: 0 2px 5px #000;
}
.big .element-container .element-content p {
  padding-top: 16%;
}
.element-container .element-content.blue p {
  color: #00539f;
  text-shadow: none;
}
.element-container .element-content.blue p span {
  display: block;
  font-weight: bold;
  line-height: normal;
}
.element-container .element-content.map p {
  position: relative;
}
.element-container .element-content.map p:before {
  content: "";
  position: absolute;
  bottom: -44px;
  left: 48%;
  width: 36px;
  height: 36px;
  background: url("../img/sprite.png") no-repeat -553px -29px;
}

.overlay-slide {
  z-index: 999;
}
.overlay-slide a {
  display: block;
  height: 100%;
  padding: 0 7px;
}
.overlay-slide .arrow-cta {
  display: inline-block;
  margin: 5px 0 0 10px;
  display: inline-block;
  position: absolute;
  margin: 0 0 0 10px;
  width: 25px;
  top: -2px;
  height: 25px;
  background: url("../img/sprite.png") no-repeat -159px -338px;
}
.overlay-slide p, .overlay-slide .cta {
  text-align: center;
}
.overlay-slide .cta {
  font-size: 1.154em;
  /* 15px */
  position: relative;
  left: -11px;
}
.overlay-slide .business-areas {
  width: 157px;
  height: 65px;
}
.overlay-slide.green-panel {
  background-color: #009c7a;
  background-color: rgba(0, 156, 122, 0.8);
}
.overlay-slide.green-panel.width {
  right: 0;
  width: 0;
}
.overlay-slide.greenlt-panel {
  background-color: #7a9e90;
  background-color: rgba(122, 158, 144, 0.8);
}
.overlay-slide.greenlt-panel.width {
  right: 0;
  width: 0;
}
.overlay-slide.graydrk-panel {
  background-color: #534f4f;
  background-color: rgba(83, 79, 79, 0.8);
}
.overlay-slide.graydrk-panel.width {
  right: 0;
  width: 0;
}
.overlay-slide.lgtblue-panel {
  background-color: #00a0df;
  background-color: rgba(0, 160, 223, 0.8);
}
.overlay-slide.lgtblue-panel.width {
  right: 0;
  width: 0;
}
.overlay-slide.blue-panel {
  background-color: #00539f;
  background-color: rgba(0, 83, 159, 0.8);
}
.overlay-slide.blue-panel.width {
  right: 0;
  width: 0;
}
.overlay-slide.offgreen-panel {
  background-color: #adb020;
  background-color: rgba(173, 176, 32, 0.8);
}
.overlay-slide.offgreen-panel.width {
  right: 0;
  width: 0;
}
.overlay-slide.beige-panel {
  background-color: #88813c;
  background-color: rgba(136, 129, 60, 0.8);
}
.overlay-slide.beige-panel.width {
  right: 0;
  width: 0;
}
.overlay-slide.brown-panel {
  background-color: #ae6d0c;
  background-color: rgba(174, 109, 12, 0.8);
}
.overlay-slide.brown-panel.width {
  right: 0;
  width: 0;
}
.overlay-slide.orange-panel {
  background-color: #d98a12;
  background-color: rgba(217, 138, 18, 0.8);
}
.overlay-slide.orange-panel.width {
  right: 0;
  width: 0;
}
.overlay-slide.red-panel {
  background-color: #a72a5d;
  background-color: rgba(167, 42, 93, 0.8);
}
.overlay-slide.red-panel.width {
  right: 0;
  width: 0;
}
.generic .overlay-slide {
  padding: 13% 0 0;
}
.big.generic .overlay-slide {
  padding: 27% 0 0;
}
.tall .overlay-slide {
  padding: 50% 0 0;
}
.wide .overlay-slide {
  padding: 2% 0 0;
}

#countdown {
  position: absolute;
  right: 44px;
  top: 37px;
}

.generic.colour1 .bottom-caption {
  background-color: #752656;
}
.generic.colour2 .bottom-caption {
  background-color: #b5bf00;
}
.generic.colour3 .bottom-caption {
  background-color: #7d6990;
}
.generic.facebook:after, .generic.twitter:after {
  content: "";
  width: 60px;
  height: 60px;
  display: block;
  position: absolute;
  right: 25px;
  top: 70px;
}
@media (max-width: 320px) {
  .generic.facebook:after, .generic.twitter:after {
    top: 80px;
    right: 10px;
    position: relative;
    float: right;
  }
}
.generic.facebook .m-tweets, .generic.facebook .m-fbposts, .generic.twitter .m-tweets, .generic.twitter .m-fbposts {
  width: 63%;
  height: 100%;
  margin: 0 30px;
  position: absolute;
  top: 70px;
  font-size: 0.9em;
}
.generic.facebook .m-tweets ul li, .generic.facebook .m-fbposts ul li, .generic.twitter .m-tweets ul li, .generic.twitter .m-fbposts ul li {
  color: #ffffff;
  text-align: left;
  font-size: 17px;
}
.generic.facebook {
  background-color: #1aa2dd;
}
.generic.facebook:after {
  background: url(../img/assets-homepage/facebook.png);
  background-size: 60px;
}
.generic.twitter {
  background-color: #91a9af;
}
.generic.twitter:after {
  background: url(../img/assets-homepage/twitter.png);
  background-size: 60px;
}
.generic .wg-timer {
  position: relative;
}
.generic:hover {
  cursor: pointer;
}
.generic.twitter:hover, .generic.facebook:hover {
  cursor: auto;
}
.generic.count-down {
  background-color: #00539f;
  background-image: url(../img/assets-homepage/timer.png);
  padding: 0 0 0 10px;
  background-size: 260px;
  background-repeat: no-repeat;
  background-position: 140px 0px;
}
.generic.count-down h3 {
  text-align: left;
  max-width: 130px;
}
.generic.count-down .count-main {
  clear: both;
  overflow: hidden;
  padding: 0 0 0 10px;
}
.generic.count-down .count-sub {
  width: 15%;
  float: left;
  text-align: center;
  position: relative;
  margin-right: 25px;
}
.generic.count-down .count-sub:before {
  content: "";
  position: absolute;
  top: 3px;
  left: -15px;
  width: 1px;
  height: 30px;
  background: #ffffff;
}
.generic.count-down .count-sub.first:before {
  display: none;
}
.generic.count-down span {
  display: block;
  text-transform: uppercase;
  color: #dadada;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: normal;
  font-size: 0.8em;
}
.generic.count-down .days, .generic.count-down .hours, .generic.count-down .minutes, .generic.count-down .seconds, .generic.count-down h3 {
  color: #ffffff;
}
.generic.count-down .hours, .generic.count-down .minutes, .generic.count-down .seconds {
  clear: both;
  font-size: 1.8em;
}
.generic.count-down .closed {
  float: right;
  margin-right: 18%;
  margin-top: 40px;
  text-align: center;
  width: 30%;
}
.generic.count-down .m-tabbed-counter {
  position: absolute;
  top: 55px;
  left: -10px;
  width: 42%;
}
.generic.count-down .m-tabbed-counter li {
  line-height: 40px;
  padding-left: 10px;
}
.generic.count-down .m-tabbed-counter li a {
  color: #1aa0e5;
  display: block;
}
.generic.count-down .m-tabbed-counter li.active, .generic.count-down .m-tabbed-counter li:hover {
  background: #1aa1e5;
  background: -moz-linear-gradient(left, #1aa1e5 0%, #1aa1e5 30%, rgba(26, 161, 229, 0) 100%);
  background: -webkit-gradient(left top, right top, color-stop(0%, #1aa1e5), color-stop(30%, #1aa1e5), color-stop(100%, rgba(26, 161, 229, 0)));
  background: -webkit-linear-gradient(left, #1aa1e5 0%, #1aa1e5 30%, rgba(26, 161, 229, 0) 100%);
  background: -o-linear-gradient(left, #1aa1e5 0%, #1aa1e5 30%, rgba(26, 161, 229, 0) 100%);
  background: -ms-linear-gradient(left, #1aa1e5 0%, #1aa1e5 30%, rgba(26, 161, 229, 0) 100%);
  background: linear-gradient(to right, #1aa1e5 0%, #1aa1e5 30%, rgba(26, 161, 229, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1aa1e5', endColorstr='#1aa1e5', GradientType=1 );
}
.generic.count-down .m-tabbed-counter li.active a, .generic.count-down .m-tabbed-counter li:hover a {
  color: #ffffff;
}
.generic.count-down .m-tabbed-counter li.active a {
  color: #ffffff;
}
.generic.count-down .days {
  float: left;
  font-size: 5em;
}
.generic.count-down .days + span {
  margin: 45px 0 0;
}
.generic.count-down:hover {
  cursor: inherit;
}
.generic.corner-stamp:hover {
  cursor: default;
}
.generic:hover .overlay-slide, .generic:focus .overlay-slide, .generic.hoverMe .overlay-slide {
  opacity: 1;
  right: 0;
  width: 100%;
}
.generic:hover .overlay-slide.width, .generic:focus .overlay-slide.width, .generic.hoverMe .overlay-slide.width {
  width: 100%;
}

/*------------------------------------------
@start covers no js..
-------------------------------------------*/
.no-js .generic {
  position: relative;
}
.no-js .generic .overlay-slide {
  top: 0;
  right: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

/*------------------------------------------
@start footer section..
-------------------------------------------*/
.traffic-light {
  position: fixed;
  top: 30%;
  right: 3%;
  background: #eff2f3;
  padding: 15px 5px 5px;
  border-radius: 23px;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.55);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.55);
  z-index: 9999;
}
.traffic-light li {
  margin-bottom: 10px;
}
.traffic-light li a {
  display: block;
  background-color: #91a9af;
  padding: 5px;
  border-radius: 50%;
}
.traffic-light li.active a {
  background-color: #004996;
}
@media (max-width: 1024px) {
  .traffic-light {
    display: none;
  }
}

.inner-page-style-2 .breadcrumb-container {
  background-color: #1aa0e5;
}

#section-1 {
  padding-top: 0;
  background-color: #afaf19;
}
.inner-page-style-2 #section-1 {
  background-color: #1aa0e5;
}
#section-1 .m-title h1 {
  padding-top: 0;
  text-align: center;
  color: #fff;
}
#section-1 .content-text p {
  color: #fff;
}
#section-1 .image-holder {
  margin-top: 60px;
}

.in-container {
  z-index: 50;
  display: block;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#grid .in-container .generic {
  width: 400px;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  #grid .in-container .generic {
    width: 200px;
  }
}

.dark-purple.infinite {
  -webkit-animation-delay: 0.25s;
  -moz-animation-delay: 0.25s;
  -ms-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
.dark-purple.infinite a p {
  width: 140px;
}
.dark-purple.infinite a p:before {
  background-position: -396px -196px;
}

.dark-blue.infinite {
  -webkit-animation-delay: 2.5s;
  -moz-animation-delay: 2.5s;
  -ms-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.dark-blue.infinite a p {
  width: 160px;
}
.dark-blue.infinite a p:before {
  background-position: 0 -464px;
}

.light-blue.infinite {
  -webkit-animation-delay: 3s;
  -moz-animation-delay: 2.5s;
  -ms-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.light-blue.infinite a p {
  width: 110px;
}
.light-blue.infinite a p:before {
  background-position: 0 -528px;
}

.light-purple.infinite {
  -webkit-animation-delay: 4.25s;
  -moz-animation-delay: 2.5s;
  -ms-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.light-purple.infinite a p {
  width: 100px;
}
.light-purple.infinite a p:before {
  background-position: -397px -114px;
}

.lime-green.infinite {
  -webkit-animation-delay: 5.25s;
  -moz-animation-delay: 2.5s;
  -ms-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.lime-green.infinite a p {
  width: 100px;
}
.lime-green.infinite a p:before {
  background-position: 0px -367px;
}

.light-orange.infinite {
  -webkit-animation-delay: 3.25s;
  -moz-animation-delay: 2.5s;
  -ms-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.light-orange.infinite a p {
  width: 100px;
}
.light-orange.infinite a p:before {
  background-position: 0px -333px;
}

.light-green.infinite {
  -webkit-animation-delay: 2.25s;
  -moz-animation-delay: 2.5s;
  -ms-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
.light-green.infinite a p {
  width: 120px;
}
.light-green.infinite a p:before {
  background-position: 0px -463px;
}

.infinite {
  position: relative;
  z-index: 51;
}
.infinite a {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
}
.infinite a:hover {
  background: rgba(0, 0, 0, 0.1);
}
.infinite a p {
  font-size: 1.5em;
  margin: 0 auto;
  line-height: 1.3em;
  padding-top: 42px;
}
.infinite a p span {
  font-weight: bold;
}
.infinite a p:before {
  content: "";
  width: 64px;
  height: 64px;
  display: block;
  background: url(../img/sprite.png);
  position: relative;
  z-index: 52;
  margin: 0 auto;
}

@-webkit-keyframes Twister {
  0% {
    -webkit-transform: perspective(600px) rotateY(0deg);
  }
  30% {
    -webkit-transform: perspective(600px) rotateY(0deg);
  }
  45% {
    -webkit-transform: perspective(600px) rotateY(360deg);
  }
  83% {
    -webkit-transform: perspective(600px) rotateY(360deg);
  }
  98% {
    -webkit-transform: perspective(600px) rotateY(0deg);
  }
  100% {
    -webkit-transform: perspective(600px) rotateY(0deg);
  }
}
@-moz-keyframes Twister {
  0% {
    -moz-transform: perspective(600px) rotateY(0deg);
  }
  20% {
    -moz-transform: perspective(600px) rotateY(0deg);
  }
  35% {
    -moz-transform: perspective(600px) rotateY(360deg);
  }
  83% {
    -moz-transform: perspective(600px) rotateY(360deg);
  }
  98% {
    -moz-transform: perspective(600px) rotateY(0deg);
  }
  100% {
    -moz-transform: perspective(600px) rotateY(0deg);
  }
}
@-ms-keyframes Twister {
  0% {
    -ms-transform: perspective(600px) rotateY(0deg);
  }
  20% {
    -ms-transform: perspective(600px) rotateY(0deg);
  }
  35% {
    -ms-transform: perspective(600px) rotateY(360deg);
  }
  83% {
    -ms-transform: perspective(600px) rotateY(360deg);
  }
  98% {
    -ms-transform: perspective(600px) rotateY(0deg);
  }
  100% {
    -ms-transform: perspective(600px) rotateY(0deg);
  }
  100% {
    -ms-transform: perspective(600px) rotateY(0deg);
  }
}
@keyframes Twister {
  0% {
    transform: perspective(600px) rotateY(0deg);
  }
  20% {
    transform: perspective(600px) rotateY(0deg);
  }
  35% {
    transform: perspective(600px) rotateY(360deg);
  }
  83% {
    transform: perspective(600px) rotateY(360deg);
  }
  98% {
    transform: perspective(600px) rotateY(0deg);
  }
  100% {
    transform: perspective(600px) rotateY(0deg);
  }
}
/*------------------------------------------
@start mobile menu section..
-------------------------------------------*/
.mobile-trigger {
  float: right;
}
.mobile-trigger a {
  display: block;
  background-color: #91a9af;
  width: 45px;
  height: 45px;
  padding: 13px 11px;
}
.mobile-trigger .icon-bar {
  display: block;
  width: 25px;
  height: 4px;
  background-color: #ffffff;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.mobile-trigger .icon-bar + .icon-bar {
  margin-top: 3px;
}

/*2015 styles*/
.bottom-caption {
  position: absolute;
  bottom: 0;
  padding: 15px;
  font-size: 21px;
  text-align: left;
  color: #fff;
  width: 100%;
  background-color: #00549f;
}
.bottom-caption:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url("../img/sprite.png") no-repeat -288px -50px;
  background-size: 340px;
  top: 5px;
  right: 15px;
}

.container {
  background-color: #ffffff;
  position: relative;
  right: 0;
  z-index: 50;
  webkit-transition: right 0.5s ease-in-out;
  -moz-transition: right 0.5s ease-in-out;
  -o-transition: right 0.5s ease-in-out;
  transition: right 0.5s ease-in-out;
}
.container.js-mb-active {
  right: 200px;
  -webkit-box-shadow: 0 -4px 10px #333333;
  -moz-box-shadow: 0 -4px 10px #333333;
  box-shadow: 0 -4px 10px #333333;
}

.mobile-container {
  width: 100%;
  height: 100%;
  position: absolute;
  right: inherit;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  z-index: -1;
}
.js .mobile-container {
  position: absolute;
  width: 200px;
  right: 0;
  top: 0;
  opacity: 0;
}
.mobile-container.js-mb-active {
  z-index: 1;
  right: 0;
  opacity: 1;
  background-color: #ffffff;
}
.mobile-container.accordion ul.hidden-menu {
  display: none;
}
.mobile-container.accordion ul li {
  line-height: 43px;
  border-top: 1px solid #ffffff;
}
.mobile-container.accordion ul li.expanded > a:before {
  background-position: -580px 4px;
  width: 14px;
}
.mobile-container.accordion ul li a {
  position: relative;
  color: #ffffff;
  text-align: left;
  padding: 0 25px 0 20px;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
  display: block;
  background-color: #00549f;
}
.mobile-container.accordion ul li a:before {
  content: "";
  position: absolute;
  right: 10px;
  top: 14px;
  width: 10px;
  height: 15px;
  background: url(../img/sprite.png) no-repeat -640px -25px;
}
.mobile-container.accordion ul li a:hover, .mobile-container.accordion ul li a:focus {
  background-color: #762457;
}
.mobile-container.accordion ul li ul li a {
  background-color: #ebdee6;
  color: #762457;
}
.mobile-container.accordion ul li ul li a:hover, .mobile-container.accordion ul li ul li a:focus {
  color: #ffffff;
  background-color: #762457;
}
.mobile-container.accordion ul li ul li ul li a {
  background-color: #eff2f3;
}
.mobile-container.accordion .m-country-mb {
  margin: 20px 0 0;
}
.mobile-container.accordion .m-country-mb ul li a {
  background-color: #ebdee6;
  color: #00549f;
}

/*------------------------------------------
@start header section..
-------------------------------------------*/
.header {
  padding: 25px 0 22px;
  position: relative;
  z-index: 9;
  background-color: #ffffff;
}
.header .content-area.section {
  max-width: 1200px;
}

.identity .logo a {
  display: block;
  text-indent: -999em;
  width: 215px;
  height: 35px;
  margin-top: 13px;
  background: url("../img/sprite.png") no-repeat;
  background-position: 0 -387px;
  background-size: 340px 419px;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .identity .logo a {
    width: 266px;
    margin-top: 13px;
    background-position: 0 -427px;
    background-size: 375px 462px;
  }
}
.identity .logo span {
  color: #00549f;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.385em;
  /* 18px */
}

/*------------------------------------------
@start top section..
-------------------------------------------*/
.m-hero {
  overflow: hidden;
  position: relative;
}
.m-hero h1 {
  position: absolute;
  top: 12%;
  left: 6%;
  font-size: 3.000em;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
}
.m-hero h1 span {
  display: block;
}

.m-quick-search-container {
  background-color: #66868b;
}

.m-quick-search {
  padding: 10px 15px 25px;
}
.m-quick-search .m-search-form {
  max-width: 350px;
  margin: 0 auto;
}
.m-quick-search .m-search-form .center-content {
  position: relative;
  margin: 0px auto;
  float: none;
}
.m-quick-search .m-search-form select {
  width: 100%;
}
.m-quick-search .m-search-form h4 {
  text-align: center;
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 2em;
  color: #ffffff;
  float: left;
  line-height: 1.1em;
  margin: 0px 0px 10px 0px;
}
.m-quick-search .m-search-form p {
  color: #ffffff;
}
.m-quick-search legend {
  color: #ffffff;
  font-size: 1.308em;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
}
.m-quick-search .m-find-job {
  margin: 20px 0 0;
}
.m-quick-search .m-find-job .btn {
  width: 100%;
  padding: 0 10px;
  display: block;
  color: #ffffff;
  background-color: #b5bf00;
  border: 5px solid #ffffff;
  line-height: 37px;
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.692em;
  /* 19px */
  text-align: center;
  background-image: url(/img/assets-general/tab-arrow-right.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.m-quick-search .m-find-job .btn:hover {
  background-color: #004996;
}

/*------------------------------------------
@start main content section..
-------------------------------------------*/
.m-anchor-nav {
  margin: 4px 0px 0;
}
.m-anchor-nav ul li {
  display: inline-block;
  padding: 0px 18px;
  position: relative;
  color: #666666;
  /*line-height: 1.7em;*/
  width: 100%;
}
.m-anchor-nav ul li:before {
  content: "";
  position: absolute;
  top: 4px;
  right: -2px;
  width: 1px;
  height: 17px;
  /*border-right: 1px dotted $white;*/
}
.m-anchor-nav ul li a {
  display: block;
  color: #ffffff;
  font-size: 1.250em;
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
  padding: 5px 0px;
}
.m-anchor-nav ul li a:hover, .m-anchor-nav ul li a:focus {
  text-decoration: underline;
}
.m-anchor-nav ul.al-center {
  text-align: center;
  font-size: 1.15385em;
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
  padding: 30px 0px;
}
.m-anchor-nav ul.al-center li:last-child::before {
  border-right: 0px;
}

.breadcrumb-container {
  background-color: #7fa8ae;
}

.m-bread-crumb {
  margin: 15px 0;
}
.m-bread-crumb ul li {
  display: inline-block;
  padding: 0 10px;
  position: relative;
  color: #ffffff;
}
.m-bread-crumb ul li + li:before {
  content: "/";
  position: absolute;
  left: -3px;
}
.m-bread-crumb ul li a {
  display: block;
  color: #ffffff;
}
.m-bread-crumb ul li a:hover, .m-bread-crumb ul li a:focus {
  text-decoration: underline;
}

.m-meet-parents img {
  /*border: 6px solid $white;*/
}

.carousel ul li:not(.carousel ul li) {
  height: 368px;
}

.career-possibility ul {
  margin-top: 50px;
}
.career-possibility ul li {
  width: 100%;
  position: relative;
  float: left;
  margin-bottom: 5px;
  list-style: none;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .career-possibility ul li {
    margin-bottom: 35px;
  }
}
.career-possibility ul li img {
  float: left;
  margin-right: 36px;
  display: none;
}
.career-possibility ul li a {
  color: #FFFFFF;
}
.career-possibility ul li a:hover {
  text-decoration: underline;
}

.flexslider.thumbnails {
  width: 56%;
  overflow: hidden;
  position: relative;
  margin: 0px auto;
  display: none;
}
.flexslider.thumbnails .flex-direction-nav {
  display: none;
}
.flexslider.thumbnails .flex-control-nav {
  top: 0px;
  position: absolute;
}
.flexslider.thumbnails #slider {
  margin-top: 40px;
}
.flexslider.thumbnails ul.slides {
  padding-top: 50px;
}
.flexslider.thumbnails .flex-viewport {
  margin-bottom: 40px;
}
.flexslider.thumbnails .flex-viewport ul li {
  margin-right: 15px;
  border: 2px solid #7ba296;
}
.flexslider.thumbnails .flex-viewport ul li img {
  cursor: pointer;
}
.flexslider.thumbnails .flex-viewport ul li:last-child {
  margin-right: 0px;
}
.flexslider.thumbnails .flex-viewport ul li.flex-active-slide {
  border: 2px solid #ffffff;
}

/*------------------------------------------
@start footer section..
-------------------------------------------*/
.footer {
  margin: 65px 0 0;
}
.footer .footer-content {
  overflow: hidden;
  padding: 0 0 90px;
}
.footer h3 {
  color: #91a9af;
  line-height: 40px;
  text-align: center;
  margin: 0 0 3px;
  background-color: #eff2f3;
  position: relative;
}
.footer h3:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 11px;
  right: 10px;
  top: 16px;
  background: url(../img/sprite.png) no-repeat -628px -12px;
}
.footer h3.arrow-up:before {
  background-position: -605px -12px;
}
.footer h3:hover {
  cursor: pointer;
}
.footer .identity {
  display: none;
}
.footer .identity .logo a {
  height: 37px;
}
.footer .m-social {
  overflow: hidden;
  margin: 30px 0 0;
}
.footer .m-social ul {
  display: table;
  width: 100%;
}
.footer .m-social ul li {
  display: table-cell;
}
.footer .m-social ul li a {
  margin: 0 auto;
  display: block;
  text-indent: -999em;
  background: url(../img/sprite.png) no-repeat 0 0;
}
.footer .m-social ul li a:hover {
  opacity: 0.7;
}
.footer .m-social ul li.youtube a {
  width: 67px;
  height: 34px;
  background-position: -140px -165px;
}
.footer .m-social ul li.twitter a {
  width: 28px;
  height: 34px;
  background-position: -215px -167px;
}
.footer .m-social ul li.linkedIn a {
  width: 36px;
  height: 34px;
  background-position: -249px -166px;
}
.footer .m-social ul li.facebook a {
  width: 36px;
  height: 34px;
  background-position: -293px -166px;
}
.footer .m-social ul li.flickr a {
  width: 36px;
  height: 34px;
  background-position: -336px -166px;
}

.footer-content .content.hide {
  display: none;
}

.m-extras p {
  color: #004996;
}

.m-share-icons {
  position: fixed;
  z-index: 99;
  bottom: 0;
  right: 0;
  height: 55px;
  display: none;
  background-color: #f1eded;
}
.m-share-icons:before {
  content: "";
  position: absolute;
  left: -85px;
  width: 85px;
  height: 55px;
  background: url(../img/sprite.png) no-repeat 0 -110px;
}
.m-share-icons ul {
  position: relative;
  left: -23px;
  top: 15px;
  z-index: 9;
}
.m-share-icons ul li {
  display: inline-block;
  text-indent: -999em;
  margin: 0 0 0 8px;
}
.m-share-icons ul li:first-child {
  color: #393a41;
  text-indent: 0;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.231em;
  /* 16px */
}
.m-share-icons ul li.twitter a {
  background-position: -268px -201px;
}
.backgroundsize .m-share-icons ul li.twitter a {
  background-size: 325px;
  background-position: -83px -115px;
}
.m-share-icons ul li.facebook a {
  background-position: -344px -201px;
}
.backgroundsize .m-share-icons ul li.facebook a {
  background-size: 325px;
  background-position: -159px -115px;
}
.m-share-icons ul li.linkedIn a {
  background-position: -305px -201px;
}
.backgroundsize .m-share-icons ul li.linkedIn a {
  background-size: 325px;
  background-position: -119px -115px;
}
.m-share-icons ul li.top a {
  background-position: -575px -20px;
}
.m-share-icons ul li a {
  width: 28px;
  height: 28px;
  display: block;
  background: url(../img/sprite.png) no-repeat 0 -110px;
}
.m-share-icons ul li a:hover {
  opacity: 0.7;
}

/*------------------------------------------
@ALL WIDGETS START HERE..
-------------------------------------------*/
/*------------------------------------------
@sortable Video widget..
-------------------------------------------*/
.wg-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  border: 3px solid #fff;
  margin-top: 25px;
}
.wg-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*------------------------------------------
@Locations widget..
-------------------------------------------*/
.wg-locations-map {
  margin-top: 20px;
}
.wg-locations-map .locations-container {
  width: 100%;
}
.wg-locations-map .locations-container #map-canvas {
  height: 300px;
}
.wg-locations-map .catagories {
  width: 100%;
  margin: 10px 0;
}
.wg-locations-map .catagories ul {
  width: 100%;
  display: table;
}

/*------------------------------------------
@default carousel widget.. (had to override flexislide.css)
-------------------------------------------*/
.wg-default {
  float: left;
  position: relative;
  width: 100%;
}
.wg-default .slide-content {
  width: 100%;
  min-height: initial;
  margin: 0px;
  position: relative;
  display: block;
  background: none;
  padding: 4%;
  color: #666;
  background: #7d6990;
}
.wg-default .slide-content .text {
  padding: 40px 5%;
  width: 100%;
  position: relative;
  color: white;
  float: left;
  height: auto;
  max-height: 240px;
}
.wg-default .flex-direction-nav {
  display: none;
}
.wg-default ul {
  float: left;
  position: relative;
  width: 100%;
  display: block;
  top: 0px;
}
.wg-default .slides img {
  max-height: 232px;
}
.wg-default .flex-control-paging li a {
  background: #d8d2dd;
}
.wg-default .flex-control-paging li a.flex-active {
  background: #7d6990;
}

.wg-default.carousel h3, .wg-default.carousel p {
  color: #ffffff;
}
.wg-default.carousel p {
  padding: 20px 0px 0px 0px;
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
  display: inline-block;
}
.wg-default.carousel ul.slides li {
  width: 100%;
  height: initial;
}

.flexslider {
  background: none;
}

.wg-default.pale-green {
  background: none;
}
.wg-default.pale-green #slider {
  margin-top: 40px;
}
.wg-default.pale-green .flex-direction-nav {
  position: absolute;
  top: 16%;
  float: none;
}
.wg-default.pale-green .flexslider.thumbnails {
  display: none;
  width: 57%;
  margin: auto;
  margin: 0px auto 20px auto;
}
.wg-default.pale-green ol.flex-control-thumbs {
  display: block;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.wg-default.pale-green ol.flex-control-thumbs li {
  float: left;
  position: relative;
  margin: 5px 20px 0px 0px;
  display: block;
}
.wg-default.pale-green ol.flex-control-thumbs li:last-child {
  margin-right: 0px;
}
.wg-default.pale-green ol.flex-control-thumbs img {
  border: 2px solid #7ba296;
}
.wg-default.pale-green ol.flex-control-thumbs img.flex-active {
  border: 2px solid #ffffff;
}
.wg-default.pale-green .flex-viewport {
  margin-top: 20px;
}
.wg-default.pale-green .flex-control-nav {
  margin: 14px 0px;
  position: absolute;
  top: 0;
}
.wg-default.pale-green .flex-control-nav a {
  background: #a3bdb5;
}
.wg-default.pale-green .flex-control-nav a.flex-active {
  background: #fefdfe;
}
.wg-default.pale-green a.fw-read-more {
  display: block;
  clear: both;
  text-align: center;
  width: 100%;
  color: #ffffff;
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 0px;
  margin: 20px 0px 0px 0px;
  font-size: 1.5em;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}
.wg-default.pale-green .slides {
  padding-top: 40px;
}
.wg-default.pale-green .slides img {
  max-height: 1000px;
}
.wg-default.pale-green .slide-content {
  position: relative;
  float: left;
  display: block;
  color: #ffffff;
  width: 100%;
  background: none;
  padding-top: 0px;
}
.wg-default.pale-green .slide-content h3 {
  margin: 0px;
}
.wg-default.pale-green .lv-11 .flexslider .slides > li {
  min-height: 10px;
}
.wg-default.pale-green .lv-11 #carousel {
  padding: 0px;
  margin: 0px;
}
.wg-default.pale-green .lv-11 #carousel ul li {
  height: auto;
}
.wg-default.pale-green .wg-images {
  float: left;
  position: relative;
  width: 100%;
}
.wg-default.pale-green .wg-images .slide-content {
  width: 100%;
  min-height: initial;
  margin: 0px;
  position: relative;
  display: block;
  background: none;
  padding: 4%;
  color: #666;
  background: #7d6990;
}
.wg-default.pale-green .wg-images .slide-content .text {
  padding: 40px 5%;
  width: 100%;
  position: relative;
  color: white;
  float: left;
  height: auto;
  max-height: 240px;
}
.wg-default.pale-green .wg-images .flex-direction-nav {
  display: none;
  top: 30%;
}
.wg-default.pale-green .wg-images .slides {
  float: left;
  position: relative;
  width: 100%;
  display: block;
  top: 0px;
  padding: 0px;
}
.wg-default.pale-green .wg-images li {
  height: auto;
}
.wg-default.pale-green .wg-images li .content {
  float: left;
  width: 80%;
  padding: 0px 20%;
}
.wg-default.pale-green .wg-images li .content h2, .wg-default.pale-green .wg-images li .content p {
  float: left;
  width: 100%;
}
.wg-default.pale-green .wg-images img {
  max-height: 232px;
}
.wg-default.pale-green .wg-images .flex-control-paging li a.flex-active {
  background: #7d6990 !important;
}
.wg-default.pale-green .wg-images .flex-control-paging li a {
  background: #d8d2dd;
}
.wg-default.pale-green #carousel .flex-direction-nav {
  display: none;
}

.career-container {
  max-width: 940px;
  margin: 20px auto 0;
}

.filter-items {
  padding: 10px 0px;
}

/*ASTON CUSTOM TESCO STYLES*/
/*Block sizes*/
#freewall {
  margin: 0 auto;
}

.standard {
  width: 193px;
  height: 193px;
  box-sizing: border-box;
  /*padding: 10px;*/
}

.tall {
  width: 193px;
  height: 386px;
  box-sizing: border-box;
  /*padding: 10px;*/
}

.wide {
  width: 386px;
  height: 193px;
  box-sizing: border-box;
  /*padding: 10px;*/
}

.big {
  width: 386px;
  height: 386px;
  box-sizing: border-box;
  /*padding: 10px;*/
}

.border {
  border: 1px solid #ebebeb;
}

/*block styles*/
.quote {
  background-color: #92a9af;
  padding: 20px;
}
@media (min-width: 311px) and (max-width: 335px) {
  .quote {
    min-height: 320px;
  }
}
.quote:before {
  content: "";
  display: block;
  height: 44px;
  width: 44px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAYAAAAehFoBAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAj1JREFUeNrsmEsrRVEUx8+9zuW63u9HyFuXAeWGpIjyGkikfDNfQEYyMmFkLBMpA+7Es5BHXpFy/beWkpyzlrP3ORmcVf/Jvbu1fmftvdZe50QymYylYRGoE0pCq5a/1giN2BoOWqBxqAq68BG0GpokYMsLcAKagLp9zmgMGoYGoejXj7aHbVmA8nyGraY4ZT//+AtwPx2BLJ9hVU3MObHZwsKaJGC/rQ+aopiWV+ApchQE7DS3KMr8PxQQbJISY+kAt0GjAh+qkR9qwFZAs27H4JsdOB2JYmhesAMPdGEceYTNhhahHGbdG7QO7doORTYDxRknl9AydK+R3dHfWtcPe6Y4505HohdqZpzcGYBtEHQeldmVL9jfgFVWxxgn79CaJmyEa19kG9CpW9GpazCXcbIDHWt2hS6ohllzRLEcu4SaEQYYJ6/QliasyuqIoPNscm2th6rWzbapCHRM1Uc5s0a1yTM3YPXUKcHZ3TZwSaQEa3a4i6MeKhU89YMmrKqPdmbNE5TmgDsEwfYNZLdVMO3t0W66AjcKiiBtALhJcv1ys4QtaDHXtFW6VieokxMOuFIwM1waeuXhusMt3W6uwOWCYDcGgEsFiWHjRAXdQdmjAeASE3EUcJHA0YsBYEmcV26BKrh8gaNCqJaZqq4YHwWCOHEmzidwQji3ur19qA8pS4LvGZz1kFyPRNwKxozEiQoGHlOWbQo4FgJ7+6QgdpIVEHDs3zx1kBYCh8AhcAgcAofAIfC/sg8BBgDBXVDSOg0kiQAAAABJRU5ErkJggg==);
  position: absolute;
  bottom: 25px;
  right: 25px;
}
.quote.school {
  background-color: #7d688f;
}
.quote.grads {
  background-color: #b5be00;
}
.quote.summer {
  background-color: #1aa1e5;
}
.quote .quote-copy p {
  color: #ffffff;
  text-align: center;
}
.quote .author {
  margin-top: 10%;
  padding: 0 50px;
}
.quote .author p {
  color: #ffffff;
  text-align: center;
}
.quote .author .name {
  font-weight: bold;
}

.twitter {
  /* background-color: #92a9af; */
  font-size: 16px;
  color: #fff;
  /* overflow: hidden; */
}

.tweet-text {
  padding: 25px;
  float: left;
  width: 70%;
}

.free-wall .facebook {
  background-color: #e5e5e5;
  overflow: hidden;
}
.free-wall .facebook:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 6px;
  right: 14px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAASCAYAAACJgPRIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAI9JREFUeNpi/P//PwMMTJ8+PQ1I5QGxBhAzw8RZkBQUAKl+BiyAEWQSUAEjkP0CiMWwKYKZJIlFgSMQP0BWxIam4GNmZuYBuHXTpk0zANJSQLwVSdEXILZFtu48FmfwIIn/YGIgDB4Ro+gJyDpBIJYD4otIEp+AWB7K/g0LJwUg5z6a7wRgHGKsG+aKAAIMAN1mJhZgxqVUAAAAAElFTkSuQmCC);
  width: 9px;
  height: 18px;
  z-index: 99999;
}
.free-wall .facebook .image {
  width: 50%;
  float: right;
}
.free-wall .facebook .banner {
  z-index: 9999;
  background-color: #e5e5e5;
}
.free-wall .facebook img {
  float: right;
}
.free-wall .facebook .post-content {
  width: 50%;
  height: 100%;
  position: relative;
}
.free-wall .facebook .post-content:before {
  content: "";
  display: block;
  border-top: 20px solid transparent;
  border-right: 25px solid #e5e5e5;
  border-bottom: 20px solid transparent;
  position: absolute;
  top: 50%;
  left: -12px;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.free-wall .facebook .post-content .text {
  padding: 15px;
  color: #626262;
  font-size: 16px;
  word-wrap: break-word;
  max-height: 163px;
  overflow: hidden;
}
@media (max-width: 335px) {
  .free-wall .facebook .image {
    width: 100%;
    height: 50%;
    overflow: hidden;
    text-align: center;
    float: none;
  }
  .free-wall .facebook .image img {
    float: none;
  }
  .free-wall .facebook .post-content {
    width: 100%;
    height: 50%;
  }
}
.free-wall .twitter {
  background-color: #e5e5e5;
  overflow: hidden;
}
.free-wall .twitter:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 6px;
  right: 14px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAQCAYAAAAbBi9cAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUZJREFUeNqc1M8rBGEcx/ExJin5UaJEubC1By5uclTubkoOQxIl5UTbKslfoOQwBycuDm60pz1w25ULRUoiSkqUtJsf76++U9PT/LDzrdfO9Dyzn9lnnvluneu6FtWOFyu+ZrGKXlwjj32MwLH56MQpOmJCFrGjIVL92MO9Hi8kKKOK6AsJacR6xA268YRlCfrQwSxKWEBD4OJBtMb82kesSdA5HnSwBVu4wSZG0ZPw7PKe531KUBc28BWYlC+voICDhKC/TbJ1ndtWuvrGsx9U1qdfnyKoJMvyg6qYQSVFUME/sfV4jBxeawj5wa4ZJDWMthqCZBOuwoLmcfnPkDd5CYMDtvFiDWEO7wk7NYW7qKAmjGMJzREhsiGTODQnHExoV2eM1jDrTHe3HDbpaPdKw05jDAPaKrKEW5zo38WRjoXWrwADALrpQwnIVwbVAAAAAElFTkSuQmCC);
  width: 18px;
  height: 16px;
  z-index: 99999;
}
.free-wall .twitter .image {
  height: 50%;
  width: 100%;
  overflow: hidden;
  text-align: center;
}
.free-wall .twitter .banner {
  z-index: 9999;
  background-color: #e5e5e5;
}
.free-wall .twitter .post-content {
  width: 100%;
  height: 50%;
  position: relative;
}
.free-wall .twitter .post-content:before {
  content: "";
  display: block;
  border-left: 20px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 20px solid #e5e5e5;
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: none;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .free-wall .twitter .post-content:before {
    display: block;
  }
}
.free-wall .twitter .post-content .text {
  padding: 15px;
  color: #626262;
  font-size: 16px;
  word-wrap: break-word;
  max-height: 163px;
  overflow: hidden;
}
.free-wall .twitter .post-content .banner {
  left: 0;
}

.twitter-buttons ul {
  display: table;
}
.twitter-buttons ul li {
  display: table-cell;
  padding-right: 10px;
}
.twitter-buttons ul li.twitter {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABmElEQVR4Ae3OvUvVcRjG4ScTo0WSloiQIoLEoGhyDRTX6GWJEImWQKIQGrIhoheioNaGKGhpiKCh/yADKUJqcJLGoMheDkJx1KdrjDie8/tyzhkCb7ju+RMb21gnd/LZUj+nucNtTtFPANBLEOH+NUyU4gzfSAC+MEGwgynurRdwmGVGiAIXyBYWWKPGvvUCpkl+MkpUMESdrOAzE5xlvFHALZKkzgw9RBN3yYpWSF6wuVHAeRKAdxwh1vGaLPCUPqJRwG5WyQbmmGSA+Ms8WdEim4jGAfCYbKLOWx4wwwJZ0QeiWcBBdjJHdsFsq4Cr1HhDdsGTVgFjZBddbBXQwzzZJYeaB8AwX8kOWyRaB8B+XpEddKUkYIRpXrJGtukH20sCdrFMdshlonoATLJGtuk9feUBcJxPZDH4zhBRGgCwhaM8Jwv8YoxoN2AbN/hNVlRjnCgJ6CXYyh6O8ZAaWWCeA0RpwCCPWCVLscQl+ojSAIC9XOMj2cIKs5yjn4D2AgAGOcE0N7nPdaYYZYAA2g8o998HbAT8AXjZKQTgI9L4AAAAAElFTkSuQmCC);
  width: 32px;
  height: 32px;
}
.twitter-buttons a {
  background: url(../img/social/everything-sprite.png);
  position: relative;
}
.twitter-buttons a.retweet {
  width: 19px;
  height: 11px;
  background-position: 57px -3px;
}
.twitter-buttons a.retweet:hover {
  background-position: 38px -3px;
}
.twitter-buttons a.retweet.active {
  background-position: 19px -3px;
}
.twitter-buttons a.fav {
  width: 14px;
  height: 14px;
  background-position: 104px -3px;
  top: 2px;
}
.twitter-buttons a.fav:hover {
  background-position: 88px -3px;
}
.twitter-buttons a.fav.active {
  background-position: 72px -3px;
}
.twitter-buttons a.reply {
  width: 15px;
  height: 10px;
  background-position: -1px -3px;
}
.twitter-buttons a.reply:hover {
  background-position: -17px -3px;
}

.facebook-block {
  background-color: #094e99;
}

.facebook-block {
  background-color: #094e99;
}

/*Styles*/
.profile-block.school {
  background-color: #7d688f;
}
.profile-block.grads {
  background-color: #b5be00;
}
.profile-block.summer {
  background-color: #1aa1e5;
}
.profile-block .profile-pic-container {
  width: 68%;
  left: 50%;
  margin-top: 2.5%;
  position: relative;
  border-radius: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.profile-block .profile-pic-container img {
  width: 100%;
  border: 3px solid #ffffff;
  border-radius: 50%;
  position: relative;
}
@media (max-width: 380px) {
  .profile-block .profile-pic-container {
    width: 55%;
    margin-top: 5%;
  }
}
.profile-block.video .profile-pic-container {
  width: 100%;
  margin-top: 0;
  border-radius: 0;
}
.profile-block.video .profile-pic-container img {
  border-radius: 0;
}
.profile-block.video .profile-pic-container:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/img/play.png);
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.2);
  background-position: top 35% center;
  background-size: 150px;
  z-index: 999;
}

.banner {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 5px 15px;
}
.big .banner {
  padding: 15px;
}
.banner a {
  display: inline-block;
  color: #626262;
}
.school .banner {
  background-color: #89719f;
}
.grads .banner {
  background-color: #bfc90f;
}
.summer .banner {
  background-color: #3aabe6;
}
.banner .name p {
  color: #ffffff;
}
.banner .position p {
  color: #ffffff;
}

.lightbox {
  display: none;
  height: 100%;
}
.lightbox.profile-style .content-container {
  max-width: 500px;
  padding: 0 20px;
  margin: 0 auto;
}
.lightbox.profile-style.video .wg-video {
  margin-top: 0;
}
.lightbox.profile-style .profile-info {
  padding: 35px 40px 17px;
  width: 100%;
}
.lightbox.profile-style .profile-info .content-container {
  max-width: 500px;
  padding: 0 20px;
  margin: 0 auto;
  overflow: hidden;
}
.lightbox.profile-style .profile-info .content-container .profile-shot {
  float: left;
  width: 30%;
  padding-right: 5%;
}
.lightbox.profile-style .profile-info .content-container .profile-shot img {
  width: 100%;
  border: 3px solid #ffffff;
  border-radius: 50%;
}
.lightbox.profile-style .profile-info .details {
  width: 70%;
  float: left;
}
.lightbox.profile-style .profile-info .details h2 {
  color: #ffffff;
  font-size: 24px;
  text-align: left;
}
.lightbox.profile-style .profile-info .details p {
  font-size: 17px;
  color: #ffffff;
}
.lightbox.profile-style .profile-copy {
  max-height: 280px;
  padding: 35px 40px 17px;
  overflow: auto;
}
.lightbox.profile-style .profile-copy h2 {
  font-size: 24px;
  color: #ffffff;
  text-align: left;
}
.lightbox.profile-style .profile-copy p {
  color: #ffffff;
  text-align: left;
}
.lightbox.profile-style.school {
  background-color: #89719f;
}
.lightbox.profile-style.school .light-content {
  background-color: #89719f;
}
.lightbox.profile-style.school .light-content .profile-info {
  background-color: #7d688f;
}
.lightbox.profile-style.grads {
  background-color: #bfc90f;
}
.lightbox.profile-style.grads .light-content {
  background-color: #bfc90f;
}
.lightbox.profile-style.grads .light-content .profile-info {
  background-color: #b5be00;
}
.lightbox.profile-style.grads .light-content .profile-copy {
  background-color: #bfc90f;
}
.lightbox.profile-style.summer {
  background-color: #3aabe6;
}
.lightbox.profile-style.summer .light-content {
  background-color: #3aabe6;
}
.lightbox.profile-style.summer .light-content .profile-info {
  background-color: #1aa1e5;
}
.lightbox.facebook-style:before, .lightbox.twitter-style:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 6px;
  right: 14px;
}
.lightbox.facebook-style .light-content, .lightbox.twitter-style .light-content {
  background-color: #e5e5e5;
  height: 100%;
}
.lightbox.facebook-style .light-content .feature-image, .lightbox.twitter-style .light-content .feature-image {
  width: 100%;
  text-align: center;
  background-color: #dcdcdc;
}
.lightbox.facebook-style .light-content .feature-image img, .lightbox.twitter-style .light-content .feature-image img {
  width: 26%;
}
.lightbox.facebook-style .light-content .feature-copy, .lightbox.twitter-style .light-content .feature-copy {
  padding: 30px 10px;
  max-width: 500px;
  margin: 0 auto;
  word-wrap: break-word;
  text-align: center;
}
.lightbox.facebook-style:before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAASCAYAAACJgPRIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAI9JREFUeNpi/P//PwMMTJ8+PQ1I5QGxBhAzw8RZkBQUAKl+BiyAEWQSUAEjkP0CiMWwKYKZJIlFgSMQP0BWxIam4GNmZuYBuHXTpk0zANJSQLwVSdEXILZFtu48FmfwIIn/YGIgDB4Ro+gJyDpBIJYD4otIEp+AWB7K/g0LJwUg5z6a7wRgHGKsG+aKAAIMAN1mJhZgxqVUAAAAAElFTkSuQmCC);
  width: 9px;
  height: 18px;
}
.lightbox.twitter-style:before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAQCAYAAAAbBi9cAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUZJREFUeNqc1M8rBGEcx/ExJin5UaJEubC1By5uclTubkoOQxIl5UTbKslfoOQwBycuDm60pz1w25ULRUoiSkqUtJsf76++U9PT/LDzrdfO9Dyzn9lnnvluneu6FtWOFyu+ZrGKXlwjj32MwLH56MQpOmJCFrGjIVL92MO9Hi8kKKOK6AsJacR6xA268YRlCfrQwSxKWEBD4OJBtMb82kesSdA5HnSwBVu4wSZG0ZPw7PKe531KUBc28BWYlC+voICDhKC/TbJ1ndtWuvrGsx9U1qdfnyKoJMvyg6qYQSVFUME/sfV4jBxeawj5wa4ZJDWMthqCZBOuwoLmcfnPkDd5CYMDtvFiDWEO7wk7NYW7qKAmjGMJzREhsiGTODQnHExoV2eM1jDrTHe3HDbpaPdKw05jDAPaKrKEW5zo38WRjoXWrwADALrpQwnIVwbVAAAAAElFTkSuQmCC);
  width: 18px;
  height: 16px;
}
.lightbox.twitter-style .light-content .feature-image {
  background-color: #ffffff;
}
.lightbox.twitter-style .light-content .feature-image img {
  width: 100%;
}

.layout {
  background-color: #faf9f5;
}

#freewall {
  max-width: 980px;
  background-color: #fff;
}

.filter-items {
  max-width: 980px;
  width: 100%;
  display: table;
  table-layout: fixed;
  margin: 0 auto;
  margin-bottom: 20px;
}

.filter-label {
  cursor: pointer;
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 0px 5px 5px 0px;
  padding: 10px;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  cursor: pointer;
}
.filter-label.active, .filter-label:hover {
  color: #ffffff;
}
.filter-label.active:before, .filter-label:hover:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #094e99;
  left: 40%;
  bottom: -20px;
  display: none;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .filter-label {
    color: #ffffff;
  }
  .filter-label.active:before, .filter-label:hover:before {
    display: block;
  }
}
.filter-label.all {
  background-color: #094e99;
}
.filter-label.all.active:before, .filter-label.all:hover:before {
  border-top-color: #094e99;
}
.filter-label.grads {
  background-color: #b5be00;
}
.filter-label.grads.active:before, .filter-label.grads:hover:before {
  border-top-color: #b5be00;
}
.filter-label.summer {
  background-color: #1aa1e5;
}
.filter-label.summer.active:before, .filter-label.summer:hover:before {
  border-top-color: #1aa1e5;
}
.filter-label.school {
  background-color: #7d688f;
}
.filter-label.school.active:before, .filter-label.school:hover:before {
  border-top-color: #7d688f;
}

.wg-career-finder a.show-filter.secondary {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 7px;
  color: #fff;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  background: #666666;
}
.wg-career-finder a.show-filter.secondary:after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 11px;
  background: url(../img/sprite.png) no-repeat -522px -2px;
  margin-left: 20px;
}
.wg-career-finder a.show-filter.secondary.active:after {
  background: url(../img/sprite.png) no-repeat -481px -2px;
}
.wg-career-finder .filter-navs.secondary-filter-container {
  background: #82a7ad;
  padding: 20px;
  margin-bottom: 20px;
  display: none;
}
.wg-career-finder .filter-navs.secondary-filter-container h3 {
  color: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 21px;
  margin-bottom: 20px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter {
  display: block;
  width: 100%;
  margin-top: 45px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item {
  display: block;
  text-align: center;
  color: #fff;
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
  margin-bottom: 10px;
  float: left;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item input {
  display: none;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.creative label:before {
  background-position: -83px -415px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.creative input:checked + label:before {
  background-position: -213px -545px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.creative input:disabled + label:before {
  background-position: -277px -609px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.creative:hover label:before {
  background-position: -148px -480px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.problem label:before {
  background-position: -148px -415px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.problem input:checked + label:before {
  background-position: -278px -545px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.problem input:disabled + label:before {
  background-position: -342px -609px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.problem:hover label:before {
  background-position: -213px -480px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.thinker label:before {
  background-position: -213px -414px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.thinker input:checked + label:before {
  background-position: -343px -545px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.thinker input:disabled + label:before {
  background-position: -407px -609px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.thinker:hover label:before {
  background-position: -278px -480px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.initiative label:before {
  background-position: -278px -415px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.initiative input:checked + label:before {
  background-position: -408px -545px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.initiative input:disabled + label:before {
  background-position: -472px -609px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.initiative:hover label:before {
  background-position: -343px -480px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.details label:before {
  background-position: -343px -415px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.details input:checked + label:before {
  background-position: -473px -545px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.details input:disabled + label:before {
  background-position: -537px -609px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.details:hover label:before {
  background-position: -408px -480px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.organised label:before {
  background-position: -408px -415px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.organised input:checked + label:before {
  background-position: -538px -545px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.organised input:disabled + label:before {
  background-position: -82px -674px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.organised:hover label:before {
  background-position: -473px -480px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.communicator label:before {
  background-position: -473px -415px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.communicator input:checked + label:before {
  background-position: -83px -610px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.communicator input:disabled + label:before {
  background-position: -147px -674px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.communicator:hover label:before {
  background-position: -538px -480px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.team label:before {
  background-position: -538px -414px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.team input:checked + label:before {
  background-position: -148px -610px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.team input:disabled + label:before {
  background-position: -212px -674px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.team:hover label:before {
  background-position: -83px -545px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.relationship label:before {
  background-position: -83px -480px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.relationship input:checked + label:before {
  background-position: -213px -610px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.relationship input:disabled + label:before {
  background-position: -278px -675px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.relationship:hover label:before {
  background-position: -148px -545px;
}
.wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item label:before {
  content: "";
  width: 64px;
  height: 64px;
  display: block;
  background: url(/img/sprite.png);
  margin: 0 auto 10px;
  position: relative;
}
.wg-career-finder .filter-navs a.show-filter {
  display: block;
  width: 100%;
  padding: 7px;
  color: #fff;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  background: #992727;
}
.wg-career-finder .filter-navs a.show-filter:after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 11px;
  background: url(../img/sprite.png) no-repeat -522px -2px;
  margin-left: 20px;
}
.wg-career-finder .filter-navs a.show-filter.active:after {
  background: url(../img/sprite.png) no-repeat -481px -2px;
}
.wg-career-finder .filter-navs ul.primary-filter {
  display: none;
  width: 100%;
  margin-bottom: 20px;
}
.wg-career-finder .filter-navs ul.primary-filter li {
  display: block;
  padding: 7px;
  color: #fff;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  color: #e1e7e9;
  color: rgba(255, 255, 255, 0.6);
}
.wg-career-finder .filter-navs ul.primary-filter li#all {
  background: #2b70b0;
}
.wg-career-finder .filter-navs ul.primary-filter li#all.activePrimary {
  border-bottom: 5px solid #2b70b0;
  border-top: 5px solid #2b70b0;
  color: #fff;
}
.wg-career-finder .filter-navs ul.primary-filter li#all .all-items {
  color: #fff;
}
.wg-career-finder .filter-navs ul.primary-filter li.grads {
  background: #b5bf00;
}
.wg-career-finder .filter-navs ul.primary-filter li.grads.activePrimary {
  border-bottom: 5px solid #b5bf00;
  border-top: 5px solid #b5bf00;
  color: #fff;
}
.wg-career-finder .filter-navs ul.primary-filter li.interns {
  background: #1aa0e5;
}
.wg-career-finder .filter-navs ul.primary-filter li.interns.activePrimary {
  border-bottom: 5px solid #1aa0e5;
  border-top: 5px solid #1aa0e5;
  color: #fff;
}
.wg-career-finder .filter-navs ul.primary-filter li.school {
  background: #7d688f;
}
.wg-career-finder .filter-navs ul.primary-filter li.school.activePrimary {
  border-bottom: 5px solid #7d688f;
  border-top: 5px solid #7d688f;
  color: #fff;
}
.wg-career-finder #position-categories {
  margin-top: 10px;
  width: 90%;
  margin: 0 auto;
}
.wg-career-finder #position-categories .mix {
  display: none;
}
.wg-career-finder .no-results {
  display: none;
}
.wg-career-finder .position-categories .position {
  width: 100%;
  margin: 0 1.8% 2.8% 0;
  display: block;
}
.wg-career-finder .position-categories .position.grads .position-heading {
  background: #b5bf00;
}
.wg-career-finder .position-categories .position.interns .position-heading {
  background: #1aa0e5;
}
.wg-career-finder .position-categories .position.school .position-heading {
  background: #7d688f;
}
.wg-career-finder .position-categories .position .position-heading {
  padding: 5px;
}
.wg-career-finder .position-categories .position .position-heading p {
  text-align: center;
  color: #fff;
}

/*------------------------------------------
@video thumbnails widget..
-------------------------------------------*/
.wg-sortable-videos ul li, .wg-video-thumbnails ul li {
  width: 100%;
  border: 3px solid #ffffff;
  background-color: #ffffff;
  margin: 0 0 20px;
}
.wg-sortable-videos ul li a, .wg-video-thumbnails ul li a {
  display: block;
  position: relative;
}
.wg-sortable-videos ul li a:hover, .wg-sortable-videos ul li a:focus, .wg-video-thumbnails ul li a:hover, .wg-video-thumbnails ul li a:focus {
  opacity: 0.8;
}
.wg-sortable-videos ul li a img, .wg-video-thumbnails ul li a img {
  width: 100%;
}
.wg-sortable-videos ul li.video a:before, .wg-video-thumbnails ul li.video a:before {
  content: "";
  position: absolute;
  width: 76px;
  height: 72px;
  left: 35%;
  top: 10%;
  background: url(../img/sprite.png) no-repeat -47px -165px;
}
.wg-sortable-videos ul li .content, .wg-video-thumbnails ul li .content {
  position: relative;
}
.wg-sortable-videos ul li .content .cta, .wg-video-thumbnails ul li .content .cta {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ffffff;
  line-height: 37px;
  padding: 0 25px 0 0;
}
.wg-sortable-videos ul li .content .cta:before, .wg-video-thumbnails ul li .content .cta:before {
  content: "";
  position: absolute;
  width: 62px;
  height: 37px;
  left: -62px;
  background: url(../img/sprite.png) no-repeat -277px -293px;
}
.wg-sortable-videos ul li .content .cta span, .wg-video-thumbnails ul li .content .cta span {
  color: #762457;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
  position: relative;
}
.wg-sortable-videos ul li .content .cta span:before, .wg-video-thumbnails ul li .content .cta span:before {
  content: "";
  position: absolute;
  right: -14px;
  top: 2px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #762457;
}
.wg-sortable-videos .m-overview, .wg-video-thumbnails .m-overview {
  padding: 4%;
  min-height: 54px;
}

.page-section {
  padding: 40px 0;
}
.page-section.feature {
  padding: 40px 0 0;
}
.page-section .page-content.section {
  padding-top: 40px;
}
.page-section .page-content .intro p {
  font-weight: bold;
  font-size: 18px;
}
.page-section .page-content .content-text {
  padding: 0 2% 40px;
  text-align: center;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .page-section .page-content .content-text {
    padding: 0 8% 40px;
  }
}
.page-section .page-content ul {
  border: 1px solid #ece9ee;
  padding: 20px 6% 20px 10%;
  list-style-type: initial;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .page-section .page-content ul {
    padding: 20px 16%;
  }
  .page-section .page-content ul li {
    font-size: 1.53846em;
  }
}
.page-section .page-content ul li {
  text-align: left;
  font-size: 1.38462em;
  line-height: normal;
}
.page-section .page-content p {
  margin: 1em 0;
}
.page-section .qualities .row {
  margin: 0;
}
.page-section .qualities .row .col {
  padding: 0;
  margin: 0;
  width: 100%;
  margin-right: 0.5%;
}
.page-section .qualities .row .col:last-child {
  margin: 0;
}
.page-section .qualities .q-tile {
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}
.page-section .qualities .q-tile .tile-title {
  padding: 15px 20px;
  background-color: #7fa8ae;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.page-section .qualities .q-tile .tile-title p {
  margin: 0;
  color: #ffffff;
}
.page-section .qualities .q-tile.two-three {
  width: 100%;
  float: left;
  height: 352px;
  background-color: #992727;
  margin-bottom: 1%;
  overflow: hidden;
}
.page-section .qualities .q-tile.two-three img {
  z-index: 1;
  height: auto;
  max-height: none;
  max-width: none;
  min-height: 100%;
  min-width: 100%;
  width: auto;
  position: absolute;
  top: 0%;
  left: 0%;
}
.page-section .qualities .q-tile.one-one {
  width: 49.4%;
  margin: 0 1.005% 1% 0;
  float: left;
  height: 114px;
  background-color: #b5bf00;
  padding: 18px;
  padding: 8px 10px;
}
.page-section .qualities .q-tile.one-one p {
  text-align: center;
  color: #ffffff;
  margin: 0;
}
.page-section .qualities .q-tile.one-one:nth-child(2n+2) {
  margin: 0 0 1% 0;
}
.page-section .value-items ul {
  padding: 0;
  border: 0;
  list-style-type: none;
}
.page-section .value-items ul li {
  margin-bottom: 15px;
  height: 245px;
  background-color: #88769a;
  padding: 0 20px;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 320px) {
  .page-section .value-items ul li {
    height: 270px;
  }
}
.page-section .value-items ul li h3 {
  font-size: 20px;
  color: #7d6990;
}
.page-section .value-items ul li p {
  font-size: 16px;
  color: #7d6990;
}
.page-section .value-items ul li .number {
  width: 16.65%;
  float: left;
  height: 100%;
  background-color: #fff;
  box-sizing: border-box;
  font-size: 50px;
  color: #7d6990;
  text-align: center;
  padding: 35px 0;
}
.page-section .value-items ul li .value-image {
  width: 33.3%;
  float: left;
  height: 100%;
  box-sizing: border-box;
  display: none;
  position: relative;
  overflow: hidden;
}
.page-section .value-items ul li .value-image img {
  max-width: none;
  width: auto;
  height: 100%;
}
.page-section .value-items ul li .value-content {
  width: 83.15%;
  float: left;
  background: #ece9ee;
  height: 100%;
  box-sizing: border-box;
  padding: 5px 30px;
}
.page-section.style-1 {
  background-color: #762457;
}
.page-section.style-1 h2 {
  color: #ffffff;
}
.page-section.style-1 p {
  color: #ffffff;
}
.page-section.style-2 {
  background-color: #ece9ee;
}
.page-section.style-2 h2 {
  color: #7b6991;
}
.page-section.style-2 p {
  color: #7b6991;
}
.page-section.style-2 li {
  color: #7b6991;
}
.page-section.style-2 .page-content {
  background-color: #ffffff;
}
.page-section.style-3 {
  background-color: #7d6990;
}
.page-section.style-3 h2 {
  color: #ffffff;
}
.page-section.style-3 h3 {
  color: #ffffff;
}
.page-section.style-3 p {
  color: #ffffff;
}
.page-section.style-4 {
  background-color: #ebf1ef;
}
.page-section.style-4 h2 {
  color: #7fa8ae;
}
.page-section.style-4 p {
  color: #7fa8ae;
}
.page-section.style-5 {
  background-color: #ffffff;
}
.page-section.style-5.green h2 {
  color: #b5bf00;
}
.page-section.style-5.green p {
  color: #b5bf00;
}
.page-section.style-5 h2 {
  color: #7d6990;
}
.page-section.style-5 p {
  color: #7d6990;
}
.page-section.style-6 {
  background-color: #7fa8ae;
}
.page-section.style-6 h2 {
  color: #7fa8ae;
}
.page-section.style-6 p {
  color: #7fa8ae;
}
.page-section.style-6 .page-content {
  background-color: #ffffff;
}
.page-section.style-7 {
  background-color: #ffffff;
}
.page-section.style-7 h2 {
  color: #afaf19;
}
.page-section.style-7 p {
  color: #afaf19;
}
.page-section.style-8 {
  background-color: #eff2f3;
}
.page-section.style-8 h2 {
  color: #666666;
}
.page-section.style-8 p {
  color: #666666;
}
.page-section.style-9 {
  background-color: #e08a01;
}
.page-section.style-9 h2 {
  color: #ffffff;
}
.page-section.style-9 p {
  color: #ffffff;
}
.page-section.style-9 .lv-4 {
  background-color: #e08a01;
}
.page-section.style-10 {
  background-color: #762457;
}
.page-section.style-10 h2 {
  color: #ffffff;
}
.page-section.style-10 p {
  color: #ffffff;
}

.timeline-values {
  position: relative;
  display: none;
}
.timeline-values .time-block {
  width: 6px;
  height: 15px;
  background-color: #b2b2b2;
  position: absolute;
  top: 22px;
}
.timeline-values .time-block.first {
  left: 17px;
}
.timeline-values .time-block.last {
  right: 11px;
}
.timeline-values ul {
  position: relative;
}
.timeline-values ul:before {
  content: "";
  display: block;
  position: absolute;
  width: 96%;
  left: 23px;
  height: 2px;
  background-color: #b2b2b2;
  bottom: -8px;
}
.timeline-values ul.year-nav {
  border: 0;
  padding: 0;
  list-style-type: none;
  width: 85%;
  margin: 0 auto;
  display: table;
}
.timeline-values ul.year-nav li {
  display: table-cell;
  text-align: center;
  position: relative;
  color: #b2b2b2;
}
.timeline-values ul.year-nav li.active, .timeline-values ul.year-nav li:hover {
  color: #666666;
}
.timeline-values ul.year-nav li.active:before, .timeline-values ul.year-nav li:hover:before {
  background-color: #666666;
}
.timeline-values ul.year-nav li.active a, .timeline-values ul.year-nav li:hover a {
  color: #666666;
}
.timeline-values ul.year-nav li:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -12px;
  left: 49%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #b2b2b2;
}
.timeline-values ul.year-nav li a {
  color: #b2b2b2;
}
.timeline-values ul.year-nav li a:hover {
  color: #666666;
  cursor: pointer;
}

.timeline-slide {
  margin-top: 35px;
}
.timeline-slide .flexslider-timeline ul {
  border: 0;
  padding: 0;
}
.timeline-slide .flexslider-timeline ul li .item-container {
  overflow: hidden;
  padding: 30px 5px;
}
.timeline-slide .flexslider-timeline ul li .timeline-item {
  width: 99%;
  margin-right: 1%;
  float: left;
}
.timeline-slide .flexslider-timeline ul li .timeline-item .year-title {
  padding: 13px 0;
  border-bottom-left-radius: 100% 70px;
  border-bottom-right-radius: 100% 70px;
}
.timeline-slide .flexslider-timeline ul li .timeline-item .content-container {
  -webkit-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.25);
  padding: 0 0 15px;
  min-height: 230px;
}
.timeline-slide .flexslider-timeline ul li .timeline-item.color-1 .year-title {
  background-color: #afaf19;
}
.timeline-slide .flexslider-timeline ul li .timeline-item.color-1 .year-title h3 {
  color: #fff;
  margin: 0;
  text-align: center;
}
.timeline-slide .flexslider-timeline ul li .timeline-item.color-2 .year-title {
  background-color: #7fa8ae;
}
.timeline-slide .flexslider-timeline ul li .timeline-item.color-2 .year-title h3 {
  color: #fff;
  margin: 0;
  text-align: center;
}
.timeline-slide .flexslider-timeline ul li .timeline-item .year-title {
  color: #fff;
}
.timeline-slide .flexslider-timeline ul li .timeline-item .year-copy {
  padding: 0 15px;
}
.timeline-slide .flexslider-timeline ul li .timeline-item .year-copy p {
  text-align: center;
  font-size: 18px;
}
.timeline-slide .flexslider-timeline ul li .timeline-item:last-child {
  margin-right: 0;
}

.timeline-container .timeline-slide-nav .custom-navigation {
  position: relative;
}
.timeline-container .timeline-slide-nav .custom-navigation .flex-direction-nav {
  top: 0;
  border: 0;
  padding: 0;
  list-style-type: none;
}
.timeline-container .timeline-slide-nav .custom-navigation .flex-direction-nav a {
  opacity: 1;
  width: 25%;
  height: 22px;
  top: 0;
}
.timeline-container .timeline-slide-nav .custom-navigation .flex-direction-nav a.flex-prev {
  background-image: url(../img/timeline-prev.png);
  left: 26%;
}
.timeline-container .timeline-slide-nav .custom-navigation .flex-direction-nav a.flex-next {
  background-image: url(../img/timeline-next.png);
  right: 5%;
}

.new-tabbed-content .tabbed-nav {
  margin-bottom: 2px;
}
.new-tabbed-content .tabbed-nav ul {
  margin: 0;
  padding: 0;
  border: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item {
  display: block;
  background-color: #f0f0f0;
  border-right: 2px solid #fff;
  box-sizing: border-box;
  height: 163px;
  padding: 30px 20px 15px;
  position: relative;
  transition: background-color 0.3s ease;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item .tab-title {
  position: absolute;
  bottom: 25px;
  transition: bottom 0.3s ease;
  left: 0;
  width: 100%;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item:before {
  content: "";
  display: block;
  height: 47px;
  width: 100%;
  background-color: #7b6991;
  position: absolute;
  bottom: -47px;
  left: 0;
  border-bottom-left-radius: 100% 70px;
  border-bottom-right-radius: 100% 70px;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item.active {
  background-color: #7b6991;
  padding: 15px 20px 15px;
  height: 163px;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item.active .tab-title {
  bottom: 17px;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item.active:before {
  opacity: 1;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item.active .icon {
  width: 105px;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item.active h4 {
  color: #fff;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item.active.type-1 h4, .new-tabbed-content .tabbed-nav .tabbed-nav-item.active.type-2 h4, .new-tabbed-content .tabbed-nav .tabbed-nav-item.active.type-3 h4, .new-tabbed-content .tabbed-nav .tabbed-nav-item.active.type-4 h4, .new-tabbed-content .tabbed-nav .tabbed-nav-item.active.type-5 h4 {
  color: #fff;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item:last-child {
  border: 0;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item:hover {
  cursor: pointer;
  background-color: #7b6991;
  padding: 15px 20px 15px;
  height: 163px;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item:hover .tab-title {
  bottom: 17px;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item:hover .tab-title h4 {
  color: #fff;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item:hover:before {
  opacity: 1;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item:hover .icon {
  width: 105px;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item h4 {
  font-size: 16px;
  font-weight: lighter;
  margin: 0;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item.type-1 h4 {
  color: #856a93;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item.type-2 h4 {
  color: #0b9eda;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item.type-3 h4 {
  color: #8f8b34;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item.type-4 h4 {
  color: #b9c033;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item.type-5 h4 {
  color: #82a597;
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item .icon {
  width: 81px;
  margin: 0 auto 15px;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  transition: padding 0.3s ease, width 0.3s ease;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.new-tabbed-content .tabbed-nav .tabbed-nav-item h4 {
  text-align: center;
  width: 100%;
}
.new-tabbed-content .tabbed-content {
  background-color: #ebe9ef;
  padding: 65px 20px 50px;
}
.new-tabbed-content .tabbed-content .tabbed-content-item {
  display: none;
  text-align: center;
}
.new-tabbed-content .tabbed-content .tabbed-content-item p {
  margin: 0;
}
.new-tabbed-content .tabbed-content .tabbed-content-item:first-child {
  display: block;
}

.wg-video-thumbnails ul li {
  border: none;
  background-color: #b5bf00;
}
.wg-video-thumbnails ul li p {
  color: #ffffff;
}
.wg-video-thumbnails ul.washed-purple li {
  background: #ffffff;
}
.wg-video-thumbnails ul.washed-purple li a {
  border: 3px solid #ffffff;
}
.wg-video-thumbnails ul.washed-purple li p {
  color: #666666;
}
.wg-video-thumbnails .m-overview {
  min-height: 40px;
}

.wg-sortable-videos ul li, .wg-video-thumbnails ul li {
  width: 100%;
  border: 3px solid #ffffff;
  background-color: #ffffff;
  margin: 0 0 20px;
}
.wg-sortable-videos ul li a, .wg-video-thumbnails ul li a {
  display: block;
  position: relative;
}
.wg-sortable-videos ul li a:hover, .wg-sortable-videos ul li a:focus, .wg-video-thumbnails ul li a:hover, .wg-video-thumbnails ul li a:focus {
  opacity: 0.8;
}
.wg-sortable-videos ul li a:before, .wg-video-thumbnails ul li a:before {
  content: "";
  position: absolute;
  width: 76px;
  height: 72px;
  left: 35%;
  top: 10%;
  background: url(../img/sprite.png) no-repeat -47px -165px;
}
.wg-sortable-videos ul li a img, .wg-video-thumbnails ul li a img {
  width: 100%;
}
.wg-sortable-videos .m-overview, .wg-video-thumbnails .m-overview {
  padding: 4%;
  min-height: 86px;
}

.m-grouped {
  overflow: hidden;
}
.m-grouped .m-item-lg, .m-grouped .m-item-sm, .m-grouped .m-item-md {
  float: left;
}
.m-grouped .m-item-lg img, .m-grouped .m-item-sm img, .m-grouped .m-item-md img {
  width: 100%;
}
.m-grouped .m-item-lg {
  width: 42.3%;
}
.m-grouped .m-item-sm {
  width: 23.08%;
}
.m-grouped .m-item-md {
  width: 34.4%;
}

/*------------------------------------------
@large scale tabbed widget..
-------------------------------------------*/
.wg-tabbed-content {
  background-color: #ffffff;
  padding: 10px 0;
}
.wg-tabbed-content h3 {
  color: #b5bf00;
  font-size: 2em;
  line-height: normal;
}
.wg-tabbed-content p {
  font-size: 1.4em;
  line-height: 1.4em;
}
.wg-tabbed-content > ul li {
  line-height: 30px;
  background-color: #f0f0f0;
  color: #b5bf00;
}
.wg-tabbed-content > ul li a {
  display: block;
  text-align: center;
  color: inherit;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
  position: relative;
}
.wg-tabbed-content > ul li a.current, .wg-tabbed-content > ul li a:hover {
  background-color: #b5bf00;
  color: #ffffff;
}
.wg-tabbed-content > ul li a.current:before, .wg-tabbed-content > ul li a:hover:before {
  position: absolute;
  bottom: -10px;
  left: 43%;
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #b5bf00;
  display: none;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .wg-tabbed-content > ul li a.current:before, .wg-tabbed-content > ul li a:hover:before {
    display: block;
  }
}
.wg-tabbed-content .tab-content {
  display: none;
}
.wg-tabbed-content .tab-content.current {
  display: inherit;
}
.wg-tabbed-content .tab-content .main-content {
  padding: 0 6% 6%;
}
.no-js .wg-tabbed-content .content > div:target {
  display: block;
}
.lt-ie9.no-js .wg-tabbed-content .content > div {
  display: block;
}
.wg-tabbed-content .m-tabbed-modules li {
  margin: 0 0 20px;
  position: relative;
}
.wg-tabbed-content .m-tabbed-modules li img {
  width: 100%;
}
.wg-tabbed-content .m-tabbed-modules li span {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #ffffff;
  line-height: normal;
  background-color: #762457;
  padding: 5px 0;
  font-size: 18px;
  /* 18px */
}
.wg-tabbed-content .m-tabbed-modules li:hover span {
  background-color: #eff2f3;
  color: #762457;
  padding-top: 10px;
}

.m-title {
  margin: 0 0 20px;
}
.m-title h1 {
  text-align: center;
  color: #762457;
}

.m-job-info {
  margin: 14px 0 15px;
  overflow: hidden;
  background-color: #762457;
  position: relative;
}
.m-job-info .col:first-child {
  padding-left: 0;
}
.m-job-info img {
  width: 100%;
}
.m-job-info h1 {
  text-align: center;
  color: #762457;
}
.m-job-info h4, .m-job-info p {
  color: #ffffff;
  text-align: left;
}
.m-job-info h4 {
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
}
.m-job-info .content-info {
  background-color: #ffffff;
  padding: 2%;
}

.m-key-info {
  padding-left: 1.63934%;
  width: 100%;
}

.m-job-status {
  background-color: #91a9af;
  width: 100%;
  padding: 0 0 1.5% 1.63934%;
}
.m-job-status h4, .m-job-status p {
  margin: 0.4em 0 0;
}

.wg-images ul li {
  list-style-type: disc;
  line-height: normal;
  color: #7d6990;
}
.wg-images .content p {
  font-size: 1.5em;
  color: #7d6990;
}
.wg-images .content ul, .wg-images .content ol {
  color: #7d6990;
  font-size: 1.5em;
}
.wg-images .content ul li, .wg-images .content ol li {
  line-height: normal;
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
}

ul.wg-image-hovers {
  display: block;
  width: 90%;
  position: relative;
  margin: 0px 5%;
}
ul.wg-image-hovers.hints-tips a {
  cursor: default;
}
ul.wg-image-hovers.hints-tips .image {
  cursor: default;
}
ul.wg-image-hovers li {
  float: left;
  width: 96%;
  height: 160px;
  margin: 20px 2% 0px 2%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
ul.wg-image-hovers li a:hover .info, ul.wg-image-hovers li a:focus .info {
  top: 0;
}
ul.wg-image-hovers li .image {
  z-index: 0;
  position: relative;
  display: block;
}
ul.wg-image-hovers li .image img {
  width: 100%;
  height: 100%;
}
ul.wg-image-hovers li .image:hover .info {
  top: 0px;
}
ul.wg-image-hovers li .info {
  position: absolute;
  top: 118px;
  width: 100%;
  left: 0px;
  background: #7d6990;
  padding: 8px 10% 16px 10%;
  height: 100%;
  z-index: 99;
  overflow: hidden;
  color: #ffffff;
  -webkit-transition: top 0.3s ease-in-out;
  -moz-transition: top 0.3s ease-in-out;
  -o-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
  background-image: url(/img/assets-general/tab-arrow-up.png);
  background-repeat: no-repeat;
  background-position: right 10px top 15px;
}
ul.wg-image-hovers li .info h4 {
  padding-right: 10px;
}
ul.wg-image-hovers li .info.adjust {
  top: 95px;
}
ul.wg-image-hovers li .info p {
  color: #FFFFFF;
}
ul.wg-image-hovers li:hover .info, ul.wg-image-hovers li:focus .info {
  background-image: url(/img/assets-general/tab-arrow-down.png);
}
ul.wg-image-hovers li p, ul.wg-image-hovers li h4 {
  color: #ffffff;
  margin: 0px;
  text-align: center;
}
ul.wg-image-hovers li h4 {
  display: block;
  line-height: 1.4em;
  float: left;
  width: 100%;
  margin: 5px 0px 7px 0px;
  text-align: left;
}
ul.wg-image-hovers li p {
  font-size: 1em;
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
  text-align: left;
}

/*------------------------------------------
@generic accordion use across site ..
-------------------------------------------*/
.wg-accordion {
  line-height: 40px;
}
.wg-accordion p {
  line-height: 1.5em;
}
.wg-accordion ul {
  padding-left: 20px;
}
.wg-accordion ul li {
  list-style-type: disc;
  line-height: normal;
  font-size: 1.231em;
  color: #666;
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.5em;
}
.wg-accordion .content a {
  display: inline-block;
  font-size: inherit;
}
.wg-accordion div >
a {
  display: block;
  background-color: #b5bf00;
  color: #ffffff;
  padding: 5px 49px 5px 22px;
  margin: 0 0 2px;
  font-size: 1.385em;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
  position: relative;
}
.wg-accordion div >
a:before {
  content: "";
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  background: url(../img/sprite.png) no-repeat -242px -300px;
}
.wg-accordion div >
a.clicked:before {
  background-position: -206px -300px;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .wg-accordion div >
  a {
    font-size: 1.769em;
  }
}
.wg-accordion .accordion.cream a {
  background: #f4f5d9;
  color: #b5bf00;
  padding: 0 49px 0px;
}
.wg-accordion .accordion.cream a:before {
  background: url(../img/sprite.png) no-repeat -242px -334px;
}
@media (max-width: 320px) {
  .wg-accordion .accordion.cream a {
    padding: 10px 45px 10px 20px;
    font-size: 1.35em;
    line-height: normal;
  }
}
.wg-accordion .accordion.cream a.clicked:before {
  background-position: -207px -334px;
}
.wg-accordion .accordion.purple a {
  background-color: #762457;
}
.wg-accordion .accordion.purple .content {
  background: #ece9ee;
}
.wg-accordion .accordion.purple .content .center {
  text-align: center;
}
.wg-accordion .content {
  overflow: hidden;
  background-color: #eff2f3;
  padding: 20px;
}
.lv-6 .wg-accordion .content {
  background-color: #ffffff;
}

.lv-11 .flexslider .slides > li {
  min-height: 10px;
}

.wg-tabbed-content .intro {
  padding: 0 8% 4%;
}

.wg-contents {
  background-color: white;
  overflow: hidden;
  padding: 20px;
}

.reveal {
  float: left;
  width: 100%;
  position: relative;
}
.reveal span {
  display: block;
  position: relative;
  width: 100%;
  float: left;
}
.reveal span .text {
  display: block;
}
.reveal .item {
  float: left;
  position: relative;
  margin-bottom: 40px;
  width: 100%;
}
.reveal .item h3 {
  display: block;
  background-color: #b5bf00;
  color: #ffffff;
  padding: 12px 22px;
  margin: 0 0 2px;
  font-size: 1.1em;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
  position: relative;
  clear: both;
}
.reveal .item .container img {
  width: 100%;
}
.reveal .item .text {
  padding: 5px 0;
  position: relative;
  top: 0px;
  float: left;
}
.reveal .item .text a {
  min-width: 180px;
  display: block;
  position: relative;
  width: auto;
  margin-top: 10px;
  padding: 10px 35px 10px 10px;
  background: url("../img/assets-careers/rm-arrow.png") no-repeat center right #b5bf00;
  color: #fff;
  font-size: 1.3em;
}
.reveal .item .text a:hover {
  background: url("../img/assets-careers/rm-arrow.png") no-repeat center right #9ba400;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .reveal .item .text {
    padding: 20px 3%;
  }
  .reveal .item .text a {
    font-size: 1.6em;
    letter-spacing: 0.08em;
  }
}

/*------------------------------------------
@ucas calculator ..
-------------------------------------------*/
.wg-ucas-cal {
  margin: 20px 0 0;
  padding: 10px 10px 50px;
  background-color: #ffffff;
}
.wg-ucas-cal .ucas-row, .wg-ucas-cal .totals {
  background-color: #ffffff;
  padding: 2%;
  display: table;
  width: 100%;
  /* Chosen */
}
.no-js .wg-ucas-cal .ucas-row select, .no-js .wg-ucas-cal .totals select {
  width: 40%;
}
.wg-ucas-cal .ucas-row select, .wg-ucas-cal .totals select, .wg-ucas-cal .ucas-row .total1, .wg-ucas-cal .totals .total1, .wg-ucas-cal .ucas-row .total2, .wg-ucas-cal .totals .total2, .wg-ucas-cal .ucas-row .total3, .wg-ucas-cal .totals .total3 {
  display: table-cell;
}
.wg-ucas-cal .ucas-row .total1, .wg-ucas-cal .totals .total1, .wg-ucas-cal .ucas-row .total2, .wg-ucas-cal .totals .total2, .wg-ucas-cal .ucas-row .total3, .wg-ucas-cal .totals .total3 {
  width: 23%;
  text-align: center;
  border: 2px solid #d3d3d3;
  padding: 2px;
  color: #762457;
}
.wg-ucas-cal .ucas-row #grade1_chosen, .wg-ucas-cal .totals #grade1_chosen, .wg-ucas-cal .ucas-row #grade2_chosen, .wg-ucas-cal .totals #grade2_chosen, .wg-ucas-cal .ucas-row #grade3_chosen, .wg-ucas-cal .totals #grade3_chosen {
  margin-right: 0;
}
.wg-ucas-cal .ucas-row .chosen-single, .wg-ucas-cal .totals .chosen-single {
  background: #dfdfdf;
  /* Old browsers */
  background: -moz-linear-gradient(top, #dfdfdf 0%, #efeeee 50%, #dedede 51%, #dfdfdf 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #dfdfdf), color-stop(50%, #efeeee), color-stop(51%, #dedede), color-stop(100%, #dfdfdf));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #dfdfdf 0%, #efeeee 50%, #dedede 51%, #dfdfdf 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #dfdfdf 0%, #efeeee 50%, #dedede 51%, #dfdfdf 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #dfdfdf 0%, #efeeee 50%, #dedede 51%, #dfdfdf 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #dfdfdf 0%, #efeeee 50%, #dedede 51%, #dfdfdf 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dfdfdf', endColorstr='#dfdfdf',GradientType=0 );
  /* IE6-9 */
}
.wg-ucas-cal .ucas-row .chosen-single, .wg-ucas-cal .totals .chosen-single {
  border-radius: 5px;
}
.wg-ucas-cal .ucas-row .chosen-single span, .wg-ucas-cal .totals .chosen-single span, .wg-ucas-cal .ucas-row .chosen-results li, .wg-ucas-cal .totals .chosen-results li {
  color: #762457;
}
.wg-ucas-cal .ucas-row .chosen-results li:hover, .wg-ucas-cal .totals .chosen-results li:hover {
  background-color: #762457;
  color: #ffffff;
}
.wg-ucas-cal .ucas-row .chosen-container, .wg-ucas-cal .totals .chosen-container {
  margin-right: 8%;
}
.wg-ucas-cal .totals {
  color: #762457;
  text-align: center;
  margin: 10px 0 10px auto;
}
.wg-ucas-cal .totals p {
  color: #762457;
}
.wg-ucas-cal .totals span {
  padding: 5px;
}
.wg-ucas-cal .grand-sum {
  background-color: #762457;
  padding: 2%;
  color: #ffffff;
}
.wg-ucas-cal .grand-total, .wg-ucas-cal .reset {
  background-color: #b5bf00;
  line-height: 40px;
  color: #ffffff;
  text-align: center;
}
.wg-ucas-cal .grand-total:hover, .wg-ucas-cal .reset:hover, .wg-ucas-cal .grand-total:focus, .wg-ucas-cal .reset:focus {
  opacity: 0.8;
}
.wg-ucas-cal .reset {
  background-color: #91a9af;
  margin: 10px 0 0;
}
.wg-ucas-cal .heading {
  background-color: #762457;
  color: #ffffff;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
  display: table;
  width: 100%;
}
.wg-ucas-cal .heading li {
  display: table-cell;
  text-align: center;
  line-height: 40px;
}

.wg-google-map {
  border: 2px solid white;
  display: block;
  position: relative;
  margin-top: 20px;
}
.wg-google-map #map-canvas {
  position: relative;
  width: 100%;
  height: 400px;
}
.wg-google-map #map-canvas img {
  max-width: inherit;
}

.js-show-events.clicked:before {
  background-position: -242px -300px !important;
}
.js-show-events.active:before {
  background-position: -206px -300px !important;
}

.wg-google-map-list {
  overflow: hidden;
}
.js .wg-google-map-list {
  display: none;
}
.wg-google-map-list ul {
  display: block;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  clear: both;
}
.wg-google-map-list ul.head, .wg-google-map-list ul.data {
  float: left;
  color: white;
}
.wg-google-map-list ul.head {
  background: #762457;
  padding: 2%;
}
.wg-google-map-list ul.data {
  background: #ffffff;
  padding: 2%;
}
.wg-google-map-list ul.data li {
  padding: 5px 0px;
}
.wg-google-map-list ul.data li .col h4, .wg-google-map-list ul.data li .col p {
  color: #762457;
}
.wg-google-map-list ul.data li:nth-child(odd) {
  background: #ffffff;
}
.wg-google-map-list ul.data li:nth-child(even) {
  background: #ece9ee;
}
.wg-google-map-list ul li {
  display: block;
  float: left;
  width: 100%;
}
.wg-google-map-list ul li div.col h4 {
  margin: 5px 0px;
}
.wg-google-map-list ul li div.col h4, .wg-google-map-list ul li div.col p {
  color: #ffffff;
}

/*

  2-col, target portrait tablets
*/
@media only screen and (min-width: 35em), only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  div[role="main"] .block {
    background-color: green;
  }

  .desktop-only {
    display: block;
  }

  .mobile-only {
    display: none;
  }

  /*------------------------------------------
  @start general..
  -------------------------------------------*/
  h2 {
    font-size: 4em;
  }

  .btn {
    font-size: 1.3em;
  }

  /*------------------------------------------
  @start HOMEPAGE GRID STYLES..
  -------------------------------------------*/
  .twitter .post-content .text {
    max-height: 150px;
  }

  .filter-label {
    display: table-cell;
    width: auto;
    border-right: 5px solid #faf9f5;
  }
  .filter-label:last-child {
    border-right: 0;
  }
  .filter-label:first-child {
    border-left: 0;
  }
  .filter-label:nth-child(3n) {
    border-left: 0;
  }

  .timeline-values {
    display: block;
  }

  .timeline-container .timeline-slide-nav .custom-navigation .flex-direction-nav a {
    width: 12px;
    top: 38px;
  }
  .timeline-container .timeline-slide-nav .custom-navigation .flex-direction-nav a.flex-prev {
    left: 5%;
  }

  .timeline-slide .flexslider-timeline ul li .timeline-item {
    width: 24%;
    -webkit-transition: -webkit-transform 0.1s ease-in;
    -moz-transition: -moz-transform 0.1s ease-in;
    -o-transition: -o-transform 0.1s ease-in;
    transition: transform 0.1s ease-in;
    background-color: white;
  }
  .timeline-slide .flexslider-timeline ul li .timeline-item.active {
    -ms-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  #grid div.corner-stamp {
    width: 400px;
  }
  #grid div.corner-stamp h1 {
    font-size: 7em;
    margin-bottom: 0.4em;
  }
  #grid div.corner-stamp h1:after {
    bottom: -22px;
    content: "";
    position: absolute;
    left: 10px;
    width: 76px;
    height: 18px;
    background-color: #ffffff;
    background: url("../img/sprite.png") no-repeat -490px -25px;
  }

  #grid .generic img {
    width: 100%;
  }

  /*------------------------------------------
  @start global locations section..
  -------------------------------------------*/
  .global-locations #grid div.corner-stamp {
    background-color: #00539f;
  }
  .global-locations #grid div.corner-stamp h1 {
    font-size: 4.462em;
    /* 58px */
    line-height: normal;
    margin-top: 0;
  }
  .global-locations #grid div.corner-stamp h1:after {
    top: 110%;
  }

  .element-container .element-content p {
    width: 81%;
  }

  .overlay-slide .cta:before {
    right: 10%;
  }
  .wide .overlay-slide {
    padding: 10% 0 0;
  }

  /*------------------------------------------
  @start header section..
  -------------------------------------------*/
  /*------------------------------------------
  @start header section..
  -------------------------------------------*/
  .new-tabbed-content .tabbed-nav .tabbed-nav-item {
    display: table-cell;
  }
  .new-tabbed-content .tabbed-nav .tabbed-nav-item h4 {
    font-size: 14px;
  }
  .new-tabbed-content .tabbed-nav .tabbed-nav-item.active .icon {
    width: 107px;
  }
  .new-tabbed-content .tabbed-nav .tabbed-nav-item.active .tab-title {
    bottom: -12px;
  }
  .new-tabbed-content .tabbed-nav .tabbed-nav-item:hover .icon {
    width: 107px;
  }
  .new-tabbed-content .tabbed-nav .tabbed-nav-item:hover .tab-title {
    bottom: -12px;
  }

  .page-section .qualities .q-tile.one-one {
    padding: 33px;
  }
  .page-section .value-items ul li {
    margin-bottom: 50px;
    height: 175px;
  }
  .page-section .value-items ul li .number {
    height: 100%;
    font-size: 80px;
  }

  /*------------------------------------------
  @start top section..
  -------------------------------------------*/
  .m-hero .g-hero {
    width: 15%;
    float: left;
    margin: 0 0.4% 0 0;
  }
  .m-hero .g-hero > div {
    margin: 0 0 5px;
  }
  .m-hero .g-hero div + div {
    margin: 0;
  }
  .m-hero .main-hero {
    float: left;
    width: 84.6%;
  }
  .m-hero h1 {
    position: absolute;
    top: 48%;
    left: 19%;
  }

  .career-possibility ul li img {
    display: block;
    width: 100%;
    margin: 0px;
  }

  .m-anchor-nav ul li {
    width: auto;
  }
  .m-anchor-nav ul li:before {
    border-right: 1px dotted #ffffff;
  }
  .m-anchor-nav ul.al-center li:last-child::before {
    border-right: 0px;
  }

  .controls {
    position: relative;
    margin: 0px auto;
    width: 50%;
  }

  ul.wg-image-hovers li {
    width: 45%;
  }
  ul.wg-image-hovers li img {
    width: 100%;
  }

  .lv-11 .flexslider .slides > li {
    min-height: 10px;
  }

  .wg-career-finder #position-categories {
    width: 100%;
    margin: 0;
    padding-left: 1.8%;
  }
  .wg-career-finder #position-categories .mix {
    display: none;
  }
  .wg-career-finder .position-categories .position {
    width: 47.5%;
    margin: 0 1.8% 2.8% 0;
    display: block;
  }

  /*------------------------------------------
  @start footer section..
  -------------------------------------------*/
  .footer .m-social {
    float: right;
  }
  .footer .m-social ul li {
    display: inline-block;
    margin: 0 0 0 10px;
  }
  .footer ul li:first-child a {
    margin-top: 0;
  }
  .footer ul li a {
    margin: 15px 0 0;
  }
  .footer ul li a:hover, .footer ul li a:focus {
    text-decoration: underline;
  }
  .footer ul li:first-child {
    margin-top: 0;
  }

  .footer .identity {
    display: block;
    float: none;
    margin: 0 0 33px;
  }
  .footer .identity.home {
    float: left;
    margin-top: 56px;
  }

  /*------------------------------------------
  @ALL WIDGETS START HERE..
  -------------------------------------------*/
  /*------------------------------------------
  @sortable video widget..
  -------------------------------------------*/
  .wg-sortable-videos ul li a:before, .wg-video-thumbnails ul li a:before {
    top: 29%;
    left: 43%;
  }

  /*------------------------------------------
  @sortable Locations widget..
  -------------------------------------------*/
  .wg-locations-map .locations-container #map-canvas {
    height: 350px;
  }

  /*------------------------------------------
  @large scale tabbed widget..
  -------------------------------------------*/
  .wg-tabbed-content > ul {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  .wg-tabbed-content > ul li {
    display: table-cell;
    line-height: 50px;
  }
  .wg-tabbed-content .m-tabbed-modules {
    width: 100%;
  }
  .wg-tabbed-content .m-tabbed-modules li {
    float: left;
    margin: 0 0 20px 2%;
    width: 23%;
  }
  .wg-tabbed-content .m-tabbed-modules li:nth-child(9), .wg-tabbed-content .m-tabbed-modules li:nth-child(5), .wg-tabbed-content .m-tabbed-modules li:nth-child(1) {
    margin-left: 0;
  }

  /*------------------------------------------
  @generic accordion use across site ..
  -------------------------------------------*/
  .wg-accordion {
    line-height: 66px;
  }
  .wg-accordion div > a {
    font-size: 1.769em;
    /* 23px */
    padding-top: 0;
    padding-bottom: 0;
  }
  .wg-accordion div > a:before {
    right: 18px;
    top: 18px;
  }

  .lv-11 .flexslider .slides > li {
    min-height: 10px;
  }

  .flexslider.wg-images.carousel .slides li {
    height: auto;
  }

  .wg-default.pale-green .flex-direction-nav {
    top: -9%;
  }

  .flexslider.thumbnails {
    display: none;
  }
  .flexslider.thumbnails .flex-viewport {
    margin-bottom: 0px;
  }
  .flexslider.thumbnails ul.slides {
    margin-top: 0px;
  }

  .wg-images .flex-direction-nav {
    top: 34%;
  }

  .reveal .item h3 {
    font-size: 1.769em;
    padding: 24px 22px;
  }
  .reveal .item .text a {
    float: left;
  }
}
@media only screen and (max-width: 1200px) {
  /* line 2935, scss/_theme.scss */
  .grid-container {
    max-width: 800px;
  }
}
@media only screen and (max-width: 800px) {
  /* line 2940, scss/_theme.scss */
  .grid-container {
    max-width: 400px;
  }
}
/*

  3-col, target landscape tablets and small desktops
*/
@media only screen and (min-width: 49em), only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  div[role="main"] .block {
    background-color: orange;
  }

  .small-desktop {
    display: block;
  }

  .medium-desktop {
    display: none;
  }

  .twitter .post-content .text {
    max-height: 163px;
  }

  .page-section .qualities .q-tile.one-one {
    padding: 18px;
  }
  .page-section .qualities .row .col {
    width: 49.5%;
  }
  .page-section .value-items ul li .value-image {
    display: block;
  }
  .page-section .value-items ul li .value-content {
    width: 49.95%;
  }

  /*--------------------------------------------------------
  @start grid creation..

  (move this block if you want the grid to kick
  in somewhere else. ie a different breakpoint)
  ----------------------------------------------------------*/
  .gu1 .row {
    width: 4.16667%;
  }

  .gu2 .row {
    width: 8.33333%;
  }

  .gu3 .row {
    width: 12.5%;
  }

  .gu4 .row {
    width: 16.66667%;
  }

  .gu5 .row {
    width: 20.83333%;
  }

  .gu6 .row {
    width: 25%;
  }

  .gu7 .row {
    width: 29.16667%;
  }

  .gu8 .row {
    width: 33.33333%;
  }

  .gu9 .row {
    width: 37.5%;
  }

  .gu10 .row {
    width: 41.66667%;
  }

  .gu11 .row {
    width: 45.83333%;
  }

  .gu12 .row {
    width: 50%;
  }

  .gu13 .row {
    width: 54.16667%;
  }

  .gu14 .row {
    width: 58.33333%;
  }

  .gu15 .row {
    width: 62.5%;
  }

  .gu16 .row {
    width: 66.66667%;
  }

  .gu17 .row {
    width: 70.83333%;
  }

  .gu18 .row {
    width: 75%;
  }

  .gu19 .row {
    width: 79.16667%;
  }

  .gu20 .row {
    width: 83.33333%;
  }

  .gu21 .row {
    width: 87.5%;
  }

  .gu22 .row {
    width: 91.66667%;
  }

  .gu23 .row {
    width: 95.83333%;
  }

  .gu24 .row {
    width: 100%;
  }

  .col {
    padding-left: 1.63934%;
    float: left;
    position: relative;
  }

  .gu1 {
    width: 2.52732%;
  }

  .gu2 {
    width: 6.69399%;
  }

  .gu3 {
    width: 10.86066%;
  }

  .gu4 {
    width: 15.02732%;
  }

  .gu5 {
    width: 19.19399%;
  }

  .gu6 {
    width: 23.36066%;
  }

  .gu7 {
    width: 27.52732%;
  }

  .gu8 {
    width: 31.69399%;
  }

  .gu9 {
    width: 35.86066%;
  }

  .gu10 {
    width: 40.02732%;
  }

  .gu11 {
    width: 44.19399%;
  }

  .gu12 {
    width: 48.36066%;
  }

  .gu13 {
    width: 52.52732%;
  }

  .gu14 {
    width: 56.69399%;
  }

  .gu15 {
    width: 60.86066%;
  }

  .gu16 {
    width: 65.02732%;
  }

  .gu17 {
    width: 69.19399%;
  }

  .gu18 {
    width: 73.36066%;
  }

  .gu19 {
    width: 77.52732%;
  }

  .gu20 {
    width: 81.69399%;
  }

  .gu21 {
    width: 85.86066%;
  }

  .gu22 {
    width: 90.02732%;
  }

  .gu23 {
    width: 94.19399%;
  }

  .gu24 {
    width: 98.36066%;
  }

  /*------------------------------------------
  @end grid creation..
  -------------------------------------------*/
  .masonry .col {
    margin: 0;
    padding: 0;
  }
  .masonry .col.gu8 {
    width: 33.29399%;
  }

  /*------------------------------------------
  @start top section..
  -------------------------------------------*/
  .m-quick-search .m-search-area {
    float: left;
    width: 30%;
    padding: 0 2%;
  }
  .m-quick-search legend {
    margin-top: 48px;
    float: left;
    font-size: 2.308em;
    /* 30px */
  }
  .m-quick-search p {
    font-size: 1.692em;
    /* 22px */
  }
  .m-quick-search .m-find-job .btn {
    width: inherit;
  }

  /*------------------------------------------
  @start footer section..
  -------------------------------------------*/
  .footer h3 {
    color: #333333;
    background-color: inherit;
    line-height: inherit;
    text-align: left;
    margin-bottom: 15px;
  }
  .footer h3:before {
    display: none;
  }
  .footer h3:hover {
    cursor: initial;
  }

  /*------------------------------------------
  @ALL WIDGETS START HERE..
  -------------------------------------------*/
  /*------------------------------------------
  @sortable video widget..
  -------------------------------------------*/
  .career-container {
    max-width: 940px;
    margin: 20px auto 0;
  }

  .wg-career-finder a.show-filter.secondary {
    display: none;
  }
  .wg-career-finder .filter-navs.secondary-filter-container {
    background: #82a7ad;
    padding: 20px;
    margin-bottom: 20px;
    display: block;
  }
  .wg-career-finder .filter-navs.secondary-filter-container h3 {
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 21px;
    margin-bottom: 20px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter {
    display: table;
    width: 100%;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item {
    display: table-cell;
    text-align: center;
    color: #fff;
    font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    line-height: 16px;
    cursor: pointer;
    float: none;
    margin: 0;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item label {
    display: block;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item input {
    display: none;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.creative label:before {
    background-position: -83px -415px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.creative input:checked + label:before {
    background-position: -213px -545px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.creative input:disabled + label:before {
    background-position: -277px -609px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.creative:hover label:before {
    background-position: -148px -480px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.problem label:before {
    background-position: -148px -415px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.problem input:checked + label:before {
    background-position: -278px -545px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.problem input:disabled + label:before {
    background-position: -342px -609px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.problem:hover label:before {
    background-position: -213px -480px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.thinker label:before {
    background-position: -213px -414px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.thinker input:checked + label:before {
    background-position: -343px -545px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.thinker input:disabled + label:before {
    background-position: -407px -609px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.thinker:hover label:before {
    background-position: -278px -480px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.initiative label:before {
    background-position: -278px -415px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.initiative input:checked + label:before {
    background-position: -408px -545px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.initiative input:disabled + label:before {
    background-position: -472px -609px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.initiative:hover label:before {
    background-position: -343px -480px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.details label:before {
    background-position: -343px -415px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.details input:checked + label:before {
    background-position: -473px -545px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.details input:disabled + label:before {
    background-position: -537px -609px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.details:hover label:before {
    background-position: -408px -480px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.organised label:before {
    background-position: -408px -415px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.organised input:checked + label:before {
    background-position: -538px -545px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.organised input:disabled + label:before {
    background-position: -82px -674px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.organised:hover label:before {
    background-position: -473px -480px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.communicator label:before {
    background-position: -473px -415px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.communicator input:checked + label:before {
    background-position: -83px -610px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.communicator input:disabled + label:before {
    background-position: -147px -674px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.communicator:hover label:before {
    background-position: -538px -480px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.team label:before {
    background-position: -538px -414px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.team input:checked + label:before {
    background-position: -148px -610px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.team input:disabled + label:before {
    background-position: -212px -674px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.team:hover label:before {
    background-position: -83px -545px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.relationship label:before {
    background-position: -83px -480px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.relationship input:checked + label:before {
    background-position: -213px -610px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.relationship input:disabled + label:before {
    background-position: -278px -675px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item.relationship:hover label:before {
    background-position: -148px -545px;
  }
  .wg-career-finder .filter-navs.secondary-filter-container .secondary-filter .filter-item label:before {
    content: "";
    width: 64px;
    height: 64px;
    display: block;
    background: url(/img/sprite.png);
    margin: 0 auto 10px;
    position: relative;
  }
  .wg-career-finder .filter-navs a.show-filter.primary {
    display: none;
  }
  .wg-career-finder .filter-navs ul.primary-filter {
    display: table;
    width: 100%;
    margin-bottom: 20px;
  }
  .wg-career-finder .filter-navs ul.primary-filter li {
    display: table-cell;
    padding: 7px;
    color: #fff;
    font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 16px;
    text-align: center;
    border-top: 5px solid #eff2f3;
    border-bottom: 5px solid #eff2f3;
    cursor: pointer;
    color: #e1e7e9;
    color: rgba(255, 255, 255, 0.7);
  }
  .wg-career-finder .filter-navs ul.primary-filter li#all {
    background: #2b70b0;
  }
  .wg-career-finder .filter-navs ul.primary-filter li#all.activePrimary {
    border-bottom: 5px solid #2b70b0;
    border-top: 5px solid #2b70b0;
    color: #fff;
  }
  .wg-career-finder .filter-navs ul.primary-filter li.grads {
    background: #b5bf00;
  }
  .wg-career-finder .filter-navs ul.primary-filter li.grads.activePrimary {
    border-bottom: 5px solid #b5bf00;
    border-top: 5px solid #b5bf00;
    color: #fff;
  }
  .wg-career-finder .filter-navs ul.primary-filter li.interns {
    background: #1aa0e5;
  }
  .wg-career-finder .filter-navs ul.primary-filter li.interns.activePrimary {
    border-bottom: 5px solid #1aa0e5;
    border-top: 5px solid #1aa0e5;
    color: #fff;
  }
  .wg-career-finder .filter-navs ul.primary-filter li.school {
    background: #7d688f;
  }
  .wg-career-finder .filter-navs ul.primary-filter li.school.activePrimary {
    border-bottom: 5px solid #7d688f;
    border-top: 5px solid #7d688f;
    color: #fff;
  }
  .wg-career-finder #position-categories .mix {
    display: none;
  }
  .wg-career-finder .no-results {
    display: none;
  }
  .wg-career-finder .position-categories .position {
    width: 24%;
    margin: 0 0.6% 1.4% 0;
    display: inline-block;
    vertical-align: top;
  }
  .wg-career-finder .position-categories .position.grads .position-heading {
    background: #b5bf00;
  }
  .wg-career-finder .position-categories .position.interns .position-heading {
    background: #1aa0e5;
  }
  .wg-career-finder .position-categories .position.school .position-heading {
    background: #7d688f;
  }
  .wg-career-finder .position-categories .position .position-heading {
    padding: 5px;
    height: 80px;
  }
  .wg-career-finder .position-categories .position .position-heading p {
    text-align: center;
    color: #fff;
  }

  .wg-sortable-videos ul li, .wg-video-thumbnails ul li {
    display: inline-block;
    width: 23.1%;
    margin: 0 0 20px 1.5%;
    float: left;
    height: 230px;
  }
  .wg-sortable-videos ul li:nth-child(5), .wg-sortable-videos ul li:nth-child(9), .wg-sortable-videos ul li:nth-child(13), .wg-sortable-videos ul li:nth-child(1), .wg-video-thumbnails ul li:nth-child(5), .wg-video-thumbnails ul li:nth-child(9), .wg-video-thumbnails ul li:nth-child(13), .wg-video-thumbnails ul li:nth-child(1) {
    margin-left: 0;
  }
  .wg-sortable-videos ul li a, .wg-video-thumbnails ul li a {
    display: block;
  }
  .wg-sortable-videos ul li a p, .wg-video-thumbnails ul li a p {
    margin: 0;
  }
  .wg-sortable-videos ul li.video a:before, .wg-video-thumbnails ul li.video a:before {
    top: 10%;
  }

  .wg-sortable-videos.wg-mixed-media ul li {
    width: 32%;
  }

  .wg-sortable-videos.custom-dt.flexslider ul li {
    width: 32%;
    margin-left: 0;
  }

  /*------------------------------------------
  @sortable video widget..
  -------------------------------------------*/
  .wg-sortable-videos ul li a:before, .wg-video-thumbnails ul li a:before {
    top: 12%;
    left: 30%;
  }

  /*------------------------------------------
  @sortable Locations widget..
  -------------------------------------------*/
  .wg-locations-map .locations-container #map-canvas {
    height: 450px;
  }

  .m-quick-search .m-search-form h4 {
    margin: 8px auto 10px auto;
    margin-right: 20px;
  }

  /*------------------------------------------
  @large scale tabbed widget..
  -------------------------------------------*/
  .wg-tabbed-content .tabs li {
    line-height: 86px;
    border-left: 8px solid #ffffff;
  }
  .wg-tabbed-content .tabs li:first-child {
    border: 0;
  }
  .wg-tabbed-content > ul li a {
    font-size: 2.308em;
    /* 30px */
  }

  .m-title h1 {
    text-align: left;
    font-size: 3.846em;
    /* 50px */
  }

  .m-button {
    overflow: hidden;
  }
  .m-button .btn {
    float: left;
  }

  .m-job-info .content-info {
    position: absolute;
    width: 60%;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 2%;
    left: 10%;
    height: 100%;
  }
  .m-job-info .content-info h2, .m-job-info .content-info p {
    text-align: left;
  }
  .m-job-info .content-info p {
    font-size: 1.538em;
    color: #666666;
  }
  .m-job-info .content-info h2 {
    font-size: 2.769em;
    /* 36px */
  }

  .m-job-status {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #91a9af;
    width: 30.8%;
  }

  ul.wg-image-hovers {
    margin: 0px;
    width: 100%;
  }
  ul.wg-image-hovers li {
    width: 23.5%;
    margin: 20px 2% 0px 0%;
  }
  ul.wg-image-hovers li:nth-child(4), ul.wg-image-hovers li:nth-child(8), ul.wg-image-hovers li:nth-child(12), ul.wg-image-hovers li:nth-child(16) {
    margin-right: 0px;
  }

  .wg-default .flex-direction-nav {
    position: relative;
    z-index: 999999;
    display: block;
    width: 100%;
    top: -350px;
  }

  .wg-default.pale-green .flex-control-nav {
    position: absolute;
    top: 0;
  }

  .flexslider.thumbnails {
    display: block;
  }

  /*------------------------------------------
  @ucas calculator ..
  -------------------------------------------*/
  .wg-ucas-cal .ucas-row, .wg-ucas-cal .totals {
    padding: 1%;
  }
  .wg-ucas-cal .grand-total, .wg-ucas-cal .reset {
    float: right;
    padding: 0 50px;
    font-size: 1.538em;
    /*20px*/
  }
  .wg-ucas-cal .reset {
    margin: 0 10px 0 0;
  }
  .wg-ucas-cal .totals {
    text-align: right;
    max-width: 319px;
  }
  .wg-ucas-cal .heading li {
    font-size: 1.538em;
    /*20px*/
  }

  .flexslider.wg-sortable-videos.custom-dt .flex-direction-nav {
    display: block;
  }
  .flexslider.wg-sortable-videos.custom-dt .flex-direction-nav li .flex-next, .flexslider.wg-sortable-videos.custom-dt .flex-direction-nav li .flex-prev {
    width: 32px;
    height: 32px;
  }
  .flexslider.wg-sortable-videos.custom-dt .flex-direction-nav li .flex-next {
    top: 18px;
    right: -8px;
    left: inherit;
    background-position: -159px -337px;
  }
  .flexslider.wg-sortable-videos.custom-dt .flex-direction-nav li .flex-prev {
    left: 2px;
    top: 18px;
    right: inherit;
    background-position: -159px -369px;
  }

  .flexslider.custom-dt {
    margin-top: 0px;
    position: absolute;
    right: 0;
    top: 0;
    width: 32.5%;
  }
  .flexslider.custom-dt .slides li {
    width: 32%;
  }

  .flexslider.wg-sortable-videos.custom-dt {
    margin-top: 0px;
  }
  .flexslider.wg-sortable-videos.custom-dt .flex-direction-nav a.flex-next, .flexslider.wg-sortable-videos.custom-dt .flex-direction-nav a.flex-prev {
    opacity: 1;
  }

  .flexslider.wg-sortable-videos.custom-dt .flex-direction-nav {
    width: 25%;
  }
}
/*

  4-col, target large monitors, etc
*/
@media only screen and (min-width: 64em) {
  div[role="main"] .block {
    background-color: cyan;
  }

  .mobile-tablet {
    display: none;
  }

  .mobile-tablet-only {
    display: none;
  }

  .large-desktop-only {
    display: block;
  }

  /*------------------------------------------
  @start general..
  -------------------------------------------*/
  .content-area.section {
    padding: 0;
  }

  /*------------------------------------------
  @start top section..
  -------------------------------------------*/
  .home-panel .top-bar {
    border-bottom: none;
  }
  .top-bar .content-area {
    max-width: 1200px;
  }

  .m-country-select,
  .m-account-select {
    float: left;
  }

  .m-mini-nav {
    float: right;
  }
  .m-mini-nav ul li {
    display: inline-block;
    line-height: 30px;
    border: 1px solid #e1e7e9;
    border-top: none;
  }
  .m-mini-nav ul li a {
    display: block;
    color: #666666;
    padding: 0 14px;
    position: relative;
  }
  .m-mini-nav ul li a:hover, .m-mini-nav ul li a:focus {
    text-decoration: underline;
    color: #004996;
  }
  .m-mini-nav ul li a:before {
    content: "";
    position: absolute;
    top: 13px;
    right: -2px;
    width: 1px;
    height: 11px;
  }
  .m-mini-nav ul li:first-child {
    border-right: none;
  }
  .m-mini-nav ul li:first-child a {
    background-color: #eff2f3;
    padding-right: 40px;
  }
  .m-mini-nav ul li:first-child a:before {
    width: 29px;
    height: 31px;
    border: none;
    top: 0;
    right: -9px;
    background: #91a9af url(../img/sprite.png) no-repeat -630px -19px;
  }
  .m-mini-nav ul li:nth-child(2) {
    margin-left: -3px;
  }
  .m-mini-nav ul li:nth-child(2) a {
    padding-right: 40px;
  }
  .m-mini-nav ul li:nth-child(2) a:before {
    width: 29px;
    height: 30px;
    border: none;
    top: 0;
    background: url(../img/sprite.png) no-repeat -571px -64px;
  }

  .wg-sortable-videos ul, .wg-video-thumbnails ul {
    overflow: hidden;
  }
  .wg-sortable-videos ul li, .wg-video-thumbnails ul li {
    display: inline-block;
    width: 23.1%;
    margin: 0 0 20px 1.5%;
    float: left;
  }
  .wg-sortable-videos ul li:nth-child(5), .wg-sortable-videos ul li:nth-child(1), .wg-sortable-videos ul li:nth-child(9), .wg-sortable-videos ul li:nth-child(13), .wg-video-thumbnails ul li:nth-child(5), .wg-video-thumbnails ul li:nth-child(1), .wg-video-thumbnails ul li:nth-child(9), .wg-video-thumbnails ul li:nth-child(13) {
    margin-left: 0;
  }
  .wg-sortable-videos ul li a, .wg-video-thumbnails ul li a {
    display: block;
  }
  .wg-sortable-videos ul li a:before, .wg-video-thumbnails ul li a:before {
    top: 10%;
  }
  .wg-sortable-videos ul li a p, .wg-video-thumbnails ul li a p {
    margin: 0;
  }

  .wg-sortable-videos.custom-dt.flexslider .slides {
    padding-top: 0;
  }
  .wg-sortable-videos.custom-dt.flexslider ul {
    overflow: hidden;
  }
  .wg-sortable-videos.custom-dt.flexslider ul li {
    display: inline-block;
    width: 282px;
    overflow: hidden;
    margin: 0 0 0 0;
  }
  .wg-sortable-videos.custom-dt.flexslider ul li a {
    display: block;
  }
  .wg-sortable-videos.custom-dt.flexslider ul li a:before {
    top: 10%;
  }
  .wg-sortable-videos.custom-dt.flexslider ul li a p {
    margin: 0;
  }

  .header {
    -webkit-box-shadow: 0px 4px 5px 0px rgba(50, 50, 50, 0.2);
    -moz-box-shadow: 0px 4px 5px 0px rgba(50, 50, 50, 0.2);
    box-shadow: 0px 4px 5px 0px rgba(50, 50, 50, 0.2);
  }
  .header.home-panel {
    box-shadow: none;
  }
  .header.home-panel .content-area.section {
    max-width: 1200px;
  }

  .m-quick-search {
    zoom: 1;
  }
  .m-quick-search:before, .m-quick-search:after {
    content: " ";
    display: table;
  }
  .m-quick-search:after {
    clear: both;
  }
  .m-quick-search .m-find-job {
    float: right;
    margin: 17px 0 0;
  }
  .m-quick-search .m-find-job.career-finder {
    float: none;
  }

  .mobile-container {
    display: none;
  }

  .header .navigation ul {
    margin-top: -12px;
  }
  .header .navigation ul li {
    display: inline-block;
    width: 140px;
    position: inherit;
  }
  .header .navigation ul li.active a, .header .navigation ul li:hover a {
    background: #762457;
    color: #ffffff;
  }
  .header .navigation ul li.active a:before, .header .navigation ul li:hover a:before {
    background-position: -586px -160px;
  }
  .header .navigation ul li.apply a {
    color: #b5bf00;
    font-size: 2.000em;
    /* 26px */
    padding: 9px 0;
  }
  .header .navigation ul li.apply a:before {
    background: url(../img/sprite.png) no-repeat -584px -132px;
  }
  .header .navigation ul li.apply a:hover, .header .navigation ul li.apply a:focus {
    background-color: transparent;
    color: #b5bf00;
  }
  .header .navigation ul li.apply a:hover:before, .header .navigation ul li.apply a:focus:before {
    background-position: -584px -233px;
  }
  .header .navigation ul li a {
    position: relative;
    color: #ffffff;
  }
  .header .navigation ul li a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 30px;
    left: 15px;
    bottom: -29px;
    background: url(../img/sprite.png) no-repeat -586px -202px;
  }
  .header .navigation ul li a:focus {
    background: #762457;
    color: #ffffff;
  }
  .header .navigation ul li a {
    display: block;
    font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 1.231em;
    /* 16px; */
    text-align: center;
    padding: 5px 0;
    color: #00549f;
  }
  .no-js .header .navigation ul li:hover > .mega-nav, .no-js .header .navigation ul li:focus > .mega-nav {
    display: block;
  }
  .header .navigation ul li .mega-nav {
    position: absolute;
    left: 0;
    top: 83px;
    width: 100%;
    background-color: #f3f2ee;
    display: none;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(50, 50, 50, 0.3);
    -moz-box-shadow: 0px 5px 5px 0px rgba(50, 50, 50, 0.3);
    box-shadow: 0px 5px 5px 0px rgba(50, 50, 50, 0.3);
  }
  .header .navigation ul li .mega-nav p {
    font-size: 1.923em;
    /* 25px */
    color: #666666;
    font-family: "tescoDisplaybold", arial, "Helvetica Neue", Helvetica, sans-serif;
    margin: 1em 0;
  }
  .header .navigation ul li .mega-nav.active {
    display: block;
  }
  .header .navigation ul li .mega-nav .sub-nav {
    padding: 0 0 30px;
  }
  .header .navigation ul li .mega-nav .sub-nav .sub-levels {
    float: left;
    margin: 0 30px 0 0;
  }
  .header .navigation ul li .mega-nav .sub-nav .sub-levels:first-child {
    margin-left: 0;
  }
  .header .navigation ul li .mega-nav .sub-nav ul li {
    width: inherit;
    display: block;
    text-align: left;
  }
  .header .navigation ul li .mega-nav .sub-nav ul li a {
    font-size: 1.231em;
    /* 16px */
    text-align: left;
    background-color: transparent;
    color: #333333;
    font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
  }
  .header .navigation ul li .mega-nav .sub-nav ul li a:before {
    display: none;
  }
  .header .navigation ul li .mega-nav .sub-nav ul li a:hover, .header .navigation ul li .mega-nav .sub-nav ul li a:focus {
    color: #992727;
    text-decoration: underline;
  }
  .header .navigation ul li .mega-nav .featured-nav {
    background-color: #ffffff;
    padding: 12px 0;
  }
  .header .navigation ul li .mega-nav .featured-nav h3 {
    font-size: 1.615em;
    /* 21px */
  }
  .header .navigation ul li .mega-nav .featured-nav ul {
    float: left;
  }
  .header .navigation ul li .mega-nav .featured-nav ul li {
    width: inherit;
    margin: 0 0 0 20px;
  }
  .header .navigation ul li .mega-nav .featured-nav ul li:first-child {
    margin: 0;
  }
  .header .navigation ul li .mega-nav .featured-nav ul li a {
    background-color: transparent;
    color: #3092ca;
  }
  .header .navigation ul li .mega-nav .featured-nav ul li a:hover, .header .navigation ul li .mega-nav .featured-nav ul li a:focus {
    color: #992727;
    text-decoration: underline;
  }
  .header .navigation ul li .mega-nav .featured-nav ul li a:before {
    display: none;
  }
  .header .navigation ul li .mega-nav .featured-nav .close {
    float: right;
    width: 46px;
    height: 46px;
    display: block;
    text-indent: -999em;
    background-color: transparent;
    background: url(../img/sprite.png) no-repeat 0 -166px;
  }
  .header .navigation ul li .mega-nav .featured-nav .close:before {
    display: none;
  }

  .container.js-mb-active {
    right: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }

  .mobile-container.js-mb-active {
    z-index: -1;
  }

  .mobile-container.js-mb-active {
    opacity: 0;
  }

  /*
   * Navigation full width fix
   */
}
@media only screen and (min-width: 64em) and (min-width: 1024px) and (max-width: 1079px) {
  .header .navigation ul li {
    width: 120px;
  }
}
@media only screen and (min-width: 64em) and (min-width: 1080px) and (max-width: 1162px) {
  .header .navigation ul li {
    width: 130px;
  }
}
@media only screen and (min-width: 64em) {
  /*------------------------------------------
  @ALL WIDGETS START HERE..
  -------------------------------------------*/
  /*------------------------------------------
  @sortable Locations widget..
  -------------------------------------------*/
  .wg-locations-map .locations-container #map-canvas {
    height: 525px;
  }

  .m-quick-search .m-search-form h4 {
    margin: 26px auto 20px auto;
  }

  /*------------------------------------------
  @sortable video widget..
  -------------------------------------------*/
  .wg-sortable-videos ul li a:before, .wg-video-thumbnails ul li a:before {
    left: 35%;
  }

  .m-hero h1 {
    font-size: 6em;
    line-height: 1.0em;
  }

  .lv-11 .flexslider .slides > li {
    min-height: 10px;
  }

  .flexslider.thumbnails {
    display: block;
  }
  .flexslider.thumbnails .flex-viewport {
    margin-bottom: 0px;
  }
  .flexslider.thumbnails ul.slides {
    margin-top: 0px;
  }

  .flexslider.thumbnails .flex-direction-nav {
    display: none;
  }

  .wg-default.pale-green .flex-direction-nav {
    display: block;
  }

  .reveal .item span {
    display: block;
    position: relative;
    width: 100%;
    float: left;
    cursor: pointer;
  }
  .reveal .item span .text {
    display: none;
  }
  .reveal .item .image {
    background: #666;
  }
  .reveal .item span:hover .text {
    display: block;
  }
  .reveal .item span:hover .image img {
    zoom: 1;
    filter: alpha(opacity=50);
    opacity: 0.5;
  }
  .reveal .item .container {
    display: block;
    clear: both;
    position: relative;
  }
  .reveal .item .text {
    top: 0px;
    position: absolute;
    padding: 38px 6%;
  }
  .reveal .item .text p {
    font-size: 20px;
    line-height: 1.4em;
    color: #ffffff;
    font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif;
  }

  /**/
}
/* Multiple Apply Buttons */
.multiple-apply {
  background-color: white;
  display: table;
  font-size: 16px;
  margin: 5px 0;
  text-align: left;
  width: 100%;
}

.multiple-apply__button {
  padding: 10px;
}

@media (min-width: 49em) {
  .multiple-apply__button {
    display: table-cell;
    text-align: right;
    vertical-align: middle;
    width: 40%;
  }
}
.multiple-apply__button .btn.style-two.programme-apply {
  /*border: 0;*/
}

@media (min-width: 49em) {
  .multiple-apply__button .btn.style-two.programme-apply {
    display: inline-block;
    min-width: 200px;
  }
}
.multiple-apply__description {
  color: #666666;
  padding: 10px;
}

@media (min-width: 49em) {
  .multiple-apply__description {
    display: table-cell;
    vertical-align: middle;
    width: 60%;
  }
}
/* --------------------------------------------------------------
 Widget: Mixed Media Links
 ---------------------------------------------------------------- */
.wg-mixed-media-links-container .wg-mixed-media-links {
  width: 100%;
  padding: 0 20px;
  background-color: #ffffff;
}
.wg-mixed-media-links-container .wg-mixed-media-links > ul {
  width: 90%;
  margin: 0 5%;
  padding: 20px 0;
}
.wg-mixed-media-links-container .wg-mixed-media-links > ul > li {
  width: 96%;
  margin: 20px 2% 0;
  text-align: left;
}
.wg-mixed-media-links-container .wg-mixed-media-links > ul > li > a, .wg-mixed-media-links-container .wg-mixed-media-links > ul > li .wg-mixed-media-videos {
  display: block;
  position: relative;
}
.wg-mixed-media-links-container .wg-mixed-media-links > ul > li img {
  width: 100%;
}
.wg-mixed-media-links-container .wg-mixed-media-links > ul > li .tab {
  width: 100%;
  padding: 12px 5%;
  position: absolute;
  bottom: 0;
  background-image: url(/img/assets-general/tab-arrow-right.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-color: #7d6990;
  overflow: hidden;
  color: #ffffff;
}
.wg-mixed-media-links-container .wg-mixed-media-links > ul > li .tab h4, .wg-mixed-media-links-container .wg-mixed-media-links > ul > li .tab p {
  margin: 0;
  padding-right: 15px;
  font-size: 1.23077em;
  color: white;
}
.wg-mixed-media-links-container .wg-mixed-media-links > ul > li .tab.burgundy {
  background-color: #762457;
}
.wg-mixed-media-links-container .wg-mixed-media-links > ul > li .tab.turquoise {
  background-color: #7fa8ae;
}
.wg-mixed-media-links-container .wg-mixed-media-links ul ul.hover {
  display: none;
}
.wg-mixed-media-links-container .wg-mixed-media-links .wg-mixed-media-videos-container {
  margin-top: 40px;
}
@media only screen and (min-width: 49em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: landscape) {
  .wg-mixed-media-links-container .wg-mixed-media-links .wg-mixed-media-videos-container {
    margin-top: 0;
  }
}
.wg-mixed-media-links-container .wg-mixed-media-links .flexslider ul.slides {
  width: 100%;
  height: 100%;
  padding-top: 0;
  position: absolute;
  top: 0;
}
.wg-mixed-media-links-container .wg-mixed-media-links .flexslider ul.slides > li {
  height: 100%;
}
@media screen and (max-width: 860px) {
  .wg-mixed-media-links-container .wg-mixed-media-links .flexslider ul.slides > li {
    min-height: auto;
  }
}
.wg-mixed-media-links-container .wg-mixed-media-links .flexslider ul.slides > li a:before {
  content: "";
  position: absolute;
  width: 76px;
  height: 72px;
  left: 40%;
  top: 20%;
  background: url(../img/sprite.png) no-repeat -47px -165px;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .wg-mixed-media-links-container .wg-mixed-media-links .flexslider ul.slides > li a:before {
    top: 25%;
    left: 36%;
  }
}
@media only screen and (min-width: 49em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: landscape) {
  .wg-mixed-media-links-container .wg-mixed-media-links .flexslider ul.slides > li a:before {
    top: 32%;
    left: 40%;
  }
}
.wg-mixed-media-links-container .wg-mixed-media-links .flexslider:hover .flex-next {
  right: 0 !important;
}
.wg-mixed-media-links-container .wg-mixed-media-links .flex-direction-nav {
  display: block;
  top: -25px;
  width: inherit;
  right: 0;
  margin-top: 0;
}
.wg-mixed-media-links-container .wg-mixed-media-links .flex-direction-nav li {
  background-color: transparent;
  border: none;
  width: 25px;
  height: 25px;
  float: left;
  margin: 0;
}
.wg-mixed-media-links-container .wg-mixed-media-links .flex-direction-nav li:first-child {
  margin: 0 10px 0 0;
}
.wg-mixed-media-links-container .wg-mixed-media-links .flex-direction-nav li .flex-next, .wg-mixed-media-links-container .wg-mixed-media-links .flex-direction-nav li .flex-prev {
  width: 27px;
  height: 27px;
  background: url(../img/sprite.png) no-repeat;
}
.wg-mixed-media-links-container .wg-mixed-media-links .flex-direction-nav li .flex-next:before, .wg-mixed-media-links-container .wg-mixed-media-links .flex-direction-nav li .flex-prev:before {
  display: none;
}
.wg-mixed-media-links-container .wg-mixed-media-links .flex-direction-nav li .flex-next {
  left: inherit;
  background-position: -159px -337px;
}
.wg-mixed-media-links-container .wg-mixed-media-links .flex-direction-nav li .flex-prev {
  left: -10px;
  right: inherit;
  background-position: -159px -369px;
}
.wg-mixed-media-links-container .wg-mixed-media-links .flex-direction-nav a.flex-next, .wg-mixed-media-links-container .wg-mixed-media-links .flex-direction-nav a.flex-prev {
  opacity: 1;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .wg-mixed-media-links-container .wg-mixed-media-links > ul {
    text-align: center;
  }
  .wg-mixed-media-links-container .wg-mixed-media-links > ul > li {
    width: 45%;
    display: inline-block;
  }
}
@media only screen and (min-width: 49em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: landscape) {
  .wg-mixed-media-links-container .wg-mixed-media-links > ul {
    width: auto;
    margin: 0 -20px;
    text-align: left;
  }
  .wg-mixed-media-links-container .wg-mixed-media-links > ul > li {
    width: 33%;
    margin: 20px 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .wg-mixed-media-links-container .wg-mixed-media-links ul ul.hover {
    padding: 20px;
    position: absolute;
    top: 0;
    width: 100%;
    display: block;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    /* Safari 1.x */
    opacity: 0;
    -webkit-transition: opacity, 0.5s, ease-in-out;
    -moz-transition: opacity, 0.5s, ease-in-out;
    -o-transition: opacity, 0.5s, ease-in-out;
    transition: opacity, 0.5s, ease-in-out;
  }
  .wg-mixed-media-links-container .wg-mixed-media-links ul ul.hover li {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px 20px;
    font-size: 1.385em;
    background-color: rgba(255, 255, 255, 0.8);
    color: #666666;
  }
  .wg-mixed-media-links-container .wg-mixed-media-links ul > li > a:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    /* Safari 1.x */
    opacity: 0.8;
  }
  .wg-mixed-media-links-container .wg-mixed-media-links ul > li > a:hover ul.hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    /* Safari 1.x */
    opacity: 1;
  }
}

.flexslider.wg-sortable-videos.custom-dt .flex-direction-nav {
  display: block;
}
.flexslider.wg-sortable-videos.custom-dt .flex-direction-nav li .flex-next, .flexslider.wg-sortable-videos.custom-dt .flex-direction-nav li .flex-prev {
  width: 32px;
  height: 32px;
}
.flexslider.wg-sortable-videos.custom-dt .flex-direction-nav li .flex-next {
  top: 18px;
  right: -8px;
  left: inherit;
  background-position: -159px -337px;
}
.flexslider.wg-sortable-videos.custom-dt .flex-direction-nav li .flex-prev {
  left: 2px;
  top: 18px;
  right: inherit;
  background-position: -159px -369px;
}

.flexslider.wg-sortable-videos.custom-dt {
  margin-top: 0px;
}
.flexslider.wg-sortable-videos.custom-dt .flex-direction-nav a.flex-next, .flexslider.wg-sortable-videos.custom-dt .flex-direction-nav a.flex-prev {
  opacity: 1;
}

.flexslider.wg-sortable-videos.custom-dt .flex-direction-nav {
  width: 25%;
}

/* -----------------------------------------------------------------------
 Widget: Sections Timeline
 Example: https://strukturedkaos.github.io/kickdrop-drops/drops/timeline/
 ------------------------------------------------------------------------- */
.wg-sections-timeline-container {
  background-color: #ffffff;
}
.wg-sections-timeline-container .wg-sections-timeline-header {
  height: 40px;
  background-color: #ecf2f3;
}
.wg-sections-timeline-container .wg-sections-timeline-content {
  padding: 40px 0;
}
.wg-sections-timeline-container .wg-sections-timeline {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 100px;
  position: relative;
}
.wg-sections-timeline-container .wg-sections-timeline:before {
  content: "";
  width: 7px;
  height: 100%;
  top: 0;
  left: 28px;
  margin-left: -2px;
  background-color: #7fa8ae;
  display: block;
  position: absolute;
}
@media only screen and (min-width: 49em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: landscape) {
  .wg-sections-timeline-container .wg-sections-timeline:before {
    left: 50%;
  }
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row {
  margin-left: 54px;
  padding-left: 30px;
  position: relative;
  z-index: 10;
  background-image: url(/img/assets-widgets/sections-timeline-right-arrow.png);
  background-repeat: no-repeat;
  background-position: left -20px top 55px;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row {
    margin-left: 50px;
    padding-left: 50px;
    background-position: left 0 top 70px;
  }
}
@media only screen and (min-width: 49em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: landscape) {
  .wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row {
    margin-left: 50%;
    margin-bottom: -100px;
    background-position: left 20px top 70px;
  }
  .wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row:nth-child(odd) {
    margin-left: 0;
    padding-left: 0;
    margin-right: 50%;
    background-image: url(/img/assets-widgets/sections-timeline-left-arrow.png);
    background-repeat: no-repeat;
    background-position: right 20px top 70px;
  }
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item {
  margin-bottom: 20px;
  color: #7fa8ae;
  display: block;
  cursor: pointer;
}
@media only screen and (min-width: 49em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: landscape) {
  .wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item {
    width: 300px;
    margin: 0 auto;
    text-align: center;
  }
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item h3 {
  font-size: 1.846em;
  line-height: normal;
  margin-bottom: 15px;
  margin-top: 0;
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item p {
  font-size: 1.385em;
  line-height: normal;
  color: #7fa8ae;
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item .panel {
  padding-right: 10px;
  overflow: hidden;
  display: inline-block;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item .panel {
    width: 60%;
    margin-left: 20px;
  }
}
@media only screen and (min-width: 49em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: landscape) {
  .wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item .panel {
    width: auto;
    margin-left: 0;
    display: block;
  }
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item .panel .panel-text {
  -webkit-transition: height 0.4s ease-out, margin 0.4s ease-out;
  transition: height 0.4s ease-out, margin 0.4s ease-out;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
@media only screen and (min-width: 49em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: landscape) {
  .wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item .panel .panel-text {
    height: 0;
    overflow: hidden;
    margin-bottom: 100px;
  }
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item [class^="icon-"] {
  width: 120px;
  height: 120px;
  background-size: 120px;
  margin-bottom: 10px;
  display: inline-block;
  background-repeat: no-repeat;
  -webkit-transition: background 0.1s ease-out;
  transition: background 0.1s ease-out;
  vertical-align: top;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item [class^="icon-"] {
    width: 160px;
    height: 160px;
    background-size: 160px;
  }
}
@media only screen and (min-width: 49em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: landscape) {
  .wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item [class^="icon-"] {
    margin: 0 auto 10px;
    display: block;
  }
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item .icon-holiday {
  background-image: url(/img/assets-salary-benefits/benefits-holiday-icon.png);
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item .icon-shares {
  background-image: url(/img/assets-salary-benefits/benefits-shares-icon.png);
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item .icon-discount {
  background-image: url(/img/assets-salary-benefits/benefits-discount-icon.png);
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item .icon-exclusive {
  background-image: url(/img/assets-salary-benefits/benefits-exclusive-icon.png);
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item .icon-opportunities {
  background-image: url(/img/assets-salary-benefits/benefits-opportunities-icon.png);
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item:hover h3, .wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item:hover p {
  color: #afaf19;
}
@media only screen and (min-width: 49em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: landscape) {
  .wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item:hover .panel-text {
    height: 230px;
    margin-bottom: 0;
  }
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item:hover .icon-holiday {
  background-image: url(/img/assets-salary-benefits/benefits-holiday-on-icon.png);
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item:hover .icon-shares {
  background-image: url(/img/assets-salary-benefits/benefits-shares-on-icon.png);
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item:hover .icon-discount {
  background-image: url(/img/assets-salary-benefits/benefits-discount-on-icon.png);
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item:hover .icon-exclusive {
  background-image: url(/img/assets-salary-benefits/benefits-exclusive-on-icon.png);
}
.wg-sections-timeline-container .wg-sections-timeline .wg-sections-timeline-row .wg-sections-timeline-item:hover .icon-opportunities {
  background-image: url(/img/assets-salary-benefits/benefits-opportunities-on-icon.png);
}
.wg-sections-timeline-container .wg-sections-timeline-footer {
  padding: 15px 0;
  background-color: #ecf2f3;
}
.wg-sections-timeline-container .wg-sections-timeline-footer .wg-sections-timeline-footer-content {
  padding: 0 20px;
}
@media only screen and (min-width: 49em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: landscape) {
  .wg-sections-timeline-container .wg-sections-timeline-footer .wg-sections-timeline-footer-content {
    width: 60%;
    margin: 0 auto;
  }
}
.wg-sections-timeline-container .wg-sections-timeline-footer .wg-sections-timeline-footer-content .icon-purple-tick {
  height: 67px;
  width: 67px;
  display: inline-block;
  background-image: url(/img/assets-widgets/purple-tick-icon.png);
}
.wg-sections-timeline-container .wg-sections-timeline-footer .wg-sections-timeline-footer-content p {
  width: 100%;
  font-size: 1.385em;
  line-height: 1.385em;
  color: #85235e;
  display: inline-block;
  margin-left: -80px;
  padding-left: 90px;
  vertical-align: top;
  margin-top: 10px;
}

/* ------------------------------------------
 Widget: Tabbed Content (w/ Icons)
 ----------------------------------------- */
.icon-tabbed-content .tabbed-nav {
  margin-bottom: 2px;
}
.icon-tabbed-content .tabbed-nav ul {
  margin: 0;
  padding: 0;
  border: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
  border-bottom: 4px solid white;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item {
  display: block;
  background-color: #f0f0f0;
  border-right: 4px solid white;
  box-sizing: border-box;
  height: 163px;
  padding: 30px 20px 15px;
  position: relative;
  transition: background-color 0.3s ease;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item .tab-title {
  position: absolute;
  bottom: 25px;
  transition: bottom 0.3s ease;
  left: 0;
  width: 100%;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item:before {
  content: "";
  display: block;
  height: 47px;
  width: 100%;
  background-color: #7b6991;
  position: absolute;
  bottom: -47px;
  left: 0;
  border-bottom-left-radius: 100% 70px;
  border-bottom-right-radius: 100% 70px;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item.active {
  background-color: #7b6991;
  padding: 15px 20px 15px;
  height: 163px;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item.active .tab-title {
  bottom: 17px;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item.active:before {
  opacity: 1;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item.active .icon {
  width: 105px;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item.active h4 {
  color: #fff !important;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item.active.type-1 h4, .icon-tabbed-content .tabbed-nav .tabbed-nav-item.active.type-2 h4, .icon-tabbed-content .tabbed-nav .tabbed-nav-item.active.type-3 h4, .icon-tabbed-content .tabbed-nav .tabbed-nav-item.active.type-4 h4, .icon-tabbed-content .tabbed-nav .tabbed-nav-item.active.type-5 h4 {
  color: #fff;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item:last-child {
  border: 0;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item:hover {
  cursor: pointer;
  background-color: #7b6991;
  padding: 15px 20px 15px;
  height: 163px;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item:hover .tab-title {
  bottom: 17px;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item:hover .tab-title h4 {
  color: #fff !important;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item:hover:before {
  opacity: 1;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item:hover .icon {
  width: 105px;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item h4 {
  font-size: 16px;
  font-weight: lighter;
  margin: 0;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item.type-1 h4 {
  color: #856a93;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item.type-2 h4 {
  color: #0b9eda;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item.type-3 h4 {
  color: #8f8b34;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item.type-4 h4 {
  color: #b9c033;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item.type-5 h4 {
  color: #82a597;
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item .icon {
  width: 81px;
  margin: 0 auto 15px;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  transition: padding 0.3s ease, width 0.3s ease;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.icon-tabbed-content .tabbed-nav .tabbed-nav-item h4 {
  text-align: center;
  width: 100%;
}
.icon-tabbed-content .tabbed-content {
  background-color: #ebe9ef;
  padding: 65px 20px 50px;
}
.icon-tabbed-content .tabbed-content .tabbed-content-item {
  display: none;
  text-align: center;
}
.icon-tabbed-content .tabbed-content .tabbed-content-item p {
  margin: 0 auto;
  color: #7d6990;
  font-size: 1.385em;
  line-height: 1.3;
  word-break: break-word;
}
.icon-tabbed-content .tabbed-content .tabbed-content-item:first-child {
  display: block;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .icon-tabbed-content .tabbed-nav .tabbed-nav-item {
    display: table-cell;
  }
  .icon-tabbed-content .tabbed-nav .tabbed-nav-item h4 {
    font-size: 14px;
  }
  .icon-tabbed-content .tabbed-nav .tabbed-nav-item.active .icon {
    width: 107px;
  }
  .icon-tabbed-content .tabbed-nav .tabbed-nav-item.active .tab-title {
    bottom: -12px;
  }
  .icon-tabbed-content .tabbed-nav .tabbed-nav-item:hover .icon {
    width: 107px;
  }
  .icon-tabbed-content .tabbed-nav .tabbed-nav-item:hover .tab-title {
    bottom: -12px;
  }
  .icon-tabbed-content .tabbed-content p {
    width: 80%;
  }
}
@media only screen and (min-width: 49em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: landscape) {
  .icon-tabbed-content .tabbed-nav .tabbed-nav-item h4 {
    font-size: 16px;
  }
  .icon-tabbed-content .tabbed-nav .tabbed-nav-item.active .icon {
    width: 126px;
  }
  .icon-tabbed-content .tabbed-nav .tabbed-nav-item:hover .icon {
    width: 126px;
  }
}

.lt-ie10 .icon-tabbed-content .tabbed-nav .tabbed-nav-item .icon {
  margin-left: -40px;
}
.lt-ie10 .icon-tabbed-content .tabbed-nav .tabbed-nav-item.active .icon, .lt-ie10 .icon-tabbed-content .tabbed-nav .tabbed-nav-item:hover .icon {
  margin-top: -10px;
  margin-left: -60px;
}

/* --------------------------------------------------------------
 Inner page style 1
 Used for:  Apprenticeships, Summer Internships & Graduate Prog
 ---------------------------------------------------------------- */
.inner-page-style-1 .breadcrumb-container {
  background-color: #7fa8ae;
}
.inner-page-style-1 .page-section .page-content.section {
  padding-top: 0;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .inner-page-style-1 .m-title h1 {
    font-size: 3.846em;
  }
}
@media only screen and (min-width: 49em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: landscape) {
  .inner-page-style-1 .m-title h1 {
    text-align: center;
  }
}
.inner-page-style-1 .m-button {
  display: inline-block;
}
.inner-page-style-1 .m-button .btn {
  border-width: 3px;
}
.inner-page-style-1 .white-container {
  max-width: 1000px;
  padding: 20px 0;
  margin: 0 auto;
  background-color: white;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .inner-page-style-1 .white-container {
    padding: 45px;
  }
}
.inner-page-style-1 #section-1 {
  padding-top: 0;
  background-color: #7fa8ae;
}
.inner-page-style-1 #section-1 .m-title h1 {
  color: #ffffff;
}
.inner-page-style-1 #section-1 .content-text {
  padding: 0 8%;
}
.inner-page-style-1 #section-1 .content-text p {
  color: #ffffff;
  font-size: 20px;
  line-height: 24px;
}
.inner-page-style-1 #section-2 {
  background-color: #d8e5e7;
}
.inner-page-style-1 #section-2 .m-title h1 {
  color: lime;
}
.inner-page-style-1 #section-3 {
  padding: 25px 0;
  background-color: #eff2f3;
}
.inner-page-style-1 .wg-tabbed-content {
  padding: 20px;
}
.inner-page-style-1 .wg-tabbed-content .intro {
  padding: 0 2% 20px;
  text-align: center;
}
.inner-page-style-1 .wg-tabbed-content .intro p {
  color: #464646;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  .inner-page-style-1 .wg-tabbed-content .intro {
    padding: 0 16% 4%;
  }
  .inner-page-style-1 .wg-tabbed-content .intro h3 {
    font-size: 3.846em;
  }
}
.inner-page-style-1 .wg-tabbed-content .tab-content .content-area {
  margin-bottom: 40px;
}
.inner-page-style-1 .wg-tabbed-content .tab-content .content-area .main-content {
  padding: 0;
}

/* ------------------------------------------
 T001: Why us
 ----------------------------------------- */
.t001.m-quick-search-container {
  background-color: #5c1c44;
}
.t001.breadcrumb-container {
  background-color: #762457;
}

#t001 .content-text p {
  text-align: center;
}
#t001 #why-us1 {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #762457;
  text-align: center;
}
#t001 #why-us1 .m-title h1 {
  color: white;
}
#t001 #why-us1 .content-text {
  padding: 0 2%;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  #t001 #why-us1 .content-text {
    padding: 0 8%;
  }
}
#t001 #why-us1 .content-text p {
  color: white;
  font-size: 20px;
  line-height: 24px;
}
#t001 #why-us1 .image-holder {
  margin-top: 60px;
}
#t001 #why-us2 .content-text h2 {
  padding-top: 40px;
}
#t001 #why-us3 .content-text,
#t001 #why-us4 .content-text {
  padding-bottom: 20px;
}
#t001 #why-us6 h2 {
  padding-top: 40px;
  padding-bottom: 20px;
}
#t001 #why-us9 {
  padding: 0;
}

/* ------------------------------------------
 T001b: Information for parents
 ----------------------------------------- */
.t001b.m-quick-search-container {
  background-color: #66868b;
}
.t001b.breadcrumb-container {
  background-color: #7fa8ae;
}

#t001b .content-text p {
  text-align: center;
}
#t001b #section-1 {
  padding-bottom: 0;
  background-color: #7fa8ae;
}
#t001b #section-1 .m-title h1 {
  color: #ffffff;
}
#t001b #section-1 .content-text p {
  color: #ffffff;
}
#t001b #section-1 .image-holder {
  margin-top: 60px;
}
#t001b #section-1 .image-holder img {
  width: 100%;
}
#t001b #section-2 {
  background-color: #ebe9ef;
}
#t001b #section-2 .m-title h1 {
  color: #7b6991;
}
#t001b #section-2 .content-text p {
  color: #7b6991;
}
#t001b #section-3 {
  background-color: #ffffff;
  padding-bottom: 100px;
}
#t001b #section-3 .m-title h1 {
  color: #7fa8ae;
}
#t001b #section-3 .content-text p {
  color: #7fa8ae;
  font-size: 20px;
  line-height: 24px;
}
#t001b #section-3 .wg-sections-timeline-container {
  background-color: #ecf2f3;
}
#t001b #section-3 .wg-sections-timeline-container .wg-sections-timeline-item .icon-support {
  background-image: url(/img/assets-infoparents/support-icon.png);
}
#t001b #section-3 .wg-sections-timeline-container .wg-sections-timeline-item .icon-training {
  background-image: url(/img/assets-infoparents/training-icon.png);
}
#t001b #section-3 .wg-sections-timeline-container .wg-sections-timeline-item .icon-value {
  background-image: url(/img/assets-infoparents/value-icon.png);
}
#t001b #section-3 .wg-sections-timeline-container .wg-sections-timeline-item .icon-keepontop {
  background-image: url(/img/assets-infoparents/keepontop-icon.png);
}
#t001b #section-3 .wg-sections-timeline-container .wg-sections-timeline-item .icon-friends {
  background-image: url(/img/assets-infoparents/friends-icon.png);
}
#t001b #section-3 .wg-sections-timeline-container .wg-sections-timeline-item:hover .icon-support {
  background-image: url(/img/assets-infoparents/support-on-icon.png);
}
#t001b #section-3 .wg-sections-timeline-container .wg-sections-timeline-item:hover .icon-training {
  background-image: url(/img/assets-infoparents/training-on-icon.png);
}
#t001b #section-3 .wg-sections-timeline-container .wg-sections-timeline-item:hover .icon-value {
  background-image: url(/img/assets-infoparents/value-on-icon.png);
}
#t001b #section-3 .wg-sections-timeline-container .wg-sections-timeline-item:hover .icon-keepontop {
  background-image: url(/img/assets-infoparents/keepontop-on-icon.png);
}
#t001b #section-3 .wg-sections-timeline-container .wg-sections-timeline-item:hover .icon-friends {
  background-image: url(/img/assets-infoparents/friends-on-icon.png);
}
#t001b #section-4 {
  padding: 25px 0;
  background-color: #7b6991;
}
#t001b #section-4 .m-title h1 {
  color: #7b6991;
}
#t001b #section-4 .content-text p {
  color: #7b6991;
  font-size: 20px;
  line-height: 24px;
}
#t001b #section-4 .content-image.full {
  margin-bottom: -20px;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  #t001b #section-4 .content-image.full {
    margin: 0 -45px -45px -45px;
  }
}
#t001b #section-5 {
  padding: 25px 0;
  background-color: #762456;
}
#t001b #section-5 .m-title h1 {
  color: white;
}
#t001b #section-5 h3, #t001b #section-5 p {
  margin: 0;
  color: white;
}
#t001b #section-5 h3 {
  margin-bottom: 10px;
  font-size: 1.538em;
}
#t001b #section-5 .page-content .content-text {
  padding-bottom: 20px;
}
#t001b #section-5 .career-possibility {
  padding: 0 10px;
}
#t001b #section-5 .career-possibility ul {
  margin-top: 0;
}

/* ------------------------------------------
 T001c: Your application
 ----------------------------------------- */
.t001c.m-quick-search-container {
  background-color: #b36e01;
}
.t001c.breadcrumb-container {
  background-color: #e08a01;
}

#t001c .content-text p {
  text-align: center;
}
#t001c #section-1 {
  padding-bottom: 0;
  background-color: #e08a01;
  text-align: center;
}
#t001c #section-1 .m-title h1 {
  color: white;
}
#t001c #section-1 .content-text p {
  color: white;
}
#t001c #section-2 {
  background-color: #ece9ee;
}
#t001c #section-2 h2 {
  color: #7b6991;
  padding-top: 40px;
}
#t001c #section-2 .page-content {
  background-color: white;
}
#t001c #section-2 .page-content p {
  color: #7b6991;
}
#t001c #section-3 {
  padding-top: 40px;
  background-color: #762457;
}
#t001c #section-3 h2 {
  color: white;
}
#t001c #section-3 .content-area p {
  color: white;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
}
#t001c #section-3 .wg-ucas-cal {
  margin: 40px 10px 20px 10px;
}
#t001c #section-6 {
  background-color: #e08a01;
}
#t001c #section-6 h2 {
  color: white;
  margin-bottom: 20px;
}
#t001c #section-6 p {
  color: white;
  text-align: center;
  font-size: 1.692em;
}
#t001c #section-6 .main-content {
  padding: 0;
}
#t001c #section-7 {
  background-color: #7d6990;
}
#t001c #section-7 h2 {
  color: white;
  margin-bottom: 20px;
}
#t001c #section-7 p {
  color: white;
  text-align: center;
  font-size: 1.692em;
}
#t001c #section-7 .main-content {
  padding: 0;
}
#t001c #section-8 {
  background-color: #eff2f3;
}
#t001c #section-8 .content-area {
  background-color: transparent;
}
#t001c #section-8 .main-content {
  padding: 0;
}
#t001c #section-8 .wg-accordion {
  margin-top: 40px;
}

/* ------------------------------------------
 T001sb: Salary and Benefits styles
 ----------------------------------------- */
.t001sb.m-quick-search-container {
  background-color: #8c8c14;
}
.t001sb.breadcrumb-container {
  background-color: #afaf19;
}

#t001sb #section-1 {
  padding-bottom: 0;
  background-color: #afaf19;
}
#t001sb #section-1 .m-title h1 {
  color: #ffffff;
}
#t001sb #section-1 .content-text p {
  color: #ffffff;
}
#t001sb #section-1 .image-holder {
  margin-top: 60px;
}
#t001sb #section-2 {
  background-color: #eff2f3;
}
#t001sb #section-2 .m-title h1 {
  color: #afaf19;
}
#t001sb #section-2 .content-text p {
  color: #ffffff;
}
#t001sb #section-2 .salary-sub-container {
  padding: 15px 0;
  margin-bottom: 15px;
  text-align: center;
  background-color: #dee7e9;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  #t001sb #section-2 .salary-sub-container {
    padding: 25px 0;
  }
}
#t001sb #section-2 .salary-sub-container h3 {
  color: #7fa8ae;
  margin: 0;
  margin-bottom: 10px;
  font-size: 1.84615em;
  line-height: normal;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  #t001sb #section-2 .salary-sub-container h3 {
    font-size: 2.308em;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 49em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: landscape) {
  #t001sb #section-2 .salary-sub-container h3 {
    font-size: 2.692em;
    margin-bottom: 30px;
  }
}
#t001sb #section-2 .salary-sub-container .salary-sub {
  height: 90px;
  padding: 10px 20px;
  -moz-border-radius: 55px;
  -webkit-border-radius: 55px;
  border-radius: 55px;
  font-size: 3.5em;
  line-height: normal;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue", Helvetica, sans-serif;
  color: #ffffff;
  background-color: #afaf19;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  #t001sb #section-2 .salary-sub-container .salary-sub {
    height: 110px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 4.462em;
  }
}
@media only screen and (min-width: 49em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: landscape) {
  #t001sb #section-2 .salary-sub-container .salary-sub {
    padding-left: 50px;
    paddin-right: 50px;
    font-size: 5.769em;
  }
}
#t001sb #section-2 .salary-sub-container .salary-sub .equals {
  display: none;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  #t001sb #section-2 .salary-sub-container .salary-sub .equals {
    display: inline-block;
  }
}
#t001sb #section-2 .salary-sub-container .salary-sub .pound {
  color: #afaf19;
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
#t001sb #section-2 .salary-sub-container .salary-sub .to {
  font-size: 60%;
}
#t001sb #section-2 .salary-sub-container .salary-sub [class^="icon-"] {
  height: 100px;
  width: 100px;
  margin: -10px 0;
  display: none;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  #t001sb #section-2 .salary-sub-container .salary-sub [class^="icon-"] {
    display: inline-block;
  }
}
#t001sb #section-2 .salary-sub-container .salary-sub .icon-graduate {
  background-image: url(/img/assets-salary-benefits/salary-graduate-icon.png);
}
#t001sb #section-2 .salary-sub-container .salary-sub .icon-school-leaver {
  background-image: url(/img/assets-salary-benefits/salary-school-leaver-icon.png);
}
#t001sb #section-2 .salary-sub-container .salary-sub .icon-apprenticeships {
  background-image: url(/img/assets-salary-benefits/salary-apprenticeships-icon.png);
}
#t001sb #section-3 {
  background-color: #7fa8ae;
}
#t001sb #section-3 .m-title h1 {
  color: #ffffff;
}
#t001sb #section-3 .content-text p {
  color: #ffffff;
  font-size: 20px;
  line-height: 24px;
}
#t001sb #section-4 {
  padding: 25px 0;
  background-color: #eff2f3;
}

/* ------------------------------------------
 T002a: School Leavers
 ----------------------------------------- */
.t002a.m-quick-search-container {
  background-color: #635474;
}
.t002a.breadcrumb-container {
  background-color: #7d688f;
}

#t002a .content-text p, .t002a .content-text p {
  text-align: center;
}
#t002a #section-1, .t002a #section-1 {
  background-color: #7d688f;
  text-align: center;
}
#t002a #section-1 .m-title h1, .t002a #section-1 .m-title h1 {
  color: white;
}
#t002a #section-1 .content-text p, .t002a #section-1 .content-text p {
  color: white;
}
#t002a #section-1 .m-button .btn, .t002a #section-1 .m-button .btn {
  background-color: #635474;
}

/* ------------------------------------------
 T002b: Summer Internships
 ----------------------------------------- */
.t002b.m-quick-search-container {
  background-color: #2570c3;
}
.t002b.breadcrumb-container {
  background-color: #1aa0e5;
}

#t002b .content-text p, .t002b .content-text p {
  text-align: center;
}
#t002b #section-1, .t002b #section-1 {
  background-color: #1aa0e5;
  text-align: center;
}
#t002b #section-1 .m-title h1, .t002b #section-1 .m-title h1 {
  color: white;
}
#t002b #section-1 .content-text p, .t002b #section-1 .content-text p {
  color: white;
}
#t002b #section-1 .m-button .btn, .t002b #section-1 .m-button .btn {
  background-color: #2570c3;
}
#t002b #section-2 .wg-tabbed-content .content-area, .t002b #section-2 .wg-tabbed-content .content-area {
  margin-bottom: 0;
}

/* ------------------------------------------
 T004: Programme pages
 ----------------------------------------- */
#t004 .content-text p {
  text-align: center;
}
#t004 #section-1 {
  padding-bottom: 0;
  text-align: center;
}
#t004 #section-1 .programme-status {
  padding-right: 10px;
  margin-top: 5px;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 28px;
  border: 2px solid white;
  color: white;
  display: inline-block;
  vertical-align: top;
}
#t004 #section-1 .programme-status span {
  padding: 1px 5px;
  margin-right: 5px;
  color: #0053a0;
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue", Helvetica, sans-serif;
  background-color: white;
  display: inline-block;
}
#t004 #section-1 .m-button {
  margin-bottom: 20px;
}
#t004 #section-1 .image-holder {
  margin-top: 0;
}
#t004 #section-2 {
  background-color: #e5edf5;
  padding-bottom: 0;
}
#t004 #section-2 .wg-programme-info {
  padding: 20px 10px;
  background-color: #0053a0;
  text-align: center;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  #t004 #section-2 .wg-programme-info {
    padding: 35px 10px;
  }
}
#t004 #section-2 .wg-programme-info h2 {
  margin-bottom: 20px;
  color: white;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  #t004 #section-2 .wg-programme-info h2 {
    font-size: 3.846em;
    margin-bottom: 35px;
  }
}
#t004 #section-2 .wg-programme-info .wg-programme-info-item {
  padding: 10px 40px;
  margin: 0 10px;
  line-height: 2em;
  text-align: center;
  -moz-border-radius: 42px;
  -webkit-border-radius: 42px;
  border-radius: 42px;
  background-color: #1a65aa;
  display: table;
  margin: 0 auto;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  #t004 #section-2 .wg-programme-info .wg-programme-info-item {
    height: 85px;
    padding: 10px 50px 10px 10px;
    line-height: 4em;
  }
}
#t004 #section-2 .wg-programme-info .wg-programme-info-item [class^="icon-"] {
  width: 65px;
  height: 65px;
  -moz-border-radius: 32px;
  -webkit-border-radius: 32px;
  border-radius: 32px;
  display: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #0053a0;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  #t004 #section-2 .wg-programme-info .wg-programme-info-item [class^="icon-"] {
    display: table-cell;
  }
}
#t004 #section-2 .wg-programme-info .wg-programme-info-item .icon-cash {
  background-image: url(/img/assets-programme-pages/programme-cash-icon.png);
}
#t004 #section-2 .wg-programme-info .wg-programme-info-item .icon-tick {
  background-image: url(/img/assets-programme-pages/programme-tick-icon.png);
}
#t004 #section-2 .wg-programme-info .wg-programme-info-item .icon-calendar {
  background-image: url(/img/assets-programme-pages/programme-calendar-icon.png);
}
#t004 #section-2 .wg-programme-info .wg-programme-info-item p {
  font-family: "TescoBold", arial, "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue", Helvetica, sans-serif;
  color: white;
  display: table-cell;
  vertical-align: middle;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
#t004 #section-2 .wg-programme-info .wg-programme-info-item p .item-info {
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue", Helvetica, sans-serif;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  #t004 #section-2 .wg-programme-info .wg-programme-info-item p {
    font-size: 1.308em;
    padding-left: 10px;
  }
}
@media only screen and (min-width: 49em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: landscape) {
  #t004 #section-2 .wg-programme-info .wg-programme-info-item p {
    font-size: 1.769em;
    padding-left: 20px;
  }
}
#t004 #section-2 .wg-programme-info br + .wg-programme-info-item {
  margin-top: 15px;
}
#t004 #section-2 .wg-accordion .content {
  background-color: white;
}
#t004 #section-3 {
  background-color: white;
}
#t004 #section-3 .content-text {
  padding-bottom: 15px;
}
#t004 #section-3 .content-text p {
  color: #85235e;
}
#t004 #section-3 .qualities .q-tile .tile-title {
  background-color: #b5bf00;
}
#t004 #section-3 .qualities .q-tile .tile-title p {
  color: white;
}
#t004 #section-3 .qualities .q-tile.one-one {
  background-color: #85235e;
}
#t004 #section-4 {
  background-color: #eff2f3;
}
#t004 .m-button-container {
  text-align: center;
}
#t004 .m-button-container .m-button {
  margin: 20px 0;
  float: none;
  display: inline-block;
}

/* ------------------------------------------
 T005: Graduate Programmes
 ----------------------------------------- */
.t005.m-quick-search-container {
  background-color: #878a00;
}
.t005.breadcrumb-container {
  background-color: #b5bf00;
}

#t005 .content-text p, .t005 .content-text p {
  text-align: center;
}
#t005 #section-1, .t005 #section-1 {
  background-color: #b5bf00;
  text-align: center;
}
#t005 #section-1 .m-title h1, .t005 #section-1 .m-title h1 {
  color: white;
}
#t005 #section-1 .content-text p, .t005 #section-1 .content-text p {
  color: white;
}
#t005 #section-1 .m-button .btn, .t005 #section-1 .m-button .btn {
  background-color: #878a00;
}
#t005 p.programme-brochure-link,
#t005 p.programme-brochure-link a, .t005 p.programme-brochure-link,
.t005 p.programme-brochure-link a {
  color: #762457 !important;
}
#t005 p.programme-brochure-link a, .t005 p.programme-brochure-link a {
  display: inline-block;
  text-decoration: none;
}
#t005 p.programme-brochure-link a:hover, #t005 p.programme-brochure-link a:focus, #t005 p.programme-brochure-link a:active, .t005 p.programme-brochure-link a:hover, .t005 p.programme-brochure-link a:focus, .t005 p.programme-brochure-link a:active {
  text-decoration: underline;
}

/* ------------------------------------------
 T006: Career Fomder
 ----------------------------------------- */
.t006.breadcrumb-container {
  background-color: #7fa8ae;
}

#t006 #section-1 {
  background-color: #7fa8ae;
  text-align: center;
  padding-bottom: 0;
}
#t006 #section-1 .m-title h1 {
  color: #ffffff;
}
#t006 #section-1 .content-text p {
  color: #ffffff;
}
#t006 #career-finder-container {
  background-color: #eff2f3;
}
#t006 #career-finder-container h2 {
  color: #666666;
}
#t006 #career-finder-container .heading-section {
  padding-top: 30px;
}

/* ------------------------------------------
 T007: Meet the team
 ----------------------------------------- */
.t007.m-quick-search-container {
  background-color: #00427f;
}
.t007.breadcrumb-container {
  background-color: #00539f;
}

#t007 .content-text p {
  text-align: center;
}
#t007 #section-1 {
  padding-bottom: 20px;
  background-color: #00539f;
  text-align: center;
}
#t007 #section-1 .m-title h1 {
  color: white;
}
#t007 #section-1 .content-text p {
  color: white;
}
#t007 .layout {
  padding-bottom: 40px;
}

/* ------------------------------------------
 T008: Training and Development
 ----------------------------------------- */
.t008.m-quick-search-container {
  background-color: #5d1c44;
}
.t008.breadcrumb-container {
  background-color: #762456;
}

#t008 .content-text p {
  text-align: center;
}
#t008 #section-1 {
  padding-bottom: 0;
  background-color: #762456;
}
#t008 #section-1 .m-title h1 {
  color: #ffffff;
}
#t008 #section-1 .content-text p {
  color: #ffffff;
}
#t008 #section-1 .image-holder {
  margin-top: 60px;
}
#t008 #section-2 {
  background-color: #ecf2f3;
}
#t008 #section-2 .m-title h1 {
  color: #7fa8ae;
}
#t008 #section-2 .content-text {
  padding-bottom: 0;
}
#t008 #section-2 .content-text p {
  color: #7fa8ae;
  font-size: 20px;
  line-height: 24px;
}
#t008 #section-2 .page-content {
  background-color: transparent;
}
#t008 #section-3 {
  background-color: #ffffff;
}
#t008 #section-3 .m-title h1 {
  color: #7fa8ae;
}
#t008 #section-3 .content-text p {
  color: #7fa8ae;
  font-size: 20px;
  line-height: 24px;
}
#t008 #section-3 .wg-video-container {
  padding: 0 6% 6%;
}
#t008 #section-4 {
  padding: 25px 0;
  background-color: #ebe9ef;
}
#t008 #section-4 .m-title h1 {
  color: #7b6991;
}
#t008 #section-4 .content-text p {
  color: #7b6991;
  font-size: 20px;
  line-height: 24px;
}
#t008 .icon-tabbed-content {
  margin-top: 40px;
}
#t008 .icon-tabbed-content ul {
  border-color: #ecf2f3;
}
#t008 .icon-tabbed-content .tabbed-nav .tabbed-nav-item {
  background-color: #ffffff;
  border-color: #ecf2f3;
}
#t008 .icon-tabbed-content .tabbed-nav .tabbed-nav-item:before, #t008 .icon-tabbed-content .tabbed-nav .tabbed-nav-item.active, #t008 .icon-tabbed-content .tabbed-nav .tabbed-nav-item:hover {
  background-color: #898700;
}
#t008 .icon-tabbed-content .tabbed-nav .tabbed-nav-item.type-1 h4 {
  color: #898700;
}
#t008 .icon-tabbed-content .tabbed-nav .tabbed-nav-item.type-2 h4 {
  color: #6a1147;
}
#t008 .icon-tabbed-content .tabbed-nav .tabbed-nav-item.type-3 h4 {
  color: #c98214;
}
#t008 .icon-tabbed-content .tabbed-nav .tabbed-nav-item.type-4 h4 {
  color: #b5bf23;
}
#t008 .icon-tabbed-content .tabbed-nav .tabbed-nav-item.type-5 h4 {
  color: #2bb1e5;
}
#t008 .icon-tabbed-content .tabbed-nav .tabbed-nav-item.type-6 h4 {
  color: #6d5783;
}
#t008 .icon-tabbed-content .tabbed-content {
  background-color: #fbfcfd;
}
#t008 .icon-tabbed-content .tabbed-content p {
  color: #898700;
}
#t008 .wg-accordion-images .accordion > div a {
  padding-top: 15px;
}
#t008 .wg-accordion-images .accordion > div a:before {
  width: 40px;
  height: 40px;
  top: 30%;
  right: 15px;
  background-position: -414px -54px;
}
#t008 .wg-accordion-images .accordion > div a.clicked:before {
  background-position: -460px -54px;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  #t008 .wg-accordion-images .accordion > div a:before {
    top: 60px;
  }
}
#t008 .wg-accordion-images .accordion > div a .image-holder {
  width: 115px;
  height: 115px;
  border-radius: 55px;
  border: 4px solid white;
  overflow: hidden;
  display: none;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  #t008 .wg-accordion-images .accordion > div a .image-holder {
    display: inline-block;
  }
}
#t008 .wg-accordion-images .accordion > div a .title {
  width: 85%;
  margin-left: 20px;
  margin-bottom: 20px;
  display: inline-block;
  vertical-align: top;
}
#t008 .wg-accordion-images .accordion > div a .title h4, #t008 .wg-accordion-images .accordion > div a .title p {
  margin: 0;
  line-height: normal;
  color: white;
}
#t008 .wg-accordion-images .accordion > div a .title h4 {
  margin-bottom: 5px;
  font-size: 20px;
  font-family: "TescoRegular", arial, "Helvetica Neue", Helvetica, sans-serif, "Helvetica Neue", Helvetica, sans-serif;
}
#t008 .wg-accordion-images .accordion > div a .title p {
  font-size: 16px;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  #t008 .wg-accordion-images .accordion > div a .title {
    width: 62%;
    margin-top: 20px;
    margin-bottom: 0;
    margin-left: 20px;
  }
  #t008 .wg-accordion-images .accordion > div a .title h4 {
    font-size: 28px;
  }
  #t008 .wg-accordion-images .accordion > div a .title p {
    font-size: 20px;
  }
}
@media only screen and (min-width: 49em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: landscape) {
  #t008 .wg-accordion-images .accordion > div a .title {
    width: 75%;
    margin-top: 30px;
  }
}
#t008 .wg-accordion-images .accordion .content {
  padding: 20px 5%;
}
#t008 .wg-accordion-images .accordion .content p, #t008 .wg-accordion-images .accordion .content ul li {
  font-size: 16px;
  color: #b5bf00;
}
@media only screen and (min-width: 35em), only screen and (max-device-width: 1024px) and (min-device-width: 768px) and (orientation: portrait) {
  #t008 .wg-accordion-images .accordion .content p, #t008 .wg-accordion-images .accordion .content ul li {
    font-size: 18px;
  }
}
#t008 .wg-accordion-images .accordion > div:nth-of-type(3n) a {
  background-color: #b5bf00;
}
#t008 .wg-accordion-images .accordion > div:nth-of-type(3n) + .content p, #t008 .wg-accordion-images .accordion > div:nth-of-type(3n) + .content ul li {
  color: #b5bf00;
}
#t008 .wg-accordion-images .accordion > div:nth-of-type(3n+1) a {
  background-color: #7b6991;
}
#t008 .wg-accordion-images .accordion > div:nth-of-type(3n+1) + .content p, #t008 .wg-accordion-images .accordion > div:nth-of-type(3n+1) + .content ul li {
  color: #7b6991;
}
#t008 .wg-accordion-images .accordion > div:nth-of-type(3n+2) a {
  background-color: #00a1e0;
}
#t008 .wg-accordion-images .accordion > div:nth-of-type(3n+2) + .content p, #t008 .wg-accordion-images .accordion > div:nth-of-type(3n+2) + .content ul li {
  color: #00a1e0;
}

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  /* Style adjustments for high resolution devices */
}
@media only screen and (max-width: 62.30769em) {
  .structural.mid {
    float: none;
    width: auto;
  }
  .structural.last {
    clear: both;
    float: none;
    width: auto;
  }
}

/*# sourceMappingURL=main.css.map */
