/*bkgds/bkgd photos for heros etc */
    .bkgd-photo-hero {
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      background-color: #333;
    }
    .bkgd-center-bottom {
      background-position: center bottom;
    }
    #bp{
        color:#000;
        position: fixed;
        top: 0;
        left: 0;
        background-color: yellow;
        font-size: 10px;
        z-index: 0;
    }
    /* 560 PX */
    @media only screen and ( min-width:18.750em ){
    /* Breakpoint identifier rgb(1,1,1) */
    #bp{color:#010101; z-index:560;}
    }
    /* 600 PX */
    @media only screen and ( min-width:37.500em ){
    /* Breakpoint identifier rgb(2,2,2) */
    #bp{color:#020202; z-index:600;}
    }
    /* 767 PX */
    @media only screen and ( min-width:47.938em ){
    /* Breakpoint identifier rgb(3,3,3) */
    #bp{color:#030303; z-index:767;}
    }
    /* 800 PX*/
    @media only screen and ( min-width:50.000em ){
    /* Breakpoint identifier rgb(4,4,4) */
    #bp{color:#040404; z-index:800;}
    }
    /* 960 PX */
    @media only screen and ( min-width:60.000em ){
    /* Breakpoint identifier rgb(5,5,5) */
    #bp{color:#050505; z-index:960;}
    }
    /* Breakpoint identifier rgb(9,9,9) */
    .is-old-ie #bp{color:#090909;}

/*media query examples*/
@media all and (max-width:37.438em) { /* 599px */
/* ADM-1035 dont hide Share from mobiles - it appears to work ok? */
/*  .share-page{
        visibility: hidden;
    }*/
    .page fieldset input, .page fieldset label, .page fieldset textarea, .page fieldset .multiwrapper, .page fieldset p.filename, .page fieldset p.file, .page fieldset select, .page fieldset .monthyear, .page fieldset .multifield select, .file-wrap.with-filepicker{
        float: left !important;
        width: 100% !important;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .page fieldset div.checkboxes input[type="radio"] {
        float: left !important;
        width: auto !important;
    }
    .page fieldset div.checkboxes, .page fieldset div.multifield{
        overflow: visible !important;
        float: left !important;
        width: 100% !important;
    }
    .page fieldset div.multifield{
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .page fieldset div.checkboxes .checkbox {
        width: 100% !important;
    }
    .page fieldset div.checkboxes .checkbox label{
        width: auto !important;
        margin-left: 5px !important;
    }
    .page fieldset p, .page fieldset label.full_width, .page fieldset input.full_width, .page fieldset textarea.full_width, .page fieldset select.full_width, .page fieldset .monthyear.full_width, .page fieldset .multiwrapper.full_width, .page fieldset .multiwrapper.full_width select, .page fieldset p.filename.full_width, .page fieldset p.file.full_width, .page fieldset .checkboxes.full_width{
        width: 100% !important;
    }
    .hero-content h1, .hero-content h2{
        font-size: 1.2em !important;
    }
    .page fieldset input.ni_number_1 {
        margin-left: 0px !important;
    }
    .page fieldset input.ni_number_1 {
        width: 50px !important;
        margin-right: 10px !important;
    }
    .page fieldset input.ni_number_2 {
        width: 100px !important;
        margin-right: 10px !important;
    }
    .page fieldset input.ni_number_3 {
        width: 30px !important;
    }
}
@media all and (min-width:37.500em) { /* 600px */
}
@media all and (max-width:49.938em) { /* 799px */
}
@media all and (min-width:50em) { /* 800px */
}
@media all and (min-width:60em) { /* 960px */
}


/* row ----------------------------- */

.row:before,
.row:after {
        content: "";
        display: table;
} 
.row:after {
        clear: both;
}
.row {
        zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}

/* page-wraper ----------------------------- */
.page-wrapper {
    /*overflow set - for off-screen nav*/
    overflow: hidden;
    /*position: relative; set - for off-screen nav*/
    position: relative;
    background-color: #ddd;
}
/*old-ie override*/
.is-old-ie .page-wrapper {
  overflow: visible;
}

/* page ----------------------------- */
.page {
    max-width: 85em;
    margin: 0 auto;
    position: relative;
    left: 0;
    background-color: white;
}
.page-wrapper.offscreen-nav-visible .page {
  left: -5em;  
}
@media all and (min-width:60em) { /* 960px */
  .page-wrapper.offscreen-nav-visible .page {
    left: 0;
  }
}

/* container ----------------------------- */

.container {
    margin: 0 auto;
    max-width: 58.750em; /* 940px */
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}
.is-old-ie .container {
  width: 940px;
}

.container.full-width {
    padding-left: 0;
    padding-right: 0;
    max-width: 9999em;
}

/* header ----------------------------- */
.header-contents {
    background-color: white;  
    position: relative;
    z-index: 100;
}
.logo-site {
    margin-top: 17px;
    margin-bottom: 20px;
}
.logo-site img {
    width: 130px;
    height: 40px;
}
@media all and (min-width:50em) {
    .logo-site {
        float: left;
        margin-left: 0px;
    }
}

@media all and (min-width:60em) {
    .logo-site {
        float: left;
    }
    .logo-site img {
        width: 197px;
        height: 61px;
    }
}
/*old-ie override*/
.is-old-ie .logo-site {
  float: left;
  margin-left: 0px;
  width: 197px;
}
.is-old-ie .logo-site img {
  width: 197px;
  height: 61px;
}

.nav-primary {
    display: none;
  float: right;
  height: auto;
  padding: 10px 0 0 0;
}
@media all and (min-width:60em) {
  .nav-primary {
    display: block;
  }  
}
/*old-ie override*/
.is-old-ie .nav-primary {
  display: block;
}  

.nav-primary ul {
  margin: 0;
  padding: 0;
}
.nav-primary li {
  float: left;
  margin: 0;
  padding: 20px 0 0 0;
  list-style: none;
  border-bottom: 2px solid white;
}

.nav-primary li.current-section {
  border-color: #6666a3;
}

.nav-primary a {
    display: block;
  padding: 10px 12px 30px 12px;
    font-family: "Quicksand", arial, sans-serif;
  font-size: 1.05em;
    letter-spacing: -1px;
    border-right: 1px solid #e5e5e5;
    text-decoration: none;
    font-weight: 700;
  -webkit-transition: color 0.1s linear;
  -moz-transition: color 0.1s linear;
  -o-transition: color 0.1s linear;
  transition: color 0.1s linear;
}

/*old-ie override*/
.is-old-ie .nav-primary a{
    font-size: 0.95em;
    font-family: Arial, sans-serif;
}

.nav-primary li:first-child a {
    border-left: 1px solid #e5e5e5;
}

.nav-primary a:hover{
    color: #9999c1;
}
.nav-primary .selected a {
    color: #f04762;
}

.nav-primary .has-jump-nav a {
    position: relative;
}

.nav-primary .has-jump-nav a:after {
    content: "\e602";
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 30px;
    position: absolute;
    bottom: 2px;
    left: 50%;
    margin-left: -8px;
  -webkit-transition: bottom 0.1s linear;
  -moz-transition: bottom 0.1s linear;
  -o-transition: bottom 0.1s linear;
  transition: bottom 0.1s linear;
    transition: bottom 0.1s linear;
}

.no-touch .nav-primary .has-jump-nav a:hover:after {
    bottom: 0;
}

.nav-primary .has-jump-nav.selected a:after {
  content: "\e603";
}

/*ie7 fix*/
.ie7 .has-jump-nav {
  background-image: url(/images/icon_ie7/icon_ie7_nav_prim_pointer_down.png);  
  background-repeat: no-repeat;
  background-position: 50% 65px;
}
.ie7 .has-jump-nav.selected {
  background-image: url(/images/icon_ie7/icon_ie7_nav_prim_pointer_up.png);  
}

/* nav-offscreen ----------------------------- */
.page-shield {
    position: absolute;
    width: 100%;
    height: 100%;
    left: -100%;
    top: -100%;
    background-color: rgba(240, 71, 98, 0);
  -webkit-transition: background-color 0.3s linear;
  -moz-transition: background-color 0.3s linear;
  -o-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
  z-index: 999;
}
@media all and (min-width:60em) { /* 960px */
  .page-shield {
    display: none;
  }
}
/*old-ie override*/
.is-old-ie .page-shield {
  display: none;
}

.page-wrapper.offscreen-nav-visible .page-shield {
    background-color: #333;
  background-color: rgba(50, 50, 50, 0.8);
    left: 0;
    top: 0;
}

.nav-offscreen {
    position: absolute;
  z-index: 9999999;
    top: 0;
    width: 15em;
    right: -15em;
  background-color: white;
    height: 100%;
}

@media all and (min-width:60em) { /* 960px */
  .nav-offscreen {
    display: none;
  }
}
/*old-ie override*/
.is-old-ie .nav-offscreen {
  display: none;
}


.nav-offscreen nav {
    line-height: 1.5;
}
.page-wrapper.offscreen-nav-visible .nav-offscreen {
  right: 0;
}

.nav-offscreen .toggler {
    position: absolute;
    left: -110px;
    top: 12px;
    width: 100px;
    height: 50px;
    background-color: #f04762;
    color: #fff;
    text-indent: -9999px;
    border-radius: 3px;
  text-decoration: none;
}
.nav-offscreen .toggler:after {
  font-family: 'icomoon';
    content: '\e60c';
    left: 60px;
    top: 1px;
    text-indent: 0;
    position: absolute;
    font-size: 32px;
    line-height: 49px;
}
.page-wrapper.offscreen-nav-visible .nav-offscreen .toggler {
    background-color: transparent;
}
.nav-offscreen .toggler .word {
  color: white;
  text-indent: 0;
  position: absolute;
  left: 10px;
  line-height: 52px;
  font-family: arial,sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.page-wrapper.offscreen-nav-visible .nav-offscreen .toggler .word {
  display: none;
}

.nav-offscreen ul {
    margin: 20px 20px;
    padding: 0;
    line-height: 1;
  border-top: 1px solid #ccc;
}
.nav-offscreen ul ul {
  border-top: none;
  margin-left: 0;
  margin: 0;
}
.nav-offscreen li.current-section > ul {
  margin-bottom: 2em;
}
.nav-offscreen ul ul li.current-section > ul {
  margin-bottom: 0;
}

.nav-offscreen li {
    margin: 0;
    line-height: 1.2;
    padding: 0;
    list-style: none;
  border-bottom: #ccc 1px solid;
}
.nav-offscreen li li {
  border-bottom: none;
  font-size: 0.875em;
}
.nav-offscreen li.current-section {
  margin-top: 2em;
}
.nav-offscreen li.current-section:first-child {
  margin-top: 0;
}
.nav-offscreen ul ul li.current-section {
  margin-top: 0;
}
.nav-offscreen li li li {
  font-size: 1em;
}

.nav-offscreen nav a {
    display: block;
    padding: 8px 0;
  font-weight: bold;
  text-decoration: none;
  color: #999;

}
.nav-offscreen nav ul ul a {
  font-weight: 400;
}
.nav-offscreen nav .current-section a {
  color: #f04762;
  border-left: 10px solid #f04762;
  padding-left: 15px;
  margin-left: -20px;
}
.nav-offscreen .current-section ul a {
  color: #999;
}
.nav-offscreen .current-section .current-page a {
  color: #f04762;
}
.nav-offscreen .current-section li li a {
  padding-left: 30px;
}

.nav-jump {
    overflow: hidden;
  -webkit-transition: height 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.0);
  -moz-transition: height 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.0);
  -o-transition: height 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.0);
  transition: height 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.0);
    height: 0;
    background-color: #eee;
    display: none;
}
@media all and (min-width:60em) { 
    .nav-jump {
        display: block;
    }   
}
.is-old-ie .nav-jump {
  display: block;
} 

.nav-jump-content {
    display: none;
    padding-top: 20px;
    padding-bottom: 20px;
}

.nav-jump-content ul {
    margin: 0;
    line-height: 1;
}

.nav-jump-content li {
    list-style: none;
    margin-left: 0;
    margin-bottom: 2px;
}

.nav-jump-content li a {
    display: block;
    background-color: white;
    padding: .7em 15px;
    font-size: .9em;
    color: #f04762;
    text-decoration: none;
  -webkit-transition: background-color .2s linear;
  -moz-transition: background-color .2s linear;
  -o-transition: background-color .2s linear;
  transition: background-color .2s linear;
}
.nav-jump-content li a:hover {
  background-color: #f4f4f4;
}

.nav-jump-content .nav-highlighted li a {
  background-color: #f04762;
  color: white;
}
.nav-jump-content .nav-highlighted li a:hover {
  background-color: #f47589;
}

.nav-jump-content .chunky-link {
    display: block;
    text-align: center;
    text-decoration: none;
    color: white;
}

.nav-jump-content .chunky-link p {
    margin-bottom: 0;
    padding: .7em 0;
}
.chunky-selector {
    margin: 0;
    position: relative;
    z-index: 999;
}
@media all and (min-width:37.500em) { /* 600px */
    .chunky-selector {
        width: 33.333%;
    }
}
.is-old-ie .chunky-selector {
  width: 33.333%;
}

.chunky-selector--position-absolute {
    position: absolute;
    bottom: 70px;
    width: 100%;
}
.chunky-selector--position-absolute.right {
    right: 0;
}
@media all and (min-width:37.500em) { 
    .chunky-selector--position-absolute {
        width: 33.333%;
        bottom: auto;
        top: 10px;
    }
}
.is-old-ie .chunky-selector--position-absolute {
  width: 33.333%;
  bottom: auto;
  top: 10px;
}

.chunky-selector.right {
    margin-left: auto;
    margin-right: 0;
}

.chunky-selector.center {
    margin-left: auto;
    margin-right: auto;
}

.chunky-selector dl {
    margin-bottom: 0;
    position: relative;
}

.chunky-selector dt {
    margin: 0;
    background-color: #6666a3;
}
.chunky-selector dt a {
    display: block;
    padding: 16px 20px;
    font-family: "Quicksand",sans-serif;
    font-size: 19px;
}
.is-old-ie .chunky-selector dt a {
 font-family: Arial, sans-serif;
}

.chunky-selector dt a:after {
    position: absolute;
    font-size: 40px;
    top: 12px;
    right: 20px;
    color: #fff;
    content: "\e602";
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.chunky-selector dl.open dt a:after {
    content: "\e603";
}

.ie7 .chunky-selector dt a {
  background-image: url(/images/icon_ie7/icon_ie7_chunkysel_pointer_down.png);
  background-repeat: no-repeat;
  background-position: 93% 55%;
  height: 1%;
}
.ie7 .chunky-selector dl.open dt a {
  background-image: url(/images/icon_ie7/icon_ie7_chunkysel_pointer_up.png);
}

.chunky-selector dd {
    margin: 0;
    position: absolute;
    width: 100%;
    background-color: #7c7cad;
    padding-top: 30px;
    padding-bottom: 30px;
    display: none;
}

@media all and (min-width:37.500em) { /* 600px */
    .chunky-selector.jumbo dd {
        width: 300%;
    }
}
/*old-ie override*/
.is-old-ie .chunky-selector.jumbo dd {
  width: 300%;
}

@media all and (min-width:37.500em) { /* 600px */
    .chunky-selector.right.jumbo dd {
        margin-left: -200%;
    } 
}
/*old-ie override*/
.is-old-ie .chunky-selector.right.jumbo dd {
  margin-left: -200%;
} 

@media all and (min-width:37.500em) { /* 600px */
    .chunky-selector.center.jumbo dd {
        margin-left: -100%;
    }
}
/*old-ie override*/
.is-old-ie .chunky-selector.center.jumbo dd {
  margin-left: -100%;
}

.chunky-selector .open dd {
    display: block;
}

.chunky-selector ul {
    margin: 0;
    padding: 0;
}

@media all and (min-width:37.500em) { /* 600px */
    .chunky-selector.jumbo ul {
        float: left;
    width: 50%;
    }
}
/*old-ie override*/
.is-old-ie .chunky-selector.jumbo ul {
  float: left;
  width: 50%;
}
/*ie7 fix*/
.ie7 .chunky-selector.jumbo ul {
  float: left;
  width: 49.5%;
}

.chunky-selector li {
    margin: 0 10px;
    padding: 0 10px;
    list-style: none;
    border-bottom: 1px solid #9999c1;
}
.chunky-selector li:first-child {
    border-top: 1px solid #9999c1;
}

.chunky-selector a {
    color: white;
    text-decoration: none;

  font-size: .9em;
  -webkit-transition: color .2s linear;
  -moz-transition: color .2s linear;
  -o-transition: color .2s linear;
  transition: color .2s linear;
  display: block;
  padding-top: .6em;
  padding-bottom: .6em;
}

.chunky-selector dd a:hover {
    color: #C0C0DF;
}

.big-home-hero {
  background-color: #eee;
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}
@media all and (min-width:31.250em) { /* 500px */
  .big-home-hero {
    padding-bottom: 80%;
  } 
}
@media all and (min-width:40.625em) { /* 650px */
  .big-home-hero {
    padding-bottom: 65%;
  } 
}
@media all and (min-width:47.938em) { /* 767px */
  .big-home-hero {
    padding-bottom: 50%;
  } 
}
@media all and (min-width:60em) { /* 960px */
  .big-home-hero {
    padding-bottom: 0;
    height: 450px;
  }
}
/*old-ie override*/
.is-old-ie .big-home-hero {
  padding-bottom: 0;
  height: 450px;
}

.big-home-hero-img {
  position: absolute;
  left: -9999em;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media all and (min-width:60em) { /* 960px */
  .big-home-hero-img {
    left: 0;
  }
}
/*old-ie override*/
.is-old-ie .big-home-hero-img {
  left: 0;
}

.big-home-hero-img img {
  max-width: 9999em;
  width: 100%;
  position: absolute;
}

@-webkit-keyframes home-hero-img-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.2); }
}
@-moz-keyframes home-hero-img-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.2); }
}
@-o-keyframes home-hero-img-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.2); }
}
@keyframes home-hero-img-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.2); }
}

@-webkit-keyframes home-hero-img-fade-zoom {
  0% { opacity: 0; transform: scale(1); }
  20% { opacity: 1; }
  100% { transform: scale(1.2); }
}
@-moz-keyframes home-hero-img-fade-zoom {
  0% { opacity: 0; transform: scale(1); }
  20% { opacity: 1; }
  100% { transform: scale(1.2); }
}
@-o-keyframes home-hero-img-fade-zoom {
  0% { opacity: 0; transform: scale(1); }
  20% { opacity: 1; }
  100% { transform: scale(1.2); }
}
@keyframes home-hero-img-fade-zoom {
  0% { opacity: 0; transform: scale(1); }
  20% { opacity: 1; }
  100% { transform: scale(1.2); }
}

.big-home-hero-img img.unzoom {
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}
.big-home-hero-img img.fade-zoom {
  -webkit-animation-name: home-hero-img-fade-zoom;
  -webkit-animation-duration: 10s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;

  -moz-animation-name: home-hero-img-fade-zoom;
  -moz-animation-duration: 10s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: normal;
  -moz-animation-timing-function: linear;
  -moz-animation-fill-mode: forwards;
  -moz-animation-delay: 0s;

  -o-animation-name: home-hero-img-fade-zoom;
  -o-animation-duration: 10s;
  -o-animation-iteration-count: 1;
  -o-animation-direction: normal;
  -o-animation-timing-function: linear;
  -o-animation-fill-mode: forwards;
  -o-animation-delay: 0s;

  animation-name: home-hero-img-fade-zoom;
  animation-duration: 10s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-delay: 0s;

}
.big-home-hero-img img.zoom {
  -webkit-animation-name: home-hero-img-zoom;
  -webkit-animation-duration: 10s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -webkit-animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 0s;

  -moz-animation-name: home-hero-img-zoom;
  -moz-animation-duration: 10s;
  -moz-animation-iteration-count: 1;
  -moz-animation-direction: normal;
  -moz-animation-timing-function: linear;
  -moz-animation-fill-mode: forwards;
  -moz-animation-delay: 0s;

  -o-animation-name: home-hero-img-zoom;
  -o-animation-duration: 10s;
  -o-animation-iteration-count: 1;
  -o-animation-direction: normal;
  -o-animation-timing-function: linear;
  -o-animation-fill-mode: forwards;
  -o-animation-delay: 0s;

  animation-name: home-hero-img-zoom;
  animation-duration: 10s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-delay: 0s;
}

.big-home-hero .container {
  z-index: 1;
  height: 100%;
}
@media all and (min-width:60em) { /* 960px */
  .big-home-hero .container {
    position: relative;
  }
}
/*old-ie override*/
.is-old-ie .big-home-hero .container {
  position: relative;
}

.home-headline {
  position: absolute;
  z-index: 1;
  bottom: -100%;
  -webkit-transition: bottom 2s ease;
  -moz-transition: bottom 2s ease;
  -o-transition: bottom 2s ease;
  transition: bottom 2s ease;
}
@media all and (min-width:60em) { /* 960px */
  .home-headline {
    width: 50%;
  }
}
/*old-ie override*/
.is-old-ie .home-headline {
  width: 50%;
}

.home-headline.transitioned-in {
  bottom: 0;
}

.home-headline-box {
  margin-right: 10px;
}

.home-headline h2 {
  padding: 15px 30px 0 30px;
  margin: 0;
  line-height: 1;
  background: url(/images/10x10_f04762_80pc.png);
  background: rgba(240, 71, 98, 0.8);
  font-size: 25px;
  font-weight: 300;
}
@media all and (min-width:60em) { /* 960px */
  .home-headline h2 {
    font-size: 45px;
  }
}
/*old-ie override*/
.is-old-ie .home-headline h2 {
  font-size: 45px;
}

.home-headline p {
  background: url(/images/10x10_f04762_80pc.png);
  background: rgba(240, 71, 98, 0.8);
  margin: 0;
  padding: 20px 40px 40px 30px;
  color: white;
  font-family: "Quicksand", sans-serif;
  font-size: .9em;
  letter-spacing: -1px;
}
@media all and (min-width:60em) { /* 960px */
  .home-headline p {
    font-size: 1em;
  }
}
/*old-ie override*/
.is-old-ie .home-headline p {
  font-size: 1em;
  font-family: Arial, sans-serif;
}

/*homepage promo*/
.home-promo {
    background-position: left top;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/*--jobs*/
.home-promo--jobs {
    margin-bottom: 1.875em;  /*(mar-bot-medium)* - remove bottom margin when promo floats*/
}
@media only screen and (min-width: 35.000em) { /*560px*/
    .home-promo--jobs {
        margin-bottom: 0; 
    }   
}
/*old-ie override*/
.is-old-ie .home-promo--jobs {
  margin-bottom: 0; 
} 

.home-promo_text--jobs {
    min-height: 7em;
    padding: 1em 20px 0 20px;
    position: relative;
}
.home-promo_text--jobs h3 {
    font-size: .9em;
    /*text-transform: uppercase;*/
    font-weight: 700;
    margin-bottom: .5em;
}
.home-promo_text--jobs h4 {
    margin-bottom: 0;
    max-width: 55%;
  font-size: .9em;
  line-height: 1.2;
}
.home-promo_text--jobs h4 a {
    color: #f04762;
    /*text-decoration: none;*/
}

@media all and (min-width:47.938em) { /* 767px */
  .home-promo_text--jobs h4 a {
    font-size: 1.1em;
  }
}
/*old-ie override*/
.is-old-ie .home-promo_text--jobs h4 a {
  font-size: 1.1em;
}

.home-promo_text--jobs .button-link {
    position: absolute;
    top: 1em;
    right: 20px;
    margin: 0;
}
/*hover styling*/
.home-promo_img {
    position: relative;
    overflow: hidden;
}

.home-promo--register .media-overlay {
    position: absolute;
    left: 0;
    top: 100%;
    right: 0;
    height: 100%;
  background-color: transparent;
    background-color: rgba(240, 71, 98, 0.6);
    transition: top .3s cubic-bezier(0.645, 0.045, 0.355, 1.0); 
}
.home-promo--register .state-hover .media-overlay {
    top: 0;
}

.home-promo--register img {
    transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1.0);
}
.home-promo--register .state-hover img {
    -webkit-transform: scale(1.1);
    -moz-transform:    scale(1.1);
    -ms-transform:     scale(1.1);
    -o-transform:      scale(1.1);
    transform:         scale(1.1);
}

.home-promo_text--register a {
    min-height: 7em;
    padding: 1em 20px 0 20px;
    display: block;
    color: white;
    text-decoration: none;
    position: relative;
}
.home-promo_text--register a h4 {
    font-size: 1.2em;
    text-align: center;
    margin: 0;
}
@media all and (min-width:47.938em) { /* 767px */
  .home-promo_text--register a h4 {
    font-size: 1.6em;
  }
}
/*old-ie override*/
.is-old-ie .home-promo_text--register a h4 {
  font-size: 1.6em;
}

.home-promo--register a h4:after {
    content: "\e601";
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    font-size: 40px;
    margin-top: 10px;
}

/*ie7 fix*/
.ie7 .home-promo--register a h4 {
  background-image: url(/images/icon_ie7/icon_ie7_register_pointer.png);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  padding-bottom: 50px;
}

.overview-blog {
    overflow: hidden;
    width: 100%;
    background-color: #6666a3;
}
.overview-blog-article {
    width: 100%;
    color: #fff;
}
@media all and (min-width:37.500em) { /* 600px */
    .overview-blog-article {
        float: left;
        width: 50%;
    }
}
/*old-ie override*/
.is-old-ie .overview-blog-article {
  float: left;
  width: 50%;
}

/*ie7 fix*/
.ie7 .overview-blog-article{
    width: 48%;
}

.overview-blog-article-box {
    padding: 20px 30px 10px;
}
.overview-blog-article h4 {
    margin-top: 0;
    font-size: 1.6em;
}

.overview-blog-article .blog-title {
    margin-bottom: 2em;
}

.overview-blog-article .blog-title a {
    display: block;
    color: #d1d1e3;
    text-decoration: none;
    font-family: "Quicksand", sans-serif;
  letter-spacing: -1px;
}
/*old-ie fix*/
.is-old-ie .overview-blog-article .blog-title a {
    font-family: Arial, sans-serif;
}

@media all and (min-width:60em) { /* 960px */
  .overview-blog-article .blog-title a {
    font-size: 1.3em;
  }
}
/*old-ie override*/
.is-old-ie .overview-blog-article .blog-title a {
  font-size: 1.3em;
}

.overview-blog-img {
    width: 100%;
}
@media all and (min-width:37.500em) { /* 600px */
    .overview-blog-img {
        float: right;
        width: 50%;
    }
}
/*old-ie override*/
.is-old-ie .overview-blog-img {
  float: right;
  width: 50%;
}

@media all and (min-width:37.500em) { /* 600px */
    .overview-blog-img-box {
        margin: 0;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    }
}
@media all and (min-width:60em) { /* 960px */
  .overview-blog-img-box {
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}
/*old-ie override*/
.is-old-ie .overview-blog-img-box {
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.overview-blog-img img {
  width: 100%;
}

.overview-jobs-col {
    width: 100%;
}
@media all and (max-width:49.938em) { /* 799px */
    .overview-jobs-col {
        margin-bottom: 40px;
    }
}
@media all and (min-width:50em) { /* 800px */
    .overview-jobs-col {
        float: left;
        overflow: hidden;
        position: relative;
        padding-bottom: 39%;
        width: 50%;
    }
}
/*old-ie override*/
.is-old-ie .overview-jobs-col {
  float: left;
  overflow: hidden;
  position: relative;
  padding-bottom: 39%;
  width: 50%;
}

.position-top {
    top: 0;
}
.position-bottom {
    bottom: 0;
}

.grid-element-height-small {
    background: #ccc;
    width: 100%;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}
@media all and (min-width:50em) { /* 800px */
    .grid-element-height-small {
        position: absolute;
        height: 38%;
    }
}
/*old-ie override*/
.is-old-ie .grid-element-height-small {
  position: absolute;
  height: 38%;
}

.grid-element-height-large {
    width: 100%;
    background: #ddd;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}
@media all and (min-width:50em) { /* 800px */
    .grid-element-height-large {
        position: absolute;
        height: 62%;
    }
}
/*old-ie override*/
.is-old-ie .grid-element-height-large {
  position: absolute;
  height: 62%;
}

/* twitter feed ----------------------------- */
.tweet-item {
    margin-bottom: 20px;
}
@media all and (min-width:37.500em) { /* 600px */
    .tweet-item {
        margin-bottom: 40px;
    }
}
/*old-ie override*/
.is-old-ie .tweet-item {
  margin-bottom: 40px;
}

.tweet-item header {
    padding: 0 0 1em 0;
    border-bottom: 1px solid white;
    margin-bottom: 1em;
}
.tweet-item header * {
    display: block;
    margin: 0;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}
.tweet-item header h5 {
    position: relative;
    padding-left: 35px;
}
/*ie7 fix*/
.ie7 .tweet-item header h5{
    background-image: url(/images/icon_ie7/icon_ie7_tweet_feed_bird.png);
    background-repeat: no-repeat;
    background-position: 0 50%;
    /*fix vertical position and icon cropping with inline-block*/
    display: inline-block;
}

@media all and (min-width:50em) { /* 800px */
    .tweet-item header * {
        font-size: 20px;
    }
}
/*old-ie override*/
.is-old-ie .tweet-item header * {
  font-size: 20px;
}

.tweet-item .icon-admiral-twitter:before {
    position: absolute;
    left: 0;
    top: 4px;
}
.tweet-content {
    color: #cce6fa;
}
@media all and (min-width:37.500em) { /* 600px */
    .tweet-content {
        min-height: 6em;
    }
}
/*old-ie override*/
.is-old-ie .tweet-content {
  min-height: 6em;
}

.tweet-content a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.tweet-item .button-follow {
    display: inline-block;
    margin-top: 1em;
  background-color: #4497d5;
    background-color: rgba(0,0,0,0.1);
    color: white;
    text-decoration: none;
    padding: .5em 10px;
    font-size: .9em;
    border-radius: 3px;
}

/*ie7 fix*/
.ie7 .tweet-item .button-follow {
    background-color: #4497d5;
}

/* carousel pager ----------------------------- */
#carousel-pager .owl-controls {
    margin-top: 30px;
    line-height: 0.5;
}
/* carousel-type-blocked ----------------------------- */
.owl-carousel.carousel-type-blocked {
    padding: 0 20%;
    width: 60%;
}

@media all and (min-width:37.500em) { /* 600px */
    .owl-carousel.carousel-type-blocked {
        padding: 0 10%;
        width: 80%;
    }
}
/*old-ie override*/
.is-old-ie .owl-carousel.carousel-type-blocked {
  padding: 0 10%;
  width: 80%;
}

.carousel-type-blocked .owl-prev {
    position: absolute;
    top: 0;
    left: 0;
}
.carousel-type-blocked .owl-next {
    position: absolute;
    top: 0;
    right: 0;
}
.carousel-type-blocked .owl-item-slide {
    margin-right: 10px;
    margin-left: 10px;
}

/*prev/next*/
.carousel-type-blocked .owl-buttons div {
    padding: 0;
    font-size: 20px;
    width: 50px;
    height: 50px;
    line-height: 50px;
}
@media all and (min-width:60em) { /* 960px */
    .carousel-type-blocked .owl-buttons div {
        font-size: 40px;
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
}
/*old-ie override*/
.is-old-ie .carousel-type-blocked .owl-buttons div {
  font-size: 40px;
  width: 80px;
  height: 80px;
  line-height: 80px;
}

.carousel-type-blocked .owl-buttons div {
    top: 50%;
    margin-top: -25px;
}
@media all and (min-width:60em) { /* 960px */
    .carousel-type-blocked .owl-buttons div {
        margin-top: -40px;
    }
}
/*old-ie override*/
.is-old-ie .carousel-type-blocked .owl-buttons div {
  margin-top: -40px;
}

/* carousel history ----------------------------- */
.slide-history {
    text-align: center;
}
.history-month {
    color: #999;
    font-family: "Quicksand",sans-serif;
    font-size: 20px;
    letter-spacing: -1px;
    text-rendering: optimizeLegibility;
}
/*old-ie fix*/
.is-old-ie .history-month {
 font-family: Arial, sans-serif;
}
@media all and (min-width:37.500em) { /* 600px */
    .history-month {
        font-size: 25px;
    }
}
@media all and (min-width:50em) { /* 800px */
    .history-month {
        font-size: 30px;
    }
}
/*old-ie override*/
.is-old-ie .history-month {
  font-size: 30px;
}

.history-year {
    margin-bottom: 10px;
    color: #333384;
    font-family: "Quicksand",sans-serif;
    /*font-family: "Lato",sans-serif;*/
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    text-rendering: optimizeLegibility;
}
@media all and (min-width:50em) { /* 800px */
    .history-year {
        font-size: 45px;
    }
}
/*old-ie override*/
.is-old-ie .history-year {
  font-size: 45px;
  font-family: Arial, sans-serif;
}

.history-fact {
    color: #6666a3;
    font-size: 14px;
}

/* carousel brands ----------------------------- */
.carousel-brands-box {
    padding: 0 10px;
}
.carousel-brands-box a {
  display: block;
  text-decoration: none;
  font-size: .8em;
  color: #999;
}
.carousel-brands-box a:hover {
  color: #f04762;
}
.carousel-brands-box img {
    margin: auto;
}
.carousel-brands-box .link {
  display: block;
  text-align: center;
  padding: 5px;
  background-color: #f4f4f4;
}

/* dept-subnav ----------------------------- */
.dept-subnav {
    margin-bottom: 2em;
    overflow: auto;
    margin-left: 10px;
    margin-right: 10px;
}
@media all and (min-width:50.000em) { /* 800px */
    .dept-subnav {
        margin-left: 0;
        margin-right: 0;
    }
}
/*old-ie override*/
.is-old-ie .dept-subnav {
  margin-left: 0;
  margin-right: 0;
}

.dept-subnav ul {
    margin: 0;
    padding: 0;
}

.dept-subnav li {
    margin: 0;
    padding: 0;
    list-style: none;
}

@media all and (min-width:43.750em) { /* 700px */
    .dept-subnav li {
        float: left;
    }
}
/*old-ie override*/
.is-old-ie .dept-subnav li {
  float: left;
}

.dept-subnav a {
    display: block;
    margin: 0 0 2px 2px;
    text-decoration: none;
    padding: .5em 10px;
    color: white;
    background-color: #c0394e;
  font-family: "Quicksand", arial, sans-serif;
  letter-spacing: -0.5px;
  -webkit-transition: background-color .2s linear;
  -moz-transition: background-color .2s linear;
  -o-transition: background-color .2s linear;
  transition: background-color .2s linear;
}
@media all and (min-width:50.000em) { /* 800px */
    .dept-subnav a {
        padding: .7em 17px;
    }
}
/*old-ie override*/
.is-old-ie .dept-subnav a {
  padding: .7em 20px;
  font-family: Arial, sans-serif;
}

.dept-subnav a:hover {
  background-color: #d84058;
}
.dept-subnav li.selected a {
    background-color: white;
    color: #f04762;
}

/* aside promos ----------------------------- */
.dept-aside {
  margin-top: 3em;
}
@media only screen and (min-width: 35.000em) { /*560px*/
  .dept-aside {
    margin-top: 0;
  }
}
/*old-ie override*/
.is-old-ie .dept-aside {
  margin-top: 0;
}

.aside-promo-blog-story {
  margin-bottom: 10px;
}
.aside-promo-blog-story a {
    display: block;
    background-color: #6666a3;
    text-decoration: none;
  overflow: hidden;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
.aside-promo-blog-story a:hover {
  background-color: #7c7cad;
}
.aside-promo-blog-story h2 {
  position: absolute;
  left: -999em;
}
.aside-promo-blog-story__image {
  float: right;
    width: 48%;
}
@media all and (min-width:35.000em) and (max-width:59.938em) { /* 560px to 959px */
  .aside-promo-blog-story__image {
    float: none;
    width: 100%;
  }
}

.aside-promo-blog-story__text {
  float: left;
  width: 50%;
}
@media all and (min-width:35.000em) and (max-width:59.938em) { /* 560px to 959px */
  .aside-promo-blog-story__text {
    float: none;
    width: 100%;
  }
}

.aside-promo-blog-story h3 {
  font-size: 1em;
  color: #d1d1e3;
  padding: 10px;
  line-height: 1.2;
}
.aside-promo-blog-story a:hover h3 {
  color: white;
}

.aside-promo-job h2 {
  padding: 10px;
}

.aside-promo-job {
  background-color: #6666a3;
  margin-bottom: 10px;
}
.aside-promo-job a {
  display: block;
  background-color: #6666a3;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
.aside-promo-job a:hover {
  background-color: #7c7cad;
}
.aside-promo-job h2 {
  font-family: "Pt Sans",sans-serif;
  letter-spacing: 0;
  font-size: .9em;
  color: white;

  border-bottom: 1px solid #9999c1; 
  padding-bottom: .3em;
  margin-bottom: 1em;
}
/*old-ie fix*/
.is-old-ie .aside-promo-job h2 {
 font-family: Arial, sans-serif;
}

.aside-promo-job__text {
  padding: 10px;
}
.aside-promo-job h3 {
  font-size: 1em;
  color: #d1d1e3;
  line-height: 1.2;
  margin-bottom: 0;
}
.aside-promo-job a:hover h3 {
  color: white;
}
.aside-promo-job p {
  color: #d1d1e3;
  margin-bottom: 0;
}
/* panels ----------------------------- */
.panel-header {
    text-align: center;
}
.panel-header[class*='bkgd-color-'] {
    padding: 4px 0 6px;
    color: #fff;
}
.panel-header > * {
    margin: 0;
}
.panel-body {
    padding-top: 40px;
}
.panel-intro {
    margin: auto;
    padding: 0 20px 24px;
    max-width: 580px;
    font-family: "Pt Sans",sans-serif;
    /*font-family: "Lato",sans-serif;*/
    text-align: center;
}
/*old-ie fix*/
.is-old-ie .panel-intro {
 font-family: Arial, sans-serif;
}

.col-two {
    -webkit-column-count: 1;
    -webkit-column-gap: 0px;
  -moz-column-count: 1;
  -moz-column-gap: 0px;
  -ms-column-count: 1;
  -ms-column-gap: 0px;
}
@media all and (min-width:37.500em) { /* 600px */
    .col-two {
        -webkit-column-count: 2;
        -webkit-column-gap: 20px;
    -moz-column-count: 2;
    -moz-column-gap: 20px;
    -ms-column-count: 2;
    -ms-column-gap: 20px;
    }
}

/* hero (about us,... ) ----------------------------- */
.hero-wrap--pad-top-50pc { padding-top: 50%; }
.hero-wrap--pad-top-40pc { padding-top: 40%; }
.hero-wrap--pad-top-30pc { padding-top: 30%; }
.hero-wrap--pad-top-20pc { padding-top: 20%; }

.hero-wrap--contains-abs-pos-selector { padding-top: 55%; }
@media all and (min-width:37.500em) { /* 600px */
    .hero-wrap--contains-abs-pos-selector {
        padding-top: 35%;
    }
}
/*old-ie override*/
.is-old-ie .hero-wrap--contains-abs-pos-selector {
  padding-top: 35%;
}

@media all and (min-width:50em) { /* 800px */
    .hero-wrap {
        position: relative;
    }
}
/*old-ie override*/
.is-old-ie .hero-wrap {
  position: relative;
}

@media all and (min-width:50em) { /* 800px */
    .hero-wrap--pad-top-50pc {
        padding-top: 40%;
    }
}
/*old-ie override*/
.is-old-ie .hero-wrap--pad-top-50pc {
  padding-top: 40%;
}

.hero-content {
    padding: 10px 0;
    /*background: url(/images/10x10_f04762_80pc.png);*/
    /*background: rgba(240, 71, 98, 0.8);*/
    color: #fff;
    margin-left: -10px;
    margin-right: -10px;
}
@media all and (min-width:50em) { /* 800px */
    .hero-content {
        position: absolute;
        bottom: 0;
        margin-left: 0;
        margin-right: 0;
    }
}
/*old-ie override*/
.is-old-ie .hero-content {
  position: absolute;
  bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

@media all and (min-width:50em) { /* 800px */
    .hero-content-width-half {
        width: 50%;
    }
}
/*old-ie override*/
.is-old-ie .hero-content-width-half {
  width: 50%;
}

.hero-content h1, .hero-content h2 {
    background: url(/images/10x10_f04762_80pc.png);
    background: rgba(240, 71, 98, 0.8);
    margin: 0;
    padding: 10px 30px 10px 30px;
    font-size: 1.7em;
}

a .hero-content h1:hover {
    background: rgba(240, 71, 98, 0.9);
}

.hero-content p {
    background: url(/images/10x10_f04762_80pc.png);
    background: rgba(240, 71, 98, 0.8);
    margin: 0;
    padding: 20px 40px 40px 30px;
    font-family: "Quicksand", sans-serif;
    font-size: 13px;
    letter-spacing: 0;
}
/*old-ie fix*/
.is-old-ie .hero-content p {
 font-family: Arial, sans-serif;
}

.hero-secondary-wrap {
    margin-bottom: 45px;
    overflow: auto;
}
.hero-secondary-wrap .image-wrap {
    margin-right: 20px;
    width: 100%;
}
@media all and (min-width:50em) { /* 800px */
    .hero-secondary-wrap .image-wrap {
        float: left;
        width: 50%;
    }
}
/*old-ie override*/
.is-old-ie .hero-secondary-wrap .image-wrap {
  float: left;
  width: 50%;
}

.hero-secondary-wrap .image-wrap img {
  width: 100%;
}

.hero-secondary-content {
    padding: 20px;
    color: #fff;
}
.hero-secondary-content p {
    font-size: 14px;
}

/* commitment box ----------------------------- */
@media only screen and (min-width: 35.000em) { /*560px*/
  .grid-commitments [class*='grid-col-'] {
    width: 50%;
  }
}
@media only screen and (min-width: 60.000em) { /*960px*/
  .grid-commitments [class*='grid-col-'] {
    width: 25%;
  }
}
/*old-ie override*/
.is-old-ie .grid-commitments [class*='grid-col-'] {
  width: 25%;
}
/*ie7 fix*/
.ie7 .grid-commitments [class*='grid-col-'] {
  display: inline;
}

.commitment-box {
    margin-bottom: 4.375em; /* 70px */
    text-align: center;
}

.heading-circle {
    height: 60px;
    width: 60px;
    margin: 0 auto 10px;
    /*background: #f47589;*/
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #fff;
    font-family: "Quicksand",sans-serif;
    font-size: 38px;
    line-height: 1.60;
}
/*old-ie fix*/
.is-old-ie .heading-circle {
 font-family: Arial, sans-serif;
}
#carousel-threeup .heading-circle {
    background: #333384;
}
.commitment-box__text{
  font-size: .8em;
}
/* callout ----------------------------- */
.callout {
    position: relative;
}
@media all and (min-width:37.500em) { /* 600px */
    .callout-content {
        position: absolute;
        top: 0;
        right: 0;
        max-width: 50%;
        max-width: 330px;
    }
}
@media all and (min-width:50em) { /* 800px */
    .callout-content {
        max-width: 412px;
    }
}
/*old-ie override*/
.is-old-ie .callout-content {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 50%;
  max-width: 412px;
}

.callout-content * {
    padding: 10px 10px;
    margin: 0;
    color: #fff;
    font-family: "Quicksand", sans-serif;
    font-size: 1em;
    letter-spacing: -1px;
    line-height: 1.1;
}
/*old-ie fix*/
.is-old-ie .callout-content * {
 font-family: Arial, sans-serif;
}
@media all and (min-width:37.500em) { /* 600px */
    .callout-content * {
        padding: 15px 30px;
        font-size: 1.75em;
    }
}
@media all and (min-width:50em) { /* 800px */
    .callout-content * {
        padding: 20px 40px;
        font-size: 2.2em;
    }
}
/*old-ie override*/
.is-old-ie .callout-content * {
  padding: 20px 40px;
  font-size: 2.2em;
}

/* blog - entry ----------------------------- */
.blog-entry-item {
    margin-bottom: 3em;
}

.blog-entry-item a {
    display: block;
    text-decoration: none;
    color: #f04762;
}

.blog-entry-item-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.blog-entry-item-image .media-overlay {
    position: absolute;
    left: 0;
    top: 100%;
    right: 0;
    height: 100%;
  background-color: transparent;
    background-color: rgba(240, 71, 98, 0.6);
    transition: top .3s cubic-bezier(0.645, 0.045, 0.355, 1.0); 
}

.no-touch .blog-entry-item a:hover .media-overlay {
    top: 0;
}

.blog-entry-item img {
    transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1.0);
}
.no-touch .blog-entry-item a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform:    scale(1.1);
    -ms-transform:     scale(1.1);
    -o-transform:      scale(1.1);
    transform:         scale(1.1);
}

.blog-entry-item h2 {
    margin-bottom: 15px;
    font-size: 1em;
    line-height: 1.2;
    font-weight: 700;
}
.blog-date {
    display: inline-block;
    margin-bottom: 5px;
    color: #7f7c7a;
    font-size: .8em;
}
.blog-entry-item .button-link {
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
}
@media all and (min-width:50em) { /* 800px */
    .blog-entry-item .button-link {
        margin-top: 10px;
    }
}
/*old-ie override*/
.is-old-ie .blog-entry-item .button-link {
  margin-top: 10px;
}

.blog-collection {
    background-color: white;
    padding: 20px;
}

.blog-collection h1 {
    font-size: 1.8em;
    margin-bottom: 1em;
}

.blog-post-tease {
    border-top: 1px solid #ccc;
    padding-top: 1em;
    padding-bottom: 1em;
}

.blog-post-tease h2 {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.2;
    font-weight: 700;
}

.blog-post-tease h2 a {
    text-decoration: none;
    color: #f04762;
}

.blog-post {
    background-color: white;
    padding: 20px;
}
.blog-post h1 {
    margin: 0 0 10px;
    line-height: 1.2;
    /*letter-spacing: -1px;*/
    font-size: 1.8em;
}
.blog-hero {
    margin-top: 20px;
    margin-bottom: 40px;
}
.blog-categories {
    margin-top: 30px;
    overflow: auto;
    padding-top: 11px;
    border-top: #ccc 1px solid;
    font-size: 14px;
}
.blog-categories dl {
    overflow: auto;
}
.blog-categories dt {
    margin-bottom: 0;
    font-weight: 700;
}
.blog-categories dd {
    float: left;
    margin-top: 0;
    overflow: auto;
}
.blog-categories ul {
    margin: 0;
}
.blog-categories ul li {
    display: inline;
    margin: 0;
    list-style-type: none;
}
.blog-categories ul li a {
    color: #6666a3;
    font-size: 13px;
    text-decoration: none;
}
.blog-categories ul li a {
}
.blog-categories ul li a:hover {
    color: #545493;
}
.blog-categories ul li:first-child a:before {
    content: "";
}

/*related article*/
.related-article {
    padding: 10px 20px;
    background: #f4f4f4;
}
.related-article p {
    margin: 5px 0 0;
    font-size: 13px;
    font-weight: bold;
}
.related-article  h3 {
    margin: 5px 0;
    font-size: 18px;
}
.related-article a {
    color: #6666a3;
    text-decoration: none;
}

/*blog post prev/next*/
.pagination-prev-next {
    margin-bottom: 40px;
    overflow: auto;
}
.pagination-prev-next ol {
    margin: 0;
    padding: 0;
}
.pagination-prev-next ol li {
    box-sizing: border-box;
    float: right;
    margin: 0;
    padding: 15px 40px 15px 40px;
    position: relative;
    width: 100%;
    line-height: 1.3;
    list-style-type: none;
    font-size: 1em;
}
@media all and (min-width:37.500em) { /* 600px */
    .pagination-prev-next ol li {
        width: 49%;
        padding-left: 18px;
    }
}
/*old-ie override*/
.is-old-ie .pagination-prev-next ol li {
  width: 49%;
  padding-left: 18px;
}

/*ie7 fix - box-sizing*/
.ie7 .pagination-prev-next ol li{
    width: 40%;
    padding-left: 18px;
}

.pagination-prev-next ol li:first-child {
  float: left;
    padding: 15px 40px 15px 40px;
    border-bottom: 1px solid #ccc;
}
@media all and (min-width:37.500em) { /* 600px */
    .pagination-prev-next ol li:first-child {
        padding-right: 18px;
        border-bottom: none;
    }
}
/*old-ie override*/
.is-old-ie .pagination-prev-next ol li:first-child {
  padding-right: 18px;
  border-bottom: none;
}

/*ie7 fix*/
.ie7 .pagination-prev-next ol li{
    background-image: url(/images/icon_ie7/icon_ie7_blog_post_pgntn_next.png);
    background-repeat: no-repeat;
    background-position: 100% 15px;
}
.ie7 .pagination-prev-next ol li:first-child{
    background-image: url(/images/icon_ie7/icon_ie7_blog_post_pgntn_prev.png);
    background-position: 0 15px;
}

.pagination-prev-next span {
    display: block;
    width: 20px;
    height: 30px;
    position: absolute;
    top: 17px;
    right: 0;
    left: auto;
    font-size: 20px;
    color: #999;
}
.pagination-prev-next ol li:first-child span {
    left: 0;
    right: auto;
}
.pagination-prev-next a {
    text-decoration: none;
    font-family: "Quicksand";
    font-weight: 700;
    color: #f04762;
    letter-spacing: -1px;
}
/*old-ie fix*/
.is-old-ie .pagination-prev-next a {
 font-family: Arial, sans-serif;
}
.pagination-prev-next h5 {
    font-size: .9em;
    color: #999;
    font-weight: 700;
    line-height: 1.8;
}

/* aside categories ----------------------------- */
.aside-block {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 1px;
    background-color: white;
}
@media all and (min-width:35.000em) { /* 560px */
    .aside-block {
        margin-top: 0;
    }
}
/*old-ie override*/
.is-old-ie .aside-block {
  margin-top: 0;
}

.aside-block h5 {
    padding: 5px 20px;
    font-size: 1.2em;
    text-align: left;
}

.blog-collection-list {
    padding: 0 20px;
}
.blog-collection-list ul {
    border-top: 1px solid #eee;
    margin-top: 2em;
    margin-bottom: 2em;
}

/*ie7 fix*/
.ie7 .blog-collection-list ul{
    margin-left: 0;
}

.blog-collection-list ul li {
    margin-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    border-bottom: 1px solid #eee;
    padding-top: .3em;
    padding-bottom: .3em;
}
.blog-collection-list ul li a {
    color: #f04762;
    text-decoration: none;
    font-size: .9em;
}
.blog-collection-list ul li a:hover {
    text-decoration: underline;
}

.blog-content iframe{
    width: 100%;
}

.aside-block .blog-entry-item {
    margin-bottom: 0;
    padding: 20px;
}

.aside-block .blog-entry-item a {
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -20px;
    margin-bottom: -20px;
    padding-bottom: 20px;
}

/*remove transition,transform on img*/
.aside-block .blog-entry-item img {
    transition: none;
    margin-bottom: 15px;
}
.aside-block .blog-entry-item a:hover img {
    -webkit-transform: scale(1);
    -moz-transform:    scale(1);
    -ms-transform:     scale(1);
    -o-transform:      scale(1);
    transform:         scale(1);
}

.aside-block .blog-entry-item h2 {
    margin-bottom: 0;
    margin-left: 20px;
    margin-right: 20px;
}

.aside-block .blog-entry-item time {
    margin-left: 20px;
    margin-right: 20px;
}

/* vacanies short listing - used on vacancies index page ---------- */
@media all and (max-width:47.938em) { /* 767px */
  .grid-vacancy-short-listing-depts .grid-col-1-2 {
    width: 100%;
  }
}

@media only screen and (min-width: 35.000em) { /*560px*/
  .vacancy-short-listing {
    /*put main content on right*/
    float: right;  
  }
}
/*old-ie override*/
.is-old-ie .vacancy-short-listing {
  /*put main content on right*/
  float: right;  
}

.vacancy-short-listing h2 {
  font-size: 1.5em;
}
.vacancy-short-listing__list {
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.vacancy-short-listing__list-item {
  margin-left: 0;
  margin-bottom: 10px;
  list-style: none;
}
.vacancy-short-listing__list-item a {
  display: block;
  padding: .7em 10px;
  position: relative;
  text-decoration: none;
  color: #6666a3;
  font-size: .9em;
  border: 1px solid #e5e5ef;

}
.vacancy-short-listing__list-item .count {
  position: absolute;
  top: 0;
  right: 0;
  content: "999";
  background-color: #6666a3;
  color: white;
  width: 40px;
  height: 100%;
  text-align: center;
  line-height: 3em;
  -webkit-transition: background-color .1s linear;
  -moz-transition: background-color .1s linear;
  -o-transition: background-color .1s linear;
  transition: background-color .1s linear;
}
a.jobs-count-zero {
  cursor: default;
}
a.jobs-count-zero .count {
  background-color: #f4f4f4;
  color: #999;
}
.vacancy-short-listing__list-item a:hover  {
  color: #f04762;
}
.vacancy-short-listing__list-item a:hover .count {
  background-color: #f04762;
}
a.jobs-count-zero:hover  {
  color: #6666a3;
}
a.jobs-count-zero:hover .count {
  background-color: #f4f4f4;
}

/* vacanies listing ---------- */
@media only screen and (min-width: 35.000em) { /*560px*/
  .vacancy-listing {
    /*put main content on right*/
    float: right;
  }
}
/*old-ie override*/
.is-old-ie .vacancy-listing {
  /*put main content on right*/
  float: right;
}

.vacancy-listing h2 {
  font-size: 1.5em;
}

.vacancy-summary {
    padding: 20px 10px 10px;
  background-color: #f4f4f4;
  margin-bottom: 20px;
}
.vacancy-summary h3 {
    font-size: 1em;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-left: -10px;
  margin-top: -20px;
  margin-right: -10px;
}
.vacancy-summary h3 a {
    background-color: #f04762;
  color: white;
  padding: 10px;
  display: block;
    text-decoration: none;
  font-size: 1.1em;
}
.vacancy-summary h3 a:hover {
    text-decoration: underline;
}
.vacancy-summary__list {
    margin-bottom: 10px;
    overflow: auto;
  font-size: .9em;
}
.vacancy-summary__list dt {
    clear: left;
    margin: 0 0 5px;
    width: 100%;
    font-weight: bold;
}

.vacancy-summary__list dd {
    margin: 0 0 5px;
    width: 100%;
}
.vacancy-summary__list dd:last-child {
    margin-bottom: 5px;
}
@media all and (min-width:37.500em) { /* 600px */
    .vacancy-summary__list dt {
        float: left;
        padding-right: 5%;
        width: 45%;
    }
}
/*old-ie override*/
.is-old-ie .vacancy-summary__list dt {
  float: left;
  padding-right: 5%;
  width: 45%;
}

@media all and (min-width:37.500em) { /* 600px */
    .vacancy-summary__list dd {
        float: left;
        width: 50%;
    }
}
/*old-ie override*/
.is-old-ie .vacancy-summary__list dd {
  float: left;
  width: 50%;
}


.vacancy-summary .button-link {
  display: block;
  margin-bottom: 0;
}

/* vacanies detail (description / apply form / other) ---------- */
@media only screen and (min-width: 35.000em) { /*560px*/
  .vacancy-detail {
    /*put main content on right*/
    float: right;
  }
}
/*old-ie override*/
.is-old-ie .vacancy-detail {
  /*put main content on right*/
  float: right;
}

.vacancy-detail h2 {
  font-size: 1.5em;
}

.vacancy-description ul {
    margin-bottom: 20px;
}
.vacancy-description ul li {
    line-height: 1.3;
}
.vacancy-footer {
    margin-bottom: 30px;
    overflow: auto;
    padding: 20px 20px 15px;
    background: #f4f4f4;
  margin-top: 40px;
}

.vacancy-footer .button-link {
  display: block;
  margin-bottom: 5px;
}

@media only screen and (min-width: 35.000em) { /*560px*/
  .vacancy-footer .button-link {
    display: inline-block;
  }
}
/*old-ie override*/
.is-old-ie .vacancy-footer .button-link {
  display: inline-block;
}

/*chunky driver - as used on eg: locations index page and contact centre jump page*/
.chunky-driver {
    margin-bottom: 3em;
    /*position over trans overlay*/
    position: relative;
}

.chunky-driver a {
    display: block;
    text-decoration: none;
    background-color: #eee;
    padding-bottom: 1px;
}

.chunky-driver .area-media {
    position: relative;
    overflow: hidden;
}

.chunky-driver img {
    transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1.0);
    width:300px;
}

.chunky-driver .media-overlay {
    position: absolute;
    left: 0;
    top: 100%;
    right: 0;
    height: 100%;
    background-color: rgba(240, 71, 98, 0.6);
    transition: top .3s cubic-bezier(0.645, 0.045, 0.355, 1.0);
}
.chunky-driver .media-overlay span.icon {
    color: white;
    width: 100px;
    height: 100px;
    line-height: 50px;
    font-size: 50px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -25px;
    text-align: center;
}

.no-touch .chunky-driver a:hover .media-overlay {
    top: 0;
}
.no-touch .chunky-driver a:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform:    scale(1.1);
    -ms-transform:     scale(1.1);
    -o-transform:      scale(1.1);
    transform:         scale(1.1);
}

.chunky-driver .area-text {
    padding: 20px;
}

@media only screen and (min-width: 35.000em) { /*560px*/
    .chunky-driver .area-text {
        min-height: 10em;
    }
}
@media only screen and (min-width:48.063em) { /*769px*/
    .chunky-driver .area-text {
        min-height: 7em;
    }
}
/*old-ie override*/
.is-old-ie .chunky-driver .area-text {
  min-height: 7em;
}

.chunky-driver h2 {
    line-height: 1;
    font-size: 1.5em;
    margin-bottom: .5em;
    color: #f04762;
}
.chunky-driver p {
    margin-bottom: 0;
    font-size: .9em;
}

/* location overview */
.location-overview {
    /*margin: 40px 0;*/
    background-color: #f04762;
    color: white;
}

.col-location-overview-image {
    display: none;
}

/*use this for adding a gutter around image if needed at BPs*/
.col-location-overview-image .image-container {
}

/*just show the overview image when there's enough space*/
@media all and (min-width:43.750em) { /* 700px */
    .col-location-overview-image {
        display: block;
    }
}
/*old-ie override*/
.is-old-ie .col-location-overview-image {
  display: block;
}

/*override simplegrid stack point*/
@media all and (max-width:43.750em) { /* 700px */
    .col-location-departments {
        width: 100%;
    }
}

.col-location-departments .grid-box {
    padding: 20px;
}

.col-location-departments h2 {
    font-size: 1.4em;
}

.col-location-departments ul {
    margin: 0;
    line-height: 1;
}
.col-location-departments li {
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
    float: left;
  display: block;
  vertical-align: top;
    width: 50%;
}

.col-location-departments a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-right: 2px;
    margin-bottom: 2px;
    background-color: #f36c81;
    padding: .7em 10px;
    font-size: .9em;

  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}
.col-location-departments a:hover {
  background-color: #f691a1;
}

.location-detail-meta {
    margin-bottom: 40px;
}
.location-detail-map iframe {
    margin-bottom: 20px;
    width: 100%;
}

.location-detail-map .button-link {
    margin-bottom: 0;
    position: absolute;
    bottom: 10px;
    left: 20px;
}

.vcard {
    margin-bottom: 20px;
    padding: 0 20px 20px 20px;
    font-size: .9em;
}

.vcard .adr {
    margin-bottom: 1em;
}

/* page-signoff ----------------------------- */
.page-signoff {
    height: 0;
}

.page-signoff .container {
    /*height: 3em;*/
    position: relative;
}

a.back-to-top {
    float: right;
    margin-top: -21px;
    position: relative;
  text-decoration: none;
    display: block;
    background-color:#f04762;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 37px;
    text-align: center;
    /*border-radius: 3px;*/
    overflow: hidden;
    transition: all 0.2s linear;
    font-size: 14px;
}
a.back-to-top:hover {
    background-color: #ccc;
    color: #333;
}

/*ie7 fix*/
.ie7 a.back-to-top {
  background-image: url(/images/icon_ie7/icon_ie7_back_to_top.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

/* footer ----------------------------- */
.footer {
    padding: 85px 0 0;
    background: #333;
    color: #fff;
}

@media all and (max-width:47.938em) { /* 767px */
  .grid-col--working-for-admiral {
    width: 100%;
  }
}
.working-for-admiral {
  margin-bottom: 40px;
}

.working-for-admiral h4 {
  color: #999;
  font-size: 1.1em; 
  border-bottom: 1px solid #666;
  padding-bottom: .5em;
  margin-bottom: .8em;
}

.working-for-admiral p {
  font-size: .9em;
  color: #ccc;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.nav-footer {
    margin-bottom: 40px;
}

@media all and (min-width:35.000em) and (max-width:47.938em) { /* 560px - 767px */
  .grid-col--nav-footer {
    width: 33.333%;
  }
}
.grid-col--nav-footer-first {
  clear: left;
}
@media all and (min-width:47.938em) { /* 767px */
  .grid-col--nav-footer-first {
    clear: none;
  }
}
/*old-ie override*/
.is-old-ie  .grid-col--nav-footer-first {
  clear: none;
}


.nav-footer h4 {
    color: #999;
    font-size: 1.1em; 
    border-bottom: 1px solid #666;
    padding-bottom: .5em;
}

.nav-footer ul {
    line-height: 1;
}
  /*ie7 fix*/
.ie7 .nav-footer ul {
  margin-left: 0;
}


.nav-footer li {
    list-style: none;
    margin-left: 0;
    margin-bottom: .7em;
}
.nav-footer li a {
    font-size: .8em;
}

/*footer accreditation*/
.footer-accreditation {
  margin-top: 20px;
  padding: 15px 0;
  background: #222;
}
.footer-accreditation__list {
  margin: 15px;
  text-align: center;
}
.footer-accreditation__list-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
  margin: 0 3px 0 0;
}
/*ie7 fix*/
.ie7 .footer-accreditation__list-item {
  display: inline;
  margin-right: 6px;
}

.footer-accreditation__list-item img {
  height: 50px;
}

/*footer signoff*/
.footer-signoff {
    /*margin-top: 20px;*/
    padding: 45px 0;
    background: #222;
  border-top: 1px solid #333;
}
.footer-signoff h5 {
    font-size: 1.1em;
    color: #999;
    margin-bottom: 0;
}
.footer-social-list {
    float: left;
    margin-bottom: 10px;
  margin-top: 0;
    width: 100%;
}

/*ie7 fix*/
.ie7 .footer-social-list {
  margin-left: 0;
}

@media all and (min-width:50em) { /* 800px */
    .footer-social-list {
        width: auto;
    }
}
/*old-ie override*/
.is-old-ie .footer-social-list {
  width: auto;
}

.footer-social-list li {
    float: left;
    margin-left: 0;
    margin-right: 30px;
    padding: 10px 0 0 0;
    position: relative;
    font-size: 14px;
    list-style-type: none;
}

.footer-social-list li .icon:before {
    font-size: 25px;
    vertical-align: middle;
    margin-right: 5px;
}

@media all and (max-width:37.500em) { /* 600px */
    .footer-social-list li {
        width: 80%;
    }
}
.footer-social-list li:last-child {
    margin-right: 0;
}
.footer-social-list li a:before {
    position: absolute;
    left: -20px;
    top: 5px;
    font-size: 26px;
}

/*ie7 fix*/
.ie7 .footer-social-list li a {
  background-repeat: no-repeat;
  background-position: 0 0;
  padding-left: 30px;
  height: 26px;
  line-height: 26px;
  display: block; 
}
.ie7 .icon-admiral-twitter-round + a {
  background-image: url(/images/icon_ie7/icon_ie7_follow_round_twitter.png);
}
.ie7 .icon-admiral_rss + a {
  background-image: url(/images/icon_ie7/icon_ie7_follow_round_rss.png);
}
.ie7 .icon-admiral-linkedin-round + a {
  background-image: url(/images/icon_ie7/icon_ie7_follow_round_linkedin.png);
}

.copyright {
    margin-top: 1em;
    float: left;
    font-size: 13px;
}
@media all and (min-width:50em) { /* 800px */
    .copyright {
        float: right;
    }
}
/*old-ie override*/
.is-old-ie .copyright {
  float: right;
}

/* video-container/player ----------------------------- */
.block-video-player {
    margin-bottom: 2em;
    background-color: black;
}

.video-player {
    background-color: black;
    position: relative;
}

.video-poster {
    position: relative;
}

.video-poster img {
    width: 100%;
}

.video-poster-overlay {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}

.video-caption {
    background-color: black;
    background-color: rgba(0,0,0,.7);
    color: white;
    padding-bottom: 1px;
}

.video-caption p {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: .9em;
}

.video-title {
    position: absolute;
    padding: 0.5em;
    background-color: black;
    background-color: rgba(0,0,0,.7);
    color: #FFF;
    font-size: 90%;
}

.video-title.small {
    font-size: 75%;
}

.video-play-button {
    display: block;
    background-color: black;
    background-color: rgba(0,0,0,.7);
    width: 80px;
    height: 80px;
    overflow: hidden;
    text-indent: -999em;
    position: absolute;
    left: 10px;
    top: 10px;
}
/*ie7 fix*/
.ie7 .video-play-button {
  background-image: url(/images/icon_ie7/icon_ie7_video_play_button.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.video-play-button:after {
  font-family: 'icomoon';
  content: '\e60e';
  left: 28px;
  top: 21px;
  text-indent: 0;
  position: absolute;
  font-size: 26px;
  color: white;
  -webkit-transition: color .1s linear;
  -moz-transition: color .1s linear;
  -o-transition: color .1s linear;
  transition: color .1s linear;
}
.video-play-button:hover:after {
  color: #f04762;
}

.grid {
    position: relative;
}

.video-wrap {
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(/furniture/video-overlay.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.video-overlay:hover {
    cursor: pointer;
}

.video-button {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -35px;
    margin-top: -35px;
}

.video-overlay p {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    margin-top: 50px;
    line-height: 30px;
}

.vacancy-video .video-title {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

@media (max-width: 35em) {
    .vacancy-summary .button-link {
        margin-top: 20px !important;
    }
}

@media (min-width: 35em) {
    .vacancy-video {
        display: block;
        position: absolute;
        left: 10px;
        top: 190px;
        width: 100%;
        z-index: 1;
    }

    .vacancy-video .video-wrap {
        width: 29%;
    }

    .vacancy-summary .button-link {
        position: relative;
        z-index: 20;
    }
}

/* bar chart ----------------------------- */
.bar-chart {
    margin-bottom: 2em;
}
@media all and (min-width:35.000em) { /* 560px */
    .bar-chart {
        margin-bottom: 0;
    }
}
/*old-ie override*/
.is-old-ie .bar-chart {
  margin-bottom: 0;
}


@media all and (max-width:49.938em) { /* 799px */
  .grid--staff-survey .grid-col-1-2 {
    width: 100%;
  }
}

.bar-chart ul { 
    margin-bottom: 0;
}

.bar-chart li { 
    list-style: none;
    margin-left: 0;
    margin-top: .5em;
    background-color: #f4f4f4;
}

.bar-chart li:first-child { 
    margin-top: 0;
}

.bar-chart p { 
    background-color: #9999c1;
    color: white;
    padding: .5em 0;
    height: 2em;
    overflow: hidden;
    margin-bottom: 0;
    line-height: 1;
  font-size: 12.5px;
  -webkit-transition: width 2s ease;
  -moz-transition: width 2s ease;
  -o-transition: width 2s ease;
  transition: width 2s ease;
}
@media all and (min-width:35.000em) { /* 560px */
    .bar-chart li { 
        margin-bottom: 1em;
    }
}
/*old-ie override*/
.is-old-ie .bar-chart li { 
  margin-bottom: 1em;
}

@media all and (min-width:35.000em) { /* 560px */
    .bar-chart p { 
        height: 1em;
        padding: 1em 0;
    }
}
/*old-ie override*/
.is-old-ie .bar-chart p { 
  height: 1em;
  padding: 1em 0;
}

.bar-chart .fact {
    float: left;
    max-width: 83%;
    margin-left: 10px;
}

.bar-chart .percent-86pc { width: 86%; }
.bar-chart .percent-96pc { width: 96%; }
.bar-chart .percent-97pc { width: 97%; }
.bar-chart .percent-88pc { width: 88%; }
.bar-chart .percent-87pc { width: 87%; }

.bar-chart .animation-prepared {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
  width: 10%;
}

.bar-chart .ammount { 
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
    letter-spacing: -1px;
    float: right;
    margin-right: 10px;
  -webkit-transition: width 1s ease;
  -moz-transition: width 1s ease;
  -o-transition: width 1s ease;
  transition: width 1s ease;
}
/*old-ie fix*/
.is-old-ie .bar-chart .ammount { 
 font-family: Arial, sans-serif;
}


/* person count ----------------------------- */
@media all and (max-width:49.938em) { /* 799px */
  .grid--male-female-count .grid-col-1-2 {
    float: left;
    width: 50%;
  }
}

.person-count {
    text-align: center;
    padding-top: 2.5em;
}

.person-count img {
    display: inline-block;
    margin-bottom: 0;
}

.person-count dt {
    margin: 0;
    color: #9999c1;
    font-size: 1.4em;
}

.person-count dd {
    margin: 0;
    font-family: "Quicksand", sans-serif;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -1px;
    font-weight: 700;
    color: #999;
}
/*old-ie fix*/
.is-old-ie .person-count dd {
 font-family: Arial, sans-serif;
}


/* rewrds and benefits ----------------------------- */
.grid-rewards-and-benefits {
  text-align: center;
}

.grid-rewards-and-benefits .grid-box {
    padding: 20px 20px 0 20px;
    margin-bottom: 20px;
    font-size: .9em;
    min-height: 7em;
  color: white;
}

.grid-col-1-3 .grid-box video {
    width: 100%;
}

@media all and (min-width:35.000em) and (max-width:47.938em) { /* 560px - 767px */

.video-title.small {
    font-size: 55%;
}
  .grid-rewards-and-benefits [class*='grid-col-'] {
    width: 50%;
  }
}

.grid-rewards-and-benefits img {
  margin-bottom: 10px;
  width: 65px;
}

.shader-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    background-image: -webkit-linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.1));
    background-image: -moz-linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.1));
  background-image: -o-linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.1));
    background-image: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.1));
}

.expandable-row {
    overflow: hidden;
    height: 250px;
    transition: height 0.5s ease;
}
@media all and (min-width:60em) { /* 960px */
  .expandable-row {
    height: 400px;
  }
}
/*old-ie override*/
.is-old-ie .expandable-row {
  height: 400px;
}

.row-expander {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    height: 100px;
    background-color: #f04762;
    margin-top: -50px;
    border-radius: 50px;
    position: relative;
    line-height: 100px;
    color: white;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
}

.row-expander:after {
    content: "\e602";
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    font-size: 50px;
    position: absolute;
    bottom: 25px;
    left: 50%;
    width: 100px;
    margin-left: -50px;
}

.row-expander.active:after {
  content: "\e603";
  bottom: auto;
  top: 25px;
}

/*ie7 fix*/
.ie7 .row-expander{
    background-image: url(/images/icon_ie7/icon_ie7_showall_pointer_down.png);
    background-repeat: no-repeat;
    background-position: 50% 70px;
}
/*ie7 fix*/
.ie7 .row-expander{
    background-image: url(/images/icon_ie7/icon_ie7_showall_pointer_up);
    background-position: 50% 20px;
}

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

/* Revert to commented out lines for show all/less */
.benefits {
    background-repeat: no-repeat;
    background-position: top center;
    /*background-size: auto 200%;*/
    background-size: auto 100%;
    transition: all .5s ease-in;
    -moz-transition: all .5s ease-in;
    -webkit-transition: all .5s ease-in;
    position: relative;
}

.benefits.expandable-row {
    /*height: 400px;*/
    height: 100%;
}

.benefits.open {
    background-size: auto 120%;
}

.benefits .color-white {
    text-align: center;
}

.benefits .panel-header, .benefits .panel-body {
    width: 100%;
    transition: width .3s ease-in-out;
    -moz-transition: width .3s ease-in-out;
    -webkit-transition: width .3s ease-in-out;
}

.benefits .grid {
    position: static;
}

.benefits .grid-col-1-4 .grid-box:hover {
    cursor: pointer; 
}

.benefits .grid-col-1-4 .grid-box:hover .benefit-title {
    font-weight: 600; 
}
  
.benefits .grid-col-1-4 .grid-box.benefit-active .benefit-title {
    font-weight: 600;
}

.benefits .benefit-description {
    background: rgba(255, 255, 255, 0.9);
    width: 30%;
    height: 100%;
    padding: 40px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: -30%;
    z-index: 20;
    overflow-y: auto;
    transition: right .3s ease-in-out;
    -moz-transition: right .3s ease-in-out;
    -webkit-transition: right .3s ease-in-out;
}

.benefits .benefit-description .close-benefit {
    display: block;
    color: #f04762;
    width: 40px;
    height: 40px;
    float: right;
    margin-top: -60px; 
}

.benefits .benefit-description .close-benefit img {
    width: 100%; 
}

.benefits .benefit-description .benefit-content {
    padding: 70px 0 0 0;
    text-align: center;
}

.benefits .benefit-description .benefit-content h3 {
    color: #f04762;
    font-size: 28px;
    line-height: 1.3em;
}

.benefits .benefit-description .benefit-content p {
    color: #777;
    font-size: 18px;
    line-height: 1.7em;
}

@media (min-width: 400px) {
    .benefit-basic-content.mobile-show {
        display: none;
    }
}

@media (max-width: 400px) {
    .benefits {
        background-image: none;
    }

    .benefits .grid-box {
        padding-left: 10px;
        padding-right: 10px;
        border-bottom: 1px solid #ed8e9c;
    }

    .benefits .benefit-title {
        font-size: 18px;
    }

    .benefits .benefit-basic-content.mobile-show {
        display: block;
    }

    .benefits .benefit-description {
        display: none;
    }
}

@media (min-width: 1000px) {
    .benefits .benefit-description {
        width: 30%;
        right: -30%;
    }
  
    .benefits .benefit-description-selected {
        right: 0;
    }

    .benefits.benefit-selected .panel-header, .benefits.benefit-selected .panel-body {
        width: 70%;
    }
}

@media (min-width: 700px) and (max-width: 1000px) {
    .benefits .benefit-description {
        width: 40%;
        right: -40%;
    }

    .benefits .benefit-description-selected {
        right: 0;
    }

    .benefits.benefit-selected .panel-header, .benefits.benefit-selected .panel-body {
        width: 60%;
    }
}

@media (min-width: 400px) and (max-width: 700px) {
    .benefits .benefit-description {
        width: 50%;
        right: -50%;
    }

    .benefits .benefit-description-selected {
        right: 0;
        padding: 40px 10px;
    }

    .benefits .benefit-description-selected h3 {
        font-size: 20px !important;
    }

    .benefits .benefit-description-selected p {
        font-size: 16px !important;
    }

    .benefits.benefit-selected .panel-header, .benefits.benefit-selected .panel-body {
        width: 48%;
    }
}

@media (max-width: 400px) {
    .benefits .benefit-description {
        width: 100%;
        position: relative;
    }

    .benefits.benefit-selected .panel-header, .benefits.benefit-selected .panel-body {
        width: 100%;
    }

    .benefits .benefit-basic-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height .5s ease-in-out;
        -webkit-transition: max-height .5s ease-in-out;
        -moz-transition: max-height .5s ease-in-out;
    }

    .benefits .benefit-active .benefit-basic-content {
        max-height: 700px;
    }
}

/* nav secondary ----------------------------- */
.nav-secondary {
  margin-top: 4em;
}
@media only screen and (min-width: 35.000em) { /*560px*/
  .nav-secondary {
    margin-top: 0;
  }
}
/*old-ie override*/
.is-old-ie .nav-secondary {
  margin-top: 0;
}


.nav-secondary ul {
  margin-top: 0;
  line-height: 1;  
}

@media all and (min-width:47.938em) { /* 767px */
  .nav-secondary ul {
    margin-right: 20px;
  }

   .grid-col-1-3 .grid-box video {
    width: 93%;
  }
}
/*old-ie override*/
.is-old-ie .nav-secondary ul {
  margin-right: 20px;
}

.nav-secondary li {
  list-style: none;
  margin-left: 0;
  margin-bottom: 2px;
  background-color: #f4f4f4;
}
.nav-secondary a {
  display: block;
  text-decoration: none;
  color: #f04762;
  padding: .9em 10px;
  font-size: .9em;
  -webkit-transition: background-color .2s linear;
  -moz-transition: background-color .2s linear;
  -o-transition: background-color .2s linear;
  transition: background-color .2s linear;
}
.no-touch .nav-secondary a:hover {
  background-color: #e5e5e5;
}
.nav-secondary .selected a, .no-touch .nav-secondary .selected a {
  color: white;
  background-color: #f04762;
}

/*basic page --------------- */
@media only screen and (min-width: 35.000em) { /*560px*/
  .basic-content {
    /*put content on right*/
    float: right;
  }
}
/*old-ie override*/
.is-old-ie .basic-content {
  /*put content on right*/
  float: right;
}

.is-old-ie .home-promo--register a h4:after {
  text-align: center;
}

.is-old-ie .logo-site a {
  display: block;
}

.is-old-ie .row-expander:after {
  text-align: center;
}


#training_header{
    margin: 0;
    background-color: #ef2c49;
    font: 32px Arial;
    color: #FFF;
    padding: 10px 0;
    text-align: center;
}

.decision {
  margin-top: 12px;
}

.candidate_ticks {
    margin-top: 20px;
}

.candidate_tick {
    position: relative;
    height: 25px;
    margin: 0px 5px;
    float: left;
}

.candidate_ticks div.tick {
    color: green;
    position: absolute;
}

.candidate_ticks div.number {
    left: 0;
}
.candidate_ticks .question_link {
    border: 0; 
    background: none; 
    padding: 0; 
    cursor: pointer;
}

.candidate_ticks div.number a{
    text-decoration: none;
    color: #777;
}

span.candidatetest_option_letter {
    margin: 0px 10px;
}

#time_left {
    font-weight: bold;
}

#candidate_test .checkboxes {
    margin-bottom: 30px;
}

.cookieBanner {
    background-color: #464646;
    color: #fff;
    position: relative;
    z-index: 1001;
}
.cookieBanner > .group {
    margin: 0 auto;
    max-width: 1024px;
/*    padding: 0 20px;*/
    position: relative;
}
.cookieBanner > .group > p {
    font-size: 15px;
    padding: 15px 150px 15px 0;
}
.cookieBanner > .group > p a {
    color: #ff7911;
}
.cookieBanner a.accept {
    background-color: #00326e;
    background-image: linear-gradient(to bottom, #00c535 0px, #00a32e 100%);
    background-size: 100% auto;
    color: white;
    float: right;
    height: 100%;
    position: absolute;
    right: 20px;
    text-align: center;
    top: 0;
    text-decoration: none;
    width: 119px;
}
.cookieBanner a.accept p {
    background: rgba(0, 0, 0, 0) url("images/icon-cookiesTick.svg") no-repeat scroll 13px 50%;
    font-size: 24px;
    padding-left: 30px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

input.button-link.decline {
    margin: 1em 0;
}

.row.pad-bot-medium.mar-bot-medium {
  margin-top: 40px;
}

.color-white a {
    color: #fff;
}

.color-white a:hover {
	text-decoration: none;
}

.it-content-section {
    padding: 50px 0;
}

.it-content-section:nth-child(even) {
    background-color: #e5e5ef;
}

@media (min-width: 700px) {
    .desktop-only {
        display: block;
    }

    .mobile-only {
        display: none;
    }
}

@media (max-width: 700px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .dept-aside.mobile-only {
        margin-bottom: 70px;
    }
}

/* Admiral Tech */

.admiral-tech-table td {
	overflow: hidden;
	box-sizing: border-box;
}

@media(max-width: 600px) {
  .admiral-tech-table td {
    display: block !important;
    width: 100% !important;
  }
}
