/*
	Colours //
	main green: #005031

	Transition default //
	@include trans;

 */
/*
	The config and utilities of the app.
	Vars, functions, mixins and animation keyframes
 */
/*
	Base font size in pixels
 */
/*
	Body font familiy
 */
/*
	Default cubic-bezier
 */
/*
	Colour map
	- use the 'c' function to extract
 */
/*
	Z-Index map
	- use the 'z' function to extract
 */
/*
	Function to access colour palette from $colours var
	Usage:
	.class {
		color: c(red, dark);
	}
 */
/*
	Function to access z-index from $z-index var
	Usage:
	.class {
		z-index: z(modal);
	}
 */
/*
	Mixin for adding media queries based on breakpoints
	Usage:
	.container {
		@include bp(xs) {
			// more code
		}
	}
 */
/*
	Mixin to add css transition. Can use defaults or pass in custom values
 */
/*
	Same mixin but for transforms only
 */
/*
	Clearfix mixin
 */
@-webkit-keyframes animation-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }
@-moz-keyframes animation-rotate {
  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg); } }
@-o-keyframes animation-rotate {
  100% {
    -o-transform: rotate(360deg);
       transform: rotate(360deg); } }
@keyframes animation-rotate {
  100% {
    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes animation-go-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px); } }

@-moz-keyframes animation-go-down {
  0% {
    -moz-transform: translateY(0);
         transform: translateY(0); }
  50% {
    -moz-transform: translateY(10px);
         transform: translateY(10px); } }

@-o-keyframes animation-go-down {
  0% {
    -o-transform: translateY(0);
       transform: translateY(0); }
  50% {
    -o-transform: translateY(10px);
       transform: translateY(10px); } }

@keyframes animation-go-down {
  0% {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0); }
  50% {
    -webkit-transform: translateY(10px);
       -moz-transform: translateY(10px);
         -o-transform: translateY(10px);
            transform: translateY(10px); } }

/*
	Helper classes
*/
@media (max-width: 543px) {
  .hidden-xs-down {
    display: none !important; } }

@media (min-width: 544px) {
  .hidden-sm-up {
    display: none !important; } }

@media (max-width: 767px) {
  .hidden-sm-down {
    display: none !important; } }

@media (min-width: 768px) {
  .hidden-md-up {
    display: none !important; } }

@media (max-width: 991px) {
  .hidden-md-down {
    display: none !important; } }

@media (min-width: 992px) {
  .hidden-lg-up {
    display: none !important; } }

@media (max-width: 1199px) {
  .hidden-lg-down {
    display: none !important; } }

@media (min-width: 1200px) {
  .hidden-xl-up {
    display: none !important; } }

/*
	Text alignment
 */
.text-left {
  text-align: left; }

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

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

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

/*
	Tablet elements to hide
 */
.xs-menu,
.footerLeft-mob,
.social-footer,
.xs-home-top_right,
.xs-close-menu,
.xs-search,
.sm-acc_btn,
.newsPanel_img,
.xs-see-all-link,
.newsPanel_date,
.newsPanel_body,
.xs-adverts-container,
.xs-to-top,
.xs-btn,
.healthSections_headingXs,
.xs-sectionHeader-intro,
.xs-sectionHeader-icon,
.dcjq-expand-xs,
.internalNavigation-xs-back,
#navigationContainer.is-clone,
.xs-menu-container.is-clone,
.xs-report-filters,
.linkSeeAll-xs,
.faux-select_current,
.xs-twitterFeed-btn {
  display: none; }

.xs-see-all-link {
  display: none !important; }

.xs-home-top {
  float: left; }

.xs-btn-hybrid {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 16px;
  color: #fff;
  background: #005031;
  background-image: -webkit-linear-gradient(270deg, #005736 60%, #004a2e 100%);
  background-image: -moz-linear-gradient(270deg, #005736 60%, #004a2e 100%);
  background-image: -o-linear-gradient(270deg, #005736 60%, #004a2e 100%);
  background-image: linear-gradient(180deg, #005736 60%, #004a2e 100%);
  border: 1px solid #005031;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 2px 3px transparent;
     -moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 2px 3px transparent;
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 2px 3px transparent;
  -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
     -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
       -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
          transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
  .xs-btn-hybrid:hover, .xs-btn-hybrid:focus {
    text-decoration: none;
    color: #fff;
    -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 2px 3px rgba(0, 0, 0, 0.4);
       -moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 2px 3px rgba(0, 0, 0, 0.4);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 2px 3px rgba(0, 0, 0, 0.4); }
    .xs-btn-hybrid:hover .fa-chevron-right, .xs-btn-hybrid:focus .fa-chevron-right {
      -webkit-transform: translateX(2px);
         -moz-transform: translateX(2px);
          -ms-transform: translateX(2px);
           -o-transform: translateX(2px);
              transform: translateX(2px);
      -webkit-transform: translate3d(2px, 0, 0);
         -moz-transform: translate3d(2px, 0, 0);
              transform: translate3d(2px, 0, 0); }
  .xs-btn-hybrid:active {
    border: 1px solid #005031; }
  .xs-btn-hybrid .fa-chevron-right {
    margin: 0 0 0 15px;
    vertical-align: middle;
    font-size: 14px;
    -webkit-transition: 0.3s -webkit-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
       -moz-transition: 0.3s -moz-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -o-transition: 0.3s -o-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
            transition: 0.3s transform cubic-bezier(0.26, 0.85, 0.46, 0.99); }

.slider {
  height: 260px; }
  .slider li > a {
    display: block; }

.bx-viewport > ul,
.bx-viewport > ul > li,
.bx-viewport > ul > li > a {
  height: 100%; }

.slider-holder-xs,
.slider-holder-xs .bx-wrapper,
.slider-holder-xs .bx-viewport,
.slider-holder-xs .slider-home,
.slider-holder-md,
.slider-holder-md .bx-wrapper,
.slider-holder-md .bx-viewport,
.slider-holder-md .slider-home,
.slider-holder,
.slider-holder .bx-wrapper,
.slider-holder .bx-viewport,
.slider-holder .slider-home {
  height: 100% !important; }

.slider-holder .bx-viewport {
  height: 100% !important; }

.slider-holder-md {
  display: none; }

.re-search-box.-inline {
  display: inline-block; }

.faux-select {
  margin: 8px 0; }
  .faux-select ul {
    margin: 0; }

/*
	Tablet styles
*/
@media (max-width: 991px) {
  html,
  body {
    margin: 0;
    padding: 0; }
  html {
    min-height: 100%;
    font-size: 93.75%;
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
            text-size-adjust: 100%; }
  body {
    min-height: 100%;
    background: #fff;
    border: none;
    font-size: 0.933333em;
    line-height: 1.3;
    color: #696969; }
  body.xs-nav-open {
    overflow: hidden; }
  .backing {
    position: relative;
    min-height: 100%;
    overflow: auto;
    overflow-x: hidden;
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  *,
  *:before,
  *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box; }
  a {
    color: #005031;
    text-decoration: underline; }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #005031; }
  input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
  /*
		Tablet elements to show
	 */
  .xs-menu,
  .footerLeft-mob,
  .social-footer,
  .xs-home-top_right,
  .xs-close-menu,
  .xs-search,
  .sm-acc_btn,
  .newsPanel_img,
  .xs-see-all-link,
  .newsPanel_date,
  .newsPanel_body,
  .xs-adverts-container,
  .xs-to-top,
  .xs-btn,
  .healthSections_headingXs,
  .xs-sectionHeader-intro,
  .xs-sectionHeader-icon,
  .dcjq-expand-xs,
  .internalNavigation-xs-back,
  #navigationContainer.is-clone,
  .xs-menu-container.is-clone,
  .xs-report-filters,
  .xs-twitterFeed-btn {
    display: block; }
  /*
		Elements to hide
	 */
  .header_links,
  #socialMediaLinks,
  #headerRight,
  #infoPanel,
  #footerSwish,
  #footerLeft,
  .breadcrumbs,
  .less-margin,
  .healthSections_heading,
  .dcjq-expand {
    display: none; }
  /*
		New elements
	 */
  .xs-menu {
    display: block;
    margin: 0;
    padding: 0 2px;
    text-align: right;
    background: #005031; }
    .xs-menu button {
      display: inline-block;
      vertical-align: middle;
      border: 1px solid transparent;
      -webkit-border-radius: 0;
         -moz-border-radius: 0;
              border-radius: 0;
      background: transparent;
      height: 44px;
      min-width: 48px;
      padding: 11px 13px;
      margin: 0 -2px;
      font-size: 20px;
      color: #fff;
      cursor: pointer;
      -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
              transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
      line-height: 1; }
      .xs-menu button:hover, .xs-menu button:focus {
        background: #1d6c4c;
        color: #fff;
        outline: none; }
        .xs-menu button:hover .xs-menu-bars,
        .xs-menu button:hover .xs-menu-bars:before,
        .xs-menu button:hover .xs-menu-bars:after, .xs-menu button:focus .xs-menu-bars,
        .xs-menu button:focus .xs-menu-bars:before,
        .xs-menu button:focus .xs-menu-bars:after {
          background: #fff; }
      .xs-menu button.is-open, .xs-menu button.is-active {
        background: #99d8ad;
        color: #005031; }
        .xs-menu button.is-open .xs-menu-bars, .xs-menu button.is-active .xs-menu-bars {
          background: transparent; }
          .xs-menu button.is-open .xs-menu-bars:before, .xs-menu button.is-open .xs-menu-bars:after, .xs-menu button.is-active .xs-menu-bars:before, .xs-menu button.is-active .xs-menu-bars:after {
            background: #005031; }
    .xs-menu_search .fa {
      vertical-align: top;
      margin-top: -2px; }
    .xs-menu_search .fa-times {
      display: none; }
    .xs-menu_search.is-open .fa-times {
      display: inline-block; }
    .xs-menu_search.is-open .fa-search {
      display: none; }
    .xs-menu_nav.is-active {
      position: relative;
      z-index: 110;
      background: #99d8ad; }
      .xs-menu_nav.is-active .xs-menu-bars {
        background: transparent; }
        .xs-menu_nav.is-active .xs-menu-bars:before {
          top: 0;
          -webkit-transform: rotate(45deg);
             -moz-transform: rotate(45deg);
              -ms-transform: rotate(45deg);
               -o-transform: rotate(45deg);
                  transform: rotate(45deg);
          background: #005031; }
        .xs-menu_nav.is-active .xs-menu-bars:after {
          top: 0;
          -webkit-transform: rotate(-45deg);
             -moz-transform: rotate(-45deg);
              -ms-transform: rotate(-45deg);
               -o-transform: rotate(-45deg);
                  transform: rotate(-45deg);
          background: #005031; }
    .xs-menu-bars {
      display: inline-block;
      vertical-align: top;
      width: 20px;
      height: 3px;
      background: #fff;
      margin-top: 1px;
      -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
              transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
      position: relative; }
      .xs-menu-bars:before, .xs-menu-bars:after {
        content: ' ';
        width: 20px;
        height: 3px;
        background: #fff;
        position: absolute;
        left: 0;
        -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
             -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
                transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
      .xs-menu-bars:before {
        top: -7px; }
      .xs-menu-bars:after {
        top: 7px; }
  /*
		Menu clone styles
	 */
  .xs-menu-container.is-clone {
    display: none;
    position: fixed;
    z-index: 20;
    top: 0;
    left: 20px;
    right: 20px;
    -webkit-transition: 0.3s -webkit-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
       -moz-transition: 0.3s -moz-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -o-transition: 0.3s -o-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
            transition: 0.3s transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
       -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }
  .xs-menu-container.is-clone .xs-menu:before {
    content: ' ';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: transparent;
    -webkit-transition: 0.3s background cubic-bezier(0.26, 0.85, 0.46, 0.99);
       -moz-transition: 0.3s background cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -o-transition: 0.3s background cubic-bezier(0.26, 0.85, 0.46, 0.99);
            transition: 0.3s background cubic-bezier(0.26, 0.85, 0.46, 0.99); }
  .xs-menu-container.is-clone.show-clone {
    display: block; }
  .xs-menu-container.hide-original {
    visibility: hidden; }
  .xs-nav-open .xs-menu-container.is-clone {
    -webkit-transform: translateX(-295px);
       -moz-transform: translateX(-295px);
        -ms-transform: translateX(-295px);
         -o-transform: translateX(-295px);
            transform: translateX(-295px);
    -webkit-transform: translate3d(-295px, 0, 0);
       -moz-transform: translate3d(-295px, 0, 0);
            transform: translate3d(-295px, 0, 0); }
  .xs-nav-open .xs-menu-container.is-clone .xs-menu:before {
    background: rgba(0, 0, 0, 0.5);
    z-index: 100; }
  .xs-close-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    background: transparent;
    -webkit-transition: 0.3s background cubic-bezier(0.26, 0.85, 0.46, 0.99);
       -moz-transition: 0.3s background cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -o-transition: 0.3s background cubic-bezier(0.26, 0.85, 0.46, 0.99);
            transition: 0.3s background cubic-bezier(0.26, 0.85, 0.46, 0.99);
    z-index: -1;
    visibility: hidden; }
    .xs-close-menu:focus {
      outline: none; }
    .xs-nav-open .xs-close-menu {
      background: rgba(0, 0, 0, 0.5);
      z-index: 100;
      cursor: pointer;
      visibility: visible; }
  .xs-search {
    background: #99d8ad;
    font-size: 14px;
    -webkit-box-shadow: 0 4px 9px rgba(0, 0, 0, 0.25);
       -moz-box-shadow: 0 4px 9px rgba(0, 0, 0, 0.25);
            box-shadow: 0 4px 9px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1; }
    .xs-search_inner {
      padding: 10px; }
    .xs-search_box {
      position: relative;
      margin-right: 48px; }
    .xs-search_input {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      display: block;
      width: 100%;
      border: 1px solid transparent;
      -webkit-border-radius: 0;
         -moz-border-radius: 0;
              border-radius: 0;
      background: #fff;
      padding: 13px 10px;
      -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
              transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
      -webkit-box-shadow: 0 0 10px transparent;
         -moz-box-shadow: 0 0 10px transparent;
              box-shadow: 0 0 10px transparent; }
      .xs-search_input::-webkit-input-placeholder {
        color: gray; }
      .xs-search_input:focus {
        outline: none;
        -webkit-box-shadow: 0 0 10px rgba(45, 42, 44, 0.5);
           -moz-box-shadow: 0 0 10px rgba(45, 42, 44, 0.5);
                box-shadow: 0 0 10px rgba(45, 42, 44, 0.5);
        position: relative; }
    .xs-search_btn {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      position: absolute;
      top: 0;
      right: -48px;
      height: 100%;
      width: 48px;
      border: 1px solid transparent;
      -webkit-border-radius: 0;
         -moz-border-radius: 0;
              border-radius: 0;
      background: #eee;
      color: #333;
      font-size: 20px;
      cursor: pointer;
      -webkit-box-shadow: 0 0 10px transparent;
         -moz-box-shadow: 0 0 10px transparent;
              box-shadow: 0 0 10px transparent; }
      .xs-search_btn:focus {
        outline: none;
        -webkit-box-shadow: 0 0 10px rgba(45, 42, 44, 0.5);
           -moz-box-shadow: 0 0 10px rgba(45, 42, 44, 0.5);
                box-shadow: 0 0 10px rgba(45, 42, 44, 0.5); }
    .xs-search_gov {
      display: inline-block;
      margin: 15px 0 0;
      color: #2d2a2c; }
  .footerLeft-mob {
    font-weight: 700; }
    .footerLeft-mob a {
      color: #005b38; }
  .social-footer {
    display: block;
    background: #f1f1f1;
    padding: 5px 17px;
    margin: 20px 0 0;
    text-align: center; }
    .social-footer ul {
      display: inline-block;
      list-style: none;
      padding: 0px;
      margin: 0;
      white-space: nowrap; }
    .social-footer li {
      margin: 0;
      padding: 0;
      display: inline-block;
      vertical-align: middle; }
      .social-footer li + li {
        margin-left: 5px; }
    .social-footer a {
      display: inline-block;
      vertical-align: middle;
      text-decoration: none;
      padding: 7px 10px;
      -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
              transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
      .social-footer a:hover, .social-footer a:focus {
        text-decoration: none;
        -webkit-transform: translateY(-2px);
           -moz-transform: translateY(-2px);
            -ms-transform: translateY(-2px);
             -o-transform: translateY(-2px);
                transform: translateY(-2px); }
    .social-footer .twitter a {
      background: transparent;
      color: #63a5f0;
      font-size: 36px; }
      .social-footer .twitter a:hover, .social-footer .twitter a:focus {
        color: #348aec; }
    .social-footer .facebook a {
      background: transparent;
      color: #3B5999;
      font-size: 36px; }
      .social-footer .facebook a:hover, .social-footer .facebook a:focus {
        color: #2d4474; }
    .social-footer .linkedin a {
      background: transparent;
      color: #1757a7;
      font-size: 36px; }
      .social-footer .linkedin a:hover, .social-footer .linkedin a:focus {
        color: #11407a; }
    .social-footer .youtube a {
      background: transparent;
      color: #c91212;
      font-size: 36px; }
      .social-footer .youtube a:hover, .social-footer .youtube a:focus {
        color: #9a0e0e; }
  .xs-home-top {
    float: none;
    margin: 20px 0; }
    .xs-home-top_right {
      float: left;
      width: 38.5%;
      height: 100%;
      padding-left: 20px; }
  .xs-cta-tabs {
    min-height: 241px; }
    .xs-cta-tabs_btns {
      display: table;
      width: 100%;
      background: #1d6c4c; }
      .xs-cta-tabs_btns a {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 auto;
           -moz-box-flex: 1;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
        display: table-cell;
        vertical-align: top;
        width: 33%;
        height: 100%;
        padding: 10px;
        font-size: 16px;
        font-weight: 500;
        background: #1d6c4c;
        color: #fff;
        text-align: center;
        text-decoration: none; }
      .xs-cta-tabs_btns .-theme-1 {
        background: #005031; }
      .xs-cta-tabs_btns .-theme-2 {
        background: #358E6A; }
      .xs-cta-tabs_btns .active {
        color: #fff; }
    .xs-cta-tabs_container, .xs-cta-tabs_body {
      min-height: 221px; }
    .xs-cta-tabs_container {
      display: table;
      width: 100%; }
    .xs-cta-tabs_body {
      background: #1d6c4c;
      height: 100%;
      color: #fff;
      font-size: 14px;
      text-align: center; }
      .xs-cta-tabs_body.-theme-1 {
        background: #005031; }
      .xs-cta-tabs_body.-theme-2 {
        background: #358E6A; }
    .xs-cta-tabs_body-inner {
      padding: 15px 20px; }
      .xs-cta-tabs_body-inner .cta-block {
          width:130px;
          margin-left:auto;
          margin-right:auto; }
      .xs-cta-tabs_body-inner p,
      .xs-cta-tabs_body-inner h2 {
        margin: 0;
        color: inherit;
        font-size: 14px;
        font-weight: normal;
        font-family: Arial, Helvetica, sans-serif; }
      .xs-cta-tabs_body-inner p + p,
      .xs-cta-tabs_body-inner p + ul,
      .xs-cta-tabs_body-inner ul + p,
      .xs-cta-tabs_body-inner ul + ul,
      .xs-cta-tabs_body-inner p + h2,
      .xs-cta-tabs_body-inner h2 + p,
      .xs-cta-tabs_body-inner h2 + ul,
      .xs-cta-tabs_body-inner ul + h2,
      .xs-cta-tabs_body-inner h2 + h2 {
        margin-top: 10px; }
      .xs-cta-tabs_body-inner h2 strong {
        display: block;
        font-weight: normal; }
      .xs-cta-tabs_body-inner ul {
        list-style: none;
        padding: 0;
        margin: 0 0 0 30px;
        text-align: left; }
      .xs-cta-tabs_body-inner li {
        margin: 0;
        position: relative;
        padding: 0 0 0 17px !important; }
        .xs-cta-tabs_body-inner li:before {
          content: "\f054";
          display: inline-block;
          font: normal normal normal 14px/1 FontAwesome;
          font-size: inherit;
          text-rendering: auto;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          position: absolute;
          top: 1px;
          left: 0;
          color: #fff;
          font-size: 15px; }
        .xs-cta-tabs_body-inner li + li {
          margin-top: 10px; }
      .xs-cta-tabs_body-inner .cta-list-number {
        padding: 0 !important;
        margin-left: -30px;
        text-align: center; }
        .xs-cta-tabs_body-inner .cta-list-number:before {
          display: none; }
      .xs-cta-tabs_body-inner a {
        color: #fff;
        text-decoration: none; }
        .xs-cta-tabs_body-inner a:hover, .xs-cta-tabs_body-inner a:focus {
          text-decoration: underline; }
      .xs-cta-tabs_body-inner [href*="tel:"] {
        display: block;
        margin: 3px 0 0;
        font-size: 21px;
        font-weight: 700;
        color: #fff;
        text-decoration: none; }
  .xs-healthSection-container {
    display: table;
    width: 100%; }
    .xs-healthSection-container .healthSection {
      display: table-cell;
      vertical-align: top;
      float: none;
      width: 50%;
      height: 100%;
      margin: 0;
      padding: 0 20px 20px 0; }
  .xs-home-topics-wrap {
    display: block; }
    .xs-home-topics-wrap:before, .xs-home-topics-wrap:after {
      content: ' ';
      display: table; }
    .xs-home-topics-wrap:after {
      clear: both; }
  .xs-news-panel {
    display: none; }
  .newsPanel_item {
    display: table !important;
    table-layout: fixed;
    width: 100%; }
    .newsPanel_item:nth-child(n+4) {
      display: none !important; }
  .newsPanel_img, .newsPanel_content {
    display: table-cell !important;
    vertical-align: top;
    height: 100%; }
  .newsPanel_img {
    width: 44.134%;
    padding-right: 17px; }
    .newsPanel_img img {
      max-width: 100%;
      width: 100%;
      height: auto; }
  .newsPanel_content {
    width: 55.865%; }
  .newsPanel_link {
    font-size: 17px;
    margin: 0 0 4px;
    font-family: "ArialNarrowRegular"; }
    .newsPanel_link .article {
      margin: 0;
      font-size: 1em; }
  .newsPanel_date {
    font-size: 13px;
    color: #717171;
    margin: 4px 0 8px; }
  .newsPanel_body {
    font-size: 14px;
    color: #717171;
    margin: 8px 0 0; }
  .xs-see-all-link {
    position: absolute;
    right: 0;
    top: 50%;
    height: 30px;
    line-height: 30px;
    margin-top: -15px;
    font-size: 14px;
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    padding: 0 10px 0 0; }
    .xs-see-all-link:hover, .xs-see-all-link:focus {
      text-decoration: none !important;
      color: #fff !important; }
      .xs-see-all-link:hover .text-wrap, .xs-see-all-link:focus .text-wrap {
        text-decoration: underline; }
    .xs-see-all-link .fa-chevron-right {
      margin: -1px 0 0 8px;
      vertical-align: middle; }
  .xs-adverts-container {
    margin: 10px -20px 0;
    padding: 10px 20px;
    border: 1px solid #99d8ad;
    border-left: none;
    border-right: none; }
    .xs-adverts-container:before, .xs-adverts-container:after {
      content: ' ';
      display: table; }
    .xs-adverts-container:after {
      clear: both; }
    .xs-adverts-container [class*="xs-advert-"] {
      float: left; }
      .xs-adverts-container [class*="xs-advert-"].-padding-left {
        padding-left: 20px; }
      .xs-adverts-container [class*="xs-advert-"].-padding-right {
        padding-right: 20px; }
      .xs-adverts-container [class*="xs-advert-"] img {
        max-width: 100%;
        height: auto; }
    .xs-adverts-container .xs-advert-1of3 {
      width: 38.53%; }
    .xs-adverts-container .xs-advert-2of3 {
      width: 61.46%; }
  /*
		Back to top
	 */
  .xs-to-top {
    background: #5b5a5a;
    color: #adacac;
    padding: 7px 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    -webkit-border-radius: 11px 0 0 11px;
       -moz-border-radius: 11px 0 0 11px;
            border-radius: 11px 0 0 11px;
    position: fixed;
    z-index: 1000;
    right: 0;
    bottom: 40%;
    -webkit-box-shadow: -7px 7px 7px rgba(0, 0, 0, 0.2);
       -moz-box-shadow: -7px 7px 7px rgba(0, 0, 0, 0.2);
            box-shadow: -7px 7px 7px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    -webkit-transition: 0.3s background cubic-bezier(0.26, 0.85, 0.46, 0.99);
       -moz-transition: 0.3s background cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -o-transition: 0.3s background cubic-bezier(0.26, 0.85, 0.46, 0.99);
            transition: 0.3s background cubic-bezier(0.26, 0.85, 0.46, 0.99);
    visibility: visible;
    opacity: 1; }
    .xs-to-top_text {
      display: block;
      text-transform: uppercase;
      line-height: 1;
      margin: 7px 0 0; }
    .xs-to-top .fa {
      font-size: 22px;
      -webkit-transition: 0.3s -webkit-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -moz-transition: 0.3s -moz-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -o-transition: 0.3s -o-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
              transition: 0.3s transform cubic-bezier(0.26, 0.85, 0.46, 0.99); }
    .xs-to-top:hover, .xs-to-top:focus {
      outline: none;
      background: #474646; }
      .xs-to-top:hover .fa, .xs-to-top:focus .fa {
        -webkit-transform: translateY(-2px);
           -moz-transform: translateY(-2px);
            -ms-transform: translateY(-2px);
             -o-transform: translateY(-2px);
                transform: translateY(-2px); }
    .xs-nav-open .xs-to-top {
      visibility: hidden;
      opacity: 0; }
  /*
		New button styles
	 */
  .xs-btn, .xs-btn-hybrid, .re-search-allLink {
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background: #005031;
    border: 1px solid #005031;
    padding: 9px 24px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 2px 3px transparent;
       -moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 2px 3px transparent;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 2px 3px transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
       -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
            transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
    .xs-btn:hover, .xs-btn-hybrid:hover, .re-search-allLink:hover, .xs-btn:focus, .xs-btn-hybrid:focus, .re-search-allLink:focus {
      outline: none;
      background: #005031;
      color: #fff;
      text-decoration: none;
      border-color: rgba(0, 0, 0, 0.5);
      -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 2px 3px rgba(0, 0, 0, 0.4);
         -moz-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 2px 3px rgba(0, 0, 0, 0.4);
              box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 2px 3px rgba(0, 0, 0, 0.4); }
      .xs-btn:hover .fa-chevron-right, .xs-btn-hybrid:hover .fa-chevron-right, .re-search-allLink:hover .fa-chevron-right, .xs-btn:focus .fa-chevron-right, .xs-btn-hybrid:focus .fa-chevron-right, .re-search-allLink:focus .fa-chevron-right {
        -webkit-transform: translateX(4px);
           -moz-transform: translateX(4px);
            -ms-transform: translateX(4px);
             -o-transform: translateX(4px);
                transform: translateX(4px);
        -webkit-transform: translate3d(4px, 0, 0);
           -moz-transform: translate3d(4px, 0, 0);
                transform: translate3d(4px, 0, 0); }
    .xs-btn:active, .xs-btn-hybrid:active, .re-search-allLink:active {
      border: 1px solid #969696; }
    .-block.xs-btn, .-block.xs-btn-hybrid, .-block.re-search-allLink {
      display: block; }
    .xs-btn .fa-chevron-right, .xs-btn-hybrid .fa-chevron-right, .re-search-allLink .fa-chevron-right {
      margin: -3px 0 0 10px;
      vertical-align: middle;
      -webkit-transition: 0.3s -webkit-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -moz-transition: 0.3s -moz-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -o-transition: 0.3s -o-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
              transition: 0.3s transform cubic-bezier(0.26, 0.85, 0.46, 0.99); }
  .xs-select {
    display: block !important; }
    .xs-select_wrap .xs-select {
      font-weight: 100; }
    .xs-select_wrap {
      display: block;
      width: auto;
      position: relative; }
      .xs-select_wrap select {
        position: absolute;
        z-index: 10;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important; }
    .xs-select_inner {
      display: block !important;
      width: auto !important;
      position: relative;
      padding: 12px 10px;
      border: 1px solid #91caa3;
      background: #fff;
      line-height: 1.3;
      height: 45px;
      font-size: 15px;
      font-weight: 100;
      color: #727272; }
      .xs-select_inner:before {
        content: ' ';
        position: absolute;
        top: -1px;
        right: -1px;
        bottom: -1px;
        width: 45px;
        background: #327359;
        -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
             -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
                transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
      .xs-select_inner:after {
        content: '\f078';
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        color: #fff;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        top: 50%;
        right: 14px;
        margin-top: -9px;
        z-index: 1;
        -webkit-transition: 0.3s -webkit-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -moz-transition: 0.3s -moz-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
             -o-transition: 0.3s -o-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
                transition: 0.3s transform cubic-bezier(0.26, 0.85, 0.46, 0.99); }
      .xs-select_wrap .xs-select_inner {
        font-weight: 100; }
      .xs-selectHover .xs-select_inner {
        border-color: rgba(0, 80, 49, 0.5); }
        .xs-selectHover .xs-select_inner:before {
          background: #2B654D; }
      .xs-selectFocus .xs-select_inner {
        outline: none;
        border-color: #005031;
        -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
           -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
                box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
        position: relative; }
      .csstransforms .xs-selectOpen .xs-select_inner:after {
        -webkit-transform: rotate(180deg);
           -moz-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
             -o-transform: rotate(180deg);
                transform: rotate(180deg);
        -webkit-transform: rotate3d(0, 0, 1, 180deg);
           -moz-transform: rotate3d(0, 0, 1, 180deg);
                transform: rotate3d(0, 0, 1, 180deg); }
      .no-csstransforms .xs-selectOpen .xs-select_inner:after {
        content: '\f077'; }
      .xs-selectOpen .xs-select_inner:before {
        background: #005031; }
  /*
		Overwriting styles
	 */
  #wrapper,
  #content {
    max-width: 991px;
    width: auto;
    padding: 0 20px;
    margin: 0 auto; }
  #content {
    width: auto;
    padding: 0;
    margin: 0; }
  .backing {
    -webkit-transition: 0.3s -webkit-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
       -moz-transition: 0.3s -moz-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -o-transition: 0.3s -o-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
            transition: 0.3s transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    background: #fff;
    height: 100%;
    z-index: 10; }
    .xs-nav-open .backing {
      -webkit-transform: translateX(-265px);
         -moz-transform: translateX(-265px);
          -ms-transform: translateX(-265px);
           -o-transform: translateX(-265px);
              transform: translateX(-265px);
      -webkit-transform: translate3d(-265px, 0, 0);
         -moz-transform: translate3d(-265px, 0, 0);
              transform: translate3d(-265px, 0, 0); }
  #header {
    height: 120px;
    width: auto;
    padding: 0; }
  #logo {
    float: none;
    height: auto;
    width: auto;
    padding: 0 0 1px; }
    #logo img {
      max-width: 100%;
      height: auto;
      vertical-align: top; }
  #navigationContainer {
    display: none;
    width: 265px;
    height: auto;
    background: #097D51;
    position: fixed;
    z-index: 0;
    visibility: hidden;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    overflow-y: auto;
    padding: 10px 0 15px;
    -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
       -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
            transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
    #navigationContainer:after {
      content: ' ';
      position: absolute;
      z-index: 1;
      top: 0;
      left: -5px;
      bottom: 0;
      width: 5px;
      -webkit-box-shadow: 3px 0 4px rgba(0, 0, 0, 0.25);
         -moz-box-shadow: 3px 0 4px rgba(0, 0, 0, 0.25);
              box-shadow: 3px 0 4px rgba(0, 0, 0, 0.25); }
  #navigationContainer.is-clone {
    display: block; }
  .xs-nav-open #navigationContainer {
    visibility: visible; }
  ul#navigation {
    height: auto;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
    ul#navigation li {
      float: none;
      display: block;
      width: auto;
      height: auto;
      background: none;
      padding: 0;
      border-top: 1px solid rgba(0, 0, 0, 0.2); }
      ul#navigation li:hover a {
        border: none;
        background: #013823 !important; }
      ul#navigation li:first-child {
        height: auto;
        width: auto;
        background: none !important; }
        ul#navigation li:first-child a {
          width: auto;
          height: auto;
          padding: 12px 15px !important;
          background: none !important; }
          ul#navigation li:first-child a:hover {
            width: auto;
            height: auto;
            padding: 12px 15px !important;
            background: #013823 !important; }
    ul#navigation a {
      float: none;
      text-align: left;
      line-height: 1;
      padding: 12px 15px; }
      ul#navigation a.selected {
        height: auto;
        background: #99D8AD;
        color: #005031;
        font-weight: 700; }
        ul#navigation a.selected:hover {
          background: #99D8AD !important;
          color: #005031; }
      ul#navigation a[href="/"] {
        text-indent: 0; }
        ul#navigation a[href="/"]:before {
          content: 'Home'; }
  #footerContainer {
    width: auto;
    height: auto;
    background: gainsboro;
    margin: 0 0 20px;
    padding: 20px;
    font-size: 1em; }
  #footerLinks {
    font-size: 1em; }
    #footerLinks ul {
      text-align: left;
      margin: 10px 2px 3px;
      height: auto; }
      #footerLinks ul li {
        display: inline-block;
        vertical-align: top;
        width: 19.999%;
        margin: 0 -2px 15px;
        padding: 0 20px 0 0;
        border: none; }
        #footerLinks ul li a {
          display: inline-block;
          padding: 4px 0;
          text-decoration: none; }
          #footerLinks ul li a:hover, #footerLinks ul li a:focus {
            text-decoration: underline; }
  .footer {
    width: auto;
    padding: 0; }
  #colRight {
    float: none;
    width: auto;
    padding: 0; }
  #links {
    float: none;
    width: auto;
    padding: 16px 20px;
    border: 1px solid #7cbe91; }
    #links h2 {
      margin-top: 0; }
  #links li,
  #alerts li {
    background: transparent;
    padding: 0 0 0 17px;
    margin: 15px 0;
    position: relative;
    font-family: "ArialNarrowRegular";
    font-size: 17px; }
    #links li:before,
    #alerts li:before {
      content: '\f054';
      display: inline-block;
      vertical-align: middle;
      margin: -3px 7px 0 0;
      font: normal normal normal 14px/1 FontAwesome;
      font-size: inherit;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      position: absolute;
      top: 7px;
      left: 0;
      color: #005031; }
    #links li a,
    #alerts li a {
      color: #005031; }
  #sideNav {
    float: none;
    width: auto;
    padding: 0;
    margin: 10px 0 25px;
    border-top: none; }
    #sideNav.xs-sideNav-open {
      overflow: hidden; }
    #sideNav .homepage-advert {
      display: none; }
  #sectionHeader {
    position: relative;
    line-height: 1.1;
    height: auto;
    font-size: 21px;
    font-weight: 100;
    font-family: "ArialNarrowRegular";
    text-decoration: none;
    padding: 10px 15px; }
    #sectionHeader:hover, #sectionHeader:focus {
      text-decoration: none; }
    .xs-sideNav-open #sectionHeader {
      background: #7cbe91;
      color: #005031; }
  .xs-sectionHeader-intro {
    display: block;
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 5px; }
    .xs-sideNav-open .xs-sectionHeader-intro {
      color: #3d3d3d; }
  .xs-sectionHeader-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -10.5px; }
    .xs-sectionHeader-icon .fa {
      position: absolute;
      top: 0;
      right: 0; }
    .xs-sectionHeader-icon .fa-chevron-up {
      display: none; }
    .xs-sideNav-open .xs-sectionHeader-icon .fa-chevron-up {
      display: block; }
    .xs-sideNav-open .xs-sectionHeader-icon .fa-chevron-down {
      display: none; }
  .dcjq-expand-xs-wrap {
    position: relative; }
    .dcjq-expand-xs-wrap > a {
      margin-right: 50px; }
  .dcjq-expand-xs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    background: transparent;
    border: none;
    padding: 0;
    color: inherit;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
       -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
            transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
    .dcjq-expand-xs:before {
      content: ' ';
      position: absolute;
      top: 4px;
      left: 0px;
      bottom: 4px;
      width: 1px;
      background: #005031; }
    .dcjq-expand-xs:hover {
      background: #005031;
      color: #fff; }
  #parentNav {
    font-size: 21px;
    font-family: "ArialNarrowRegular";
    position: relative;
    -webkit-transition: 500ms -webkit-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
       -moz-transition: 500ms -moz-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -o-transition: 500ms -o-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
            transition: 500ms transform cubic-bezier(0.26, 0.85, 0.46, 0.99); }
    .csstransforms #parentNav[data-xs-level="1"] {
      -webkit-transform: translateX(-100%);
         -moz-transform: translateX(-100%);
          -ms-transform: translateX(-100%);
           -o-transform: translateX(-100%);
              transform: translateX(-100%); }
    .csstransforms #parentNav[data-xs-level="2"] {
      -webkit-transform: translateX(-200%);
         -moz-transform: translateX(-200%);
          -ms-transform: translateX(-200%);
           -o-transform: translateX(-200%);
              transform: translateX(-200%); }
    .csstransforms #parentNav[data-xs-level="3"] {
      -webkit-transform: translateX(-300%);
         -moz-transform: translateX(-300%);
          -ms-transform: translateX(-300%);
           -o-transform: translateX(-300%);
              transform: translateX(-300%); }
    .csstransforms #parentNav[data-xs-level="4"] {
      -webkit-transform: translateX(-400%);
         -moz-transform: translateX(-400%);
          -ms-transform: translateX(-400%);
           -o-transform: translateX(-400%);
              transform: translateX(-400%); }
    .no-csstransforms #parentNav[data-xs-level="1"] {
      left: -100%; }
    .no-csstransforms #parentNav[data-xs-level="2"] {
      left: -200%; }
    .no-csstransforms #parentNav[data-xs-level="3"] {
      left: -300%; }
    .no-csstransforms #parentNav[data-xs-level="4"] {
      left: -400%; }
    #parentNav li {
      border-bottom: none;
      font-size: 1em;
      color: #005031; 
      border-top: 1px solid #fff; }
      #parentNav li a {
        -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
             -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
                transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
        #parentNav li a:hover {
          background: #005031;
          color: #fff; }
    #parentNav > li {
      background-color: #cde8d5; }
      #parentNav > li > a,
      #parentNav > li > a.active,
      #parentNav > li > div > a,
      #parentNav > li > div > a.active {
        background-color: transparent;
        color: #005031;
        padding: 10px 15px;
        font-size: 1em;
        position: relative; }
  .dcjq-parent.nochild {
    padding-left: 15px !important; }
  #internalNavigation li,
  ul#parentNav li #internalNavigation li,
  ul#parentNav li.internalNavigation li {
    border-top: none;
    background-color: #cde8d5;
    position: static; }
    #internalNavigation li a,
    ul#parentNav li #internalNavigation li a,
    ul#parentNav li.internalNavigation li a {
      padding: 10px 15px;
      background: transparent; }
    #internalNavigation li li,
    ul#parentNav li #internalNavigation li li,
    ul#parentNav li.internalNavigation li li {
      line-height: 1.3; }
      #internalNavigation li li a,
      ul#parentNav li #internalNavigation li li a,
      ul#parentNav li.internalNavigation li li a {
        padding-left: 15px !important; }
  .internalNavigation-xs-wrap {
    position: absolute;
    top: 0;
    width: 100%;
    left: 100%;
    z-index: -1;
    visibility: hidden;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
       -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }
    .internalNavigation-xs-wrap.xs-show-level {
      z-index: 1;
      visibility: visible; }
  .internalNavigation-xs-back {
    display: block;
    width: 100%;
    background-color: #cde8d5;
    border: none;
    border-bottom: 1px solid;
    padding: 10px 15px;
    text-align: left;
    color: #005031;
    font-family: "ArialNarrowRegular";
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
       -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
            transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
    .internalNavigation-xs-back:focus, .internalNavigation-xs-back:hover {
      outline: none;
      background: #005031;
      color: #fff; }
    .internalNavigation-xs-back .fa {
      display: inline-block;
      vertical-align: middle;
      margin: -2px 10px 0 0; }
  .slider {
    width: 61.5%;
    height: 281px;
    background: #333;
    float: left;
    margin: 0; }
    .slider li {
      min-height: 240px; }
  .bx-wrapper img {
    min-height: auto; }
  .bx-wrapper .sliderCaption {
    width: 40%; }
  .bx-wrapper .bx-viewport {
    background: transparent; }
  .bx-wrapper .bx-controls {
    left: 0;
    bottom: 0;
    width: 40%;
    padding: 8px 10px;
    background: rgba(51, 51, 51, 0.75); }
  .bx-wrapper .bx-controls-auto {
    display: none; }
  .bx-wrapper .bx-pager {
    text-align: center;
    width: auto; }
    .bx-wrapper .bx-pager.bx-default-pager a {
      background: none;
      position: relative;
      width: 25px; }
      .bx-wrapper .bx-pager.bx-default-pager a:before {
        content: ' ';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 12px;
        height: 12px;
        margin: -6px 0 0 -6px;
        -webkit-border-radius: 50%;
           -moz-border-radius: 50%;
                border-radius: 50%;
        background: #6f6f6f;
        -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
             -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
                transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
      .bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active {
        background: none; }
        .bx-wrapper .bx-pager.bx-default-pager a:hover:before, .bx-wrapper .bx-pager.bx-default-pager a.active:before {
          background-color: #7cbe91; }
  .slider-holder-xs,
  .slider-holder-xs .bx-wrapper,
  .slider-holder-xs .bx-viewport,
  .slider-holder-xs .slider-home,
  .slider-holder-md,
  .slider-holder-md .bx-wrapper,
  .slider-holder-md .bx-viewport,
  .slider-holder-md .slider-home,
  .slider-holder,
  .slider-holder .bx-wrapper,
  .slider-holder .bx-viewport,
  .slider-holder .slider-home,
  .slider-holder .bx-viewport {
    height: 100% !important; }
  .slider-holder {
    display: none; }
  .slider-holder-xs,
  .slider-holder-md {
    display: block; }
  .sliderCaption {
    width: 190px; }
    .sliderCaption h2 {
      color: #99d8ad; 
      font-size:1.7em; }
  .backing {
    background: #fff;
    overflow: initial;
    min-height: 100%; }
    .backing > form {
      min-height: 100%; }
  .healthType {
    width: auto;
    padding: 9px 10px 8px 50px;
    margin: 4px 0;
    border: 1px solid #85c298;
    font-size: 18px;
    min-height: 50px; }
    .healthType:hover, .healthType:focus, .healthType:active {
      background: #156d4b;
      border-color: #005031; }
    .healthType h3 {
      font-size: 1em; }
    .healthType .c-icon {
      left: 8px;
      -webkit-transform: none;
         -moz-transform: none;
          -ms-transform: none;
           -o-transform: none;
              transform: none; }
  #topicsPanel,
  #healthPanel,
  #newsPanel,
  #improve,
  #alerts {
    border-top: none;
    float: none;
    width: auto; }
  #newsPanel,
  #healthPanel,
  #topicsPanel {
    margin: 0; }
  #servicesPanel h2,
  #newsPanel h2,
  #topicsPanel h2,
  #healthPanel h2,
  #topicsPanel #alerts h2 {
    font-size: 21px;
    color: #fff;
    background: #005031;
    padding: 8px 15px; }
    #servicesPanel h2 a,
    #newsPanel h2 a,
    #topicsPanel h2 a,
    #healthPanel h2 a,
    #topicsPanel #alerts h2 a {
      color: #fff;
      text-decoration: none; }
  #healthPanel {
    float: left;
    width: 61.46%; }
  #topicsPanel {
    float: left;
    width: 38.53%;
    padding-left: 20px; }
  /*.contentHome h2,
	#contentArea h2,
	#contentAreaExt h2 {
		margin: 0;
	}*/
  #improve a,
  #newsPanel a {
    color: #005031; }
  #improve li,
  #newsPanel li {
    border-top: 1px solid #A7A7A7;
    padding: 28px 0; }
    #improve li:first-child,
    #newsPanel li:first-child {
      padding: 30px 0; }
  #newsPanel h2 {
    position: relative;
    padding-right: 120px; }
  #improve {
    margin: 0; }
    #improve > ul {
      border: none;
      padding: 0;
      font-size: 17px; }
      #improve > ul li {
        padding: 0;
        margin: 4px 0;
        border: none;
        font-size: 1em; }
        #improve > ul li:first-child {
          padding: 0; }
          #improve > ul li:first-child a {
            padding-top: 13px; }
      #improve > ul a {
        display: block;
        width: auto;
        border: 1px solid #7cbe91;
        background: #cde8d5;
        font-size: 1em;
        color: #585858;
        text-decoration: none;
        min-height: 50px;
        padding: 13px 10px 12px 50px;
        position: relative; }
        #improve > ul a:hover, #improve > ul a:focus {
          background: #156d4b;
          border-color: #005031;
          color: #fff;
          -webkit-box-shadow: 0 2px 10px -2px #000;
             -moz-box-shadow: 0 2px 10px -2px #000;
                  box-shadow: 0 2px 10px -2px #000; }
        #improve > ul a:before {
          content: ' ';
          position: absolute;
          top: 13px;
          left: 12px;
          height: 20px;
          width: 20px;
          -webkit-border-radius: 50%;
             -moz-border-radius: 50%;
                  border-radius: 50%;
          border: 1px solid #005031;
          background: #005031;
          background-image: -webkit-linear-gradient(270deg, #1b6b4a 0%, #005031 100%);
          background-image: -moz-linear-gradient(270deg, #1b6b4a 0%, #005031 100%);
          background-image: -o-linear-gradient(270deg, #1b6b4a 0%, #005031 100%);
          background-image: linear-gradient(180deg, #1b6b4a 0%, #005031 100%); }
        #improve > ul a:after {
          content: "\f054";
          display: inline-block;
          font: normal normal normal 14px/1 FontAwesome;
          font-size: inherit;
          text-rendering: auto;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          position: absolute;
          top: 18px;
          left: 19px;
          color: #fff;
          font-size: 11px; }
  .contentBackground {
    background: none; }
  #contentAreaExt {
    float: none;
    width: auto;
    border-top: none; }
  #contentArea {
    float: none;
    width: auto;
    border: none; }
    #contentArea hr {
      float: none; }
  #contentAreaLeft {
    float: left;
    width: 64.3347%;
    padding: 0 20px 0 0;
    border-top: none; }
  #contentAreaRight {
    float: left;
    width: 35.6652%;
    margin: 0;
    padding: 0;
    background: transparent;
    border-top: none; }
    #contentAreaRight h3 {
      font-size: 21px;
      padding: 11px 15px;
      margin: 0;
      background: #005031;
      color: #fff; }
    #contentAreaRight .xs-sidebar-content {
      padding: 10px 15px;
      background: #d0e9d9;
      margin: 0 0 25px; }
    #contentAreaRight .xs-sidebar-youtube {
      margin: 0 0 25px; }
      #contentAreaRight .xs-sidebar-youtube iframe {
        width: 100%;
        margin-bottom: 0; }
      #contentAreaRight .xs-sidebar-youtube p {
        margin: 0; }
      #contentAreaRight .xs-sidebar-youtube a[href*="youtube.com"] {
        display: block;
        background: #1d6d4c;
        color: #fff;
        text-align: center;
        text-decoration: none;
        padding: 15px 15px;
        -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
             -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
                transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
        #contentAreaRight .xs-sidebar-youtube a[href*="youtube.com"]:before, #contentAreaRight .xs-sidebar-youtube a[href*="youtube.com"]:after {
          display: inline-block;
          font: normal normal normal 14px/1 FontAwesome;
          font-size: inherit;
          text-rendering: auto;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale;
          vertical-align: middle; }
        #contentAreaRight .xs-sidebar-youtube a[href*="youtube.com"]:before {
          content: '\f166';
          font-size: 33px;
          margin: -10px 10px -10px 0; }
        #contentAreaRight .xs-sidebar-youtube a[href*="youtube.com"]:after {
          content: '\f054';
          margin: 0 0 0 10px;
          -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
             -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
               -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
                  transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
        #contentAreaRight .xs-sidebar-youtube a[href*="youtube.com"]:hover, #contentAreaRight .xs-sidebar-youtube a[href*="youtube.com"]:focus {
          background: #005031; }
          #contentAreaRight .xs-sidebar-youtube a[href*="youtube.com"]:hover:after, #contentAreaRight .xs-sidebar-youtube a[href*="youtube.com"]:focus:after {
            -webkit-transform: translate3d(3px, 0, 0);
               -moz-transform: translate3d(3px, 0, 0);
                    transform: translate3d(3px, 0, 0); }
  .MediaNews {
    border: none;
    margin: 0;
    padding: 0; }
    .MediaNews h2 {
      font-size: 21px !important;
      padding: 11px 104px 11px 15px;
      background: #005031;
      color: #fff;
      position: relative;
      margin: 0 !important; }
  .linkSeeAll-xs {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 94px;
    padding: 12px 15px;
    font-size: 17px;
    color: #fff;
    text-decoration: none;
    -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
       -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
            transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
    .linkSeeAll-xs:hover, .linkSeeAll-xs:focus {
      background: rgba(0, 0, 0, 0.3); }
    .linkSeeAll-xs .fa-chevron-right {
      font-size: 14px;
      margin-left: 10px; }
  .mediaInternal {
    float: none;
    width: auto;
    margin: 0; }
    .mediaInternal h3 {
      font-size: 18px;
      margin: 6px 0; }
    .mediaInternal .articleImage {
      display: none; }
    .mediaInternal .articleDate {
      font-size: 13px;
      color: inherit; }
    .mediaInternal .mediaItem {
      float: none;
      width: auto;
      color: #717171;
      line-height: 1.3; }
      .mediaInternal .mediaItem align-content {
        text-decoration: none; }
  #MediaNewsListing {
    border: 1px solid #7cbe91;
    border-top-width: 0;
    margin: 0 0 25px; }
    #MediaNewsListing ul {
      margin: 0; }
      #MediaNewsListing ul li {
        margin: 0;
        padding: 15px 12px;
        background: transparent;
        border: none;
        -webkit-border-radius: 0;
           -moz-border-radius: 0;
                border-radius: 0;
        position: relative; }
        #MediaNewsListing ul li + li {
          margin-top: 0; }
          #MediaNewsListing ul li + li:before {
            content: ' ';
            display: block;
            position: absolute;
            top: 0;
            left: 12px;
            right: 12px;
            height: 1px;
            background: #7cbe91; }
  .healthSections {
    margin: 0 -12px 0 -8px !important;
    position: relative; }
    .healthSections:before {
      content: ' ';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(255, 255, 255, 0.7);
      opacity: 0;
      z-index: -1;
      visibility: hidden;
      -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
              transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
    .healthSections.xs-panel-is-open:before {
      opacity: 1;
      z-index: 10;
      visibility: visible; }
    .healthSections h2 {
      height: auto;
      overflow: auto; }
    .healthSections > li {
      float: none;
      display: inline-block;
      vertical-align: top;
      width: 49.9999%;
      margin: 0 -2px 30px !important;
      padding: 0 10px !important;
      position: relative;
      -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
              transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
      .healthSections > li.xs-open {
        z-index: 20; }
      .healthSections > li img {
        width: 100%;
        height: auto; }
    .healthSections_headingXs {
      display: block;
      position: relative;
      margin: 0;
      background: #005031;
      -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
              transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
      .healthSections_headingXs > a {
        display: block;
        padding: 12px;
        padding-right: 56px;
        border: none;
        color: #fff;
        font-size: 17px;
        font-family: "ArialNarrowRegular";
        text-decoration: none;
        position: relative;
        z-index: 10;
        -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
             -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
                transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
        .healthSections_headingXs > a:hover, .healthSections_headingXs > a:focus {
          outline: none;
          background: rgba(255, 255, 255, 0.1); }
    .healthSections_headingXsIcon {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 46px;
      padding: 0;
      border: none;
      -webkit-border-radius: 0;
         -moz-border-radius: 0;
              border-radius: 0;
      background: transparent;
      text-align: center;
      font-size: 14px;
      cursor: pointer;
      color: #fff; }
      .no-csstransforms .healthSections_headingXsIcon .fa-minus {
        display: none; }
      .csstransforms.opacity .healthSections_headingXsIcon .fa {
        -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
             -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
                transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
        -webkit-transform: rotate(-90deg);
           -moz-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
             -o-transform: rotate(-90deg);
                transform: rotate(-90deg);
        -webkit-transform: rotate(-90deg) translate3d(0, 0, 0);
           -moz-transform: rotate(-90deg) translate3d(0, 0, 0);
                transform: rotate(-90deg) translate3d(0, 0, 0);
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -5px 0 0 -7px; }
      .csstransforms.opacity .healthSections_headingXsIcon .fa-minus {
        opacity: 0; }
      .no-csstransforms .xs-open .healthSections_headingXsIcon .fa-minus {
        display: inline-block; }
      .no-csstransforms .xs-open .healthSections_headingXsIcon .fa-plus {
        display: none; }
      .csstransforms.opacity .xs-open .healthSections_headingXsIcon .fa {
        -webkit-transform: rotate(0);
           -moz-transform: rotate(0);
            -ms-transform: rotate(0);
             -o-transform: rotate(0);
                transform: rotate(0);
        -webkit-transform: rotate(0) translate3d(0, 0, 0);
           -moz-transform: rotate(0) translate3d(0, 0, 0);
                transform: rotate(0) translate3d(0, 0, 0); }
      .csstransforms.opacity .xs-open .healthSections_headingXsIcon .fa-minus {
        opacity: 1; }
      .csstransforms.opacity .xs-open .healthSections_headingXsIcon .fa-plus {
        opacity: 0; }
    .healthSections .healthSections_xsAccordion {
      background: #99d8ad;
      list-style: none;
      font-size: 17px;
      font-family: "ArialNarrowRegular";
      padding: 1px 0 10px !important;
      position: absolute;
      top: 100%;
      left: 10px;
      right: 10px;
      z-index: 10;
      margin: 0 0 8px !important; }
      .healthSections .healthSections_xsAccordion li {
        color: #1d6d4c;
        padding: 0 !important;
        background: none !important;
        border-bottom: none; }
        .healthSections .healthSections_xsAccordion li a {
          color: #1d6d4c;
          text-decoration: none;
          display: block;
          padding: 7px 12px;
          -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
             -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
               -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
                  transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
          .healthSections .healthSections_xsAccordion li a:before {
            content: '\f054';
            display: inline-block;
            vertical-align: middle;
            margin: -3px 7px 0 0;
            font: normal normal normal 14px/1 FontAwesome;
            font-size: inherit;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale; }
          .healthSections .healthSections_xsAccordion li a:hover, .healthSections .healthSections_xsAccordion li a:focus {
            background: #1e7354;
            color: #fff;
            text-decoration: none; }
    .healthSections .xs-open .healthSections_xsAccordion {
      opacity: 1;
      z-index: 20;
      visibility: visible;
      -webkit-transform: translateY(0);
         -moz-transform: translateY(0);
          -ms-transform: translateY(0);
           -o-transform: translateY(0);
              transform: translateY(0); }
  .plus-toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 44px; }
    .healthSections_headingXsIcon .plus-toggle {
      width: auto;
      left: -1px; }
    .plus-toggle:before, .plus-toggle:after {
      content: ' ';
      position: absolute;
      top: 50%;
      left: 50%;
      background: #fff;
      -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
              transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
    .plus-toggle:before {
      width: 21px;
      height: 3px;
      margin: -1.5px 0 0 -10.5px;
      opacity: 1; }
    .plus-toggle:after {
      height: 21px;
      width: 3px;
      margin: -10.5px 0 0 -1.5px; }
    .xs-open .plus-toggle:before, .xs-open .plus-toggle:after {
      -webkit-transform: rotate(90deg);
         -moz-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
           -o-transform: rotate(90deg);
              transform: rotate(90deg); }
    .xs-open .plus-toggle:before {
      opacity: 0; }
    .no-csstransforms .plus-toggle:before {
      opacity: 1; }
    .no-csstransforms .plus-toggle:after {
      opacity: block; }
    .no-csstransforms .is-open .plus-toggle:after {
      display: none; }
  .xs-report-wrap {
    background: #e6f8ec;
    padding: 25px 15px 10px;
    border: 1px solid #7cbe91; }
  .ReportPublication-top-links {
    margin-top: 0; }
  .ReportPublication-date {
    display: block;
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;
    color: #717171; }
  .ReportPublication-MostRecent li {
    margin: -2px 0 !important;
    padding: 0 !important; }
    .ReportPublication-MostRecent li a {
      font-size: 17px;
      font-family: "ArialNarrowRegular";
      color: #005031;
      display: block;
      padding: 15px 15px;
      margin: -1px -15px 0;
      position: relative;
      text-decoration: none; }
      .ReportPublication-MostRecent li a:hover, .ReportPublication-MostRecent li a:focus {
        color: #fff;
        background-color: #1d6d4c;
        text-decoration: none;
        z-index: 1; }
        .ReportPublication-MostRecent li a:hover .ReportPublication-date, .ReportPublication-MostRecent li a:focus .ReportPublication-date {
          color: inherit; }
  #ReportPublicationPaging .ReportPublication-MostRecent ul {
    margin-bottom: 0; }
    #ReportPublicationPaging .ReportPublication-MostRecent ul li {
      padding: 15px 0;
      border-bottom: none; }
      #ReportPublicationPaging .ReportPublication-MostRecent ul li + li {
        border-top: 1px solid #8a8a8a; }
  .ReportPublication-Filter {
    border: none;
    background-color: transparent;
    padding: 0;
    margin: 0; }
    .ReportPublication-Filter .xs-btn {
      font-size: 17px;
      padding-top: 7px;
      padding-bottom: 7px;
      margin-right: 10px;
      min-width: 24%; }
  .xs-report-filter-row {
    display: table;
    width: 100%;
    margin-bottom: 15px; }
  .xs-report-filter-cols2 {
    width: 100%;
    margin: 0 2px 15px; }
    .xs-report-filter-cols2 .xs-report-filter-row {
      display: inline-table;
      width: 50%;
      margin: 0 -2px;
      padding-right: 5px; }
      .xs-report-filter-cols2 .xs-report-filter-row + .xs-report-filter-row {
        padding-right: 0;
        padding-left: 5px; }
  .xs-report-filter-label {
    display: table-cell;
    vertical-align: middle;
    width: 85px;
    font-size: 15px;
    font-weight: 700;
    color: #7a7a7a; }
  .xs-report-filter-body {
    display: table-cell;
    vertical-align: middle;
    width: auto; }
    .xs-report-filter-body select,
    .xs-report-filter-body [type="text"] {
      display: block;
      width: 100%;
      padding: 12px 10px;
      border: 1px solid #91caa3;
      background: #fff;
      line-height: 1.1;
      height: 45px;
      font-size: 15px;
      font-weight: 500; }
  .ReportPublication-Filter-Button {
    margin-bottom: 20px; }
  #podList-3,
  #content #podList-3 {
    margin: 20px -12px 0 -8px; }
  #podList-3 .pod {
    width: 49.9999%;
    margin: 0 -2px 30px;
    padding: 0 10px; }
    #podList-3 .pod img {
      width: 100%;
      height: auto; }
    #podList-3 .pod > a {
      display: block;
      color: #fff;
      text-decoration: none;
      -webkit-box-shadow: 0 0 4px transparent;
         -moz-box-shadow: 0 0 4px transparent;
              box-shadow: 0 0 4px transparent;
      -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
              transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
      #podList-3 .pod > a:hover, #podList-3 .pod > a:focus {
        -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
           -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        -webkit-transform: translateY(-2px);
           -moz-transform: translateY(-2px);
            -ms-transform: translateY(-2px);
             -o-transform: translateY(-2px);
                transform: translateY(-2px);
        -webkit-transform: translate3d(0, -2px, 0);
           -moz-transform: translate3d(0, -2px, 0);
                transform: translate3d(0, -2px, 0); }
  #podList-3 .podTitle {
    margin: 0;
    padding: 11px 10px;
    background: #005031;
    color: #fff; }
    #podList-3 .podTitle * {
      color: inherit; }
  #internalNavigation ul,
  ul#parentNav li #internalNavigation ul,
  ul#parentNav li .internalNavigation ul {
    position: static; }
  #searchResults {
    width: auto;
    float: none;
    margin: 15px 0; }
  .re-search-box {
    position: relative;
    margin-right: 45px; }
    .re-search-box.-inline {
      display: block;
      max-width: 300px; }
    .re-search-box .fa {
      color: #005031;
      font-size: 20px;
      position: absolute;
      top: 50%;
      left: 10px;
      margin: -10px 0 0; }
    .re-search-box .re-search-input {
      padding-left: 37px; }
  .re-search-btn {
    position: absolute;
    top: 0;
    right: -45px;
    height: 100%;
    width: 45px;
    background: none;
    background-color: #388268;
    border: 1px solid #1d6d4e;
    border-left-color: transparent;
    color: #fff;
    font-weight: 700;
    text-indent: 0%;
    margin: 0;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    -webkit-box-shadow: 0 2px 3px transparent;
       -moz-box-shadow: 0 2px 3px transparent;
            box-shadow: 0 2px 3px transparent;
    -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
       -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
            transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
    .re-search-btn:hover, .re-search-btn:focus {
      outline: none;
      background: #005031;
      color: #fff;
      text-decoration: none;
      border-color: rgba(0, 0, 0, 0.5);
      -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
         -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
              box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4); }
    .re-search-btn:active {
      border: 1px solid #969696; }
  .re-search-input {
    display: block;
    width: 100%;
    background: #fff;
    color: #333;
    padding: 13px;
    line-height: 1.2;
    height: auto;
    border: 1px solid #91c8a5;
    border-right-color: transparent;
    -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
       -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
            transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
    .re-search-input:focus {
      outline: none;
      border-color: #005031; }
  .re-search-xs-block {
    display: block; }
  .re-search-allLink {
    margin: 10px 0 0; }
  .search-container-outer {
    background-color: #D7ECDE; }
  .searchResultsWebsiteList {
    display: table;
    width: 100%; }
    .searchResultsWebsiteList_label {
      display: table-cell;
      vertical-align: middle;
      margin: 0;
      width: 80px;
      font-size: 15px;
      font-weight: 700; }
  .faux-select_container {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    margin: 0; }
    .faux-select_container .faux-select {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: auto;
      margin: -1px 0 0 !important;
      background: #fff;
      border: 1px solid #91caa3;
      -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.38);
         -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.38);
              box-shadow: 0 2px 4px rgba(0, 0, 0, 0.38); }
      .faux-select_container .faux-select li {
        margin: 0 !important;
        padding: 0 !important; }
      .faux-select_container .faux-select input {
        border: 0;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px; }
      .faux-select_container .faux-select label {
        display: block;
        padding: 6px 10px !important;
        border: 1px solid transparent;
        -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
             -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
                transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
        .faux-select_container .faux-select label:hover {
          background: #91caa3;
          color: #222; }
        .faux-select_container .faux-select label:focus, .faux-select_container .faux-select label:active {
          background: #005031;
          color: #fff; }
      .faux-select_container .faux-select .active + label {
        background: #005031;
        color: #fff; }
  .faux-select_current {
    display: block;
    width: auto;
    position: relative;
    padding: 12px 10px;
    margin: 0;
    border: 1px solid #91caa3;
    background: #fff;
    line-height: 1.3;
    height: 45px;
    font-size: 15px;
    font-weight: 100;
    color: #727272;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer; }
    .faux-select_current:before {
      content: ' ';
      position: absolute;
      top: -1px;
      right: -1px;
      bottom: -1px;
      width: 45px;
      background: #327359;
      -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
              transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
    .faux-select_current:after {
      content: '\f078';
      display: inline-block;
      font: normal normal normal 14px/1 FontAwesome;
      font-size: inherit;
      color: #fff;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      position: absolute;
      top: 50%;
      right: 14px;
      margin-top: -9px;
      z-index: 1;
      -webkit-transition: 0.3s -webkit-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -moz-transition: 0.3s -moz-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -o-transition: 0.3s -o-transform cubic-bezier(0.26, 0.85, 0.46, 0.99);
              transition: 0.3s transform cubic-bezier(0.26, 0.85, 0.46, 0.99); }
    .faux-select_current:hover {
      border-color: rgba(0, 80, 49, 0.5); }
      .faux-select_current:hover:before {
        background: #2B654D; }
    .faux-select_current:focus {
      outline: none;
      border-color: #005031;
      -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
         -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
              box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
      position: relative; }
    .csstransforms .faux-open .faux-select_current:after {
      -webkit-transform: rotate(180deg);
         -moz-transform: rotate(180deg);
          -ms-transform: rotate(180deg);
           -o-transform: rotate(180deg);
              transform: rotate(180deg);
      -webkit-transform: rotate3d(0, 0, 1, 180deg);
         -moz-transform: rotate3d(0, 0, 1, 180deg);
              transform: rotate3d(0, 0, 1, 180deg); }
    .no-csstransforms .faux-open .faux-select_current:after {
      content: '\f077'; }
    .faux-open .faux-select_current:before {
      background: #005031; }
  #AZWidgetListing li > h2 {
    position: relative; }
    #AZWidgetListing li > h2:after {
      content: ' ';
      position: absolute;
      top: 12px;
      right: 15px;
      height: 13px;
      width: 13px;
      background: url("/images/Corporate/icoSideNav.gif") no-repeat 0 -87px; }
    #AZWidgetListing li > h2 > span {
      padding: 0 40px 0 10px;
      background: none !important; }
    #AZWidgetListing li > h2.opening:after {
      background-position: 0 0; }
    #AZWidgetListing li > h2.opening > span {
      background: none !important; }
  .expandable a {
    text-decoration: none; }
    .expandable a:hover, .expandable a:focus {
      text-decoration: underline; }
  .doh-accordian_btn {
    width: auto !important;
    font-size: 1.428em;
    line-height: 1.2; }
    .doh-accordian_btn.is-sticky {
      position: static; }
  .doh-accordian .pin-wrapper {
    height: auto !important; }
  .mediaItem a {
    text-decoration: none; }
    .mediaItem a:hover, .mediaItem a:focus {
      text-decoration: underline; }
  #pageAuthor {
    width: auto;
    position: static; }
  #contentArea,
  #contentAreaExt {
    position: relative; }
    #contentArea:after,
    #contentAreaExt:after {
      content: ' ';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.7);
      opacity: 0;
      z-index: -1;
      -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
              transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
      .xs-sideNav-open + #contentArea:after, .xs-sideNav-open +
      #contentAreaExt:after {
        z-index: 100;
        opacity: 1; }
  .xs-twitterFeed-btn {
    display: block;
    background: #005031;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 15px 15px;
    -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
       -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
            transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
    .xs-twitterFeed-btn .fa {
      vertical-align: middle; }
    .xs-twitterFeed-btn .fa-twitter {
      font-size: 33px;
      margin: -10px 10px -10px 0; }
    .xs-twitterFeed-btn .fa-chevron-right {
      margin: 0 0 0 10px;
      -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
           -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
              transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
    .xs-twitterFeed-btn:hover, .xs-twitterFeed-btn:focus {
      background: #005031; }
      .xs-twitterFeed-btn:hover .fa-chevron-right, .xs-twitterFeed-btn:focus .fa-chevron-right {
        -webkit-transform: translate3d(3px, 0, 0);
           -moz-transform: translate3d(3px, 0, 0);
                transform: translate3d(3px, 0, 0); }
  #colRight #advert,
  #sideNav #advert,
  #colRight .homepage-advert,
  #sideNav .homepage-advert {
    float: none;
    -webkit-box-sizing: content-box;
       -moz-box-sizing: content-box;
            box-sizing: content-box; }
  .articleDate {
    font-size: 12px;
    width: auto; }
  .articleItem h3 {
    margin: 9px 0; }
  .articleItem a {
    text-decoration: none; }
    .articleItem a:hover, .articleItem a:focus {
      text-decoration: underline; }
  .articleInternal {
    display: table;
    float: none;
    width: 100%;
    padding: 11px 0;
    margin: 0;
    border-bottom: none !important;
    border-top: 1px solid #8b8b8b; }
  .articleImage,
  .articleItem {
    float: none;
    display: table-cell;
    vertical-align: top; }
  .articleItem {
    width: auto;
    margin: 0; }
  .articleImage {
    width: 214px;
    padding-right: 12px; }
  .articleImage img {
    width: 100%;
    height: auto;
    max-width: none; }
  .page-container {
    float: none;
    width: auto;
    text-align: center; }
  ul.pages li a,
  .page-container a,
  .page-container .active,
  .page-container a.btnPrev,
  .page-container a.btnNext {
    width: auto !important;
    height: auto !important;
    line-height: 1;
    font-size: 18px;
    float: none;
    display: inline-block;
    vertical-align: top !important;
    margin: 0 1px !important;
    padding: 8px 14px;
    text-indent: 0;
    white-space: normal;
    overflow: visible;
    background-image: none;
    border-width: 2px !important;
    border-style: solid !important;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0; }
  .page-container a.btnPrev,
  .page-container a.btnNext {
    border-color: #005a38 !important;
    background: #005a38;
    color: #fff;
    padding-left: 12px;
    padding-right: 12px; }
  .pagination {
    margin: 25px 0 50px; } }

/*
	Mobile elements to hide
 */
@media (min-width: 768px) {
  .xs-acc_btn,
  .xs-footer-doh {
    display: none; } }

/*
	Mobile styles
*/
@media (max-width: 767px) {
  [href*="tel:"] {
    display: inline-block;
    color: #262626;
    font-weight: 700;
    font-size: 21px;
    text-decoration: none;
    margin: 8px 0 0;
    padding: 8px 22px;
    background: #fff;
    -webkit-border-radius: 9px;
       -moz-border-radius: 9px;
            border-radius: 9px;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.35), inset 0 -16px 3.5px rgba(0, 0, 0, 0.1);
       -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.35), inset 0 -16px 3.5px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 5px rgba(0, 0, 0, 0.35), inset 0 -16px 3.5px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
       -moz-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
         -o-transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99);
            transition: 0.3s all cubic-bezier(0.26, 0.85, 0.46, 0.99); }
    [href*="tel:"]:hover, [href*="tel:"]:focus {
      -webkit-box-shadow: 0 7px 5px rgba(0, 0, 0, 0.35), inset 0 -16px 3.5px rgba(0, 0, 0, 0.1);
         -moz-box-shadow: 0 7px 5px rgba(0, 0, 0, 0.35), inset 0 -16px 3.5px rgba(0, 0, 0, 0.1);
              box-shadow: 0 7px 5px rgba(0, 0, 0, 0.35), inset 0 -16px 3.5px rgba(0, 0, 0, 0.1); }
  #header,
  .xs-menu,
  .xs-home-top_right {
    margin-left: -20px;
    margin-right: -20px; }
  #header {
    padding-left: 20px;
    padding-right: 20px;
    height: auto; }
  #logo {
    max-width: 420px; }
  #footerContainer,
  .social-footer {
    margin-left: -20px;
    margin-right: -20px; }
  #footerContainer {
    margin-bottom: 0; }
  .xs-search {
    margin-left: -20px;
    margin-right: -20px; }
  #footerLinks ul {
    margin-top: 0; }
    #footerLinks ul li {
      width: 49.999%; }
  .xs-menu-container.is-clone {
    left: 0;
    width: auto; }
  .xs-menu-container.is-clone .xs-search {
    margin-left: 0; }
  #navigationContainer.is-clone {
    width: 75%;
    right: 0; }
  .xs-nav-open .xs-menu-container.is-clone {
    -webkit-transform: translateX(-75%);
       -moz-transform: translateX(-75%);
        -ms-transform: translateX(-75%);
         -o-transform: translateX(-75%);
            transform: translateX(-75%);
    -webkit-transform: translate3d(-75%, 0, 0);
       -moz-transform: translate3d(-75%, 0, 0);
            transform: translate3d(-75%, 0, 0); }
  .xs-nav-open .is-clone .xs-menu {
    margin: 0; }
  .xs-nav-open .backing {
    -webkit-transform: translateX(-75%);
       -moz-transform: translateX(-75%);
        -ms-transform: translateX(-75%);
         -o-transform: translateX(-75%);
            transform: translateX(-75%);
    -webkit-transform: translate3d(-75%, 0, 0);
       -moz-transform: translate3d(-75%, 0, 0);
            transform: translate3d(-75%, 0, 0); }
  .xs-home-top {
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
  .xs-home-top_right,
  .slider {
    float: none;
    width: auto;
    padding: 0; }
  .xs-home-top_right {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
       -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
       -moz-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%; }
  .slider {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
       -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
       -moz-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    min-height: 0;
    min-width: 0; }
  .xs-cta-tabs {
    min-height: auto;
    margin-top: 3px; }
    .xs-cta-tabs_btns {
      -webkit-border-radius: 0;
         -moz-border-radius: 0;
              border-radius: 0; }
      .xs-cta-tabs_btns a {
        width: auto; }
    .xs-cta-tabs_body {
      -webkit-border-radius: 0;
         -moz-border-radius: 0;
              border-radius: 0; }
    .xs-cta-tabs_container, .xs-cta-tabs_body {
      min-height: auto; }
  .slider {
    float: none;
    margin: 20px 0 10px 0;
    height: auto;
    width: auto; }
    .slider a {
      text-decoration: none; }
      .slider a:hover, .slider a:focus {
        text-decoration: none; }
  .sliderCaption {
    position: static;
    width: auto;
    padding: 20px 15px 5px; }
    .sliderCaption h2 {
      color: #99d8ad;
      font-size: 21px; }
  .bx-wrapper img {
    margin: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    min-width: 0; }
  .bx-wrapper .sliderCaption {
    width: auto; }
  .bx-wrapper .bx-viewport {
    background: #333; }
  .bx-wrapper .bx-controls {
    position: static;
    left: 20px;
    right: 20px;
    width: auto;
    text-align: center; }
  .slider-holder-xs,
  .slider-holder-xs .bx-wrapper,
  .slider-holder-xs .bx-viewport,
  .slider-holder-xs .slider-home,
  .slider-holder-md,
  .slider-holder-md .bx-wrapper,
  .slider-holder-md .bx-viewport,
  .slider-holder-md .slider-home,
  .slider-holder,
  .slider-holder .bx-wrapper,
  .slider-holder .bx-viewport,
  .slider-holder .slider-home,
  .slider-holder .bx-viewport {
    height: auto !important; }
  .slider-holder {
    display: block; }
  .slider-holder-xs,
  .slider-holder-md {
    display: none; }
  #homeLeftCol,
  #homeRightCol,
  .xs-healthSection-container,
  .xs-healthSection-container .healthSection {
    display: block;
    float: none;
    width: auto;
    padding-left: 0;
    padding-right: 0; }
  .xs-home-topics-wrap {
    display: block;
    width: auto;
    padding-right: 0;
    margin-bottom: 20px; }
  #improve li,
  #newsPanel li {
    border-top: 1px solid #A7A7A7;
    padding: 20px 0; }
    #improve li:first-child,
    #newsPanel li:first-child {
      padding: 12px 0 20px; }
  .newsPanel_img {
    width: 36%; }
  .newsPanel_content {
    width: auto; }
  .newsPanel_body {
    display: none; }
  .newsPanel_item:nth-child(n+4) {
    display: block !important; }
  .searchResultsWebsiteList {
    padding: 0 20px; }
  .contentHome {
    padding: 0; }
  .ReportPublication-Filter .xs-btn {
    min-width: 48%;
    margin: 0 0 6px; }
    .ReportPublication-Filter .xs-btn + .xs-btn {
      margin-left: 4%; }
  .xs-adverts-container {
    margin: 0 -20px 0;
    padding: 0 20px;
    border: none; }
    .xs-adverts-container [class*="xs-advert-"] {
      float: none; }
    .xs-adverts-container .advert-spacer {
      padding: 0; }
    .xs-adverts-container .xs-advert-1of3,
    .xs-adverts-container .xs-advert-2of3 {
      width: auto;
      padding: 20px 0 0; }
  .healthSections {
    margin: 0 0 20px !important; }
    .healthSections:before {
      display: none; }
    .healthSections > li {
      display: block;
      width: auto;
      margin: 0 0 20px !important;
      padding: 0 !important; }
    .healthSections .healthSections_xsAccordion {
      position: static; }
  #sideNav {
    margin: 3px -20px 25px; }
  #contentAreaLeft,
  #contentAreaRight {
    float: none;
    width: auto; }
  #contentAreaLeft {
    padding-right: 0; }
  #healthPanel {
    float: none;
    width: auto; }
  #topicsPanel {
    float: none;
    width: auto;
    padding-left: 0;
    margin-top: 20px; }
  /*#contentArea,
	#contentAreaExt {
		h2 {
			font-size: 20px;
		}
	}*/
  .mediaItem > * {
    display: none; }
  .mediaItem h3,
  .mediaItem .articleDate {
    display: block; }
  .mediaItem h3 {
    font-size: 14px;
    margin-bottom: 0; }
  .mediaItem a {
    text-decoration: none; }
  .mediaItem .articleDate {
    font-size: 10px; }
  #MediaNewsListing ul {
    margin-bottom: 0; }
    #MediaNewsListing ul li {
      padding: 10px 10px 10px 23px;
      position: relative; }
      #MediaNewsListing ul li:after {
        content: '\f054';
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        top: 30px;
        left: 9px;
        font-size: 14px;
        color: #005031; }
  #ReportPublicationPaging .ReportPublication-MostRecent ul li + li {
    border-top-color: #7cbe91; }
  .ReportPublication-MostRecent li a {
    padding-left: 25px; }
  .ReportPublication-MostRecent .ReportPublication-title {
    display: block;
    position: relative; }
    .ReportPublication-MostRecent .ReportPublication-title:before {
      content: '\f054';
      display: inline-block;
      font: normal normal normal 14px/1 FontAwesome;
      font-size: inherit;
      text-rendering: auto;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      position: absolute;
      top: 3px;
      left: -15px;
      font-size: 14px; }
  .xs-report-filter-row {
    display: block;
    width: auto; }
  .xs-report-filter-cols2 {
    width: 100%;
    margin: 0 2px 15px; }
    .xs-report-filter-cols2 .xs-report-filter-row {
      display: inline-table;
      width: 50%;
      margin: 0 -2px;
      padding-right: 9px; }
      .xs-report-filter-cols2 .xs-report-filter-row + .xs-report-filter-row {
        padding-right: 0;
        padding-left: 9px; }
  .xs-report-filter-label {
    display: block;
    width: auto;
    margin-bottom: 4px; }
  .xs-report-filter-body {
    display: block;
    width: auto; }
    .xs-report-filter-body select,
    .xs-report-filter-body [type="text"] {
      height: 45px;
      font-size: 14px; }
  .xs-cta-tabs_body-inner {
    text-align: center; }
    .xs-cta-tabs_body-inner h2 strong {
      font-weight: bold; }
    .xs-cta-tabs_body-inner p + p,
    .xs-cta-tabs_body-inner p + ul,
    .xs-cta-tabs_body-inner ul + p,
    .xs-cta-tabs_body-inner ul + ul,
    .xs-cta-tabs_body-inner p + h2,
    .xs-cta-tabs_body-inner h2 + p,
    .xs-cta-tabs_body-inner h2 + ul,
    .xs-cta-tabs_body-inner ul + h2,
    .xs-cta-tabs_body-inner h2 + h2 {
      margin-top: 25px; }
    .xs-cta-tabs_body-inner li {
      text-align: left; }
      .xs-cta-tabs_body-inner li + li {
        margin-top: 20px; }
    .xs-cta-tabs_body-inner [href*="tel:"] {
      display: block;
      max-width: 300px;
      margin: 7px auto 0;
      color: #262626; }
  .cta-list.-col-2 {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
    margin-left: 0;
    margin-top: 12px; }
    .cta-list.-col-2 .cta-list-number {
      margin-left: 0;
      margin-bottom: 7px; }
      .cta-list.-col-2 .cta-list-number a {
        padding-left: 5px;
        padding-right: 5px; }
  .xs-adverts-container {
    text-align: center; }
    .xs-adverts-container img {
      max-width: 100%;
      height: auto; }
    .xs-adverts-container [class*="xs-advert-"] {
      padding-top: 0;
      margin-bottom: 20px; }
      .xs-adverts-container [class*="xs-advert-"].-padding-left {
        padding-left: 0; }
      .xs-adverts-container [class*="xs-advert-"].-padding-right {
        padding-right: 0; }
  #contentAreaRight {
    text-align: center; }
    #contentAreaRight h2, #contentAreaRight h3 {
      text-align: left; }
  #podList-3,
  #content #podList-3 {
    margin: 20px 0 0; }
  #podList-3 .pod {
    display: block;
    width: auto;
    margin: 0 0 30px;
    padding: 0; }
  /*
		TABLES
	 */
  /* sticky first table column */
  .js-table-sticky-col {
    margin-bottom: 0; }
  .t-pinned {
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    width: 35%; }
  .t-pinned table {
    border-right: none;
    border-left: none;
    width: 100%;
    max-width: 100%; }
  .t-scrollable table,
  .t-scrollable td,
  .t-scrollable th {
    border-left: none; }
  .t-scrollable caption {
    visibility: hidden;
    font-size: 0.9em; }
  .t-pinned table th,
  .t-pinned table td {
    word-break: break-word; }
  .t-pinned td:last-child {
    border-bottom: 0; }
  .table-wrapper {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border-right: 1px solid #ccc; }
  .table-wrapper .t-scrollable {
    margin-left: 35%;
    overflow: scroll;
    overflow-y: hidden;
    -webkit-box-shadow: inset 10px 0 10px -10px rgba(0, 0, 0, 0.5);
       -moz-box-shadow: inset 10px 0 10px -10px rgba(0, 0, 0, 0.5);
            box-shadow: inset 10px 0 10px -10px rgba(0, 0, 0, 0.5); }
  .js-table-sticky-col td,
  .js-table-sticky-col th {
    position: relative; }
  /* stacking columns */
  .js-table-stack {
    border: 1px solid #005031;
    width: 100% !important;
    height: auto !important; }
  .js-table-stack thead {
    display: none; }
  .js-table-stack tbody td {
    display: block; }
  .js-table-stack tbody td:first-child {
    background: #005031;
    color: #fff; }
  .js-table-stack tbody td:before {
    content: attr(data-th);
    display: block;
    font-weight: bold; }
  /* collapse columns - accordion functionality */
  .js-table-collapse {
    border: 1px solid #D4D4D4;
    width: 100% !important;
    height: auto !important; }
  .js-table-collapse tr {
    border-bottom-color: #D4D4D4; }
  .js-table-collapse thead th:nth-child(n+2),
  .js-table-collapse thead td:nth-child(n+2) {
    display: none; }
  .js-table-collapse tbody td {
    display: block;
    height: auto;
    position: relative; }
  .js-table-collapse tbody td:first-child {
    background: #f3f3f3;
    cursor: pointer; }
  .js-table-collapse tbody td:nth-child(n+2) {
    visibility: hidden;
    position: absolute; }
  .js-table-collapse tbody .xs-row-open td:nth-child(n+2) {
    visibility: visible;
    position: static; }
  .js-table-collapse tbody td:before {
    content: attr(data-th);
    display: block;
    font-weight: bold; }
  .js-table-collapse tbody td:first-child:before {
    display: none; }
  .js-table-collapse tbody td:first-child:after {
    content: "\f078";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -9px; }
  .js-table-collapse tbody .xs-row-open td:first-child:after {
    content: "\f077"; }
  .imageRight,
  .imgHolder img {
    display: block;
    float: none;
    width: auto !important;
    max-width: 100%;
    margin: 0 0 15px; }
  .imgHolder {
    float: none;
    width: auto;
    margin: 15px 0; }
    .imgHolder img {
      display: block;
      max-width: 100%;
      height: auto;
      width: auto; }
  #colRight #advert,
  #sideNav #advert,
  #colRight .homepage-advert,
  #sideNav .homepage-advert {
    margin-left: auto;
    margin-right: auto; } }

@media (max-width: 543px) {
  .articleImage {
    width: 50%; }
  .articleItem {
    width: auto; } }

/*
	Extra small mobile styles
 */
@media (max-width: 420px) {
  .ReportPublication-Filter .xs-btn {
    display: block;
    width: 100%;
    margin: 0 0 10px; }
    .ReportPublication-Filter .xs-btn + .xs-btn {
      margin-left: 0; } }

@media print {
  .xs-menu-container,
  .xs-to-top,
  .social-footer,
  .header_links,
  .xs-close-menu {
    display: none !important; }
  #contentArea .healthSections,
  #contentAreaExtWide .healthSections,
  #contentAreaExt .healthSections {
    margin: 20px 0 !important; }
  .healthSections {
    margin: 0 2px;
    white-space: nowrap; }
    .healthSections > li {
      white-space: normal;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      width: 24.75%;
      display: inline-block;
      vertical-align: top;
      padding: 0 !important;
      margin: 0 -2px !important;
      list-style: none; }
    .healthSections img {
      max-width: 100%;
      height: auto; }
  .healthSections_headingXs {
    background: #fff; }
    .healthSections_headingXs > a {
      color: #000;
      margin: 0; }
  .healthSections_headingXsIcon {
    display: none; }
  .healthSections_xsAccordion {
    display: block !important; }
  #contentArea .healthSections_xsAccordion,
  #contentAreaExtWide .healthSections_xsAccordion,
  #contentAreaExt .healthSections_xsAccordion {
    margin: 0 !important;
    background: #fff;
    list-style: none !important; }
    #contentArea .healthSections_xsAccordion a,
    #contentAreaExtWide .healthSections_xsAccordion a,
    #contentAreaExt .healthSections_xsAccordion a {
      color: #000; } }