@charset "UTF-8";
/*
@color-reim:                #388ec0; 
@color-residential:         #a00078; 
@color-retail:              #ef7d00; 
@color-office:              #938790; 
@color-international:       #285c7a; 
@color-hotels:              #caab50; 
@color-zorg:                #87a53b;
*/
/*

Animate.less
Cross-browser LESS animation library for Bootstrap
Licensed under the ☺ license (http://licence.visualidiot.com/)
Documenation: https://github.com/machito/animate.less
-------------------------------------------------------
Copyright © 2012 Michael Castilla
Email: yo@machito.co
Twitter: https://twitter.com/micr0bitz

*/
body {
  -webkit-backface-visibility: hidden;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInRightBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInRightBig {
  0% {
    opacity: 1;
    -o-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 1;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  -moz-animation-name: fadeInRightBig;
  -o-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(2000px);
  }
}
@-moz-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(2000px);
  }
}
@-o-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  -moz-animation-name: fadeOutRightBig;
  -o-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*!
 *  Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-square:before,
.fa-pied-piper:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('/Fonts/fontawesome/fontawesome-webfont.eot?v=4.1.0');
  src: url('/Fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('/Fonts/fontawesome/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('/Fonts/fontawesome/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('/Fonts/fontawesome/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
.fa-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
/*@font-face {
    .font-face(Vista Sans, ~'../../../fonts/VistaSansLight', 300, normal);
}

@font-face {
    .font-face(Vista Sans, ~'../../../fonts/VistaSansLightIt', 300, italic);
}

@font-face {
    .font-face(Vista Sans, ~'../../../fonts/VistaSansReg', 400, normal);
}

@font-face {
    .font-face(Vista Sans, ~'../../../fonts/VistaSansRegIt', 400, italic);
}

@font-face {
    .font-face(Vista Sans, ~'../../../fonts/VistaSansBold', 700, normal);
}

@font-face {
    .font-face(Vista Sans, ~'../../../fonts/VistaSansBoldIt', 700, italic);
}*/
@font-face {
  font-family: "Vista Sans";
  src: url("../../../../fonts/VistaSansOT-Light.eot");
  src: url("../../../../fonts/VistaSansOT-Light.eot?#iefix") format("embedded-opentype"), url("../../../../fonts/VistaSansOT-Light.woff") format("woff"), url("../../../../fonts/VistaSansOT-Light.ttf") format("truetype"), url("../../../../fonts/VistaSansOT-Light.svg#Vista Sans") format("svg");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Vista Sans";
  src: url("../../../../fonts/VistaSansOT-LightItalic.eot");
  src: url("../../../../fonts/VistaSansOT-LightItalic.eot?#iefix") format("embedded-opentype"), url("../../../../fonts/VistaSansOT-LightItalic.woff") format("woff"), url("../../../../fonts/VistaSansOT-LightItalic.ttf") format("truetype"), url("../../../../fonts/VistaSansOT-LightItalic.svg#Vista Sans") format("svg");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Vista Sans";
  src: url("../../../../fonts/VistaSansOT-Reg.eot");
  src: url("../../../../fonts/VistaSansOT-Reg.eot?#iefix") format("embedded-opentype"), url("../../../../fonts/VistaSansOT-Reg.woff") format("woff"), url("../../../../fonts/VistaSansOT-Reg.ttf") format("truetype"), url("../../../../fonts/VistaSansOT-Reg.svg#Vista Sans") format("svg");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Vista Sans";
  src: url("../../../../fonts/VistaSansOT-RegItalic.eot");
  src: url("../../../../fonts/VistaSansOT-RegItalic.eot?#iefix") format("embedded-opentype"), url("../../../../fonts/VistaSansOT-RegItalic.woff") format("woff"), url("../../../../fonts/VistaSansOT-RegItalic.ttf") format("truetype"), url("../../../../fonts/VistaSansOT-RegItalic.svg#Vista Sans") format("svg");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Vista Sans";
  src: url("../../../../fonts/VistaSansOT-Bold.eot");
  src: url("../../../../fonts/VistaSansOT-Bold.eot?#iefix") format("embedded-opentype"), url("../../../../fonts/VistaSansOT-Bold.woff") format("woff"), url("../../../../fonts/VistaSansOT-Bold.ttf") format("truetype"), url("../../../../fonts/VistaSansOT-Bold.svg#Vista Sans") format("svg");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Vista Sans";
  src: url("../../../../fonts/VistaSansOT-BoldItalic.eot");
  src: url("../../../../fonts/VistaSansOT-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../../../../fonts/VistaSansOT-BoldItalic.woff") format("woff"), url("../../../../fonts/VistaSansOT-BoldItalic.ttf") format("truetype"), url("../../../../fonts/VistaSansOT-BoldItalic.svg#Vista Sans") format("svg");
  font-weight: 700;
  font-style: italic;
}
/*
 *
 * @company			F19
 * @project			Bouwinvest Annual Report 2015
 * @startdate		December 2015
 * @author		    PvG
 * 
 */
/* ==========================================================================
   Toolbox
   ========================================================================== */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.hide {
  display: none;
}
.hide-overrule {
  display: none !important;
}
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.inline {
  display: inline;
}
.phoneonly {
  display: none;
}
.btn-video {
  display: none;
}
/* ==========================================================================
   Sprites // ms = Master Sprite
   ========================================================================== */
.ms,
.ms-pseudo:before {
  background-image: url(/Images/sprites/sprite.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
}
/*.ie .ms,
.ie .ms-pseudo:before {
    background-image: url(/images/sprites/icons.png);
    background-repeat: no-repeat;
}*/
.ms-alt,
.ms-alt-pseudo:before {
  background-image: url(/images/sprites/icons-alt.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
}
/*.ie .ms-alt,
.ie .ms-alt-pseudo:before {
    background-image: url(/images/sprites/icons-alt.png);
    background-repeat: no-repeat;
}*/
/* ==========================================================================
   Links & buttons
   ========================================================================== */
a {
  color: #000;
}
a:link {
  text-decoration: underline;
  outline: 0;
}
a:visited {
  text-decoration: underline;
  outline: 0;
}
a:active {
  text-decoration: underline;
  outline: 0;
}
a:hover {
  color: #404040;
  text-decoration: none;
  outline: 0;
}
.readmore {
  position: relative;
  text-transform: uppercase;
  color: #678b6b;
  font-weight: 500;
  padding: 0;
  text-decoration: none !important;
}
.readmore:before {
  content: "\203A";
  display: inline-block;
  margin-right: 5px;
  font-size: 1.2em;
}
.btn {
  background: #FFF;
  color: #70305d;
  text-transform: uppercase;
  text-decoration: none !important;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 12px 10px;
  position: relative;
}
.btn:hover {
  color: #000;
}
.menu-btn {
  display: none;
}
/* ==========================================================================
   Base CSS
   ========================================================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
}
html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
}
body {
  color: #000;
  background: #FFF;
  font-variant-numeric: lining-nums;
  -moz-font-feature-settings: "lnum";
  -webkit-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
  font-family: "Vista Sans", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.4;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*&.panels--open {
        overflow: hidden;
    }*/
  /*&.fullpage-notloaded {
        display: none;
    }*/
}
body.refREIM .nav-hierarchical ul li a:hover,
body.refREIM .nav-hierarchical ul li a.selected {
  background: #83929b;
}
body.refREIM .nav-hierarchical ul li li a.selected,
body.refREIM .nav-hierarchical ul li li a:hover {
  background: #65737d;
}
body.refREIM .nav-hierarchical ul li li li a.selected,
body.refREIM .nav-hierarchical ul li li li a:hover {
  background: #75828b;
}
body.refResidentialFund .nav-hierarchical ul li a:hover,
body.refResidentialFund .nav-hierarchical ul li a.selected {
  background: #83929b;
}
body.refResidentialFund .nav-hierarchical ul li li a.selected,
body.refResidentialFund .nav-hierarchical ul li li a:hover {
  background: #65737d;
}
body.refResidentialFund .nav-hierarchical ul li li li a.selected,
body.refResidentialFund .nav-hierarchical ul li li li a:hover {
  background: #75828b;
}
body.refRetailFund .nav-hierarchical ul li a:hover,
body.refRetailFund .nav-hierarchical ul li a.selected {
  background: #83929b;
}
body.refRetailFund .nav-hierarchical ul li li a.selected,
body.refRetailFund .nav-hierarchical ul li li a:hover {
  background: #65737d;
}
body.refRetailFund .nav-hierarchical ul li li li a.selected,
body.refRetailFund .nav-hierarchical ul li li li a:hover {
  background: #75828b;
}
body.refOfficeFund .nav-hierarchical ul li a:hover,
body.refOfficeFund .nav-hierarchical ul li a.selected {
  background: #83929b;
}
body.refOfficeFund .nav-hierarchical ul li li a.selected,
body.refOfficeFund .nav-hierarchical ul li li a:hover {
  background: #65737d;
}
body.refOfficeFund .nav-hierarchical ul li li li a.selected,
body.refOfficeFund .nav-hierarchical ul li li li a:hover {
  background: #75828b;
}
body.refREIM #container #content .left-pane {
  background: #83929b;
}
body.refResidentialFund #container #content .left-pane {
  background: #83929b;
}
body.refRetailFund #container #content .left-pane {
  background: #83929b;
}
body.refOfficeFund #container #content .left-pane {
  background: #83929b;
}
/* ==========================================================================
   Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1.2em;
}
h1 {
  color: #008fc6;
  margin: 0 0 21px 0;
  font-weight: 300;
  line-height: 42px;
  line-height: 4.2rem;
  font-size: 32px;
  font-size: 3.2rem;
}
h2 {
  margin: 0 0 5px 0;
  color: #000;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
}
h3 {
  margin: 0 0 5px 0;
  color: #008fc6;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 500;
}
h4 {
  margin: 0 0 5px 0;
  color: #000;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 500;
}
h6 {
  margin: 0;
  color: #70305d;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 300;
}
.subheading {
  text-transform: uppercase;
  color: #70305d;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 21px;
  line-height: 2.1rem;
  font-weight: 500;
}
.figuurkop {
  color: #70305d;
}
.smalltext {
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0;
}
/* ==========================================================================
   Layout
   ========================================================================== */
#framework {
  text-align: left;
  margin: 0 auto;
  padding: 0;
}
.refEUMan #container .left-pane,
.refNAMan #container .left-pane,
.refAPMan #container .left-pane {
  display: none;
}
.refEUMan #container .content-pane,
.refNAMan #container .content-pane,
.refAPMan #container .content-pane {
  padding: 0;
  width: 90%;
  margin: 0 auto;
  float: none;
}
#container {
  position: relative;
  height: 100%;
  padding: 0;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /*-moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);*/
}
#container #content {
  width: 100%;
  height: 100%;
  float: left;
  position: relative;
  padding: 0;
  margin: 0;
  overflow: auto;
}
#container .left-pane {
  width: 23%;
  float: left;
  position: relative;
  margin: 0;
  background: #ccc;
  padding: 30px 0 0 5%;
}
#container .content-pane {
  width: 77%;
  float: left;
  position: relative;
  padding: 0 0 0 3%;
}
#container .center-pane {
  width: 74%;
  float: left;
  position: relative;
  margin: 0;
  padding: 30px 3% 0 0;
}
#container .right-pane {
  width: 25%;
  float: left;
  position: relative;
  overflow: hidden;
  padding: 60px 5% 0 0;
}
/* ==========================================================================
   Wide view
   ========================================================================== */
.channel-desktop #container.wide .menu-btn {
  display: none;
}
#container.wide .center-pane {
  width: 100%;
}
#container.wide .right-pane {
  float: none;
  width: 100%;
  padding: 10px 3% 10px 0;
  border-bottom: solid 1px #83929b;
}
#container.wide .right-pane .related-sidebar {
  width: 33%;
  display: inline-block;
  vertical-align: top;
}
#container.wide .right-pane .page-options-container .po-add-wrapper {
  display: block;
  padding: 0 0 0 60px;
  width: 95%;
}
#container.wide .side-navi {
  width: 33%;
  display: inline-block;
  border-left: solid 1px #83929b;
  border-top: solid 0 #83929b;
  border-bottom: solid 0 #83929b;
  padding: 0 0 0 5px;
}
#container.wide .page-options-container {
  float: none;
  border-bottom: solid 1px #768a96;
}
#container.wide .page-options-container .rep-basket {
  position: relative;
  width: 33%;
  border-right: solid 1px #83929b;
  padding-right: 5px;
}
#container.wide #footer {
  height: auto;
  margin: 0 3% 0 0;
  color: #000;
  position: relative;
  border-top: solid 0 #768a96;
  float: none;
  width: auto;
}
/* ==========================================================================
   Home page
   ========================================================================== */
body.home-page #content {
  position: relative;
  height: 100%;
}
body.home-page #content .home-left {
  float: left;
  margin: 0 10px 0 0;
}
body.home-page #content .home-center {
  width: 660px;
  background: #FFF;
  float: left;
  margin: 0 10px 0 0;
}
body.home-page #content .home-right {
  width: 270px;
  background: #FFF;
  float: right;
  position: static;
}
body.home-page #content .goto-report {
  text-decoration: underline;
}
body.home-page #content .goto-report:hover {
  text-decoration: none;
}
/* ==========================================================================
   Header
   ========================================================================== */
#header {
  width: 100%;
  height: 110px;
  margin: 0;
  padding-top: 26px;
  position: relative;
  background: #FFF;
  z-index: 100;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.2);
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  overflow: hidden;
  /*body.home-page &.showheader {
        margin-top: 0;
        display: none !important;
    }*/
}
#header.is-expanded {
  height: 240px;
}
body.home-page #header {
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 0;
}
#header .inner-header {
  width: 95%;
  margin: 0 auto;
  height: 84px;
}
#header .inner-header__left {
  width: 23%;
  float: left;
  margin-right: 2%;
}
#header .inner-header__top {
  width: 75%;
  float: left;
}
#header .inner-header__bottom {
  width: 75%;
  float: right;
}
#header .inner-header .btn-phonemenu {
  display: none;
}
#header .inner-header .company-logo img {
  width: 280px;
  height: 66px;
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 220px;
  margin: 0;
}
/*.report-header-container {
    width: 100%;
    font-size: 0px;

    .report-header,
    .report-title {
        width: 50%;
        display: inline-block;
    }

    .report-title {
        background: #dee3e7;
        vertical-align: top;

        span {
            font-size: 
        }
    }
}*/
/* ==========================================================================
   Main navigation
   ========================================================================== */
.nav-mobile {
  display: none;
}
.nav-mobile .close-nav-mobile {
  height: 30px;
  width: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-image: url(/images/right.svg);
  background-size: 15px;
  background-position: center;
  background-repeat: no-repeat;
}
nav#navigation {
  margin: 10px 0 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
nav#navigation ul,
nav#navigation li {
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
}
nav#navigation span {
  cursor: default;
}
nav#navigation .nav > li {
  float: left;
  padding-right: 5%;
}
nav#navigation .nav > li > span {
  margin-bottom: 30px;
  padding-right: 20px;
  display: inline-block;
  color: #421542;
  /*&:hover {
                    color: @color-primary-magenta;

                    &:after {
                        .chevron-down-small-purple
                    }
                }*/
}
nav#navigation .nav > li > span:after {
  content: '';
  background: url(/images/sprites/sprite.svg) 0 0 no-repeat;
  background-position: 37.38586527% 44.63151783%;
  width: 8.82px;
  height: 6.41px;
  display: inline-block;
  margin-left: 5px;
  position: relative;
  top: -3px;
}
nav#navigation .nav li {
  color: #000;
}
nav#navigation .nav li li a {
  margin-bottom: 5px;
}
nav#navigation .nav li a {
  display: block;
  padding: 0;
  text-decoration: none;
  position: relative;
  color: #421542;
}
nav#navigation .nav li a:hover {
  color: #be097f;
}
/* ==========================================================================
   Helpers
   ========================================================================== */
.helpers {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}
.helpers li {
  margin: 0;
  padding: 0;
  vertical-align: top;
  color: #421542;
  display: inline-block;
}
.helpers a {
  text-decoration: none;
  color: #421542;
}
.helpers a:hover {
  text-decoration: underline;
}
.helpers .helpers__title {
  float: left;
  cursor: default;
}
.helpers .helpers__corp {
  padding-right: 10px;
}
.helpers .helpers__search {
  position: relative;
  top: -4px;
}
/* ==========================================================================
   Language
   ========================================================================== */
.language {
  margin: 10px 0;
}
.language a {
  float: right;
  margin-right: 10px;
}
/* ==========================================================================
   Searchbox
   ========================================================================== */
.searchbox {
  height: auto;
  position: relative;
}
.searchbox .searchbox__input {
  position: absolute;
  top: 0;
  right: 35px;
  overflow: hidden;
  width: 0;
  height: 33px;
  border: 0;
  border-bottom: 1px #7B8A94 solid;
  border-radius: 0;
  font-size: 15px;
  line-height: 31px;
  opacity: 0;
  -moz-transition: 0.3s width, 0.3s opacity;
  -o-transition: 0.3s width, 0.3s opacity;
  -webkit-transition: 0.3s width, 0.3s opacity;
  transition: 0.3s width, 0.3s opacity;
  outline: 0;
}
.searchbox .searchbox__input.is-visible {
  display: block;
  width: 190px;
  opacity: 1;
}
.searchbox .searchbox__submit.searchbox--input {
  border: none;
  cursor: pointer;
  color: #fff;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  background-color: transparent;
  background-position: 87.26327516% 69.34444865%;
  width: 17.7px;
  height: 18.1px;
  outline: 0;
  padding: 0;
  line-height: inherit;
}
.searchbox .searchbox__submit.searchbox--btn {
  border: none;
  cursor: pointer;
  color: #fff;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  background-color: transparent;
  background-position: 0 99.65896173%;
  width: 17.7px;
  height: 18.1px;
  outline: 0;
  padding: 0;
}
.searchbox .searchbox__submit.searchbox--btn.is-waiting {
  background-position: 87.26327516% 69.34444865%;
  width: 17.7px;
  height: 18.1px;
}
.searchbox div:nth-child(2) {
  padding: 3px 7px 7px 7px;
  border-radius: 3px;
}
.searchbox div:nth-child(2).is-waiting {
  background: #BDC4C9;
}
.searchbox div:nth-child(2).is-active {
  background: #7B8A94;
}
/* ==========================================================================
   Searchpage (results)
   ========================================================================== */
.refSearch #container .left-pane {
  display: none;
}
.refSearch #container .content-pane {
  width: 100%;
}
.refSearch #container .right-pane {
  display: none;
}
/* ==========================================================================
   Facetnavigatie
   ========================================================================== */
.nav-hierarchical {
  border-top: solid 1px rgba(255, 255, 255, 0.5);
  margin: 10px 0;
}
.nav-hierarchical ul {
  margin: 0;
  padding: 0;
}
.nav-hierarchical ul li {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.nav-hierarchical ul li.level-0 a {
  margin-bottom: 1px;
  font-weight: 800;
}
.nav-hierarchical ul li.level-1 a {
  font-weight: 500;
}
.nav-hierarchical ul li.level-2 a {
  font-style: italic;
}
.nav-hierarchical ul li a {
  color: #FFF;
  display: block;
  text-decoration: none;
  margin: 0;
  padding: 8px 10px 8px 5px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  position: relative;
}
.nav-hierarchical ul li a label {
  cursor: pointer;
}
.nav-hierarchical ul li ul {
  display: block;
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.nav-hierarchical ul li ul li a {
  padding-left: 25px;
}
.nav-hierarchical ul li ul ul li a {
  padding-left: 50px;
}
/* ==========================================================================
   Breadcrumb
   ========================================================================== */
body.refREIM  .breadcrumb {
  background-color: #008fc6;
}
body.refResidentialFund  .breadcrumb {
  background-color: #95c5e5;
}
body.refRetailFund  .breadcrumb {
  background-color: #be097f;
}
body.refOfficeFund  .breadcrumb {
  background-color: #35597e;
}
body.refEUMan  .breadcrumb,
body.refNAMan  .breadcrumb,
body.refAPMan  .breadcrumb {
  background-color: #70305d;
}
.breadcrumb {
  position: relative;
  margin: 0;
  padding: 15px 2.5%;
  width: 100%;
  z-index: 50;
  text-align: left;
}
.breadcrumb--item {
  opacity: 0.5;
}
.breadcrumb--current {
  opacity: 1;
  position: relative;
  padding-left: 20px;
  /*&:before {
            position: absolute;
            top: 0;
            left: 0;
            content: '';
            .chevron-right-big-white;
            display: inline-block;
        }*/
}
.breadcrumb > span {
  display: none;
  margin-right: 10px;
  width: auto;
  color: #fff;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: bold;
  text-decoration: none;
  line-height: 27px;
}
.breadcrumb > span:hover {
  width: auto;
}
.breadcrumb--item.breadcrumb--current {
  display: inline-block;
  /*width: 95%;*/
  margin-left: 0px;
  padding-left: 0px;
}
/* ==========================================================================
   Search results
   ========================================================================== */
.result-intro {
  border-bottom: 1px solid #000;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.result-intro h2 {
  border-bottom: 1px solid #000;
  float: left;
  font-size: 160%;
  font-weight: normal;
  padding: 0 0 10px 0;
  width: 100%;
}
.result-block {
  border-bottom: 1px solid #83929b;
  padding: 15px 0;
}
.result-block.ResFund h2 a {
  color: #678b6b;
}
.result-block.RetailFund h2 a {
  color: #998992;
}
.result-block.OfficeFund h2 a {
  color: #d5ac48;
}
.result-block.Reim h2 a {
  color: #421542;
}
.result-block.InternationalFund h2 a {
  color: #35597e;
}
.result-block h2 {
  margin: 0 0 5px 0;
  width: 100%;
  padding: 0;
  position: relative;
}
.result-block a {
  color: #70305d;
  text-decoration: none;
}
.result-block a:hover {
  text-decoration: underline;
}
.result-block a.read-more {
  font-weight: 600;
  display: inline-block;
}
.result-block p {
  padding: 0 0 5px 0;
}
.result-block a.add-to-report {
  font-weight: bold;
  margin: 0;
  padding: 6px 15px 6px 35px;
  font-size: 11px;
  font-size: 1.1rem;
  color: #FFF;
  background: #70305d;
  text-transform: uppercase;
  position: relative;
  top: 0;
  display: inline-block;
}
.result-block a.add-to-report:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 3px;
  background-position: 0 92.51968504%;
  width: 28px;
  height: 28px;
}
.result-block .added-to-report {
  font-weight: bold;
  margin: 0;
  padding: 5px 15px;
  font-size: 11px;
  font-size: 1.1rem;
  color: #FFF;
  background: #70305d;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
/* ==========================================================================
   Lazyloader
   ========================================================================== */
.lazyload {
  clear: both;
}
.lazyload a {
  display: block;
  margin: 30px 0;
  font-weight: bold;
  padding: 5px 15px 5px 35px;
  font-size: 11px;
  font-size: 1.1rem;
  color: #FFF;
  background: #70305d;
  text-transform: uppercase;
  position: relative;
  top: 0;
  text-decoration: none;
  text-align: center;
}
/* ==========================================================================
   Sidebar
   ========================================================================== */
.sidebar-downloads {
  display: block;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-downloads li {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.sidebar-downloads li a {
  display: block;
  margin: 0 0 2px 0;
  text-decoration: underline;
}
.sidebar-downloads li a :hover {
  text-decoration: none;
}
.sidebar-external {
  display: block;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-external li {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.sidebar-external li a {
  display: block;
  margin: 0 0 2px 0;
  text-decoration: underline;
}
.sidebar-external li a :hover {
  text-decoration: none;
}
.sidebar-goto {
  display: block;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-goto li {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.sidebar-goto li a {
  display: block;
  padding: 0.2em 0 0.2em 12px;
  text-decoration: underline;
  position: relative;
}
.sidebar-goto li a:hover {
  text-decoration: none;
}
.sidebar-goto li a:before {
  content: "\00BB";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 0;
  margin-right: 5px;
}
.related-sidebar h1,
.related-sidebar h2,
.related-sidebar h3 {
  margin: 0 0 10px 0;
  color: #678b6b;
  text-transform: uppercase;
}
.related-sidebar {
  margin: 0 0 10px 0;
  padding: 10px 0 0 0;
  width: 100%;
  border-top: solid 1px #83929b;
}
.related-sidebar ul {
  margin: 0;
  padding: 0;
}
.related-sidebar ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.related-sidebar ul li a {
  padding: 0 0 1px 20px;
  margin: 0 0 5px 0;
  text-decoration: none;
  position: relative;
  display: block;
}
.related-sidebar ul li a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background-position: 0 -118px;
}
/* ==========================================================================
   <article>.article 
   ========================================================================== */
.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
  margin: 0;
  padding: 0;
}
.article {
  position: relative;
  border-bottom: solid 1px #83929b;
}
.article:before,
.article:after {
  content: " ";
  display: table;
}
.article:after {
  clear: both;
}
.article h1 {
  color: #008fc6;
  font-size: 32px;
  font-size: 3.2rem;
  margin: 0 0 21px 0;
  font-weight: 300;
  line-height: 42px;
  line-height: 4.2rem;
}
.article h2 {
  color: #70305d;
  font-size: 20px;
  font-size: 2rem;
  margin: 0;
  font-weight: 500;
  line-height: 24px;
  line-height: 2.4rem;
}
.article h3 {
  color: #008fc6;
  font-size: 17px;
  font-size: 1.7rem;
  margin: 0;
  font-weight: 500;
  line-height: 21px;
  line-height: 2.1rem;
}
.article h4 {
  color: #000;
  font-size: 15px;
  font-size: 1.5rem;
  margin: 0;
  font-weight: 800;
  line-height: 21px;
  line-height: 2.1rem;
}
.article h5 {
  color: #998992;
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0 0 5px 0;
  font-weight: 500;
}
.article h6 {
  margin: 0;
  color: #70305d;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 500;
}
.article p {
  float: none;
  margin: 0 0 21px 0;
  line-height: 21px;
  line-height: 2.1rem;
}
.article p.article-subtitle {
  font-size: 15px;
  font-size: 1.5rem;
  margin: 0 0 10px 0;
  width: 100%;
}
.article p.article-intro {
  font-weight: bold;
  margin: 0 0 10px 0;
}
.article span.photo-description {
  display: block;
  font-size: 11px;
  font-size: 1.1rem;
  font-style: italic;
}
.article span.footer-description {
  display: block;
  font-size: 11px;
  font-size: 1.1rem;
}
.article blockquote {
  padding: 15px;
  border: solid 1px #678b6b;
}
.article strong {
  font-weight: bold;
}
.article em {
  font-style: italic;
}
.article a {
  text-decoration: underline;
}
.article a:hover {
  text-decoration: none;
}
.article img {
  display: block;
  max-width: 100%;
}
.article table {
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
}
.article ol {
  list-style-type: none;
  margin: 0 0 21px 0;
  padding: 0;
}
.article ol li {
  display: list-item;
  list-style-type: decimal;
  margin: 0 0 5px 0;
  list-style-position: inside;
}
.article ol li p {
  margin: 0;
  padding: 0;
}
.article ul {
  list-style-type: none;
  margin: 0 0 21px 0;
  padding: 0;
}
.article ul li {
  display: list-item;
  list-style-type: disc;
  margin: 0;
  line-height: 21px;
  line-height: 2.1rem;
  list-style-position: inside;
  padding: 0 0 0 2px;
}
.article ul li p {
  margin: 0;
  padding: 0;
  display: inline;
}
.article .fbml-nested-list {
  list-style-type: none;
}
.article .note-list {
  display: table;
  padding: 0 0 0 0.2em;
  overflow: hidden;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.4;
}
.article .note-list li {
  width: 100%;
  position: relative;
  display: table-row;
  clear: both;
}
.article .note-list .note-indicator,
.article .note-list .note-seperato,
.article .note-list .note-content {
  padding: 0.2em 0.2em 0.5em 0.2em;
  display: table-cell;
  vertical-align: top;
}
.article .note-list .note-indicator {
  min-width: 20px;
  padding-left: 0;
}
.article .article-footer .art-source {
  margin: 5px 0;
}
.article .article-footer .art-report {
  margin: 5px 0;
}
.article .back-to-top {
  display: block;
  position: absolute;
  right: 10px;
  bottom: 10px;
  background-position: 61.31687243% 40%;
  width: 44px;
  height: 22px;
}
.article .back-to-top:hover {
  background-position: 82.71604938% 60%;
  width: 44px;
  height: 22px;
}
/* ==========================================================================
   Paging
   ========================================================================== */
.pagination {
  clear: both;
  display: block;
  font-weight: normal;
  height: 22px;
  line-height: 21px;
  margin: 2em 0 2em 0;
  position: relative;
  text-align: center;
}
.pagination a.page:link,
.pagination a.page:visited {
  font-weight: normal;
  margin: 0 5px;
  padding: 2px;
  text-decoration: none;
  width: 22px;
}
.pagination a.page:hover {
  color: #000;
}
.pagination .active-page {
  color: #0C2074;
  cursor: default;
  font-size: 110%;
  font-weight: bold;
  margin: 0 5px;
  padding: 2px;
  text-decoration: none;
}
.pagination .pagination-back {
  color: #000;
  cursor: pointer;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  text-decoration: none;
  top: 0;
}
.pagination .pagination-forward {
  color: #000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  text-decoration: none;
  top: 0;
}
/* ==========================================================================
   Sticky Article Navigation
   ========================================================================== */
.sticky-wrapper > div {
  z-index: 9999;
}
.wide .center-pane .sticky-article-nav {
  position: absolute;
  right: 7%;
}
.wide .center-pane .sticky-wrapper {
  display: initial;
}
.wide .center-pane .sticky-wrapper.moved-second .sticky-article-nav {
  right: 5%;
}
.right-pane .sticky-wrapper.moved .sticky-article-nav {
  width: 15%;
}
/*

.sticky-wrapper.moved > div {
    width: 16%;
    right: 5%;
}

.sticky-wrapper.moved-second > div {
    width: 69%;
}*/
.sticky-article-nav ul {
  margin: 0;
  padding: 0;
  z-index: 9999;
  text-align: right;
}
.sticky-article-nav ul.widenav {
  margin: 0 auto;
  width: 90%;
}
.sticky-article-nav ul li {
  margin: 10px 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}
.sticky-article-nav ul li a {
  width: 39px;
  height: 40px;
  display: block;
  background-color: #fff;
}
.sticky-article-nav ul li a.prev {
  background-position: 65.28301887% 55.04201681%;
  width: 22px;
  height: 44px;
  margin: 0 15px 0 0;
}
.sticky-article-nav ul li a.prev:hover {
  background-position: 26.03773585% 76.8907563%;
  width: 22px;
  height: 44px;
}
.sticky-article-nav ul li a.next {
  background-position: 39.24528302% 33.19327731%;
  width: 22px;
  height: 44px;
}
.sticky-article-nav ul li a.next:hover {
  background-position: 47.54716981% 33.19327731%;
  width: 22px;
  height: 44px;
}
/* ==========================================================================
   Article Navigation
   ========================================================================== */
.side-navi {
  margin: 0;
  padding: 0;
  width: 100%;
  border-top: solid 1px #83929b;
}
.side-navi ul {
  margin: 0;
  padding: 0;
}
.side-navi ul li {
  margin: 10px 0;
  padding: 0;
  list-style: none;
}
.side-navi ul li span {
  display: block;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  color: #70305d;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 21px;
  line-height: 2.1rem;
  font-weight: 500;
}
.side-navi ul li a {
  padding: 0 0 1px 20px;
  margin: 0 0 5px 0;
  text-decoration: none;
  position: relative;
  display: block;
}
.side-navi ul li a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  background-position: 46.15384615% 87.68656716%;
  width: 14px;
  height: 14px;
}
.side-navi ul li a.prev:before {
  background-position: 86.08058608% 75.03731343%;
  width: 14px;
  height: 14px;
}
.side-navi ul li a.prev:hover:before {
  background-position: 51.28205128% 87.68656716%;
  width: 14px;
  height: 14px;
}
.side-navi ul li a:hover:before {
  background-position: 41.02564103% 87.68656716%;
  width: 14px;
  height: 14px;
}
/* ==========================================================================
   Social sharing
   ========================================================================== */
.right-pane .socialshares {
  display: none;
}
.article .socialshares,
.socialshares {
  margin: 5px 0;
  padding: 10px 0;
  list-style: none;
  border-top: solid 1px #83929b;
  border-bottom: solid 1px #83929b;
}
.article .socialshares li,
.socialshares li {
  margin: 0 5px 0 0;
  padding: 0;
  display: inline-block;
  list-style: none;
  text-align: center;
}
.article .socialshares li:last-child,
.socialshares li:last-child {
  text-transform: uppercase;
  color: #70305d;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 21px;
  line-height: 2.1rem;
  font-weight: 500;
  margin: 0 0 0 10px;
}
.article .socialshares li a,
.socialshares li a {
  width: 30px;
  height: 30px;
  display: block;
  line-height: 28px;
  text-decoration: none;
}
.article .socialshares li a i,
.socialshares li a i {
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  vertical-align: middle;
}
.article .socialshares li a.socialshares-fb,
.socialshares li a.socialshares-fb {
  background: #305891;
}
.article .socialshares li a.socialshares-li,
.socialshares li a.socialshares-li {
  background: #4498c8;
}
.article .socialshares li a.socialshares-tw,
.socialshares li a.socialshares-tw {
  background: #2ca8d2;
}
.article .socialshares {
  border-top: solid 0 #83929b;
  border-bottom: solid 0 #83929b;
}
/* ==========================================================================
   Report basket / Page options
   ========================================================================== */
.page-options-container {
  margin-bottom: 10px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-top: solid 1px #83929b;
  padding: 10px 0;
}
.page-options-container .rep-basket {
  position: relative;
}
.page-options-container .rep-basket:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-position: 22.44897959% 0;
  width: 42px;
  height: 60px;
}
.page-options-container .rep-basket > p {
  text-transform: uppercase;
  font-weight: 500;
  color: #70305d;
  padding: 0 0 0 60px;
  margin: 5px 0;
  min-height: 35px;
}
.page-options-container .rep-basket .myreport-count-link {
  padding: 0 0 0 60px;
}
.page-options-container .rep-basket .myreport-count-link span {
  color: #70305d;
}
.page-options-container .rep-basket .myreport-count-link span.underl {
  text-decoration: underline;
}
.page-options-container a {
  display: block;
  margin: 5px 0;
  text-decoration: none;
}
.page-options-container a.page-options-add {
  font-weight: bold;
  margin: 0;
  padding: 5px 5px 5px 40px;
  font-size: 11px;
  font-size: 1.1rem;
  color: #FFF;
  background: #70305d;
  text-transform: uppercase;
  position: relative;
  top: 0;
  line-height: 28px;
}
.page-options-container a.page-options-add:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  background-position: 0 92.51968504%;
  width: 28px;
  height: 28px;
}
.page-options-container .page-options-added {
  font-weight: bold;
  margin: 10px 0;
  padding: 5px;
  font-size: 11px;
  font-size: 1.1rem;
  color: #FFF;
  background: #70305d;
  text-transform: uppercase;
  position: relative;
  display: block;
  width: 100%;
}
.page-options-container a.page-options-pdf {
  margin: 4px 0;
}
/* ==========================================================================
   My report page
   ========================================================================== */
body.refMyReport #container .left-pane {
  display: none;
}
body.refMyReport #container .content-pane {
  width: 100%;
  padding: 0;
}
body.refMyReport .my-report {
  padding: 30px 5% 0 5%;
}
body.refMyReport .my-report h2 {
  margin: 0 0 10px 0;
}
body.refMyReport .report-info {
  margin-bottom: 20px;
}
body.refMyReport .report-item {
  width: 40%;
  float: left;
  margin: 0 4% 30px 0;
}
body.refMyReport .report-item h4 {
  font-size: 26px;
  font-size: 2.6rem;
  color: #70305d;
  position: relative;
}
body.refMyReport .report-item table {
  width: 100%;
  border-bottom: solid 1px #83929b;
  margin-bottom: 10px;
}
body.refMyReport .report-item table tr td {
  border-top: solid 1px #83929b;
}
body.refMyReport .report-item table tr td:first-child {
  width: 80%;
}
body.refMyReport .report-item .report-content {
  padding: 0 5px 0 20px;
  position: relative;
}
body.refMyReport .report-item .report-content .checkbox {
  margin: 0;
  position: absolute;
  left: 0;
  top: 4px;
}
body.refMyReport .report-item .report-options {
  padding: 0;
  position: relative;
  margin: 0;
  text-align: right;
}
body.refMyReport .report-item .report-options .btn-rpt-download {
  display: inline-block;
  margin: 5px 5px 0 0;
  background-position: 97.68339768% 65.06299213%;
  width: 28px;
  height: 28px;
}
body.refMyReport .report-item .report-options .btn-rpt-remove {
  display: inline-block;
  background-position: 97.68339768% 76.08661417%;
  width: 28px;
  height: 28px;
}
body.refMyReport .report-item .report-selection {
  margin: 5px 0;
  clear: both;
}
body.refMyReport .report-item .report-selection .btn-download-selection,
body.refMyReport .report-item .report-selection .btn-download-fullreport {
  font-weight: bold;
  margin: 0 5px 0 0;
  padding: 9px 7px 7px 37px;
  font-size: 11px;
  font-size: 1.1rem;
  color: #FFF;
  background: #70305d;
  text-transform: uppercase;
  position: relative;
  top: 0;
  text-decoration: none;
  display: inline-block;
}
body.refMyReport .report-item .report-selection .btn-download-selection:before,
body.refMyReport .report-item .report-selection .btn-download-fullreport:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  background-position: 37.16475096% 20.23255814%;
  width: 26px;
  height: 24px;
}
body.refMyReport #footer {
  margin: 0 5%;
}
/* ==========================================================================
   Tooltip
   ========================================================================== */
#tooltip {
  background: #fff;
  border: 1px solid #678b6b;
  padding: 4px;
  position: absolute;
  text-align: left;
  width: auto;
  max-width: 200px;
  z-index: 1000;
  border-radius: 2px;
  font-size: 13px;
  font-size: 1.3rem;
}
#tooltip:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 0 10px 10px;
  border-color: #fff transparent;
  display: block;
  width: 0;
  z-index: 1;
  top: -10px;
  left: 11px;
}
#tooltip:before {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 0 10px 10px;
  border-color: #678b6b transparent;
  display: block;
  width: 0;
  z-index: 0;
  top: -11px;
  left: 11px;
}
.insight {
  cursor: help;
}
body.refIMResidentialFund .insight {
  border-bottom: 2px dotted #678b6b;
}
body.refIMRetailFund .insight {
  border-bottom: 2px dotted #998992;
}
body.refIMOfficeFund .insight {
  border-bottom: 2px dotted #d5ac48;
}
/* ==========================================================================
   Footer
   ========================================================================== */
#footer {
  width: 94%;
  height: auto;
  padding: 40px 0 0 0;
  color: #000;
  position: relative;
  border-top: solid 1px #83929b;
  float: left;
}
.home-page #footer {
  display: none;
}
#footer h4 {
  text-transform: uppercase;
  color: #70305d;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 21px;
  line-height: 2.1rem;
  font-weight: 500;
}
#footer .footer-downloads {
  float: left;
}
#footer .footer-downloads ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#footer .footer-downloads ul li {
  list-style: none;
  margin: 0 0 0 5px;
  padding: 0;
  display: inline-block;
  vertical-align: top;
}
#footer .footer-downloads ul li:first-child {
  margin: 0;
}
#footer .footer-downloads ul li a {
  color: #70305d;
  text-decoration: none;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 21px;
  line-height: 2.1rem;
}
#footer .footer-downloads ul li a img {
  border: solid 1px #c9c9c9;
}
#footer .footer-downloads ul li span {
  display: block;
}
#footer .footer-contact {
  float: right;
  text-align: right;
}
#footer .footer-contact ul,
#footer .footer-contact li {
  margin: 0;
  padding: 0;
  list-style: none;
}
/* ==========================================================================
   Forms
   ========================================================================== */
.DynamicForm span input {
  display: inline;
}
.DynamicForm span label {
  display: inline;
}
.DynamicForm label {
  cursor: default;
  margin-bottom: 3px;
  text-decoration: none;
}
.DynamicForm label:hover {
  cursor: default;
  margin-bottom: 3px;
  text-decoration: none;
}
.DynamicFormField {
  margin-bottom: 10px;
}
.DynamicFormField input {
  width: 60%;
}
.DynamicFormFieldRadio input {
  width: auto !important;
}
.DynamicFormFieldCheckbox input {
  width: auto !important;
}
.DynamicFormFieldDropdown select {
  width: 60%;
}
.DynamicFormFieldSubmit {
  width: 140px;
}
.DynamicFormFieldTextarea textarea {
  width: 60%;
}
/* ==========================================================================
   Tell a friend 
   ========================================================================== */
body.sendafriend {
  background-color: #f1f1f1;
  background-image: none;
}
body.sendafriend input,
body.sendafriend textarea {
  border: solid 1px #ddd;
}
div.sendafriend-InlineWin_container {
  background: #f8faff !important;
  height: 100%;
  margin: 0 auto;
  text-align: left;
  width: 100%;
}
.InlineWin_ModalBlock {
  position: absolute !important;
  background: #000;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
div.sendafriend-InlineWin_subHeader {
  background: #c4bf9f;
  height: 30px;
}
span.sendafriend-InlineWin_title h1 {
  color: #000;
  float: left;
  font-size: 110%;
  font-weight: bold;
  padding: 8px 0 0 18px;
}
span.sendafriend-InlineWin_closeButton {
  float: right;
  height: 30px;
  margin: 0;
  width: 35px;
}
button.sendafriend-InlineWin_btnImgDefault {
  border: none;
  color: white;
  cursor: pointer;
  display: block;
  float: right;
  height: 30px;
  margin: 0;
  padding: 0;
  text-align: center;
  text-decoration: none;
  width: 35px;
}
button.sendafriend-InlineWin_btnImgDefault span {
  display: none;
}
button.sendafriend-InlineWin_btnImgClose {
  background: url('/images/sendafriend-close.gif') no-repeat 0 0;
  outline: none;
}
div.sendafriend-InlineWin_formContent {
  background: #f8faff !important;
}
div.sendafriend-InlineWin_formContent body {
  background: #ff0000 !important;
}
div.sendafriend-InlineWin_formContent iframe {
  background: #f8faff !important;
}
div.sendafriend-container {
  border-bottom: 1px #c3c4c6 dashed;
  float: left;
  margin: 0 0 0 18px;
  padding: 10px 0 10px 0;
}
div.sendafriend-leftblock {
  float: left;
  margin: 0 5px 0 0;
  width: 220px;
}
div.sendafriend-leftblock span {
  clear: both;
  float: left;
  font-weight: bold;
}
div.sendafriend-rightblock {
  float: left;
  width: 215px;
}
div.sendafriend-rightblock span {
  clear: both;
  float: left;
  font-weight: bold;
}
div.sendafriend-blockcontainer-bottom {
  float: left;
  padding: 5px 0 10px 18px;
  width: 440px;
}
div.sendafriend-blockcontainer-bottom span {
  float: left;
  margin: 0;
  width: 200px;
}
div.sendafriend-blockcontainer-bottom span.captcha {
  float: left;
  width: 238px;
}
div.sendafriend-blockcontainer-bottom span#captchaValidator {
  clear: both;
  float: left;
}
input.sendafriend-input {
  background: #FFF;
  color: #798389;
  font-style: normal;
  margin: 4px 0 0 0;
  padding-left: 8px;
  width: 90%;
}
input.sendafriend-textfield {
  background: #FFF;
  float: left;
  height: 15px;
  margin: 5px 0 0 0;
  width: 230px;
}
textarea.sendafriend-textarea {
  background: #FFF;
  color: #798389;
  font-style: normal;
  height: 118px;
  margin: 4px 0 0 0;
  padding-left: 8px;
  width: 90%;
}
img.sendafriend-captcha {
  border: 1px solid #eee;
  float: left;
  margin: 2px 10px 5px 0;
}
div.sendafriend-InlineWin_formFooter {
  background: #f1f1f1;
  height: 29px;
  padding: 5px 0 0 0;
  width: 100%;
}
span.sendafriend-InlineWin_formFooterText {
  float: left;
}
div.sendafriend-InlineWin_contPageIndex {
  width: 69px;
  height: 22px;
  margin: 0;
  padding: 0 10px 0 0;
  display: inline-block;
  float: right;
}
div.sendafriend-InlineWin_contPageIndex button {
  background: #c4bf9f;
  border: none;
  cursor: pointer;
  display: block;
  height: 100%;
  margin: 0;
  outline: none;
  padding: 0;
  width: 100%;
}
div.sendafriend-InlineWin_contPageIndex button:hover {
  background: #e6e3d1;
}
div.sendafriend-InlineWin_contPageIndex button span {
  color: #000;
  font-weight: bold;
}
.sendafriend-InlineWin_btn,
.sendafriend-InlineWin_btnDefault {
  background: #000;
  border: none;
  color: #fff;
  float: left;
  margin: 0 0 0 5px;
  padding: 2px 15px;
  text-decoration: none;
}
/* ==========================================================================
   Loading block voor in backend & frontend wanneer artikel wordt opgeslagen. 
	wordt aangeroepen in fbplugins: function OpenLoadingFacetBase(strMessage) 
   ========================================================================== */
div.loading {
  width: 240px;
  height: 200px;
  margin: 0 auto;
  display: block;
  position: relative;
  clear: both;
  background: url(/downloadattachment.aspx?strFrom=FB&strResource=/facetbase-logo.gif) no-repeat 0 0;
  text-align: center;
}
div.loading p {
  color: #C4C098;
  font-size: 20px;
  left: 150px;
  position: absolute;
  top: 163px;
}
img.loading {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  display: block;
  clear: both;
}
/*----------------------------------------------------------------------------
	Autocomplete
----------------------------------------------------------------------------*/
.ui-menu {
  list-style: none;
  padding: 3px 0;
  margin: 0;
  display: block;
  outline: none;
  background: #fff;
  border: solid 1px #ccc;
  width: 233px !important;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 99 !important;
}
.ui-menu .ui-menu {
  margin-top: -3px;
  position: absolute;
}
.ui-menu .ui-menu-item {
  margin: 0;
  padding: 0;
  width: 100%;
}
.ui-menu .ui-menu-item a {
  text-decoration: none;
  display: block;
  padding: 4px 0.4em;
  line-height: 1.5;
  min-height: 0;
  font-weight: normal;
  cursor: pointer;
  font-family: "Vista Sans", Helvetica, Arial, sans-serif;
}
.ui-menu .ui-menu-item a:hover {
  background: #ccc;
}
.ui-menu .ui-menu-divider {
  margin: 5px -2px 5px -2px;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0;
}
.ui-menu .ui-state-disabled {
  font-weight: normal;
  margin: 0.4em 0 0.2em;
  line-height: 1.5;
}
.ui-menu .ui-state-disabled a {
  cursor: default;
}
.ui-menu .ui-icon {
  position: absolute;
  top: 0.2em;
  left: 0.2em;
}
.ui-menu .ui-menu-icon {
  position: static;
  float: right;
}
.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
  font-weight: normal;
  margin: -1px;
}
.ui-menu-icons {
  position: relative;
}
.ui-menu-icons .ui-menu-item a {
  position: relative;
  padding-left: 2em;
}
/* ==========================================================================
   Downloads page
   ========================================================================== */
.downloadlist {
  border-top: solid 1px #666;
  margin: 20px 0 0 0;
  width: 100%;
}
.downloadlist dt {
  border-bottom: solid 1px #666;
  font-weight: bold;
  height: 25px;
  line-height: 25px;
  padding-left: 5px;
}
.downloadlist dd {
  border-bottom: solid 1px #ccc;
  height: 25px;
  line-height: 25px;
  margin: 0;
  padding: 0;
}
.downloadlist dd a {
  display: block;
  text-decoration: none;
}
.downloadlist dd a:before {
  content: "\00BB";
  margin: 0 5px;
  position: relative;
  top: -1px;
}
.downloadlist dd a:hover {
  background: #f9f9f9;
  display: block;
}
.downloadlist .collapsible {
  cursor: pointer;
}
.downloadlist .non-collapsible {
  padding: 0 0 0 5px;
}
.downloadlist .non-collapsible a {
  display: block;
  text-decoration: none;
  width: 93%;
}
/* ==========================================================================	
	Zichtbaarheid in devices

	Alle weergaven			:	geen class toevoegen
	Alleen website tonen	:	sh-website
	Afwijkende weergave:
		Tablet	(portrait)	:	toevoegen “sh-tablet-p”
		Tablet	(landscape)	:	toevoegen “sh-tablet-l”
		Phone	(portrait)	:	toevoegen “sh-mobile-p”
		Phone	(landscape)	:	toevoegen “sh-mobile-l”
		Niet op website		:	toevoegen “sh-website-no”

   ========================================================================== */
.sh-website-no {
  display: none;
}
/* Test in preview om te checken of zichtbaarheid werkt */
body.preview-tablet-p .sh-tablet-p {
  display: block !important;
}
body.preview-tablet-p .sh-tablet-l {
  display: none;
}
body.preview-tablet-p .sh-mobile-p {
  display: none;
}
body.preview-tablet-p .sh-mobile-l {
  display: none;
}
body.preview-tablet-p .sh-website-no {
  display: none;
}
body.preview-tablet-l .sh-tablet-p {
  display: none;
}
body.preview-tablet-l .sh-tablet-l {
  display: block !important;
}
body.preview-tablet-l .sh-mobile-p {
  display: none;
}
body.preview-tablet-l .sh-mobile-l {
  display: none;
}
body.preview-mobile-p .sh-tablet-p {
  display: none;
}
body.preview-mobile-p .sh-tablet-l {
  display: none;
}
body.preview-mobile-p .sh-mobile-p {
  display: block !important;
}
body.preview-mobile-p .sh-mobile-l {
  display: none;
}
body.preview-mobile-l .sh-tablet-p {
  display: none;
}
body.preview-mobile-l .sh-tablet-l {
  display: none;
}
body.preview-mobile-l .sh-mobile-p {
  display: none;
}
body.preview-mobile-l .sh-mobile-l {
  display: block !important;
}
/* ==========================================================================
   Report header

   ========================================================================== */
/*.article-header-visual {
    height: 25rem;
    width: 25rem;
    position: absolute;
    bottom: -25rem;
    cursor: pointer;

    &.scrolling-icon {
        height: 5.6rem;
        width: 5.6rem;
        z-index: 1000;
        bottom: 0px;
        right: 0px;
    }
}*/
#breadcrumb-sticky-wrapper {
  height: initial !important;
}
.report-header-icon {
  cursor: pointer;
  height: 25rem;
  width: 25rem;
  right: 0px;
  position: absolute;
  bottom: -250px;
  text-align: center;
  transition: all 0.25s ease-in-out;
  background: #dee3e7;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.report-header-icon .home-fund_img {
  width: 50%;
  height: 50%;
  margin: 0 auto;
  color: #70305d;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.refREIM .report-header-icon .home-fund_img {
  color: #008fc6;
}
.report-header-icon.scrolling-icon {
  height: 58px;
  width: 58px;
  z-index: 1000;
  bottom: 0px;
  right: 0px;
}
.report-header-icon.scrolling-icon .home-fund_img {
  width: 70%;
  height: 70%;
}
.article-nav-container {
  text-align: center;
  position: absolute;
  top: 0px;
  right: 0px;
  display: block;
  width: 250px;
  font-size: 0;
  transition: all 0.25s ease-in-out;
}
.article-nav-container a {
  display: block;
  width: 100%;
  height: 100%;
}
.article-nav-container div {
  height: 58px;
  width: 58px;
  display: inline-block;
  background-image: url(/images/right.svg);
  background-size: 25px;
  background-position: center;
  background-repeat: no-repeat;
}
.article-nav-container .prevnext-prev {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.article-nav-container .top-menu-btn {
  background-size: 20px;
  margin-right: 10px;
  background-image: url(/images/menu.svg);
  display: none;
}
.report-header {
  /*margin-top: -5px;*/
  width: 100%;
  height: 250px;
  position: relative;
}
.report-header .report-header-title {
  display: inline-block;
  height: 100%;
  width: 50%;
  background: #dee3e7;
}
.report-header h2 {
  color: #70305d;
  padding: 10px 0 0 5%;
  padding: 0 0 0 5%;
  font-size: 58px;
  font-size: 5.8rem;
  /*text-shadow: @text-shadow;*/
  font-weight: 400;
  position: relative;
  top: 25%;
  transform: translateY(-50%);
}
body.refREIM .report-header {
  background: url('/FbContent.ashx/pub_1006/Images/imgres_r0w-1h-1/header_reim.jpg') 0 0 no-repeat;
  background-size: cover;
}
body.refREIM .report-header h2 {
  color: #008fc6;
}
body.refResidentialFund .report-header {
  background: url('/FbContent.ashx/pub_1006/Images/imgres_r0w-1h-1/header_residential.jpg') 0 0 no-repeat;
  background-size: cover;
  margin-top: 0px;
}
body.refRetailFund .report-header {
  background: url('/FbContent.ashx/pub_1006/Images/imgres_r0w-1h-1/header_retail.jpg') 0 0 no-repeat;
  background-size: cover;
}
body.refOfficeFund .report-header {
  background: url('/FbContent.ashx/pub_1006/Images/imgres_r0w-1h-1/header_office.jpg') 0 0 no-repeat;
  background-size: cover;
}
body.refEUMan .report-header,
body.refNAMan .report-header,
body.refAPMan .report-header {
  /*background: url(/images/headers/header-international.jpg) 0 0 no-repeat;
        background-size: cover;*/
  display: none;
}
body.refEUMan .report-header h2:before,
body.refNAMan .report-header h2:before,
body.refAPMan .report-header h2:before {
  content: '2016 at a glance';
}
/* ==========================================================================
   Dashboard page
   ========================================================================== */
.fsi-ResFundHierarchical-CSRKeyData article > div ul {
  margin-top: 10px !important;
  margin-bottom: 40px !important;
}
.dshb-section {
  border-top: solid 1px #83929b;
  padding: 20px 0 0 0;
  margin-bottom: 30px;
}
.dshb-section.csr {
  border-top: solid 1px #86919a;
  padding-top: 1.4em;
}
.dshb-section.single,
.dshb-section.double,
.dshb-section.quadruple {
  padding-left: 0;
}
.dshb-section.final {
  border-bottom: solid 1px #86919a;
  padding-bottom: 20px;
}
.dshb-section.highlights {
  position: relative;
  /*&:before {
            content:'';
            display: inline-block;
            position: absolute;
            top: 15px;
            left: 0;
            overflow: hidden;
            .ICON_Highlights;
        }*/
}
.dshb-section.highlights img {
  width: 100%;
  max-width: 100%;
}
.dshb-section h2 {
  color: #70305d;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0 0 20px 0;
}
.dshb-section h2 + p {
  margin: 0;
}
.dshb-section ul.csr li span,
.fsi-ResFundHierarchical-CSRKeyData article > div ul .csr li span {
  color: #000;
  font-weight: 400;
}
.dshb-section .floatbox {
  float: left;
  width: 49%;
  padding: 0 0 0 0;
  /*&.performance {
            &:before {
	            .ICON_Performance_per_share;
            }
        }

        &.balance {
            &:before {
	            .ICON_Balance_sheet;
            }
        }

        &.result {
            &:before {
	            .ICON_Result;
            }
        }*/
  /*&.speedometer {
            &:before {
                .ICON_Property_performance;
            }
        }

        &.allocations {
            &:before {
	            .ICON_Allocations;
            }
        }

        &.listed {
            &:before {
	            .ICON_Listed;
            }
        }

        &.building {
            &:before {
	           .ICON_Assets_under_management;
            }
        }*/
}
@media (min-width: 800px) and (max-width: 1030px) {
  .dshb-section .floatbox {
    width: 100%;
    margin-bottom: 20px;
  }
}
.dshb-section .floatbox.floatbox-wide {
  width: 100%;
  padding: 0 0 0 100px;
}
.dshb-section .floatbox.floatbox-wide img {
  max-width: 100%;
  width: 100%;
}
.dshb-section .floatbox.floatbox-widest {
  width: 100%;
  padding: 0;
}
.dshb-section .floatbox.floatbox-widest img {
  max-width: 100%;
  width: 100%;
}
.dshb-section .floatbox.csr-left,
.dshb-section .floatbox.csr-right,
.dshb-section .floatbox.kfigraph {
  padding-left: 0;
}
.dshb-section .floatbox.csr-left img,
.dshb-section .floatbox.csr-right img,
.dshb-section .floatbox.kfigraph img {
  max-width: 100%;
  width: 100%;
}
.dshb-section .floatbox.csr-left {
  margin-right: 1%;
}
.dshb-section .floatbox.csr-left,
.dshb-section .floatbox.csr-right {
  width: 49%;
}
.dshb-section .floatbox.kfigraph h3 {
  margin-top: 30px;
  color: #421542;
  font-weight: bold;
  font-size: 2.2rem;
}
.dshb-section .floatbox.kfigraph {
  width: 42.75%;
}
.dshb-section .floatbox.kfipiechart {
  padding-left: 20px;
}
.dshb-section .floatbox.kfitable {
  width: 56.25%;
  padding-right: 10%;
}
.dshb-section .floatbox.kfitable table,
.dshb-section .floatbox.kfitable table td,
.dshb-section .floatbox.kfitable table th {
  border-right: none !important;
}
.dshb-section .floatbox.csr-quad {
  width: 25%;
  padding-left: 0;
}
.dshb-section .floatbox.performance,
.dshb-section .floatbox.balance,
.dshb-section .floatbox.result,
.dshb-section .floatbox.fundreturn,
.dshb-section .floatbox.speedometer,
.dshb-section .floatbox.units,
.dshb-section .floatbox.allocations,
.dshb-section .floatbox.building,
.dshb-section .floatbox.listed {
  position: relative;
  /*&:before {
                content:'';
                display: inline-block;
	            //width: 81px;
	            //height: 85px;
	            //background-position: 0 -886px;
	            //width: 53px;
	            //height: 56px;
                //background: url(/images/svg/batch1/icon-euro.svg) 0 0 no-repeat;
                //background-size: contain;
                position: absolute;
                top: 0;
                left: 0;
                overflow: hidden;
            }*/
}
.dshb-section .floatbox.fundreturn {
  /*&:before {
	            .ICON_Fund_Return;
            }*/
}
.dshb-section .floatbox.fundreturn h2 {
  margin: 0;
}
.dshb-section .floatbox.fundreturn p {
  margin-bottom: 10px;
}
.dshb-section .floatbox.selectionkey {
  width: 100%;
  margin-right: 0 !important;
}
.dshb-section .floatbox.selectionkey img {
  max-width: 100%;
}
.dshb-section .floatbox .itemheader {
  min-height: 6em;
}
.dshb-section .btn-portfolio,
.dshb-section .btn-keyinfo {
  width: 300px;
  height: 45px;
  display: inline-block;
  margin-right: 10px;
  padding: 12px 0 12px 0px;
  border-top: solid 1px #c2c7cc;
  border-bottom: solid 1px #c2c7cc;
}
.dshb-section .btn-portfolio:before,
.dshb-section .btn-keyinfo:before {
  content: '';
  display: inline-block;
  background: url(/Images/icon-keyinfo.jpg) 0 0 no-repeat;
  position: absolute;
  top: 1px;
  left: 0;
}
.dshb-section .btn-portfolio {
  margin-right: 0;
  color: #70305d;
  /*&:before {
            background: url(/Images/sprites/sprite.svg) 0 0 no-repeat;
            .ICON_At_a_glance;
        }*/
}
.dshb-section ul,
.fsi-ResFundHierarchical-CSRKeyData article > div ul  {
  margin: 0 0 20px 0;
  padding: 0 0 0 5px;
}
.dshb-section ul li,
.fsi-ResFundHierarchical-CSRKeyData article > div ul  li {
  list-style-type: none;
  color: #000;
  font-size: 15px;
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  padding: 0 0 0 20px;
  line-height: initial;
  font-weight: 500;
}
.dshb-section ul li:before,
.fsi-ResFundHierarchical-CSRKeyData article > div ul  li:before {
  content: "\25A0";
  position: absolute;
  left: 0;
  top: -2px;
  color: #938790;
}
.dshb-section ul li span,
.fsi-ResFundHierarchical-CSRKeyData article > div ul  li span {
  color: #000;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.3em;
  font-weight: 100;
}
.dshb-section ul.graphmenu li a,
.fsi-ResFundHierarchical-CSRKeyData article > div ul .graphmenu li a {
  color: #70305d;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 100;
  margin: 0 0 5px 0;
  text-decoration: none;
  border-bottom: solid 1px #70305d;
}
.dshb-section ul.graphmenu li a span,
.fsi-ResFundHierarchical-CSRKeyData article > div ul .graphmenu li a span {
  font-size: 14px;
  font-size: 1.4rem;
}
.dshb-section ul.graphmenu li a.active,
.fsi-ResFundHierarchical-CSRKeyData article > div ul .graphmenu li a.active {
  font-weight: 500;
}
.dshb-section .chartcontainer-1 {
  height: 250px;
}
.dshb-section .chartcontainer-2,
.dshb-section .chartcontainer-3,
.dshb-section .chartcontainer-4 {
  display: none;
  height: 280px;
  width: 100%;
}
.dshb-section .chartcontainer-2.active,
.dshb-section .chartcontainer-3.active,
.dshb-section .chartcontainer-4.active {
  display: block;
}
.dshb-section .chartcontainer-2 {
  height: 500px;
}
.csr-img {
  display: inline-block;
  text-align: center;
}
.dshb-section.csr h3 {
  color: #421542;
  font-weight: bold;
  font-size: 2.2rem;
}
/* International */
.header-intl,
.topspace {
  padding: 30px 0 10px 0;
}
.intl div div {
  height: 210px;
}
.intl h3 {
  color: #421542;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.8rem;
}
.intl h3.padded {
  margin-top: 2.75em;
}
/* ==========================================================================
   Board of directors
   ========================================================================== */
.board-box {
  margin-bottom: 10px;
}
.board-box:before,
.board-box:after {
  content: " ";
  display: table;
}
.board-box:after {
  clear: both;
}
.board-box img {
  width: 200px;
  max-width: 200px;
  float: left;
}
.hiddenlayers {
  display: none;
}
/* ==========================================================================
   Custom Highcharts changes
   ========================================================================== */
.clicker {
  width: 13px;
  height: 13px;
  display: block;
  background: #70305d;
  margin-top: 6px;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
}
.chartTooltip:hover:after {
  content: attr(data-title);
  position: absolute;
  background: #f9f9f9;
  padding: 5px;
  border: solid 1px #70305d;
  color: #000;
  font-family: "Vista Sans", Helvetica, Arial, sans-serif;
  top: -30px;
  left: 0;
  font-size: 12px;
}
.highcharts-container {
  overflow: visible!important;
}
.row-dynamic {
  clear: both;
}
.row-dynamic:before,
.row-dynamic:after {
  content: " ";
  display: table;
}
.row-dynamic:after {
  clear: both;
}
.col-dyn {
  float: left;
}
.col-md-6 {
  float: left;
  width: 49.5%;
}
/* ==========================================================================
   Error page
   ========================================================================== */
.error {
  background: #ececec;
}
.error span {
  font-weight: bold;
}
.error ul {
  margin: 0 ;
  padding: 0;
  list-style: none;
}
.error ul li {
  margin: 5px 0 5px 16px;
  list-style-type: disc;
}
.error .content-container {
  padding: 25px 3% 25px 3%;
  background: #fff;
  margin: 0 auto;
  width: 50%;
}
.error .content-container h1 {
  width: 100%;
}
/*----------------------------------------------------------------------------
	Cookie opt in
----------------------------------------------------------------------------*/
.optin-bar {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background: #fff;
  font-size: 11px;
  z-index: 99999;
  text-align: center;
  color: #fff;
  padding: 0.5em 10%;
  display: none;
  height: 110px;
}
.optin-bar p {
  color: #000;
  font-size: 14px;
  font-size: 1.4rem;
}
.optin-bar a {
  color: #000;
}
.optin-bar a:hover {
  text-decoration: underline;
  background: #FCE3BE;
}
.optin-bar a.optin-bar--info {
  text-decoration: underline;
}
.optin-bar a.optin-bar--info:hover {
  text-decoration: underline;
}
.optin-bar a.optin-bar--accept,
.optin-bar a.optin-bar--decline {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  background: #7DAF3B;
  padding: 0.2em 0.5em;
  font-size: 14px;
  font-size: 1.4rem;
}
.optin-bar a.optin-bar--accept:hover,
.optin-bar a.optin-bar--decline:hover {
  border-bottom: solid 2px #333;
}
.optin-bar a.optin-bar--decline {
  background: #af3b3b;
  margin-left: 0.5em;
}
.optin-bar a.optin-bar--close {
  position: absolute;
  top: 5px;
  right: 5px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
}
.chart-wrapper {
  margin-bottom: 10px;
  color: #000;
}
.chart-wrapper .chart-top table.cijfers {
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 0.9em;
  width: 485px !important;
}
.chart-wrapper .chart-top table.cijfers th,
.chart-wrapper .chart-top table.cijfers td {
  padding: 3px;
}
.chart-wrapper .chart-bottom div {
  vertical-align: top;
}
.chart-wrapper .chart-bottom .chart-categorybox {
  width: 40%;
  margin: 0 5% 0 0;
  display: inline-block;
}
.chart-wrapper .chart-bottom .chart-categorybox h2 {
  font-weight: 700;
  color: #421542;
}
.chart-wrapper .chart-bottom .chart-categorybox h3 {
  margin: 10px 0;
  padding: 3px 10px;
  background: #678b6b;
}
.chart-wrapper .chart-bottom .chart-categorybox h3 a {
  display: block;
  text-decoration: none;
  color: #FFF;
}
.chart-wrapper .chart-bottom .chart-categorybox .cat-container div {
  padding: 5px 0;
}
.chart-wrapper .chart-bottom .chart-categorybox .cat-container div a {
  text-decoration: none;
}
.chart-wrapper .chart-bottom .chart-toolbox {
  width: 20%;
  display: inline-block;
  margin-right: 4%;
}
.chart-wrapper .chart-bottom .chart-toolbox h2 {
  font-weight: 700;
  color: #421542;
}
.chart-wrapper .chart-bottom .chart-toolbox .checkbox-list {
  list-style: none;
  margin: 0;
  padding: 4px;
}
.chart-wrapper .chart-bottom .chart-toolbox .checkbox-list li {
  list-style: none;
  margin: 2px 0;
  padding: 0;
}
.chart-wrapper .chart-bottom .chart-toolbox .checkbox-list li .checkbox {
  margin-right: 5px;
}
.chart-wrapper .chart-bottom .chart-toolbox .checkbox-list li a {
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
}
.chart-wrapper .chart-bottom .chart-toolbox .checkbox-list li a:hover {
  text-decoration: underline;
}
.chart-wrapper .chart-bottom .chart-toolswrapper {
  width: 30%;
  display: inline-block;
}
@media only screen and (max-width: 480px) {
  .chart-wrapper .chart-bottom .chart-toolswrapper {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.chart-wrapper .chart-bottom .chart-toolswrapper h2 {
  font-weight: 700;
  color: #421542;
}
.chart-wrapper .chart-bottom .chart-toolswrapper .chart-buttonbox ul {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
  text-align: left;
}
.chart-wrapper .chart-bottom .chart-toolswrapper .chart-buttonbox ul li {
  display: inline-block;
  height: 40px;
  list-style: none;
  margin: 0 10px 0 0;
  padding: 0;
  width: 39px;
}
.chart-wrapper .chart-bottom .chart-toolswrapper .chart-buttonbox ul li a {
  display: block;
}
.chart-wrapper .chart-bottom .chart-toolswrapper .chart-buttonbox ul li a.table-button {
  background-position: 0 -629px;
  width: 40px;
  height: 39px;
}
.chart-wrapper .chart-bottom .chart-toolswrapper .chart-buttonbox ul li a.table-button:hover {
  background-position: 0 -590px;
}
.chart-wrapper .chart-bottom .chart-toolswrapper .chart-buttonbox ul li a.linechart-button {
  background-position: 0 -551px;
  width: 40px;
  height: 39px;
}
.chart-wrapper .chart-bottom .chart-toolswrapper .chart-buttonbox ul li a.linechart-button:hover {
  background-position: 0 -512px;
}
.chart-wrapper .chart-bottom .chart-toolswrapper .chart-buttonbox ul li a.barchart-button {
  background-position: 0 -473px;
  width: 40px;
  height: 39px;
}
.chart-wrapper .chart-bottom .chart-toolswrapper .chart-buttonbox ul li a.barchart-button:hover {
  background-position: 0 -434px;
}
.chart-wrapper .chart-bottom .chart-toolswrapper .chart-downloads {
  margin: 20px auto 0 auto;
}
.chart-wrapper .chart-bottom .chart-toolswrapper .chart-downloads ul {
  margin: 20px 0 0 0;
  padding: 0;
}
.chart-wrapper .chart-bottom .chart-toolswrapper .chart-downloads ul li {
  display: inline-block;
  margin-right: 20px;
}
.chart-wrapper .chart-bottom .chart-toolswrapper .chart-downloads ul a {
  font-weight: bold;
  margin: 0 5px 0 0;
  padding: 10px 10px 10px 30px;
  font-size: 11px;
  font-size: 1.1rem;
  color: #FFF;
  background: #70305d;
  text-transform: uppercase;
  position: relative;
  top: 0;
  text-decoration: none;
}
.chart-wrapper .chart-bottom .chart-toolswrapper .chart-downloads ul a:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  background: url(/Images/icon-download.svg) 0 0 no-repeat;
}
/*! fancyBox v2.1.3 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}
.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}
.fancybox-skin {
  position: relative;
  background: #FFF;
  color: #444;
  text-shadow: none;
}
.fancybox-opened {
  z-index: 8030;
}
.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.4);
  box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.4);
}
.fancybox-outer,
.fancybox-inner {
  position: relative;
}
.fancybox-inner {
  overflow: hidden;
}
.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}
.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}
.fancybox-image,
.fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}
#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  background-image: url('/downloadattachment.aspx?strFrom=FB&strResource=/fancybox_sprite.png');
}
#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}
#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url('/downloadattachment.aspx?strFrom=FB&strResource=/fancybox_loading.gif') center center no-repeat;
}
.fancybox-close {
  position: absolute;
  top: -14px;
  right: -11px;
  width: 39px;
  height: 39px;
  cursor: pointer;
  z-index: 8040;
  background: url(/images/close.png) 0 0 no-repeat;
}
.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url('/downloadattachment.aspx?strFrom=FB&strResource=/images/blank.gif');
  /* helps IE */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}
.fancybox-prev {
  left: 0;
}
.fancybox-inner .tbe-color-editor input {
  margin: 4px 0 12px 0;
  padding: 4px 2px;
  border: 1px solid #909090;
  -webkit-box-shadow: inset 0 0 4px 0 #999;
  box-shadow: inset 0 0 4px 0 #999;
}
.fancybox-next {
  right: 0;
}
.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}
.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}
.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}
.fancybox-nav:hover span {
  visibility: visible;
}
.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}
/* Overlay helper */
.fancybox-lock {
  overflow: hidden;
}
.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url('/downloadattachment.aspx?strFrom=FB&strResource=/images/fancybox_overlay.png');
}
.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}
.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}
/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
  top: -35px;
  bottom: auto;
}
.fancybox-opened .fancybox-title {
  visibility: visible;
}
.fancybox-title-float-wrap {
  position: absolute;
  top: -40px;
  right: 50%;
  z-index: 8050;
  text-align: center;
}
.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}
.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}
.fancybox-title-inside-wrap {
  padding-top: 10px;
}
.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}
.home-page .bx-clone {
  display: none;
}
.home-page .bx-wrapper {
  margin: 0 auto;
}
.home-page .bx-wrapper .bx-viewport {
  height: auto !important;
  left: 0;
}
.home-page .bx-wrapper .bx-viewport .fancybox-home-slider {
  padding: 0;
  margin: 0;
}
.home-page .bx-wrapper .bx-viewport .fancybox-home-slider .teaser {
  color: #000;
  margin-bottom: 10px;
}
.home-page .bx-wrapper .bx-viewport .fancybox-home-slider .title {
  margin: 0 0 30px;
}
.home-page .bx-wrapper .bx-viewport .fancybox-home-slider .objectname {
  font-weight: 700;
  margin: 5px 0 0 0;
  font-size: 15px;
  font-size: 1.5rem;
}
.home-page .bx-wrapper .bx-viewport .fancybox-home-slider .objectname span {
  color: #421542;
  font-weight: 300;
}
.home-page .bx-wrapper .bx-viewport .fancybox-home-slider li {
  width: 960px !important;
}
.home-page .bx-wrapper .bx-next {
  right: 10px;
}
.home-page .bx-wrapper .bx-prev {
  left: 10px;
}
/* ==========================================================================
   Preview toolbar

   Toolbar die te zien is in het preview venster van een artikel in de Facetbase backend

   ========================================================================== */
.preview-box,
.preview-box a,
.preview-box p,
.preview-box input,
.preview-box label {
  font-family: 'Lucida Sans', 'Lucida Sans Unicode', 'Lucida Grande', 'DejaVu Sans Condensed', sans-serif;
}
.preview-box-wrapper {
  width: 100%;
  border-bottom: 1px solid #dddddd;
  background: #fff;
  margin-bottom: 10px;
}
.preview-box {
  height: auto;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 10px 10px 10px;
  overflow: auto;
}
div.preview-box a {
  display: block;
  width: auto;
  height: auto;
  margin: 5px 0 0 20px;
  padding: 0 20px;
  color: #FFF;
  text-decoration: none;
  text-align: center;
  font-size: 1.2em;
  line-height: 2.6em;
  background: #009977;
  text-shadow: 0px 1px #000;
}
.preview-box a:hover {
  background: #636363;
}
.preview-box .inputbox {
  padding: 5px;
  margin: 0;
}
.preview-box span.checkbox input {
  width: 15px;
  margin-right: 5px;
  display: inline-block;
  position: relative;
  top: 2px;
}
.preview-box span.checkbox label {
  display: inline-block;
  width: 80%;
}
.preview-helpers {
  float: left;
  margin-bottom: 10px;
  width: 100%;
}
.preview-helpers .left {
  width: 500px;
  float: left;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  font-size: 1.4em;
  color: #009977;
}
.preview-helpers .left span {
  font-weight: bold;
}
.preview-helpers .right {
  position: relative;
  float: right;
}
.preview-box .preview-summary {
  float: left;
  color: #777;
}
.preview-box .preview-summary textarea {
  max-width: 420px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  color: #4f4f4f;
  border: solid 1px #ddd;
  font-family: 'Lucida Sans', 'Lucida Sans Unicode', 'Lucida Grande', 'DejaVu Sans Condensed', sans-serif;
}
.preview-box .summary-overview {
  margin: 5px 0 10px 0;
}
.preview-box .summary-overview label {
  margin: 5px 0 10px 0;
  display: block;
  clear: both;
}
.preview-box .summary-nr-count {
  float: right;
}
.preview-box .clear {
  clear: both;
}
.preview-box .preview-channelselector {
  margin: 0 0 0 45px;
  float: left;
}
.preview-box .preview-channelselector .ch-sel-cnt {
  margin: 15px 0 20px 0;
}
.preview-box .preview-channelselector .ch-slctr .ch-btn {
  background-color: #fff;
}
.preview-box .ch-slctr .sub-ch-btn:hover {
  background: #636363;
}
.preview-box .ch-slctr .sub-ch-btn:hover span {
  color: #fff;
}
.preview-box .preview-options {
  margin: 15px 0 0 0;
  float: left;
  clear: both;
  color: #777;
}
.preview-box .summary-auto {
  max-width: 475px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.preview-helpers .btn-save a {
  position: absolute;
  top: 200px;
  right: 0px;
}
.preview-helpers .right span {
  float: left;
}
/* Clear all space. cellpadding="0" cellspacing="0" are in html */
table,
tr,
th,
th {
  margin: 0;
  padding: 0;
  border: 0;
}
/* Overrule table generic from Frondend/global_screen.css */
.main {
  width: 100%;
  padding: 0;
  margin: 10px 0;
  border-collapse: collapse;
  empty-cells: show;
}
.main thead th {
  padding: 0;
  font-size: 100%;
  font-weight: normal;
}
.main th {
  padding: 0;
  border: none;
  border-collapse: collapse;
  font-weight: normal;
}
.main td {
  padding: 0;
  border: none;
  border-collapse: collapse;
}
.main caption {
  display: none;
}
.main .selectedcell {
  background: url(../../../../images/tablerepeat.png) left top repeat;
}
.main td p,
.main th p {
  margin: 0;
  padding: 0;
}
/* -------------------------------------------------------------------- Table Main */
/*Let op! Standaard type info from global_screen.css: font: 0.70em Verdana, Arial, Helvetica, "Lucida Grande", sans-serif;color:#000000;*/
/* -------------------------------------------------------------------- DIV voor Preview */
.tablePreview-normal {
  width: 515px;
  border-right: 1px solid #d1d1d1;
}
.tablePreview-wide {
  width: 100%;
  border-right: 1px solid #d1d1d1;
}
div.tabelPreview-normal table {
  font: 0.7em Verdana, Arial, Helvetica, "Lucida Grande", sans-serif;
  color: #000000;
}
div.tabelPreview-wide table {
  font: 0.7em Verdana, Arial, Helvetica, "Lucida Grande", sans-serif;
  color: #000000;
}
.main tr {
  line-height: 20px;
}
.access-readers {
  width: 1px;
  height: 1px;
  position: absolute;
  top: -800em;
  left: -800em;
  overflow: hidden;
  opacity: 0.1;
}
a.skip-to-content {
  padding: 1.75% 2% 1.5% 2%;
  position: absolute;
  top: -10em;
  z-index: 700;
  color: #000;
  background: #FFF;
  text-decoration: none;
  border-bottom: 2px solid #666666;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a.skip-to-content:focus {
  top: -0.5em;
  left: 0;
  outline: 0;
}
a.skip-to-content:hover {
  border-bottom: 4px solid #000;
}
.refPreview a.skip-to-content {
  display: none;
}
.no-outline {
  outline: 0;
}
.dshb-section .first {
  margin-right: 1%;
}
.dshb-section table {
  border-right: 2px solid #83929b;
  font-size: 15px;
  font-size: 1.5rem;
}
@media only screen and (max-width: 480px) {
  .dshb-section table {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.dshb-section table tr:first-of-type td {
  border-bottom: solid 2px #86919a !important;
}
.dshb-section table tr:nth-child(1) td:nth-child(2) {
  color: #421542;
}
.dshb-section table tr:nth-child(1) td:nth-child(3) {
  color: #83929b;
}
.dshb-section table.interactive td:nth-child(1) {
  width: 24%;
}
.dshb-section table.interactive td:nth-child(2) {
  width: 20%;
}
.dshb-section table.interactive td:nth-child(3) {
  width: 40%;
}
.dshb-section table td {
  padding: 5px 3px;
  vertical-align: middle;
}
.dshb-section table td:nth-child(1) {
  width: 60%;
  border-bottom: 1px solid #f4f5f6;
  text-align: left;
}
.dshb-section table td:nth-child(2) {
  width: 20%;
  background-color: #dfedf8;
  border-bottom: 1px solid #dfedf8;
  text-align: right;
  font-weight: 800;
}
.dshb-section table td:nth-child(3) {
  width: 20%;
  border-bottom: 1px solid #f4f5f6;
  text-align: right;
}
.dshb-section table.tbl1276 tr:last-of-type td {
  border-top: solid 2px #421542 !important;
}
.dshb-section table.tbl1455 td:nth-child(1) {
  width: 70%;
}
.dshb-section table.tbl1455 td:nth-child(2) {
  width: 10%;
}
.dshb-section table.tbl1455 td:nth-child(3) {
  width: 10%;
}
.dshb-section table.tbl1455 td:nth-child(4) {
  width: 10%;
  border-bottom: 1px solid #f4f5f6;
  text-align: right;
}
.dshb-section table.tbl1273 tr:first-child > td:first-child,
.dshb-section table.tbl1274 tr:first-child > td:first-child,
.dshb-section table.tbl1275 tr:first-child > td:first-child,
.dshb-section table.tbl1276 tr:first-child > td:first-child {
  color: #86919a;
}
.highcharts-legend-item span {
  width: 310px !important;
  text-align: left !important;
}
/*table.tbl1045 {.x2 {color: #fff;}}
table.tbl1046 {.x2 {color: #fff;}}
table.tbl1047 {.x2 {color: #fff;}}
table.tbl1048 {.x2 {color: #fff;}}*/
/*table.tbl1155 {.x2 {color: #fff;}}
table.tbl1156 {.x2 {color: #fff;}}
table.tbl1157 {.x2 {color: #fff;}}
table.tbl1158 {.x2 {color: #fff;}}*/
/*table.tbl1100 {.x2 {color: #fff;}}
table.tbl1101 {.x2 {color: #fff;}}
table.tbl1102 {.x2 {color: #fff;}}
table.tbl1103 {.x2 {color: #fff;}}*/
.modal-hidden {
  position: absolute;
  z-index: 99999;
  left: calc(100%);
  top: 110px;
  width: 87%;
  height: 100%;
}
.modal-off {
  position: absolute;
  z-index: 99999;
  left: calc(100% - 40px);
  top: 110px;
  width: 87%;
  height: 100%;
}
#modal_slide0-1.modal-off {
  left: 100%;
}
.modal-on {
  position: absolute;
  z-index: 99999;
  left: 13%;
  top: 110px;
  width: 87%;
  height: 100%;
}
#modal_slide0-1 {
  /*background: @color-universal url(/Images/ceo-bg.jpg) 40px 0 no-repeat;*/
  background-color: #008fc6;
}
#modal_slide0-1:before {
  background-color: #008fc6;
}
@media screen and (min-width: 1280px) and (max-width: 1370px) {
  #modal_slide0-1 {
    background-size: contain;
  }
}
#modal_slide0-1.modal-on {
  left: 35%;
}
#modal_slide0-1 p {
  color: #fff;
}
#modal_slide1-1:before,
#modal_slide1-2:before,
#modal_slide2-1:before,
#modal_slide2-2:before,
#modal_slide3-1:before,
#modal_slide3-2:before,
#modal_slide4-1:before,
#modal_slide4-2:before,
#modal_slide5-1:before,
#modal_slide5-2:before {
  content: '';
  width: 3%;
  position: absolute;
  height: 100%;
  min-width: 40px;
}
#modal_slide1-1,
#modal_slide1-2 {
  background: #FFF;
}
#modal_slide1-1:before,
#modal_slide1-2:before {
  background: #421542;
}
#modal_slide2-1,
#modal_slide2-2 {
  background: #FFF;
}
#modal_slide2-1:before,
#modal_slide2-2:before {
  background: #35597e;
}
#modal_slide3-1 {
  background: #FFF;
}
#modal_slide3-1:before {
  background: #678b6b;
}
#modal_slide3-2 {
  background: #cee1f2;
}
#modal_slide3-2:before {
  background: #678b6b;
}
#modal_slide3-2 > section {
  padding: 5% 5% 15% 5%;
}
#modal_slide4-1,
#modal_slide4-2 {
  background: #FFF;
}
#modal_slide4-1:before,
#modal_slide4-2:before {
  background: #998992;
}
#modal_slide5-1,
#modal_slide5-2 {
  background: #FFF;
}
#modal_slide5-1:before,
#modal_slide5-2:before {
  background: #d5ac48;
}
.content-chairman.is-hidden {
  display: none;
}
.modal--close {
  text-align: center;
  cursor: pointer;
  color: #fff;
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 20px;
  text-decoration: none !important;
}
.modal--close:hover {
  color: #FFF;
}
.modal--close:before {
  content: "";
  margin: 10px 0 0 10px;
  position: relative;
  line-height: normal;
  font-size: 45px;
  background-position: 57.77777778% 55.04201681%;
  width: 17px;
  height: 44px;
  display: block;
}
.modal-on .modal--close:before {
  content: "";
  background-position: 19.25925926% 76.8907563%;
  width: 17px;
  height: 44px;
}
.fp-viewing-REIM-long-term-outperformance .modal__wrapper,
.fp-viewing-International-long-term-outperformance .modal__wrapper,
.fp-viewing-Residential-long-term-outperformance .modal__wrapper,
.fp-viewing-Retail-long-term-outperformance .modal__wrapper,
.fp-viewing-Office-long-term-outperformance .modal__wrapper {
  display: none;
}
/* ==========================================================================
   Modal content
   ========================================================================== */
.modal__parent {
  position: relative;
}
.fp-viewing-landing .modal__wrapper.modal-01-on,
.fp-viewing-landing .modal__wrapper.modal-01-off {
  z-index: 9999;
}
.fp-viewing-REIM .modal__wrapper.modal-02-on,
.fp-viewing-REIM .modal__wrapper.modal-02-off {
  z-index: 9999;
}
.fp-viewing-International .modal__wrapper.modal-03-on,
.fp-viewing-International .modal__wrapper.modal-03-off {
  z-index: 9999;
}
.fp-viewing-Residential .modal__wrapper.modal-04-on,
.fp-viewing-Residential .modal__wrapper.modal-04-off {
  z-index: 9999;
}
.fp-viewing-Retail .modal__wrapper.modal-05-on,
.fp-viewing-Retail .modal__wrapper.modal-05-off {
  z-index: 9999;
}
.fp-viewing-Office .modal__wrapper.modal-06-on,
.fp-viewing-Office .modal__wrapper.modal-06-off {
  z-index: 9999;
}
.modal__wrapper {
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.modal__wrapper.modal-01-on,
.modal__wrapper.modal-02-on,
.modal__wrapper.modal-03-on,
.modal__wrapper.modal-04-on,
.modal__wrapper.modal-05-on,
.modal__wrapper.modal-06-on {
  z-index: -9999;
}
.modal__wrapper.modal-01-off,
.modal__wrapper.modal-02-off,
.modal__wrapper.modal-03-off,
.modal__wrapper.modal-04-off,
.modal__wrapper.modal-05-off,
.modal__wrapper.modal-06-off {
  z-index: -9999;
}
#modal_slide0-1 {
  padding: 2% 25% 12% 5%;
}
#modal_slide0-1 .modal__contentwrapper {
  padding-right: calc(100% - 720px);
  max-width: 100%;
}
#modal_slide0-1 .modal__contentwrapper p {
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 28px;
  line-height: 2.8rem;
}
#modal_slide0-1 .modal__contentwrapper img {
  width: 100%;
}
.modal__contentwrapper {
  padding: 5% 5% 15% 5%;
  color: #000;
  position: relative;
  overflow: auto;
  height: 100%;
}
.modal__contentwrapper.modal--interview {
  padding: 0 0 0 47px;
}
.modal__contentwrapper.modal--interview .modal__content {
  background: #FFF;
  padding: 0 2%;
  overflow: auto;
  height: 80%;
}
@media screen and (min-width: 1280px) and (max-width: 1370px) {
  .modal__contentwrapper.modal--interview .modal__content {
    height: 75%;
    padding-bottom: 55px;
  }
}
.modal__contentwrapper.modal--interview .modal__imgwrapper {
  height: 100%;
  background: #cee1f2;
}
.modal__contentwrapper.modal--video {
  padding: 2% 5% 15% 5%;
}
.modal__contentwrapper .modal__teaser {
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  display: block;
  border-bottom: solid 1px #000;
  margin-top: 20px;
  padding: 0 0 10px 0;
}
.modal__contentwrapper .modal__title {
  margin: 20px 0 40px 0;
  color: #008fc6;
  font-weight: 600;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 30px;
  line-height: 3rem;
}
.modal__contentwrapper .modal__content {
  width: 53%;
  float: left;
}
.modal__contentwrapper .modal__imgwrapper {
  float: left;
  width: 47%;
  padding: 50px 2% 2% 2%;
}
.modal__contentwrapper .modal__imgwrapper img {
  width: 100%;
}
.modal__contentwrapper .modal__img__desc {
  font-weight: 100;
  font-size: 13px;
  font-size: 1.3rem;
}
.modal__contentwrapper h2 {
  color: #000;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 2px 0;
}
.modal__contentwrapper p {
  margin: 0 0 1em 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 22px;
  line-height: 2.2rem;
}
/* ==========================================================================
   World Map
   ========================================================================== */
.worldmap {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  background-image: url('/Images/worldmap/global/global.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #70305d;
  /*&.map--europe-residential  {background: url(http://placehold.it/1290x910/000000/009977?text=eur-residential) 0 0 no-repeat;}
    &.map--europe-retail       {background: url(http://placehold.it/1290x910/000000/009977?text=eur-retail) 0 0 no-repeat;}
    &.map--europe-office       {background: url(http://placehold.it/1290x910/000000/009977?text=eur-office) 0 0 no-repeat;}
    &.map--europe-hotel        {background: url(http://placehold.it/1290x910/000000/009977?text=eur-hotel) 0 0 no-repeat;}
    &.map--europe-healthcare   {background: url(http://placehold.it/1290x910/000000/009977?text=eur-healthcare) 0 0 no-repeat;}
    &.map--europe-logistics    {background: url(http://placehold.it/1290x910/000000/009977?text=eur-logistics) 0 0 no-repeat;}
    &.map--europe-development  {background: url(http://placehold.it/1290x910/000000/009977?text=eur-development) 0 0 no-repeat;}
    &.map--europe-other        {background: url(http://placehold.it/1290x910/000000/009977?text=eur-other) 0 0 no-repeat;}

    &.map--asia-residential  {background: url(http://placehold.it/1290x910/000000/009977?text=asia-residential) 0 0 no-repeat;}
    &.map--asia-retail       {background: url(http://placehold.it/1290x910/000000/009977?text=asia-retail) 0 0 no-repeat;}
    &.map--asia-office       {background: url(http://placehold.it/1290x910/000000/009977?text=asia-office) 0 0 no-repeat;}
    &.map--asia-hotel        {background: url(http://placehold.it/1290x910/000000/009977?text=asia-hotel) 0 0 no-repeat;}
    &.map--asia-healthcare   {background: url(http://placehold.it/1290x910/000000/009977?text=asia-healthcare) 0 0 no-repeat;}
    &.map--asia-logistics    {background: url(http://placehold.it/1290x910/000000/009977?text=asia-logistics) 0 0 no-repeat;}
    &.map--asia-development  {background: url(http://placehold.it/1290x910/000000/009977?text=asia-development) 0 0 no-repeat;}
    &.map--asia-other        {background: url(http://placehold.it/1290x910/000000/009977?text=asia-other) 0 0 no-repeat;}

    &.map--northamerica-residential  {background: url(http://placehold.it/1290x910/000000/009977?text=northamerica-residential) 0 0 no-repeat;}
    &.map--northamerica-retail       {background: url(http://placehold.it/1290x910/000000/009977?text=northamerica-retail) 0 0 no-repeat;}
    &.map--northamerica-office       {background: url(http://placehold.it/1290x910/000000/009977?text=northamerica-office) 0 0 no-repeat;}
    &.map--northamerica-hotel        {background: url(http://placehold.it/1290x910/000000/009977?text=northamerica-hotel) 0 0 no-repeat;}
    &.map--northamerica-healthcare   {background: url(http://placehold.it/1290x910/000000/009977?text=northamerica-healthcare) 0 0 no-repeat;}
    &.map--northamerica-logistics    {background: url(http://placehold.it/1290x910/000000/009977?text=northamerica-logistics) 0 0 no-repeat;}
    &.map--northamerica-development  {background: url(http://placehold.it/1290x910/000000/009977?text=northamerica-development) 0 0 no-repeat;}
    &.map--northamerica-other        {background: url(http://placehold.it/1290x910/000000/009977?text=northamerica-other) 0 0 no-repeat;}*/
}
@media only screen and (max-width: 1200px) {
  .worldmap {
    background-position: 0 center;
    background-size: contain;
    background-color: #CEDFF1;
  }
}
.worldmap.map--global {
  background-image: url(/Images/worldmap/global/global.svg);
}
.worldmap.map--europe {
  background-image: url(/Images/worldmap/europe/europe.svg);
}
@media only screen and (max-width: 1200px) {
  .worldmap.map--europe {
    background-size: 120%;
    background-position: right bottom;
  }
}
.worldmap.map--northamerica {
  background-image: url(/Images/worldmap/northamerica/northamerica.png);
  background-position: center center;
}
@media only screen and (max-width: 1200px) {
  .worldmap.map--northamerica {
    background-size: 125%;
    background-position: right bottom;
  }
}
.worldmap.map--asiapacific {
  background-image: url(/Images/worldmap/asia/asia.png);
  background-position: center center;
}
@media only screen and (max-width: 1200px) {
  .worldmap.map--asiapacific {
    background-position: top right;
    background-size: contain;
  }
}
.worldmap .map--europe-residential {
  left: test;
}
.worldmap-list_item {
  background: rgba(255, 255, 255, 0.6);
}
.worldmap-list__region {
  margin: 0;
  padding: 0;
}
.worldmap-list__region a {
  font-size: 16px;
  font-size: 1.6rem;
  border-top: solid 1px #bfc9d0;
  padding: 0;
  margin: 0 10px;
}
.worldmap-countries_wrapper {
  background: rgba(255, 255, 255, 0.6);
}
.worldmap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  top: 65px;
  left: 20px;
  width: 330px;
}
@media only screen and (max-width: 1200px) {
  .worldmap-list {
    position: absolute;
    top: 15px;
    left: auto;
    right: 15px;
  }
}
.worldmap-list li {
  margin: 0 0 5px 0;
  padding: 0;
  list-style: none;
}
.worldmap-list a {
  display: block;
  color: #421542;
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 2px 0;
  margin: 0 10px;
  line-height: 1.6;
}
@media only screen and (max-width: 1200px) {
  .worldmap-list a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.worldmap-list a:hover {
  color: #70305d;
}
.worldmap-list a.active {
  color: #be097f;
}
.worldmap-list a.active:before {
  content: '>';
  display: inline-block;
  margin-right: 5px;
}
.worldmap-list .not-visible {
  padding: 0;
  display: none;
}
.worldmap-list .chart-wrapper {
  background: rgba(255, 255, 255, 0.6);
  position: relative;
}
.worldmap-list .countrylist {
  list-style: none;
  padding: 10px;
  margin: 0;
  width: 50%;
}
.worldmap-list .countrylist strong {
  float: right;
}
.worldmap-list .countrylist li {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-size: 1.2rem;
}
.worldmap-list .countrylist li a {
  font-size: 12px;
  font-size: 1.2rem;
  color: #000;
  border-top: solid 0 #808080;
  padding: 0;
  margin: 7px 0;
  line-height: normal;
}
.worldmap-list .countrylist li a.is-active {
  text-decoration: underline;
}
.worldmap-list .countrylist--left {
  float: left;
}
.worldmap-list .countrylist--right {
  float: left;
}
.worldmap-list .countrylist--float {
  position: absolute;
  left: 102%;
  top: 0;
  width: 100%;
  height: 200px;
  background: rgba(255, 255, 255, 0.9);
  display: none;
}
.worldmap-list .countrylist--float.is-visible {
  display: block;
}
.worldmap-list .countrylist--float > .countrylist {
  background: none;
}
.worldmap-list .countrylist--float ul,
.worldmap-list .countrylist--float li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.worldmap-list .countrylist--multi {
  -moz-column-count: 2;
  -moz-column-gap: 2.5em;
  -webkit-column-count: 2;
  -webkit-column-gap: 2.5em;
  column-count: 2;
  column-gap: 2.5em;
}
/* ==========================================================================
   Pipeline portfolio
   ========================================================================== */
.pipeline {
  position: relative;
}
.pipeline .pipeline-map {
  width: 40%;
  display: inline-block;
  position: relative;
}
.pipeline .pipeline-map figure {
  margin: 0 0 0 0;
}
.pipeline .pipeline-map figure .js-map {
  width: 100%;
}
.pipeline .accordion {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  width: 50%;
  display: inline-block;
  max-width: 280px;
  vertical-align: top;
}
.pipeline .accordion > li {
  background: #f3f4f5;
}
.pipeline .accordion li {
  margin: 0 0 5px 0;
  padding: 0;
  list-style: none;
}
.pipeline .accordion li a {
  display: block;
  color: #808080;
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 2px 0;
  margin: 0 10px;
  line-height: 30px;
}
.pipeline .accordion li a:after {
  content: '';
  background: url(/images/sprites/sprite.svg) 0 0 no-repeat;
  background-position: 37.38586527% 44.63151783%;
  width: 8.82px;
  height: 6.41px;
  display: inline-block;
  position: relative;
  left: 10px;
  top: -3px;
}
.pipeline .accordion li a:hover {
  color: #70305d;
}
.pipeline .accordion li a.active {
  color: #be097f;
}
.pipeline .accordion li a.active:before {
  content: '>';
  display: inline-block;
  margin-right: 5px;
}
.pipeline .accordion li li {
  margin: 0;
  padding: 0;
}
.pipeline .accordion li li a {
  font-size: 14px;
  font-size: 1.4rem;
  border-top: solid 1px #bfc9d0;
  padding: 0;
  margin: 0 10px;
  color: #000;
}
.pipeline .accordion li li a:after {
  display: none;
}
.pipeline .accordion .not-visible {
  padding: 0;
  display: none;
}
.pipeline .accordion .chart-wrapper {
  background: #fff;
  position: relative;
}
.pipeline .portfolio_detail {
  position: relative;
  width: 50%;
  display: inline-block;
  max-width: 280px;
  background: #f3f4f5;
  vertical-align: top;
  color: #000;
  margin-left: 5px;
}
.pipeline .portfolio_detail figure {
  margin: 0;
}
.pipeline .portfolio_detail figure img {
  max-width: 100%;
  display: block;
}
.pipeline .portfolio_detail .portfolio_detail__content {
  padding: 10px;
}
.pipeline .portfolio_detail .portfolio_detail__content h1 {
  color: #008fc6;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0;
  line-height: initial;
}
.pipeline .portfolio_detail .portfolio_detail__content > span {
  color: #000;
  font-size: 15px;
  font-size: 1.5rem;
  margin-top: 7px;
  display: block;
}
.pipeline .portfolio_detail .portfolio_detail__content hr {
  border: 0;
  height: 1px;
  background: #808080;
  margin: 13px 0;
}
.pipeline .portfolio_detail .portfolio_detail__content dl {
  margin: 0 0 10px 0;
  padding: 0;
}
.pipeline .portfolio_detail .portfolio_detail__content dl dt,
.pipeline .portfolio_detail .portfolio_detail__content dl dd {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.pipeline .portfolio_detail .portfolio_detail__content dl dt {
  width: 50%;
  font-size: 12px;
  font-size: 1.2rem;
}
.pipeline .portfolio_detail .portfolio_detail__content dl dd {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 800;
}
/*.pipeline--btns {
    padding: 3%;

    img {
        width: auto !important;
        margin-bottom: 25px;
    }

    button {
        border: none;
        background: none;
        padding: 0;
        margin: 0 5px 0 0;
    }
}*/
body.home-page .ui-tooltip {
  width: 0px !important;
  height: 0px !important;
  overflow: hidden !important;
  position: absolute !important;
  left: -999em !important;
  top: -999em !important;
  display: none !important;
  visibility: hidden !important;
}
.home-report {
  width: 100%;
  margin: 110px 0 0 0;
  padding: 2em 3em;
  position: relative;
}
@media only screen and (max-width: 1366px) {
  .home-report {
    padding: 2em 3em 1em 3em;
  }
}
@media only screen and (max-width: 1024px) {
  .home-report {
    margin: 70px 0 0 0;
  }
}
@media only screen and (max-width: 800px) {
  .home-report {
    padding: 2em 1em 1em 1em;
  }
}
@media only screen and (max-width: 480px) {
  .home-report {
    margin: 60px 0 0 0;
  }
}
.home-report::before {
  max-width: 30rem;
  width: 100%;
  height: 20rem;
  content: "";
  position: absolute;
  top: 1.6rem;
  left: 3em;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  background-color: #008fc6;
}
@media only screen and (max-width: 800px) {
  .home-report::before {
    max-width: 25.4rem;
    left: 1em;
  }
}
.home-report .home-report_title {
  margin: 0;
  font-size: 6rem;
  font-weight: 400;
  line-height: 1.2;
  color: #86919a;
  cursor: default;
}
@media only screen and (max-width: 1366px) {
  .home-report .home-report_title {
    font-size: 3.28rem;
  }
}
@media only screen and (max-width: 800px) {
  .home-report .home-report_title {
    font-size: 2.8rem;
  }
}
.home-report .home-report_title span {
  color: #008fc6;
}
.home-intro {
  width: 100%;
  height: auto;
  display: block;
  clear: both;
  position: relative;
  overflow: hidden;
  /*@media only screen and (min-width: 1367px) {
        height: ~'calc(100vh - 242px)';
    }

    @media only screen and (max-width: 1366px) {
        height: ~'calc(100vh - 155px)';
    }

    @media only screen and (max-width: 800px) {
        height: ~'calc(100vh - 150px)';
    }

    @media only screen and (max-width: 767px) {
        min-height: ~'calc(100vh - 150px)';
        height: auto;
    }

    @media only screen and (max-width: 480px) {
        min-height: ~'calc(100vh - 140px)';
    }*/
}
.home-funds {
  width: 69%;
  width: calc(100% - 60rem);
  height: auto;
  padding: 3em 2.4vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  text-transform: uppercase;
}
@media only screen and (min-width: 1367px) {
  .home-funds {
    height: calc(100vh - 242px);
  }
}
@media only screen and (max-width: 1366px) {
  .home-funds {
    width: calc(100% - 40rem);
    height: calc(100vh - 155px);
  }
}
@media only screen and (max-width: 800px) {
  .home-funds {
    height: calc(100vh - 150px);
  }
}
@media only screen and (max-width: 767px) {
  .home-funds {
    width: 100%;
    height: auto;
    padding-bottom: 0;
    /*-webkit-box-ordinal-group: 2;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 2; 
        -webkit-order: 2; 
        order: 2;*/
  }
}
@media only screen and (max-width: 480px) {
  .home-funds {
    position: relative;
    background-color: #008fc6;
    padding: 1em;
  }
}
.home-funds_wrapper {
  margin: 0 -0.3em;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
.home-funds_wrapper .home-funds_wrapper {
  margin: 0 0;
}
@media only screen and (max-width: 1366px) {
  .home-funds_wrapper {
    font-size: 1.2rem;
  }
}
.home-funds_wrapper a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
}
.home-fund {
  width: 20rem;
  min-height: 20rem;
  margin: 0.3em;
  padding: 0.4em 0.4em 0.8em 0.4em;
  text-align: center;
  text-decoration: none;
  border-top: 1rem solid transparent;
  background-color: rgba(55, 82, 115, 0.9);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  /*> *:first-of-type {
        margin-top: 0;
    }
    > *:last-of-type {
        margin-bottom: 0;
    }*/
  /*&.fund-type--international {

        &:hover,
        &:focus {
            color: @color-fund-international;
        }
    }

    &.fund-type--residential {

        &:hover,
        &:focus {
            color: @color-fund-residential;
        }
    }

    &.fund-type--retail {

        &:hover,
        &:focus {
            color: @color-fund-retail;
        }
    }

    &.fund-type--office {

        &:hover,
        &:focus {
            color: @color-fund-office;
        }
    }*/
}
@media only screen and (max-width: 1366px) {
  .home-fund {
    width: 14rem;
    min-height: 14rem;
    border-top-width: 0.6rem;
  }
}
@media only screen and (max-width: 600px) {
  .home-fund {
    width: 9rem;
    min-height: 9rem;
    border-top-width: 0.6rem;
  }
}
.home-fund svg {
  color: transparent;
}
@media only screen and (max-width: 600px) {
  .home-fund svg {
    height: 2rem;
  }
}
.home-fund .home-fund_title_hover {
  display: none;
}
.home-fund:hover,
.home-fund:focus {
  text-decoration: none;
  color: #70305d;
  border-top-color: currentColor;
  background-color: rgba(255, 255, 255, 0.9);
}
.home-fund:hover .home-fund_title,
.home-fund:focus .home-fund_title {
  display: none;
}
.home-fund:hover .home-fund_title_hover,
.home-fund:focus .home-fund_title_hover {
  display: block;
  border-bottom-color: currentColor;
}
.home-fund:hover svg,
.home-fund:focus svg {
  color: inherit;
}
.home-fund.fund-type--reim:hover,
.home-fund.fund-type--reim:focus {
  color: #008fc6;
}
.report-fund {
  padding: 0 0 0 4rem;
  position: relative;
}
.report-fund .home-fund_img {
  width: 3rem;
  height: 3rem;
  margin: 0;
  border: 0;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}
.report-fund.report-ReimHierarchical svg {
  color: #008fc6;
}
.home-fund_title,
.home-fund_title_hover {
  margin: 0 0 0.6rem 0;
  padding: 0.2rem 0.2rem 0.6rem 0.2rem;
  border-bottom: 0.2rem solid transparent;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
@media only screen and (max-width: 1366px) {
  .home-fund_title,
  .home-fund_title_hover {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
.home-fund_img {
  max-width: 100%;
  width: 9rem;
  height: 9rem;
  margin: 0 auto;
  display: block;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media only screen and (max-width: 1366px) {
  .home-fund_img {
    width: 6rem;
    height: 6rem;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
}
.slider-home {
  width: 69%;
  width: calc(100% - 60rem);
  float: left;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1367px) {
  .slider-home {
    height: calc(100vh - 242px);
  }
}
@media only screen and (max-width: 1366px) {
  .slider-home {
    width: calc(100% - 40rem);
    height: calc(100vh - 155px);
  }
}
@media only screen and (max-width: 800px) {
  .slider-home {
    height: calc(100vh - 150px);
  }
}
@media only screen and (max-width: 767px) {
  .slider-home {
    min-height: 46rem;
    width: 100%;
    height: 60vh;
  }
}
@media only screen and (max-width: 480px) {
  .slider-home {
    min-height: 30rem;
    height: 50vh;
  }
}
.slide-home {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.slide-home:nth-child(1) {
  background-image: url('/FbContent.ashx/pub_1006/Images/imgres_r0w-1h-1/carousel_reim.jpg');
}
.slide-home:nth-child(2) {
  background-image: url('/FbContent.ashx/pub_1006/Images/imgres_r0w-1h-1/carousel_residential.jpg');
}
.slide-home:nth-child(3) {
  background-image: url('/FbContent.ashx/pub_1006/Images/imgres_r0w-1h-1/carousel_retail.jpg');
}
.slide-home:nth-child(4) {
  background-image: url('/FbContent.ashx/pub_1006/Images/imgres_r0w-1h-1/carousel_office.jpg');
}
.slide-descr {
  cursor: default;
  position: absolute;
  left: 2.4vw;
  bottom: 3em;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .slide-descr {
    left: 2em;
    bottom: 2em;
  }
}
.home-panels {
  max-width: 60rem;
  min-height: 42rem;
  width: 100%;
  height: auto;
  float: left;
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition: max-width cubic-bezier(0.5, 0.01, 0.29, 1) 1s 0.3s;
  -moz-transition: max-width cubic-bezier(0.5, 0.01, 0.29, 1) 1s 0.3s;
  -o-transition: max-width cubic-bezier(0.5, 0.01, 0.29, 1) 1s 0.3s;
  transition: max-width cubic-bezier(0.5, 0.01, 0.29, 1) 1s 0.3s;
}
@media only screen and (max-width: 800px) {
  .home-panels {
    max-width: 40rem;
  }
}
@media only screen and (max-width: 767px) {
  .home-panels {
    max-width: 100%;
    width: 100%;
    position: relative;
    top: auto;
    right: auto;
    /*-webkit-box-ordinal-group: 1;
        -moz-box-ordinal-group: 1;
        -ms-flex-order: 1; 
        -webkit-order: 1; 
        order: 1;*/
    border-bottom: 0.4rem solid #FFF;
  }
}
.no-flexbox .home-panels {
  width: 35%;
}
.panels--open .home-panels {
  max-width: 100%;
}
.home-panel {
  min-height: 42rem;
  width: auto;
  height: 100%;
  float: left;
  overflow: hidden;
  border-left: 0.3rem solid #FFF;
  position: relative;
  z-index: 11;
  -webkit-transition: all cubic-bezier(0.5, 0.01, 0.29, 1) 1s 0.3s;
  -moz-transition: all cubic-bezier(0.5, 0.01, 0.29, 1) 1s 0.3s;
  -o-transition: all cubic-bezier(0.5, 0.01, 0.29, 1) 1s 0.3s;
  transition: all cubic-bezier(0.5, 0.01, 0.29, 1) 1s 0.3s;
  background-color: #008fc6;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 30rem;
  -ms-flex: 0 1 30rem;
  flex: 0 1 30rem;
}
@media only screen and (min-width: 1367px) {
  .home-panel {
    height: calc(100vh - 242px);
  }
}
@media only screen and (max-width: 1366px) {
  .home-panel {
    -webkit-flex-basis: 20rem;
    flex-basis: 20rem;
    height: calc(100vh - 155px);
  }
}
@media only screen and (max-width: 800px) {
  .home-panel {
    height: calc(100vh - 150px);
  }
}
@media only screen and (max-width: 767px) {
  .home-panel {
    height: calc(100vh - 150px);
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    border-left: none;
    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
  }
}
@media only screen and (max-width: 480px) {
  .home-panel {
    height: calc(100vh - 140px);
  }
}
.home-panel.panel--active {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
@media only screen and (max-width: 1366px) {
  .home-panel.panel--active {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
}
@media only screen and (max-width: 1366px) {
  .panels--open .home-panel:not(.panel--active) {
    -webkit-flex-basis: 0px;
    flex-basis: 0px;
  }
}
.no-flexbox .home-panel {
  width: 50%;
}
.home-panel .btn-panel-close {
  position: absolute;
  top: 0;
  z-index: 2;
}
.home-panel .css-icon {
  color: #FFF;
}
.btn-panel-close {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity ease 0.3s 0s;
  -moz-transition: opacity ease 0.3s 0s;
  -o-transition: opacity ease 0.3s 0s;
  transition: opacity ease 0.3s 0s;
}
.panel--active .btn-panel-close {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: opacity ease 0.3s 1.3s;
  -moz-transition: opacity ease 0.3s 1.3s;
  -o-transition: opacity ease 0.3s 1.3s;
  transition: opacity ease 0.3s 1.3s;
}
.home-panel--chairman .btn-panel-close {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  left: 0;
  background-color: #008fc6;
}
.home-panel--map .btn-panel-close {
  left: 0;
  background-color: #70305d;
}
.home-panel--map .btn-panel-close {
  position: absolute;
  top: 0;
  right: 0;
}
.css-icon {
  margin: 0;
  padding: 0;
  display: inline-block;
  background: none;
  border: 0;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.css-icon:hover,
.css-icon:focus {
  text-decoration: none;
}
.css-icon.css-icon-close {
  width: 4rem;
  height: 4rem;
  margin: 0;
  padding: 0;
}
.css-icon.css-icon-close::before,
.css-icon.css-icon-close::after {
  width: 80%;
  height: 0.2rem;
  content: "";
  display: block;
  position: absolute;
  top: 47%;
  left: 10%;
  background-color: currentColor;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.css-icon.css-icon-close::before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.css-icon.css-icon-close::after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.home-panel_preview {
  max-width: 30rem;
  width: 100%;
  height: 100%;
  font-size: 2.2rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: url('/') no-repeat center center transparent;
  background-size: cover;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 0 30rem;
  -ms-flex: 1 0 30rem;
  flex: 1 0 30rem;
  -webkit-transition: all ease 1s;
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  transition: all ease 1s;
}
@media only screen and (max-width: 1366px) {
  .home-panel_preview {
    max-width: 20rem;
    -webkit-flex-basis: 20rem;
    flex-basis: 20rem;
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .home-panel_preview {
    max-width: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
  }
}
.home-panel--chairman .home-panel_preview {
  background-position: 50% 0;
  background-image: url('/FbContent.ashx/pub_1006/Images/imgres_r0w-1h-1/dick-vanhal.jpg');
}
.home-panel--map .home-panel_preview {
  background-position: 63% 50%;
  background-image: url('/Images/worldmap/europe/europe.svg');
}
.home-panel--map.panel--active .home-panel_preview {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 1 0px;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
}
@media only screen and (max-width: 767px) {
  .home-panel--chairman.panel--active .home-panel_preview {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1 1 4rem;
    -ms-flex: 1 1 4rem;
    flex: 1 1 4rem;
  }
}
.home-panel_preview-svg {
  width: 2.7rem;
  height: 6.2rem;
  margin: auto 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.8vw;
  z-index: 2;
  color: #FFF;
}
@media only screen and (max-width: 1366px) {
  .home-panel_preview-svg {
    width: 1.7rem;
    height: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .home-panel_preview-svg {
    left: 1.4em;
  }
}
@media only screen and (max-width: 480px) {
  .home-panel_preview-svg {
    left: 0.6em;
  }
}
.home-panel_content {
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
  -webkit-transition: opacity ease 0.3s 0s;
  -moz-transition: opacity ease 0.3s 0s;
  -o-transition: opacity ease 0.3s 0s;
  transition: opacity ease 0.3s 0s;
}
.panel--active .home-panel_content {
  opacity: 1;
  -webkit-transition: opacity ease 0.3s 1.3s;
  -moz-transition: opacity ease 0.3s 1.3s;
  -o-transition: opacity ease 0.3s 1.3s;
  transition: opacity ease 0.3s 1.3s;
}
.home-panel--chairman .home-panel_content {
  overflow: visible;
}
.home-panel_txt {
  max-height: calc(100vh - 242px);
  min-height: 42rem;
  padding: 1em 2em;
  overflow-y: auto;
  overflow-x: hidden;
  color: #FFF;
}
.home-panel_txt > div {
  max-width: 80rem;
  margin: 0 auto;
}
.home-panel_txt img {
  max-width: 100%;
}
@media only screen and (max-width: 1024px) {
  .home-panel_txt {
    max-width: 60rem;
    margin: 0 auto 0 auto;
    max-height: 70vh;
  }
  .home-panel_txt > div {
    max-width: none;
  }
}
.home-panel_txt a,
.home-panel_txt p {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
}
.home-panel_title {
  width: 100%;
  padding: 2em 2em 2em 6vw;
  color: #FFF;
  line-height: 1.2;
  background-color: #008fc6;
  opacity: 1;
  white-space: nowrap;
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -o-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  -webkit-transition: -webkit-transform ease 0.3s, opacity ease 0.3s;
  -moz-transition: -moz-transform ease 0.3s, opacity ease 0.3s;
  -o-transition: -o-transform ease 0.3s, opacity ease 0.3s;
  transition: -webkit-transform ease 0.3s,-moz-transform ease 0.3s,-o-transform ease 0.3s,transform ease 0.3s, opacity ease 0.3s;
}
@media only screen and (max-width: 1366px) {
  .home-panel_title {
    padding-left: 5vw;
  }
}
@media only screen and (max-width: 767px) {
  .home-panel_title {
    padding-left: 4em;
  }
}
@media only screen and (max-width: 480px) {
  .home-panel_title {
    padding-left: 2.6em;
  }
}
.panel--active .home-panel_title {
  opacity: 0;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.home-panel--chairman .home-panel_title {
  background-color: #008fc6;
}
@media only screen and (max-width: 480px) {
  .home-panel--chairman .home-panel_title {
    background-size: 240%;
  }
}
.home-panel--map .home-panel_title {
  background-color: #70305d;
}
/**========================================

    OLD CSS (mixed with unknown used CSS)

 ==========================================*/
/**
 * fullPage 2.4.3
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
/*html.home-page,
body.home-page {
    margin: 0;
    padding: 0;
    overflow:hidden;

    // Avoid flicker on slides transitions for mobile phones #336
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}*/
#superContainer {
  height: 100%;
  position: relative;
  /* Touch detection for Windows 8 */
  -ms-touch-action: none;
  /* IE 11 on Windows Phone 8.1*/
  touch-action: none;
}
.fp-section {
  position: relative;
  -webkit-box-sizing: border-box;
  /* Safari<=5 Android<=3 */
  -moz-box-sizing: border-box;
  /* <=28 */
  box-sizing: border-box;
}
.fp-slide,
.fp-slidesContainer {
  height: 100%;
  display: block;
}
.fp-slides {
  z-index: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  padding-top: 110px;
}
.fp-section.fp-table,
.fp-slide.fp-table {
  display: table;
  width: 100%;
}
.fp-tableCell {
  display: table-cell;
  vertical-align: top;
  width: 100%;
  height: 100%;
}
.fp-slidesContainer {
  float: left;
  position: relative;
}
.fp-controlArrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  cursor: pointer;
  width: 0;
  height: 0;
  border-style: solid;
  margin-top: -38px;
  display: none;
}
.fp-controlArrow.fp-prev {
  left: 15px;
  width: 0;
  border-width: 38.5px 34px 38.5px 0;
  border-color: transparent #fff transparent transparent;
}
.fp-controlArrow.fp-next {
  right: 15px;
  border-width: 38.5px 0 38.5px 34px;
  border-color: transparent transparent transparent #fff;
}
.fp-scrollable {
  overflow: scroll;
}
.fp-notransition {
  -webkit-transition: none !important;
  transition: none !important;
}
#fp-nav {
  position: fixed;
  z-index: 100;
  margin-top: -32px;
  top: 50%;
  opacity: 1;
}
#fp-nav.right {
  right: 17px;
}
#fp-nav.left {
  left: 17px;
}
.fp-sectionNav {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  height: 100%;
  width: 13%;
}
.fp-sectionNav .innernav {
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.fp-sectionNav li > span {
  display: none;
}
.fp-sectionNav li.active > span {
  display: block;
  padding: 10px 10px 5px 20px;
  font-size: 12px;
  font-size: 1.2rem;
}
.fp-sectionNav li.active > span a {
  text-decoration: none;
}
.fp-sectionNav li.active > span a:before {
  content: 'go directly to \A annual report';
  display: inline-block;
  text-transform: uppercase;
  white-space: pre;
  line-height: 15px;
}
.fp-sectionNav li.active > span a:after {
  content: '';
  display: inline-block;
  background: url(/images/sprites/sprite.svg) 0 0 no-repeat;
  margin-left: 10px;
  position: relative;
  top: -5px;
}
#section1 .fp-sectionNav {
  background: #421542;
}
#section1 .fp-sectionNav li > span {
  background: #d9d0d9;
}
#section1 .fp-sectionNav li > span:hover {
  background: #421542;
}
#section1 .fp-sectionNav li > span:hover a {
  color: #FFF;
}
#section1 .fp-sectionNav li > span a:after {
  background-position: 20.59925094% 22.47191011%;
  width: 20px;
  height: 15px;
}
#section3 .fp-sectionNav {
  background: #678b6b;
}
#section3 .fp-sectionNav li > span {
  background: #e9efea;
}
#section3 .fp-sectionNav li > span:hover {
  background: #678b6b;
}
#section3 .fp-sectionNav li > span:hover a {
  color: #FFF;
}
#section3 .fp-sectionNav li > span a:after {
  background-position: 28.08988764% 22.47191011%;
  width: 20px;
  height: 15px;
}
#section4 .fp-sectionNav {
  background: #998992;
}
#section4 .fp-sectionNav li > span {
  background: #e0dbde;
}
#section4 .fp-sectionNav li > span:hover {
  background: #998992;
}
#section4 .fp-sectionNav li > span:hover a {
  color: #FFF;
}
#section4 .fp-sectionNav li > span a:after {
  background-position: 34.45692884% 88.01498127%;
  width: 20px;
  height: 15px;
}
#section5 .fp-sectionNav {
  background: #d5ac48;
}
#section5 .fp-sectionNav li > span {
  background: #f9f3e6;
}
#section5 .fp-sectionNav li > span:hover {
  background: #d5ac48;
}
#section5 .fp-sectionNav li > span:hover a {
  color: #FFF;
}
#section5 .fp-sectionNav li > span a:after {
  background-position: 26.96629213% 88.01498127%;
  width: 20px;
  height: 15px;
}
#section2 .fp-sectionNav {
  background: #35597e;
}
#section2 .fp-sectionNav li > span {
  background: #cad9e8;
}
#section2 .fp-sectionNav li > span:hover {
  background: #35597e;
}
#section2 .fp-sectionNav li > span:hover a {
  color: #FFF;
}
#section2 .fp-sectionNav li > span a:after {
  background-position: 19.47565543% 88.01498127%;
  width: 20px;
  height: 15px;
}
/*.fp-sectionNav.bottom {
    bottom: 17px;
}

.fp-sectionNav.top {
    top: 23%;

    @media @mq-medium {
        top: 23%;
    }
}*/
#fp-nav ul,
.fp-sectionNav ul {
  margin: 0;
  padding: 0;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
#fp-nav li,
.fp-sectionNav li {
  display: block;
  position: relative;
}
#fp-nav li:last-child a,
.fp-sectionNav li:last-child a {
  border-bottom: solid 1px #fff;
}
#fp-nav li > a:before,
.fp-sectionNav li > a:before {
  display: block;
  white-space: pre;
  text-align: left;
  line-height: 1.2em;
  font-size: 15px;
  font-size: 1.5rem;
}
#fp-nav li:nth-child(1) > a:before,
.fp-sectionNav li:nth-child(1) > a:before {
  content: 'About \a REIM';
}
#fp-nav li:nth-child(2) > a:before,
.fp-sectionNav li:nth-child(2) > a:before {
  content: 'About \a International \a Investments';
}
#fp-nav li:nth-child(3) > a:before,
.fp-sectionNav li:nth-child(3) > a:before {
  content: 'About \a Residential Fund';
}
#fp-nav li:nth-child(4) > a:before,
.fp-sectionNav li:nth-child(4) > a:before {
  content: 'About \a Retail Fund';
}
#fp-nav li:nth-child(5) > a:before,
.fp-sectionNav li:nth-child(5) > a:before {
  content: 'About \a Office Fund';
}
#fp-nav li.active,
.fp-sectionNav li.active {
  background: #fff;
}
#section1 #fp-nav li.active a,
#section1 .fp-sectionNav li.active a {
  color: #421542;
}
#section3 #fp-nav li.active a,
#section3 .fp-sectionNav li.active a {
  color: #678b6b;
}
#section4 #fp-nav li.active a,
#section4 .fp-sectionNav li.active a {
  color: #998992;
}
#section5 #fp-nav li.active a,
#section5 .fp-sectionNav li.active a {
  color: #d5ac48;
}
#section2 #fp-nav li.active a,
#section2 .fp-sectionNav li.active a {
  color: #35597e;
}
#fp-nav li.active a:hover,
.fp-sectionNav li.active a:hover {
  background: transparent;
}
#fp-nav li > a,
.fp-sectionNav li > a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  padding: 20px;
  border-top: solid 1px #fff;
}
#fp-nav li > a:hover,
.fp-sectionNav li > a:hover {
  background: #fff;
}
#section1 #fp-nav li > a:hover,
#section1 .fp-sectionNav li > a:hover {
  color: #421542;
}
#section3 #fp-nav li > a:hover,
#section3 .fp-sectionNav li > a:hover {
  color: #678b6b;
}
#section4 #fp-nav li > a:hover,
#section4 .fp-sectionNav li > a:hover {
  color: #998992;
}
#section5 #fp-nav li > a:hover,
#section5 .fp-sectionNav li > a:hover {
  color: #d5ac48;
}
#section2 #fp-nav li > a:hover,
#section2 .fp-sectionNav li > a:hover {
  color: #35597e;
}
.fp-tooltip {
  position: absolute;
  top: -2px;
  color: #fff;
  font-size: 14px;
  font-family: arial, helvetica, sans-serif;
  white-space: nowrap;
  max-width: 220px;
}
.fp-tooltip.right {
  right: 20px;
}
.fp-tooltip.left {
  left: 20px;
}
/* ==========================================================================
   Intro 
   ========================================================================== */
.intro {
  width: 100%;
  min-height: 90vh;
  margin-top: 110px;
  background: #fff;
  display: table;
}
.intro:after {
  display: table;
  content: " ";
  clear: both;
}
.intro:before,
.intro:after {
  content: " ";
  display: table;
}
.intro:after {
  clear: both;
}
.intro__left {
  width: 35%;
  position: relative;
  display: table-cell;
  background-color: #385A64;
}
.intro__left .intro__left__img {
  position: absolute;
  right: 0;
  top: 80px;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  text-align: right;
  z-index: 0;
}
.intro__left .intro__left__img img {
  width: 80%;
}
@media (max-width: 1366px) {
  .intro__left .intro__left__img {
    top: auto;
    bottom: -50px;
  }
}
@media (min-height: 1255px) {
  .intro__left .intro__left__img {
    top: auto;
    bottom: 0;
  }
}
@media only screen and (max-width: 800px) {
  .intro__left .intro__left__img img {
    display: none;
  }
}
.intro__left .intro__left__top {
  padding: 10% 0 0 10%;
  position: absolute;
  top: 0;
  z-index: 1;
}
.intro__left .intro__left__top > header {
  position: relative;
  top: 10%;
}
.intro__left .intro__left__bottom {
  padding: 10% 10% 10% 0;
  text-align: right;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.intro__left .intro__left__bottom .btn-chairman {
  text-decoration: none;
  color: #FFF;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 27px;
  line-height: 2.7rem;
  position: relative;
  padding-right: 30px;
  display: inherit;
}
.intro__left .intro__left__bottom .btn-chairman:after {
  content: '';
  background: url(/images/sprites/sprite.svg) 0 0 no-repeat;
  background-position: 91.8363643% 53.81023977%;
  width: 11.51px;
  height: 29.26px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -13.63px;
}
.intro__left .intro__left__bottom .btn-chairman:hover {
  text-shadow: 0 2px 2px #000000;
}
.intro__left h1 {
  color: white;
  font-weight: 100;
  font-size: 110px;
  font-size: 11rem;
  line-height: normal;
}
@media (max-width: 1440px) {
  .intro__left h1 {
    font-size: 80px;
    font-size: 8rem;
  }
}
.intro__left h1 span {
  font-weight: 100;
  display: block;
  color: #008fc6;
}
.intro__right {
  width: 65%;
  overflow: hidden;
  display: table-cell;
}
.intro__right > img {
  width: 100%;
  display: block;
}
/* ==========================================================================
   Section backgrounds
   ========================================================================== */
.section_intro {
  min-height: 85vh;
  min-height: calc(100vh - 110px);
  position: relative;
  padding: 0 0 15rem 0;
  background: url() no-repeat top center;
  background-size: cover;
}
.refResidentialFund .section_intro {
  background-image: url('/FbContent.ashx/pub_1006/Images/imgres_r0w-1h-1/landingspage_residential.jpg');
}
.refRetailFund .section_intro {
  background-image: url('/FbContent.ashx/pub_1006/Images/imgres_r0w-1h-1/landingspage_retail.jpg');
}
.refOfficeFund .section_intro {
  background-image: url('/FbContent.ashx/pub_1006/Images/imgres_r0w-1h-1/landingspage_office.jpg');
}
.refREIM .section_intro {
  background-image: url('/FbContent.ashx/pub_1006/Images/imgres_r0w-1h-1/landingspage_reim.jpg');
}
.refEUMan .section_intro {
  background-image: url('/FbContent.ashx/pub_1006/Images/imgres_r0w-1h-1/landingspage_europe_mandate.jpg');
}
.refNAMan .section_intro {
  background-image: url('/FbContent.ashx/pub_1006/Images/imgres_r0w-1h-1/landingspage_north_america_mandate.jpg');
}
.refAPMan .section_intro {
  background-image: url('/FbContent.ashx/pub_1006/Images/imgres_r0w-1h-1/landingspage_asia-pacific_mandate.jpg');
}
svg {
  fill: currentColor;
}
.section_intro-showcontent {
  max-width: 275px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
}
.section_intro-showcontent p {
  color: #FFF;
  font-size: 20px;
  font-size: 2rem;
  text-shadow: 0.01em 0.01em 0.1em rgba(0, 0, 0, 0.6);
}
.section_intro-showcontent-btn {
  padding: 2rem;
  color: #FFF;
  text-align: center;
  border-radius: 50% 50%;
  border: 2px solid #FFF;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
  outline-width: 0;
}
.section_intro-showcontent-btn:hover,
.section_intro-showcontent-btn:focus {
  color: #000;
  background-color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
  -webkit-transform: translateY(0.2em);
  -moz-transform: translateY(0.2em);
  -o-transform: translateY(0.2em);
  -ms-transform: translateY(0.2em);
  transform: translateY(0.2em);
}
.section_intro-showcontent-btn:before {
  font-family: FontAwesome;
  content: "\f078";
  line-height: 1;
  display: block;
}
/*#slide1-2 {
        background: url(/Images/experience/building-value/bv-reim.jpg) left top no-repeat; 
        background-size: cover;
    }

    #slide1-3 {
        background: url(/Images/experience/outstanding-performance/op-reim.jpg) left top no-repeat; 

    }*/
/*#slide5-1 {
        background: url(/Images/experience/sustainable-partnerships/sp-international.jpg) left top no-repeat; 
        background-size: cover;
    }*/
/*#slide2-2 {
        background: url(/Images/experience/building-value/bv-international.jpg) left top no-repeat; 
        background-size: cover;
    }

    #slide2-3 {
        background: url(/Images/experience/outstanding-performance/op-international.jpg) left top no-repeat; 
        background-size: cover;
        height:100vh;
    }*/
/*.nav {
        display: none;
    }*/
/*#slide3-2 {
        background: url(/Images/experience/building-value/bv-residential.jpg) left top no-repeat; 
        background-size: cover;
    }

    #slide3-3 {
        background: url(/Images/experience/outstanding-performance/op-residential.jpg) left top no-repeat; 
        background-size: cover;
        height:100vh;
    }*/
/*#slide3-1 {
        background: url(/Images/experience/sustainable-partnerships/sp-retail.jpg) left top no-repeat; 
        background-size: cover;
    }*/
/*#slide4-2 {
        background: url(/Images/experience/building-value/bv-retail.jpg) left top no-repeat; 
        background-size: cover;
    }

    #slide4-3 {
        background: url(/Images/experience/outstanding-performance/op-retail.jpg) left top no-repeat; 
        background-size: cover;
        height:100vh;
    }*/
/*#slide4-1 {
        background: url(/Images/experience/sustainable-partnerships/sp-office.jpg) left top no-repeat; 
        background-size: cover;
    }*/
/*#slide5-2 {
        background: url(/Images/experience/building-value/bv-office.jpg) left top no-repeat; 
        background-size: cover;
    }

    #slide5-3 {
        background: url(/Images/experience/outstanding-performance/op-office.jpg) left top no-repeat; 
        background-size: cover;
        height:100vh;
    }*/
/* ==========================================================================
   Nav theme menu bottom
   ========================================================================== */
.nav-theme .nav-theme--intro {
  display: inline-block;
}
.nav-theme ul {
  display: block;
  position: absolute;
  width: 100%;
  top: auto;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 0;
  height: 55px;
  z-index: 99;
  background: #f3f4f5;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
}
.nav-theme ul li {
  display: inline-block;
  margin: 0;
  height: 100%;
  font-size: 20px;
  font-size: 2rem;
  padding: 10px 0;
  line-height: 35px;
  line-height: 3.5rem;
}
.nav-theme ul li span {
  padding: 0 20px 0 30px;
  color: #008fc6;
  border-right: solid 1px #c1c9cd;
}
.nav-theme ul li.active a {
  color: #70305d;
}
.nav-theme ul li.active a:before {
  content: '';
  background: url(/images/sprites/sprite.svg) 0 0 no-repeat;
  background-position: 6.36690647% 98.87218045%;
  width: 9px;
  height: 16px;
  display: inline-block;
  margin-right: 7px;
}
.nav-theme ul li a {
  text-decoration: none;
  color: #000;
  display: block;
  padding: 0 20px;
  height: 100%;
  align-items: center;
  border-right: solid 1px #c1c9cd;
  /*@media @mq-medium {
                    .font-size(22);
                }

                @media only screen and (max-width: 1028px) {
                    .font-size(16);
                }*/
}
.nav-theme ul li a:hover {
  color: #70305d;
}
/* ==========================================================================
   Slide templates
    A = block left text, block right picture
    B = Triple image
   ========================================================================== */
.fp-slide {
  float: left;
  padding: 0;
}
.fp-slide--template-a,
.fp-slide--template-b,
.fp-slide--template-c {
  padding-left: 13%;
}
.fp-slide--template-a .lb-image,
.fp-slide--template-b .lb-image {
  float: left;
  margin: 0 10px 10px 0;
}
.fp-slide__teaser {
  text-transform: uppercase;
  color: #83929b;
  font-weight: 600;
  font-size: 20px;
  font-size: 2rem;
}
.fp-slide__title {
  font-size: 46px;
  font-size: 4.6rem;
  line-height: 54px;
  line-height: 5.4rem;
  font-weight: 800;
  margin: 10px 0 25px 0;
  color: #008fc6;
  line-height: normal;
}
.fp-slide__video {
  position: relative;
  padding-top: 30px;
  height: 100%;
  overflow: hidden;
}
.fp-slide__video iframe,
.fp-slide__video object,
.fp-slide__video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 1000px;
  max-height: 600px;
}
.fp-slide__par {
  color: #000;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: solid 1px #83929b;
}
.fp-slide__par--special {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 20px;
  line-height: 2rem;
  float: left;
}
.fp-slide--template-a {
  background: #fff;
}
.fp-slide--template-a:after {
  display: table;
  content: " ";
  clear: both;
}
.fp-slide--template-a:before,
.fp-slide--template-a:after {
  content: " ";
  display: table;
}
.fp-slide--template-a:after {
  clear: both;
}
.fp-slide--template-a .fp-slide__readmore {
  padding: 10px;
  color: #FFF;
}
.fp-slide--template-a .fp-slide__readmore p {
  line-height: 22px;
  line-height: 2.2rem;
}
.fp-slide--template-a .fp-slide__divider--left {
  float: left;
  width: 40%;
  padding: 3%;
}
.fp-slide--template-a .fp-slide__divider--right {
  float: left;
  width: 60%;
}
.fp-slide--template-a .fp-slide__divider--right img {
  width: 100%;
  max-width: 100%;
  display: block;
}
.fp-slide--template-b .fp-slide__par {
  color: #FFF;
  border-bottom: solid 0 #83929b;
}
.fp-slide--template-b .fp-slide__teaser,
.fp-slide--template-c .fp-slide__teaser {
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
  font-size: 20px;
  font-size: 2rem;
}
.fp-slide--template-b .fp-slide__title,
.fp-slide--template-c .fp-slide__title {
  font-weight: 800;
  margin: 1rem 0 3rem 0;
  margin: 3vh 0 5vh 0;
  color: #FFF;
  line-height: normal;
  text-shadow: 0.1rem 0.1rem 0 rgba(0, 0, 0, 0.3);
}
.fp-slide--template-b > div,
.fp-slide--template-c > div {
  padding: 3%;
}
.fp-slide__columns {
  margin: 0 -2vw;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -moz-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.fp-slide__columns img {
  max-width: 100%;
}
.fp-slide__columns--column {
  max-width: 28rem;
  width: 25%;
  float: left;
  position: relative;
  padding: 0 2vw;
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  -webkit-flex: 0 1 25%;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*.st-reim& {
                background-color: fade(@color-reim, 80%);
            }

            .st-residential& {
                background-color: fade(@color-residential, 80%);
            }

            .st-retail& {
                background-color: fade(@color-retail, 80%);
            }

            .st-office& {
                background-color: fade(@color-office, 80%);
            }

            .st-international& {
                background-color: fade(@color-international, 80%);
            }*/
}
.fp-slide__columns--column h2,
.fp-slide__columns--column span,
.fp-slide__columns--column p {
  color: #FFF;
}
.fp-slide__columns--column article {
  border-bottom: solid 1px #FFF;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
  min-height: 187px;
}
.fp-slide__columns--column article ul,
.fp-slide__columns--column article li {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  text-align: left;
  font-size: 24px;
  font-size: 2.4rem;
}
.fp-slide__columns--column footer p {
  font-size: 16px;
  font-size: 1.6rem;
}
.fp-slide__columns--column h2 {
  text-transform: uppercase;
  border-bottom: solid 1px #FFF;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.fp-slide__columns--column .col-bigtxt {
  font-size: 80px;
  font-size: 8rem;
  font-weight: 100;
  display: block;
  line-height: normal;
}
.fp-slide__columns--column .col-mediumtxt {
  font-size: 22px;
  font-size: 2.2rem;
  display: block;
  line-height: normal;
  font-weight: 100;
}
.fp-slide__columns--column .col-mediumlist {
  font-size: 34px;
  font-size: 3.4rem;
  line-height: normal;
}
.fp-slide__columns--column .col-smalltxt {
  font-size: 16px;
  font-size: 1.6rem;
}
.fp-slide__columns--column.i-piggybank:before {
  content: '';
  width: 109px;
  height: 93px;
  background-position: 0 -459px;
  margin: 0 auto;
  position: absolute;
  top: -40px;
  left: 50%;
  margin-left: -55px;
}
.fp-slide__columns--column.i-building:before {
  content: '';
  width: 95px;
  height: 109px;
  background-position: 0 -66px;
  margin: 0 auto;
  position: absolute;
  top: -40px;
  left: 50%;
  margin-left: -47px;
}
.fp-slide__columns--column.i-key:before {
  content: '';
  width: 99px;
  height: 125px;
  background-position: 0 -214px;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: -40px;
  left: 50%;
  margin-left: -49px;
}
.fp-slide__columns--column.i-leaf:before {
  content: '';
  width: 98px;
  height: 120px;
  background-position: 0 -339px;
  display: block;
  margin: 0 auto;
  position: absolute;
  top: -40px;
  left: 50%;
  margin-left: -49px;
}
.st-column:nth-child(3) {
  margin-right: 0;
}
.btn--home-readmore {
  border-radius: 4px;
  color: #FFF;
  text-transform: none;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 8px 12px;
  position: relative;
  display: inline-block;
}
#section1 .btn--home-readmore {
  background: #421542;
}
#section3 .btn--home-readmore {
  background: #678b6b;
}
#section4 .btn--home-readmore {
  background: #998992;
}
#section5 .btn--home-readmore {
  background: #d5ac48;
}
#section2 .btn--home-readmore {
  background: #35597e;
}
.btn--home-readmore:hover {
  color: #fff;
}
#section1 .btn--home-readmore:hover {
  background: #692169;
}
#section3 .btn--home-readmore:hover {
  background: #82a386;
}
#section4 .btn--home-readmore:hover {
  background: #b1a4ab;
}
#section5 .btn--home-readmore:hover {
  background: #dfbf71;
}
#section2 .btn--home-readmore:hover {
  background: #4472a2;
}
/*! Flickity v2.0.11
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}
.flickity-enabled:focus {
  outline: none;
}
.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: hsla(0, 0%, 100%, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.flickity-prev-next-button:hover {
  background: white;
}
.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}
.flickity-prev-next-button:active {
  opacity: 0.6;
}
.flickity-prev-next-button.previous {
  left: 10px;
}
.flickity-prev-next-button.next {
  right: 10px;
}
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}
.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}
.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}
.flickity-prev-next-button .arrow {
  fill: #333;
}
/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}
.flickity-rtl .flickity-page-dots {
  direction: rtl;
}
.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}
.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
@media print {
  /* Uitzetten voor print */
  #footer,
  .toolBar,
  #header,
  #navigation,
  .document-title,
  .prev,
  .next,
  .paging,
  .left-pane,
  .right-pane,
  .icon-back,
  .icon-print,
  .non-active-window,
  .breadcrumb,
  .article-footer,
  .article-nav-top,
  .article-nav-bottom,
  .hideforprint,
  embed,
  .toolBar,
  .add-to-report,
  .added-to-report,
  .addthis_toolbox,
  .optin-bar,
  .pagination,
  .toolBarHiddenIndicator {
    display: none !important;
  }
  #framework,
  #container,
  #content,
  .content-pane,
  .center-pane {
    margin: 0;
    padding: 0;
    width: 100% !important;
  }
  body {
    font-family: Arial, Helvetica, sans-serif;
  }
  a,
  a:link,
  a:visited {
    background-color: white;
    color: black;
    text-decoration: underline;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    padding: 0;
    font-family: Arial, Verdana, sans-serif;
  }
  h1 {
    color: #000;
    font-size: 1.7em;
    /* 27 px */
    margin: 0 0 5px 0;
  }
  h2 {
    color: #000;
    font-size: 1.5em;
    /* 24 px */
    margin: 0 0 5px 0;
  }
  h3 {
    color: #000;
    font-size: 1.3em;
    margin: 0 0 5px 0;
    /* 20 px */
  }
  h4 {
    color: #000;
    font-size: 1.1em;
    /* 17 px */
    margin: 0 0 5px 0;
  }
  h5 {
    color: #000;
    font-size: 0.9em;
    /* 14 px */
    margin: 0 0 5px 0;
  }
  h6 {
    color: #000;
    font-size: 0.8em;
    /* 12 px */
    margin: 0 0 5px 0;
    font-style: italic;
  }
  ul {
    display: block;
    list-style-type: disc;
    margin: 0 0 2em 1em;
    padding: 0 0 0 2em;
  }
  ol {
    display: block ;
    list-style-type: decimal;
    margin: 0 0 2em 1em;
    padding: 0 0 0 2em;
  }
  ul li,
  ol li,
  ol li a,
  ul li a {
    color: #000;
    line-height: inherit;
    position: relative;
  }
  ul li {
    line-height: inherit;
    list-style-type: disc;
  }
  ol li {
    line-height: inherit;
    list-style-type: decimal;
  }
  p {
    margin: 0 0 10px 0;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  div.pdf-cover {
    height: 29.45cm;
  }
  div.pdf-cover p {
    background: #aaa;
    color: #fff;
    font-size: 50px;
    height: 200px;
    line-height: normal;
    width: 100%;
  }
  div.pdf-cover .padding {
    background: #aaa;
  }
  div.pdf-print .break {
    page-break-after: always;
  }
  div.pdf-print p {
    page-break-inside: avoid;
  }
  div.pdf-print .company-title {
    display: block;
    margin: 0 0 10px 0;
    width: 100%;
  }
  div.pdf-print .company-title a span {
    display: none;
  }
  div.pdf-print .pdf-header {
    border-bottom: 1px solid #000;
    margin-bottom: 10px;
    min-height: 80px;
    position: relative;
    width: 100%;
  }
  .error #header1 {
    display: none;
  }
  .error h1 {
    color: #ff0000;
  }
}
@media only screen and (max-width: 1600px) {
  /* ==========================================================================
   Homepage
   ========================================================================== */
  .slide-template-a .st-title,
  .slide-template-b .st-title {
    font-size: 45px;
    font-size: 4.5rem;
  }
  .slide-template-a .st-par,
  .slide-template-b .st-par {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 35px;
    line-height: 3.5rem;
  }
  .slide-template-a .lb-image,
  .slide-template-b .lb-image {
    float: left;
    margin: 0 10px 10px 0;
  }
  /* ==========================================================================
   Report header
   ========================================================================== */
  .report-header-icon {
    height: 165px;
    width: 165px;
    bottom: -165px;
  }
  .report-header {
    height: 165px;
  }
  .report-header h2 {
    font-size: 43px;
    font-size: 4.3rem;
  }
  /* ==========================================================================
   aside
   ========================================================================== */
  #container .center-pane {
    width: 100%;
  }
  #container .right-pane {
    float: none;
    width: 100%;
    padding: 10px 3% 10px 0;
  }
  #container .right-pane .related-sidebar {
    width: 33%;
    display: inline-block;
    vertical-align: top;
    border-top: solid 0 #83929b;
    border-left: solid 1px #83929b;
    padding: 10px 10px 0 10px;
  }
  #container .right-pane .related-sidebar:first-child {
    border-left: solid 0 #83929b;
    padding: 10px 10px 0 0;
  }
  #container .side-navi {
    width: 33%;
    display: inline-block;
    border-left: solid 1px #83929b;
    border-top: solid 0 #83929b;
    border-bottom: solid 0 #83929b;
    padding: 0 0 0 5px;
    vertical-align: top;
  }
  /* ==========================================================================
   Report basket / Page options
   ========================================================================== */
  .page-options-container {
    border-top: solid 0 #83929b;
    padding: 0 0 10px 0;
    width: 40%;
    display: inline-block;
  }
  .page-options-container .rep-basket {
    position: relative;
    padding: 0 5px 0 0;
  }
  .page-options-container .po-add-wrapper {
    display: block;
    padding: 0 0 0 60px;
    width: 95%;
  }
  .page-options-container .page-options-added {
    padding: 5px 5px 5px 35px;
  }
  /* ==========================================================================
   Footer
   ========================================================================== */
  #footer {
    height: auto;
    border-top: solid 1px #83929b;
    float: left;
    width: 93%;
  }
  /* ==========================================================================
   Sticky
   ========================================================================== */
  .center-pane .sticky-article-nav {
    position: absolute;
    right: 7%;
    top: 10px;
  }
  .center-pane .sticky-wrapper {
    display: initial;
  }
  .center-pane .sticky-wrapper.moved-second .sticky-article-nav {
    right: 5%;
  }
  /* ==========================================================================
   <article>.article 
   ========================================================================== */
  .article h1 {
    max-width: 81%;
  }
  /* ==========================================================================
   Main navigation
   ========================================================================== */
  .refIMResidentialFundHome .home-reporttitle,
  .refIMRetailFundHome .home-reporttitle,
  .refIMOfficeFundHome .home-reporttitle {
    font-size: 55px;
    font-size: 5.5rem;
  }
  /* ==========================================================================
   Modals
   ========================================================================== */
  .modal__contentwrapper p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
    line-height: 2rem;
  }
  #breadcrumb.scrolling-icon .article-nav-container {
    transform: translateX(-58px);
  }
  .article-nav-container {
    width: 165px;
  }
  .report-header h2 {
    top: 50%;
  }
}
@media only screen and (max-width: 1024px) {
  /* ==========================================================================
   Base
   ========================================================================== */
  body {
    overflow-x: hidden;
  }
  .is-open #container {
    overflow: hidden;
    -moz-transform: translateX(-245px);
    -ms-transform: translateX(-245px);
    -o-transform: translateX(-245px);
    -webkit-transform: translateX(-245px);
    transform: translateX(-245px);
  }
  /* ==========================================================================
   Header
   ========================================================================== */
  .report-header-icon.scrolling-icon {
    height: 37px;
    width: 37px;
  }
  #breadcrumb.scrolling-icon .article-nav-container {
    transform: translateX(0px);
  }
  .article-nav-container {
    position: absolute;
    top: 0px;
    right: 0px;
    display: block;
    font-size: 0;
  }
  .article-nav-container div {
    height: 37px;
    width: 37px;
    display: inline-block;
    background-image: url(/images/right.svg);
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
  }
  .article-nav-container .top-menu-btn {
    background-size: 20px;
    margin-right: 10px;
  }
  #header {
    height: 70px;
    padding: 15px 1em;
  }
  #header .inner-header {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #header .inner-header__left {
    max-width: 100%;
    width: auto;
    float: left;
    -webkit-box-flex: 0;
    -moz-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  #header .inner-header__top {
    width: 60%;
    float: right;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  #header .inner-header__bottom {
    display: none;
  }
  #header .inner-header .btn-phonemenu {
    display: block;
    position: relative;
    overflow: hidden;
    width: 34px;
    height: 28px;
  }
  #header .inner-header .btn-phonemenu:focus {
    outline: none;
  }
  #header .inner-header .btn-phonemenu span {
    display: block;
    position: absolute;
    top: 12px;
    left: 2px;
    right: 0;
    height: 3px;
    background: #000;
  }
  #header .inner-header .btn-phonemenu span::before,
  #header .inner-header .btn-phonemenu span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000;
    content: "";
  }
  #header .inner-header .btn-phonemenu span::before {
    top: 8px;
  }
  #header .inner-header .btn-phonemenu span::after {
    bottom: 8px;
  }
  #fp-nav li:nth-child(1) > a:before,
  .fp-sectionNav li:nth-child(1) > a:before {
    content: 'About \a REIM';
  }
  #fp-nav li:nth-child(2) > a:before,
  .fp-sectionNav li:nth-child(2) > a:before {
    content: 'About \a International \a Investments';
  }
  #fp-nav li:nth-child(3) > a:before,
  .fp-sectionNav li:nth-child(3) > a:before {
    content: 'About \a Residential \a Fund';
  }
  #fp-nav li:nth-child(4) > a:before,
  .fp-sectionNav li:nth-child(4) > a:before {
    content: 'About \a Retail \a Fund';
  }
  #fp-nav li:nth-child(5) > a:before,
  .fp-sectionNav li:nth-child(5) > a:before {
    content: 'About \a Office \a Fund';
  }
  /* ==========================================================================
   Helpers
   ========================================================================== */
  .searchbox {
    line-height: 1;
  }
  .searchbox .searchbox__submit.searchbox--btn {
    width: 2.4rem;
    height: 2.4rem;
    padding: 0;
    margin: 0;
    background-size: 1800%;
    background-position: 0.6% 99.2%;
  }
  .searchbox .searchbox__submit.searchbox--btn.is-waiting {
    width: 2.4rem;
    height: 2.4rem;
    background-position: 87.4% 69.3%;
  }
  .searchbox div:nth-child(2) {
    padding: 6px 7px 3px 7px;
  }
  .helpers li {
    vertical-align: middle;
  }
  .helpers .helpers__title,
  .helpers .helpers__corp {
    display: none;
  }
  .helpers .helpers__search {
    margin-right: 5%;
    top: auto;
  }
  /* ==========================================================================
   Breadcrumb
   ========================================================================== */
  .breadcrumb {
    padding: 5px 2.5%;
  }
  .breadcrumb > span {
    font-size: 2.2rem;
  }
  /* ==========================================================================
   Frontpage
   ========================================================================== */
  .fp-slides {
    padding-top: 70px;
  }
  .fp-slide--template-a,
  .fp-slide--template-b,
  .fp-slide--template-c {
    padding-left: 0;
    padding-top: 4.5rem;
  }
  .fp-slide__teaser {
    font-size: 17px;
    font-size: 1.7rem;
  }
  .fp-slide__title {
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 42px;
    line-height: 4.2rem;
  }
  .fp-slide__par {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 25px;
    line-height: 2.5rem;
  }
  .fp-slide__par--special {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
  }
  .fp-slide .fp-slide--template-c .fp-slide__teaser {
    font-size: 20px;
    font-size: 2rem;
  }
  .fp-slide .fp-slide--template-c .fp-slide__title {
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 42px;
    line-height: 4.2rem;
  }
  .fp-slide__columns {
    margin: 0 -1rem;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .fp-slide__columns--column {
    max-width: 20rem;
    width: 25%;
    margin: 0 1rem 3vh 1rem;
  }
  .section_intro {
    min-height: calc(100vh - 70px);
    text-align: center;
  }
  /* ==========================================================================
   Intro 
   ========================================================================== */
  .intro {
    margin-top: 70px;
  }
  .intro__left h1 {
    font-size: 72px;
    font-size: 7.2rem;
  }
  /* ==========================================================================
   Nav theme menu bottom
   ========================================================================== */
  .nav-theme ul {
    height: 45px;
  }
  .nav-theme ul li {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 7px 0;
    line-height: 33px;
    line-height: 3.3rem;
  }
  /* ==========================================================================
   Mobile nav
   ========================================================================== */
  .nav-mobile {
    padding-top: 40px;
    overflow: auto;
    width: 245px;
    background: #7B8A94;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    right: 0;
    z-index: 200;
    height: 100%;
    top: 0px;
    display: block;
    -moz-transform: translateX(245px);
    -ms-transform: translateX(245px);
    -o-transform: translateX(245px);
    -webkit-transform: translateX(245px);
    transform: translateX(245px);
  }
  .nav-mobile ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
  }
  .nav-mobile ul li {
    display: block;
  }
  .nav-mobile ul li > span {
    padding: 10px 15px;
    color: #FFF;
    display: block;
    border-bottom: 1px #89969f solid;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
  .nav-mobile ul li a {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px #89969f solid;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
  .nav-mobile ul li a:hover {
    color: #70305d;
  }
  .nav-mobile ul li li a {
    padding-left: 30px;
  }
  .nav-mobile.is-open {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  /* ==========================================================================
   Modals
   ========================================================================== */
  .modal-off {
    top: 70px !important;
    width: 87%;
  }
  .modal-on {
    left: 13%;
    top: 70px !important;
    width: 87%;
  }
  .modal-hidden {
    top: 70px;
  }
  #modal_slide3-2 > section.modal--pipeline {
    padding-left: 7%;
  }
  .modal__contentwrapper {
    padding: 6% 2% 6% 6%;
    overflow: auto;
    height: 90%;
  }
  .modal__contentwrapper.modal--video {
    padding: 2% 2% 6% 7%;
  }
  .modal__contentwrapper .modal__teaser {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .modal__contentwrapper .modal__img__desc {
    font-weight: 100;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .modal__contentwrapper h2 {
    color: #FFF;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .modal__contentwrapper p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 20px;
    line-height: 2rem;
  }
  #modal_slide0-1 {
    /*background-size: contain;

    background-image: url(/Images/ceo-bg.jpg), url(/Images/ceo-rep-bg.jpg);
    background-position: 40px 0, 40px 0;
    background-repeat: no-repeat, repeat-y;*/
  }
  .btn-download-selection,
  .btn-download-fullreport {
    margin-bottom: 5px !important;
    width: 100%;
  }
}
@media only screen and (max-width: 800px) {
  .toolBarHiddenIndicator,
  .toolBar {
    display: none !important;
  }
  /* ==========================================================================
   Layout
   ========================================================================== */
  body {
    overflow-x: hidden;
  }
  html.home-page,
  body.home-page {
    overflow-y: visible;
  }
  body.home-page .showheader {
    top: 0;
  }
  .worldmap {
    /*position: relative;
    background-image: none !important;
    padding-top: 1em;*/
    /*&:after {
        content: "";
        display: block;
        padding: 0 0 71% 0;
        background-image: url('/Images/worldmap/global/global.png');
        background-position: 0 1rem;
        background-repeat: no-repeat;
        background-size: contain;
    }

    &.map--europe:after       {background-image: url(/Images/worldmap/europe/europe.png);}
    &.map--asiapacific:after  {background-image: url(/Images/worldmap/asia/asia.png);}
    &.map--global:after       {background-image: url(/Images/worldmap/global/global.png);}
    &.map--northamerica:after {background-image: url(/Images/worldmap/northamerica/northamerica.png);}

    .accordion {
        top: 0;
    }*/
  }
  #container #content {
    width: 100%;
    height: 100%;
    float: left;
    position: relative;
    padding: 0;
    margin: 0 0 10px 0;
    overflow: hidden;
  }
  #container #content.showMobMenu .left-pane {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -o-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
  #container #content.showMobMenu .content-pane {
    -webkit-transform: translateX(275px);
    -moz-transform: translateX(275px);
    -o-transform: translateX(275px);
    -ms-transform: translateX(275px);
    transform: translateX(275px);
  }
  #container .left-pane {
    width: 275px;
    overflow: hidden;
    -webkit-transform: translateX(-275px);
    -moz-transform: translateX(-275px);
    -o-transform: translateX(-275px);
    -ms-transform: translateX(-275px);
    transform: translateX(-275px);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: absolute;
    z-index: 2;
  }
  #container .content-pane {
    width: 100%;
    float: left;
    position: relative;
    padding: 0 3%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  #container .content-pane.device-wide {
    width: 100%;
  }
  #container .center-pane {
    width: 100%;
    float: left;
    position: relative;
    margin: 0;
    padding: 0;
  }
  #container .center-pane article {
    padding: 20px 0 0 0;
  }
  #container .right-pane {
    width: 100%;
    float: left;
    padding-right: 0;
  }
  /* ==========================================================================
   Wide container
   ========================================================================== */
  #container.wide .page-options-container .rep-basket {
    width: 100%;
    border-right: solid 1px #83929b;
    padding-right: 0;
  }
  /* ==========================================================================
   Fund nav
   ========================================================================== */
  .fp-sectionNav {
    width: 20%;
  }
  .fp-sectionNav li > a:before {
    line-height: 1.2em;
    font-size: 15px;
    font-size: 1.5rem;
  }
  .fp-sectionNav li.active > span {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .fp-sectionNav li.active > span a:before {
    content: 'go directly to \A annual report';
    display: inline-block;
    text-transform: uppercase;
    white-space: pre;
    line-height: 15px;
  }
  /* ==========================================================================
   Intro (world map)
   ========================================================================== */
  .intro {
    margin-top: 70px;
    display: block;
  }
  .intro__left {
    width: 100%;
    display: inherit;
  }
  .intro__left .intro__left__top {
    padding: 2% 5%;
    /*background: @color2;*/
    height: auto;
    position: static;
  }
  .intro__left .intro__left__top > header {
    position: relative;
    top: 10%;
  }
  .intro__left .intro__left__bottom {
    /*background: @color-universal;*/
    padding: 2% 5%;
    text-align: right;
    height: auto;
    position: relative;
  }
  .intro__left .intro__left__bottom .btn-chairman {
    text-decoration: none;
    color: #FFF;
    font-size: 18px;
    font-size: 1.8rem;
    position: relative;
    top: 35%;
    padding-right: 30px;
    display: inherit;
  }
  .intro__left .intro__left__bottom .btn-chairman:after {
    content: '';
    background: url(/images/sprites/sprite.svg) 0 0 no-repeat;
    background-position: 91.8363643% 53.81023977%;
    width: 11.51px;
    height: 29.26px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -13.63px;
  }
  .intro__left .intro__left__bottom .btn-chairman:hover {
    text-shadow: 0 3px 3px #000000;
  }
  .intro__right {
    width: 100%;
    display: block;
    overflow: hidden;
  }
  .intro__right > img {
    width: 100%;
    display: block;
  }
  /* ==========================================================================
   Slide templates
    A = block left text, block right picture
    B = Triple image
   ========================================================================== */
  .fp-slide--template-a,
  .fp-slide--template-b,
  .fp-slide--template-c {
    padding-left: 0;
    padding-top: 4.5rem;
  }
  .fp-slide .fp-slide__divider--left {
    float: left;
    width: 100%;
    padding: 3%;
  }
  .fp-slide .fp-slide__divider--right {
    float: left;
    width: 100%;
  }
  .fp-slide .fp-slide__divider--right img {
    width: 100%;
    max-width: 100%;
    display: block;
  }
  .fp-slide__columns {
    margin: 0 -1rem;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .fp-slide__columns--column {
    width: 50%;
    margin: 0 1rem 5vh 1rem;
  }
  .section_intro-showcontent {
    bottom: 2rem;
  }
  .section_intro-showcontent-btn {
    padding: 1.1rem;
    font-size: 12px;
  }
  /* ==========================================================================
   Report header
   ========================================================================== */
  .report-header-icon {
    height: 150px;
    width: 150px;
    bottom: -150px;
  }
  .report-header-icon.scrolling-icon {
    height: 37px;
    width: 37x;
  }
  .report-header {
    height: 150px;
    background: #dee3e7 !important;
  }
  .report-header .report-header-title {
    width: 70%;
  }
  .report-header h2 {
    font-size: 2em;
    font-weight: 700;
  }
  /* ==========================================================================
   Main navigation
   ========================================================================== */
  nav#navigation {
    width: 70%;
  }
  nav#navigation .nav {
    float: right;
  }
  nav#navigation .nav li.selected a,
  nav#navigation .nav li.home-selected a {
    width: 48px;
    max-width: none;
  }
  nav#navigation .nav li.selected a span,
  nav#navigation .nav li.home-selected a span {
    display: none;
  }
  nav#navigation .nav li a:hover {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
    max-width: none;
  }
  nav#navigation .nav li a:hover span {
    display: none;
  }
  /* ==========================================================================
   Report basket / Page options
   ========================================================================== */
  .right-pane .page-options-container .po-add-wrapper {
    padding: 0;
    width: 100%;
  }
  /* ==========================================================================
   My report page
   ========================================================================== */
  body.refMyReport .report-item {
    width: 100%;
    float: left;
    margin: 0 0 30px 0;
  }
  /* ==========================================================================
   Dashboard page
   ========================================================================== */
  .dshb-section {
    padding: 10px 0 0 0;
  }
  .dshb-section div {
    margin-bottom: 40px;
  }
  .dshb-section.highlights:before {
    display: none;
  }
  .dshb-section .floatbox {
    float: none;
    width: 100%;
    padding: 0;
  }
  .dshb-section .floatbox.floatbox {
    padding: 0 0 0 70px;
  }
  .dshb-section .floatbox.kfigraph {
    width: 100%;
  }
  .dshb-section .floatbox.kfipiechart {
    padding-left: 20px;
  }
  .dshb-section .floatbox.kfitable {
    width: 100%;
    padding-right: 0;
  }
  .refEUMan #container .content-pane,
  .refNAMan #container .content-pane,
  .refAPMan #container .content-pane {
    padding: 0 20px;
  }
  /* ==========================================================================
   Breadcrumb
   ========================================================================== */
  .breadcrumb > span {
    font-size: 14px;
    font-size: 1.4rem;
  }
  /* ==========================================================================
   <article>.article 
   ========================================================================== */
  .article h1 {
    max-width: 100%;
  }
  .article .back-to-top {
    background-position: 96.9348659% 81.34558824%;
    width: 26px;
    height: 10px;
  }
  .article .back-to-top:hover {
    background-position: 96.9348659% 81.34558824%;
    width: 26px;
    height: 10px;
  }
  /* ==========================================================================
   Footer
   ========================================================================== */
  #footer {
    margin: 20px 0 0 0;
    padding-top: 20px;
    float: left;
    width: 100%;
  }
  #footer .footer-contact {
    float: left;
    text-align: left;
    margin-top: 20px;
    border-top: solid 1px #83929b;
    width: 100%;
    padding-top: 10px;
  }
  /* ==========================================================================
   Homepage
   ========================================================================== */
  .slide-template-a,
  .slide-template-b {
    margin: 0 5% 0 13%;
  }
  .slide-template-a .st-title,
  .slide-template-b .st-title {
    font-size: 67px;
    font-size: 6.7rem;
  }
  .slide-template-a .st-par,
  .slide-template-b .st-par {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 35px;
    line-height: 3.5rem;
    width: 100%;
    float: none;
  }
  .slide-template-a .lb-image,
  .slide-template-b .lb-image {
    float: left;
    margin: 0 10px 10px 0;
  }
  .slide-template-a .sta-quote,
  .slide-template-b .sta-quote {
    margin-top: 20px;
    width: 100%;
    float: none;
  }
  .slide-template-b .st-columns .st-column {
    width: 32%;
    margin: 0;
  }
  /* ==========================================================================
   Sticky Article Navigation
   ========================================================================== */
  .wide .center-pane .sticky-article-nav {
    right: 0;
  }
  .wide .center-pane .sticky-wrapper {
    display: initial;
  }
  .wide .center-pane .sticky-wrapper.moved-second .sticky-article-nav {
    right: 3%;
  }
  .center-pane.moved-second .sticky-article-nav {
    width: 100%;
    left: 0;
    z-index: 98;
  }
  .center-pane .sticky-article-nav {
    width: 107%;
    left: -3.5%;
    height: 40px;
    right: auto;
    top: 0;
    z-index: 98;
  }
  body.refREIM .center-pane .sticky-article-nav {
    background: #421542;
  }
  body.refResidentialFund .center-pane .sticky-article-nav {
    background: #678b6b;
  }
  body.refRetailFund .center-pane .sticky-article-nav {
    background: #998992;
  }
  body.refOfficeFund .center-pane .sticky-article-nav {
    background: #d5ac48;
  }
  .center-pane .sticky-article-nav .menu-btn {
    float: left;
    color: #FFF;
    display: block;
    margin: 0;
    position: relative;
    top: 9px;
    left: 3.5%;
    background-position: 10.64638783% 91.12765627%;
    width: 24px;
    height: 24.12px;
  }
  .center-pane .sticky-article-nav ul {
    margin: 8px 3.5% 0 0;
    padding: 0;
    z-index: 999;
    float: right;
  }
  .center-pane .sticky-article-nav ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
  }
  .center-pane .sticky-article-nav ul li a {
    background-color: transparent !important;
  }
  .center-pane .sticky-article-nav ul li a.prev {
    background-position: 95.49097473% 53.125%;
    width: 10px;
    height: 26px;
    margin: 0 15px 0 0;
  }
  .center-pane .sticky-article-nav ul li a.prev:hover {
    background-position: 95.49097473% 53.125%;
    width: 10px;
    height: 26px;
  }
  .center-pane .sticky-article-nav ul li a.next {
    background-position: 99.10108303% 53.125%;
    width: 10px;
    height: 26px;
  }
  .center-pane .sticky-article-nav ul li a.next:hover {
    background-position: 99.10108303% 53.125%;
    width: 10px;
    height: 26px;
  }
  /* ==========================================================================
   Tables
   ========================================================================== */
  .table-container {
    overflow-x: scroll;
  }
  /* ==========================================================================
   Modals
   ========================================================================== */
  .nav-theme .nav-theme--intro {
    display: none;
  }
  .modal-off {
    left: calc(100% - 40px);
    top: 70px !important;
    width: 80%;
  }
  .modal-on {
    left: 20%;
    top: 70px !important;
    width: 80%;
  }
  .modal-hidden {
    top: 70px;
  }
  #modal_slide0-1 {
    /*background-size: contain;

    background-image: url(/Images/ceo-bg.jpg), url(/Images/ceo-rep-bg.jpg);
    background-position: 40px 0, 40px 0;
    background-repeat: no-repeat, repeat-y;*/
  }
  #modal_slide0-1.modal-on {
    left: 0;
    top: 70px;
    width: 100% !important;
    padding: 2% 2% 12% 5%;
  }
  #modal_slide0-1.modal-off {
    width: 100% !important;
    top: 70px;
    left: calc(100%);
  }
  #modal_slide0-1.modal-hidden {
    top: 70px;
    width: 100% !important;
  }
  #modal_slide1-1 {
    background-color: #421542;
  }
  #modal_slide2-1 {
    background-color: #35597e;
  }
  #modal_slide3-1 {
    background-color: #678b6b;
  }
  #modal_slide4-1 {
    background-color: #998992;
  }
  #modal_slide5-1 {
    background-color: #d5ac48;
  }
  .modal__contentwrapper {
    padding: 7%;
  }
  .modal__contentwrapper.modal--interview .modal__content {
    height: auto;
  }
  .modal__contentwrapper.modal--interview .modal__imgwrapper {
    height: auto;
    width: 100%;
  }
  .modal__contentwrapper .modal__teaser {
    font-size: 20px;
    font-size: 2rem;
  }
  .modal__contentwrapper .modal__content {
    width: 100%;
    float: left;
    margin-right: 0;
  }
  .modal__contentwrapper .modal__imgwrapper {
    float: left;
    width: 45%;
  }
  .modal__contentwrapper .modal__imgwrapper img {
    width: 100%;
  }
  .modal__contentwrapper .modal__img__desc {
    font-weight: 100;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .modal__contentwrapper h2 {
    color: #FFF;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .modal__contentwrapper p {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 18px;
    line-height: 1.8rem;
  }
  .table {
    width: 100%;
    margin-bottom: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table > .table {
    margin-bottom: 0;
  }
  .table > .table > thead > tr > th,
  .table > .table > tbody > tr > th,
  .table > .table > tfoot > tr > th,
  .table > .table > thead > tr > td,
  .table > .table > tbody > tr > td,
  .table > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table > .table-bordered {
    border: 0;
  }
  .table > .table-bordered > thead > tr > th:first-child,
  .table > .table-bordered > tbody > tr > th:first-child,
  .table > .table-bordered > tfoot > tr > th:first-child,
  .table > .table-bordered > thead > tr > td:first-child,
  .table > .table-bordered > tbody > tr > td:first-child,
  .table > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table > .table-bordered > thead > tr > th:last-child,
  .table > .table-bordered > tbody > tr > th:last-child,
  .table > .table-bordered > tfoot > tr > th:last-child,
  .table > .table-bordered > thead > tr > td:last-child,
  .table > .table-bordered > tbody > tr > td:last-child,
  .table > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table > .table-bordered > tbody > tr:last-child > th,
  .table > .table-bordered > tfoot > tr:last-child > th,
  .table > .table-bordered > tbody > tr:last-child > td,
  .table > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
  #breadcrumb.scrolling-icon .article-nav-container {
    transform: translateX(0px);
  }
  .article-nav-container {
    text-align: left;
    width: 158px;
  }
  .article-nav-container .top-menu-btn {
    display: inline-block;
    margin-right: 5px;
  }
}
@media only screen and (max-width: 480px) {
  .searchbox fieldset {
    width: 100% !important;
  }
  .worldmap-list {
    width: 80%;
    top: 10px;
    right: 10px;
  }
  /* ==========================================================================
   hiding elements for phone only
   ========================================================================== */
  #menu,
  .home-page video,
  #fullpage,
  .toolBar {
    display: none;
  }
  /* ==========================================================================
   remove background images for phone
   ========================================================================== */
  #section0 div,
  #section1 div,
  #section2 div,
  #section3 div,
  #section4 div,
  #section5 div {
    background: none !important;
  }
  /* ==========================================================================
   Layout
   ========================================================================== */
  .home-page #footer {
    display: none;
  }
  #framework #container .content-pane {
    width: 100%;
    float: left;
    position: relative;
    padding: 0 3%;
  }
  #framework #container .content-pane.device-wide {
    width: 100%;
  }
  #framework #container .center-pane {
    width: 100%;
    float: left;
    position: relative;
    margin: 0;
  }
  #framework #container .right-pane {
    width: 100%;
    float: left;
    position: relative;
    overflow: hidden;
    padding: 10px 0 0 0;
  }
  /* ==========================================================================
   Header
   ========================================================================== */
  #header {
    height: 60px;
    overflow: inherit;
  }
  #header .inner-header__left {
    width: 40%;
  }
  #header .inner-header__left .company-logo img {
    width: 160px;
    height: 38px;
  }
  #header .inner-header__top {
    width: 58%;
    position: initial;
  }
  #header .inner-header__bottom {
    width: 60%;
  }
  .center-pane .sticky-article-nav {
    width: 107%;
    height: 40px;
    right: auto;
    left: -3.5%;
    top: 0;
  }
  .center-pane .sticky-article-nav ul {
    margin: 8px 3% 0 0;
    padding: 0;
  }
  .center-pane .sticky-article-nav .menu-btn {
    left: 4%;
  }
  .center-pane .sticky-wrapper {
    display: initial;
  }
  .center-pane .sticky-wrapper.moved-second .sticky-article-nav {
    left: 0;
    width: 100%;
  }
  /* ==========================================================================
   Helpers
   ========================================================================== */
  .helpers {
    width: 100%;
    float: right;
    list-style: none;
    margin: 0;
    padding: 0;
    height: auto;
    position: initial;
  }
  .helpers li {
    text-align: right;
  }
  .helpers li.helpers__title,
  .helpers li.helpers__corp {
    display: none !important;
  }
  .helpers li.helpers__search {
    float: none;
    margin: 0;
    width: auto;
    position: initial;
  }
  .helpers li:after {
    display: none !important;
  }
  .helpers li a {
    text-decoration: none !important;
    color: #768a96;
    font-size: 14px;
    font-size: 1.4rem;
    width: 100%;
    display: block;
  }
  .helpers li a:hover {
    color: #000;
  }
  /* ==========================================================================
   Searchbox
   ========================================================================== */
  .searchbox {
    width: 100%;
    padding: 0 10px 0 0;
    text-align: right;
    position: static;
  }
  .searchbox .searchbox__input {
    position: absolute;
    top: 59px;
    right: 0;
    height: 40px;
    border-top: 1px #7B8A94 solid;
    border-bottom: 1px #7B8A94 solid;
    opacity: 0;
    -moz-transition: 0.3s height, 0.3s opacity;
    -o-transition: 0.3s height, 0.3s opacity;
    -webkit-transition: 0.3s height, 0.3s opacity;
    transition: 0.3s height, 0.3s opacity;
    outline: 0;
    padding: 0 10px;
  }
  .searchbox .searchbox__input.is-visible {
    display: block;
    width: 100%;
    opacity: 1;
  }
  .searchbox .searchbox__submit {
    border: none;
    cursor: pointer;
    color: #fff;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0;
    background-color: transparent;
    background-position: 0 99.65896173%;
    width: 17.7px;
    height: 18.1px;
    outline: 0;
    padding: 0;
  }
  .searchbox div:nth-child(2).is-waiting {
    background: none;
  }
  /* ==========================================================================
   Report header
   ========================================================================== */
  .report-header-icon {
    height: 37px;
    width: 37px;
    top: 0px;
  }
  .report-header {
    height: 0;
    display: none;
  }
  .report-header h2 {
    padding: 0;
    font-size: 2em;
  }
  body.refREIM .report-header {
    background: none;
  }
  body.refResidentialFund .report-header {
    background: none;
  }
  body.refRetailFund .report-header {
    background: none;
  }
  body.refOfficeFund .report-header {
    background: none;
  }
  /* ==========================================================================
   My report page
   ========================================================================== */
  body.refMyReport .report-item .report-selection {
    width: 100%;
  }
  body.refMyReport .report-item .report-selection .btn-download-selection,
  body.refMyReport .report-item .report-selection .btn-download-fullreport {
    display: block;
    margin: 0 0 20px 0;
  }
  /* ==========================================================================
   Main navigation
   ========================================================================== */
  nav#navigation {
    min-height: initial;
    margin: 15px 0 0 0;
    float: none;
    clear: both;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    overflow: hidden;
    max-height: 0;
    width: 100%;
  }
  nav#navigation.active {
    max-height: 350px;
  }
  nav#navigation .nav {
    margin: 0;
    padding: 0;
    position: relative;
    float: none;
  }
  nav#navigation .nav li {
    color: #000;
    display: inline;
    position: relative;
  }
  nav#navigation .nav li.selected a,
  nav#navigation .nav li.home-selected a {
    width: 100% !important;
  }
  nav#navigation .nav li.selected a span.fund-variant,
  nav#navigation .nav li.home-selected a span.fund-variant {
    display: block;
  }
  nav#navigation .nav li a {
    float: none;
    padding: 0;
    max-width: initial;
    height: 48px;
    background: #bbb;
    border-bottom: solid 1px #333;
  }
  nav#navigation .nav li a:hover {
    background: #ccc;
  }
  nav#navigation .nav li a span {
    display: none;
  }
  nav#navigation .nav li a span.fund-variant {
    display: block;
    text-align: center;
    padding: 15px 0 0 20px;
    font-weight: 400;
    color: #FFF;
    text-align: left;
    font-size: 17px;
    font-size: 1.7rem;
    text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
  }
  nav#navigation .nav li a:before {
    display: none;
  }
  /* ==========================================================================
   Thema navigatie
   ========================================================================== */
  .nav-theme {
    display: none;
  }
  #container .right-pane {
    /* ==========================================================================
       Page options
       ========================================================================== */
    /* ==========================================================================
       Related sidebar
       ========================================================================== */
  }
  #container .right-pane .page-options-container {
    width: 100%;
  }
  #container .right-pane .page-options-container .rep-basket {
    width: 100%;
    border-right: 0;
    padding: 0;
  }
  #container .right-pane .page-options-container .rep-basket .po-add-wrapper {
    display: block;
    padding: 0 0 0 60px;
  }
  #container .right-pane .related-sidebar {
    width: 100%;
    padding: 0;
    border-bottom: solid 1px #83929b;
    border-left: solid 0 #83929b;
  }
  #container .right-pane .related-sidebar:first-child {
    padding: 0;
  }
  #container .right-pane .side-navi {
    border-left: solid 0 #83929b;
    width: 100%;
    padding: 0;
  }
  /* ==========================================================================
   Downloads page
   ========================================================================== */
  .downloadlist dt,
  .downloadlist dd {
    min-height: 25px;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  /* ==========================================================================
   Article
   ========================================================================== */
  .article-wrapper {
    padding: 4% 13%;
  }
  /* ==========================================================================
   Dashboard page
   ========================================================================== */
  .dshb-section {
    margin-bottom: 0;
  }
  .dshb-section .btn-portfolio,
  .dshb-section .btn-keyinfo {
    margin-bottom: 10px;
    width: 100%;
    margin-right: 0;
  }
  .dshb-section ul,
  .fsi-ResFundHierarchical-CSRKeyData article > div ul  {
    margin: 0 0 20px 0;
    padding: 0 0 0 5px;
  }
  .dshb-section ul li,
  .fsi-ResFundHierarchical-CSRKeyData article > div ul  li {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .dshb-section ul li:before,
  .fsi-ResFundHierarchical-CSRKeyData article > div ul  li:before {
    top: -2px;
  }
  .dshb-section .floatbox.floatbox {
    padding: 0;
  }
  .dshb-section .floatbox.csr-left,
  .dshb-section .floatbox.csr-right {
    width: 100%;
    margin: 0;
  }
  .dshb-section .floatbox.csr-left {
    margin: 0 0 20px 0;
  }
  .dshb-section .floatbox.performance:before,
  .dshb-section .floatbox.balance:before,
  .dshb-section .floatbox.result:before,
  .dshb-section .floatbox.fundreturn:before,
  .dshb-section .floatbox.speedometer:before,
  .dshb-section .floatbox.units:before,
  .dshb-section .floatbox.allocations:before,
  .dshb-section .floatbox.building:before,
  .dshb-section .floatbox.listed:before {
    display: none;
  }
  /* ==========================================================================
   Footer
   ========================================================================== */
  #footer {
    float: left !important;
  }
  #footer .footer-contact {
    float: left;
    text-align: left;
    margin-top: 20px;
    border-top: solid 1px #83929b;
    width: 100%;
    padding-top: 10px;
  }
  /* ==========================================================================
   Home intro
   ========================================================================== */
  .phone-intro .inner-intro {
    padding: 80px 5px 0 5px;
  }
  .phone-intro .inner-intro h1 {
    color: #70305d;
    font-weight: 600;
    font-size: 36px;
    font-size: 3.6rem;
    line-height: normal;
    padding: 0 0 0 8%;
  }
  .phone-intro .inner-intro h1 span {
    font-weight: 100;
    color: #008fc6;
  }
  .phone-intro .inner-intro ul {
    margin: 20px 0 0 0;
    padding: 0 0 0 8%;
  }
  .phone-intro .inner-intro ul li {
    margin: 25px 0;
    padding: 0;
    list-style: none;
  }
  .phone-intro .inner-intro ul li a {
    color: #fff;
    padding: 10px;
    text-decoration: none;
    border-radius: 4px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
    -moz-transition-property: left;
    -o-transition-property: left;
    -webkit-transition-property: left;
    transition-property: left;
    -moz-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    position: relative;
    left: 0;
  }
  .phone-intro .inner-intro ul li a:before {
    content: '> ';
  }
  .phone-intro .inner-intro ul li a:hover {
    left: 5px;
  }
  .phone-intro .inner-intro ul li a.ph-reim {
    background: #421542;
  }
  .phone-intro .inner-intro ul li a.ph-residential {
    background: #678b6b;
  }
  .phone-intro .inner-intro ul li a.ph-retail {
    background: #998992;
  }
  .phone-intro .inner-intro ul li a.ph-office {
    background: #d5ac48;
  }
  .phone-intro .inner-intro ul li a.ph-international {
    background: #35597e;
  }
  /* ==========================================================================
   Chart generator
   ========================================================================== */
  .chart-wrapper .chart-bottom .chart-categorybox {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .chart-wrapper .chart-bottom .chart-toolbox {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .chart-wrapper .chart-bottom .chart-toolswrapper {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  /* ==========================================================================
   Section backgrounds
   ========================================================================== */
  #section1 #slide1-3 {
    background: none;
  }
  #section2 #slide2-3 {
    background: none;
  }
  #section3 #slide3-3 {
    background: none;
  }
  #section4 #slide4-3 {
    background: none;
  }
  #section5 #slide5-3 {
    background: none;
  }
  .fp-slide--template-b .fp-slide__columns .fp-slide__columns--column,
  .fp-slide--template-c .fp-slide__columns .fp-slide__columns--column {
    width: 100%;
    margin: 0 0 3rem 0;
  }
}
@media only screen and (min-width: 1601px) {
  /* ==========================================================================
   Intro 
   ========================================================================== */
  .intro__left .intro__left__bottom {
    padding: 10% 10% 10% 0;
  }
  .intro__left .intro__left__bottom .btn-chairman {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 27px;
    line-height: 2.7rem;
  }
  .intro__left h1 {
    font-size: 110px;
    font-size: 11rem;
  }
  /* ==========================================================================
   Header
   ========================================================================== */
  #header {
    /*max-width: 1920px;*/
  }
  /* ==========================================================================
   aside
   ========================================================================== */
  #container .right-pane .socialshares {
    display: none;
  }
  /* ==========================================================================
   Slide templates
    A = block left text, block right picture
    B = Triple image
   ========================================================================== */
  .fp-slide__teaser {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .fp-slide__par {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 28px;
    line-height: 2.8rem;
  }
  /* ==========================================================================
   Modal content
   ========================================================================== */
  /*.modal__contentwrapper {

    .modal__teaser {
        .font-size(16);
    }

    .modal__title {
        .font-size(46);
        .line-height(54);
    }
}*/
}
@media only screen and (min-width: 1919px) {
  /* ==========================================================================
   World map 
   ========================================================================== */
  .worldmap {
    background-size: cover;
  }
}
