
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_fce872d61634a4a8e4d6a071.woff')format("woff");}.ff1{font-family:ff1;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f48818474e0ad8121db66cbc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_27bfa35ffbe9afdb7e904d87.woff')format("woff");}.ff3{font-family:ff3;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_25f58d3e32e15fcc630e9f7b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.935571;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7335d852b91c349aa0a01823.woff')format("woff");}.ff5{font-family:ff5;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3bb44c7d2836306e13850b29.woff')format("woff");}.ff6{font-family:ff6;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4c44e2e2b25c087d29832ea7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cfc4a52015edb6c951f731b6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d94d1b1dd46d36ec3695c912.woff')format("woff");}.ff9{font-family:ff9;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fb6c6c2f47e0987714f61dba.woff')format("woff");}.ffa{font-family:ffa;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_893d76c5c4e099de527e33f8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_acba9a680e5ed48c7e30492d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_446200c079334de0d2f65306.woff')format("woff");}.ffd{font-family:ffd;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1b0db0b033504dcbbbbd82d1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_893d76c5c4e099de527e33f8.woff')format("woff");}.fff{font-family:fff;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1b0db0b033504dcbbbbd82d1.woff')format("woff");}.ff10{font-family:ff10;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_adb63c97a084d5b874c6a7a2.woff')format("woff");}.ff11{font-family:ff11;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_430d428627f6787f96d2146b.woff')format("woff");}.ff12{font-family:ff12;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_e8f182263f901ce433079b78.woff')format("woff");}.ff13{font-family:ff13;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_acba9a680e5ed48c7e30492d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_f270587f1f241357cea55a62.woff')format("woff");}.ff15{font-family:ff15;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_e8f182263f901ce433079b78.woff')format("woff");}.ff16{font-family:ff16;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_9fc9e5755f71936467ccbe02.woff')format("woff");}.ff17{font-family:ff17;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_e8f182263f901ce433079b78.woff')format("woff");}.ff18{font-family:ff18;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_2924601be180b3c550400ade.woff')format("woff");}.ff19{font-family:ff19;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_5a1f9e9aa5e9dc521bedea83.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_e8f182263f901ce433079b78.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_dc1a0b35e8a46e36aea834dd.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_2924601be180b3c550400ade.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_e8f182263f901ce433079b78.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_e9dbc578d74f844905900543.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_2924601be180b3c550400ade.woff')format("woff");}.ff20{font-family:ff20;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_e8f182263f901ce433079b78.woff')format("woff");}.ff21{font-family:ff21;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_1b0db0b033504dcbbbbd82d1.woff')format("woff");}.ff22{font-family:ff22;line-height:0.895000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_adb63c97a084d5b874c6a7a2.woff')format("woff");}.ff23{font-family:ff23;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_f75a85c36cedcd209bf34c39.woff')format("woff");}.ff24{font-family:ff24;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_e8f182263f901ce433079b78.woff')format("woff");}.ff25{font-family:ff25;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_acba9a680e5ed48c7e30492d.woff')format("woff");}.ff26{font-family:ff26;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_d945198ac5154f72a165bed7.woff')format("woff");}.ff27{font-family:ff27;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_e8f182263f901ce433079b78.woff')format("woff");}.ff28{font-family:ff28;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_c582e648044410b6ba12efad.woff')format("woff");}.ff29{font-family:ff29;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_7313049964c91e4a34fdfae8.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_9f88fec4ff0067a8bf17fae9.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_d945198ac5154f72a165bed7.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_5a5e1d5158c4586d841f4b70.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_446200c079334de0d2f65306.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_708a58a1b5d4b6ce9b1fa851.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_02bf0adacfb96cd0535ddedb.woff')format("woff");}.ff30{font-family:ff30;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_4d35bc63050aca89d615f752.woff')format("woff");}.ff31{font-family:ff31;line-height:0.921614;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_a0e3aa447dd58a8962ab901f.woff')format("woff");}.ff32{font-family:ff32;line-height:0.734375;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_a4cb8d536cbfd7d41dea2a89.woff')format("woff");}.ff33{font-family:ff33;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_9ea8a82336f57b86c82bc9a5.woff')format("woff");}.ff34{font-family:ff34;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_52007f8ec772047e548c2a31.woff')format("woff");}.ff35{font-family:ff35;line-height:0.921614;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_37623e5a7c0275b774fa9eb1.woff')format("woff");}.ff36{font-family:ff36;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_c3d340587630bfe91ae43f37.woff')format("woff");}.ff37{font-family:ff37;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_f632783da3d085cf86a8a44b.woff')format("woff");}.ff38{font-family:ff38;line-height:0.840000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_e6a097b452d851c0ef1257bb.woff')format("woff");}.ff39{font-family:ff39;line-height:0.921614;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_6b961ddd3aec81802d3e55d6.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.905143;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_c3d340587630bfe91ae43f37.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_f632783da3d085cf86a8a44b.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.840000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_67c2b0459d3021620144fc2e.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.954140;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_a80f2fc2b287eaa3e975477e.woff')format("woff");}.ff3e{font-family:ff3e;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_a2c17086c75f9c8b30b50a4c.woff')format("woff");}.ff3f{font-family:ff3f;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_634bdf1e30e9a9063868b8b6.woff')format("woff");}.ff40{font-family:ff40;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_d00a1c702836c28ede70fba9.woff')format("woff");}.ff41{font-family:ff41;line-height:0.954140;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_a80f2fc2b287eaa3e975477e.woff')format("woff");}.ff42{font-family:ff42;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_6303cd2a9746487778a66b4d.woff')format("woff");}.ff43{font-family:ff43;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_634bdf1e30e9a9063868b8b6.woff')format("woff");}.ff44{font-family:ff44;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_67c2b0459d3021620144fc2e.woff')format("woff");}.ff45{font-family:ff45;line-height:0.954140;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_a80f2fc2b287eaa3e975477e.woff')format("woff");}.ff46{font-family:ff46;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_4cbf9873deff2d0196b5b452.woff')format("woff");}.ff47{font-family:ff47;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_3911f368ca4496df016295cb.woff')format("woff");}.ff48{font-family:ff48;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_631f396c89b9a0826c5c9766.woff')format("woff");}.ff49{font-family:ff49;line-height:0.943526;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_2fb44734b1044f84d6a2deef.woff')format("woff");}.ff4a{font-family:ff4a;line-height:0.905143;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_10ca8136502f54f8ea90c648.woff')format("woff");}.ff4b{font-family:ff4b;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_0bb7369b28c5afa2629bf391.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_5b255fa6355cf47d0e2acfa1.woff')format("woff");}.ff4d{font-family:ff4d;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_089a00634408938478bcfe71.woff')format("woff");}.ff4e{font-family:ff4e;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_261ce69dc8971f15c6b796a5.woff')format("woff");}.ff4f{font-family:ff4f;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_d496904233103d0901f1d5ab.woff')format("woff");}.ff50{font-family:ff50;line-height:0.903000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_e1ec53ccd91ec7aebe5fe6c3.woff')format("woff");}.ff51{font-family:ff51;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.156358,-0.195070,0.195070,0.156358,0,0);-ms-transform:matrix(0.156358,-0.195070,0.195070,0.156358,0,0);-webkit-transform:matrix(0.156358,-0.195070,0.195070,0.156358,0,0);}
.m3{transform:matrix(0.223947,0.111120,-0.111120,0.223947,0,0);-ms-transform:matrix(0.223947,0.111120,-0.111120,0.223947,0,0);-webkit-transform:matrix(0.223947,0.111120,-0.111120,0.223947,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-407.662135px;}
.wse{word-spacing:-371.600129px;}
.wsa{word-spacing:-350.790522px;}
.wsd{word-spacing:-278.924853px;}
.ws3{word-spacing:-263.305061px;}
.ws9{word-spacing:-244.769384px;}
.wsc{word-spacing:-209.198870px;}
.ws2{word-spacing:-197.483733px;}
.wsb{word-spacing:-115.794077px;}
.ws1{word-spacing:-109.309609px;}
.wsf{word-spacing:-97.789631px;}
.ws14{word-spacing:-85.191482px;}
.ws4{word-spacing:-73.455790px;}
.ws21{word-spacing:-71.407561px;}
.ws10{word-spacing:-56.901868px;}
.ws1f{word-spacing:-56.401380px;}
.ws8{word-spacing:-54.593140px;}
.ws17{word-spacing:-54.172258px;}
.ws16{word-spacing:-47.873158px;}
.ws20{word-spacing:-42.673707px;}
.ws1b{word-spacing:-41.536169px;}
.ws15{word-spacing:-41.462998px;}
.ws5{word-spacing:-41.329700px;}
.ws6{word-spacing:-40.147381px;}
.ws1c{word-spacing:-39.543660px;}
.ws12{word-spacing:-38.696131px;}
.ws13{word-spacing:-38.057577px;}
.ws1e{word-spacing:-35.828907px;}
.ws11{word-spacing:-32.518580px;}
.ws18{word-spacing:-28.610825px;}
.ws1a{word-spacing:-27.495672px;}
.ws19{word-spacing:-27.435124px;}
.ws0{word-spacing:0.000000px;}
.ws1d{word-spacing:3146.907650px;}
._8{margin-left:-3903.583628px;}
._0{margin-left:-20.081068px;}
._1{margin-left:-16.774710px;}
._7{margin-left:-14.415039px;}
._2{margin-left:-12.133325px;}
._3{margin-left:-8.598708px;}
._9{margin-left:-3.370428px;}
._6{margin-left:-1.644760px;}
._b{width:1.268328px;}
._a{width:2.941204px;}
._5{width:4.599548px;}
._c{width:9.021117px;}
._4{width:12.464300px;}
.fca{color:rgb(107,177,173);}
.fc8{color:rgb(65,76,138);}
.fc6{color:rgb(71,73,141);}
.fc4{color:rgb(112,48,160);}
.fc3{color:rgb(27,100,119);}
.fc7{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc5{color:rgb(130,118,175);}
.fc1{color:transparent;}
.fc9{color:rgb(75,85,145);}
.fc0{color:rgb(76,69,143);}
.fs2c{font-size:87.614992px;}
.fs27{font-size:91.305001px;}
.fs29{font-size:105.574999px;}
.fs2a{font-size:106.337691px;}
.fs2b{font-size:106.572373px;}
.fs3{font-size:111.090692px;}
.fs23{font-size:117.657384px;}
.fs1b{font-size:119.994759px;}
.fs3b{font-size:122.482952px;}
.fs28{font-size:123.645073px;}
.fs32{font-size:132.209990px;}
.fs2d{font-size:135.269990px;}
.fs2{font-size:143.999994px;}
.fs24{font-size:145.304998px;}
.fs1f{font-size:147.509990px;}
.fs1d{font-size:149.985003px;}
.fs25{font-size:152.999994px;}
.fs2f{font-size:153.260303px;}
.fs2e{font-size:153.269998px;}
.fs10{font-size:155.610003px;}
.fse{font-size:155.626673px;}
.fs37{font-size:157.721463px;}
.fs31{font-size:159.702944px;}
.fsf{font-size:160.192635px;}
.fsd{font-size:160.199984px;}
.fs1c{font-size:161.167522px;}
.fs1e{font-size:161.999993px;}
.fs39{font-size:165.401964px;}
.fs3a{font-size:167.889682px;}
.fs33{font-size:167.985002px;}
.fs17{font-size:171.389410px;}
.fsb{font-size:178.555921px;}
.fsc{font-size:178.559993px;}
.fs18{font-size:201.039256px;}
.fs1a{font-size:201.040504px;}
.fs0{font-size:209.969991px;}
.fs12{font-size:211.601318px;}
.fs13{font-size:211.611181px;}
.fs38{font-size:218.610000px;}
.fs8{font-size:231.588155px;}
.fs16{font-size:242.414985px;}
.fs7{font-size:242.431158px;}
.fs35{font-size:261.629985px;}
.fs22{font-size:269.999989px;}
.fs21{font-size:281.969988px;}
.fs20{font-size:287.954997px;}
.fs1{font-size:288.357355px;}
.fs34{font-size:299.970006px;}
.fs14{font-size:307.665001px;}
.fs30{font-size:312.987801px;}
.fs26{font-size:319.229209px;}
.fs5{font-size:335.069982px;}
.fs6{font-size:359.954976px;}
.fs36{font-size:359.989700px;}
.fs19{font-size:360.847345px;}
.fs4{font-size:401.084970px;}
.fs9{font-size:418.397740px;}
.fsa{font-size:557.849706px;}
.fs15{font-size:743.200258px;}
.fs11{font-size:863.690963px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.y46{bottom:0.109383px;}
.y5e{bottom:0.124518px;}
.y39{bottom:0.454662px;}
.y6e{bottom:6.092588px;}
.y72{bottom:6.131719px;}
.y70{bottom:6.277276px;}
.y8e{bottom:9.749276px;}
.y97{bottom:9.873711px;}
.y86{bottom:9.883331px;}
.y9{bottom:10.438910px;}
.y84{bottom:11.357096px;}
.ye5{bottom:11.812118px;}
.yab{bottom:13.897939px;}
.y1e{bottom:14.322785px;}
.y20{bottom:14.951680px;}
.y64{bottom:14.955644px;}
.ydb{bottom:15.105022px;}
.y22{bottom:15.196631px;}
.yc3{bottom:15.290452px;}
.y5c{bottom:15.337157px;}
.y51{bottom:15.366423px;}
.ye1{bottom:15.547269px;}
.y37{bottom:15.574022px;}
.ye3{bottom:15.765989px;}
.y17{bottom:16.173677px;}
.y1a{bottom:16.178203px;}
.y19{bottom:16.373760px;}
.y2a{bottom:19.197766px;}
.y28{bottom:19.219958px;}
.y2c{bottom:19.293610px;}
.y2e{bottom:19.407972px;}
.y11{bottom:21.261323px;}
.yf{bottom:22.264053px;}
.y54{bottom:22.499999px;}
.y3d{bottom:22.840751px;}
.y6{bottom:25.903388px;}
.yc0{bottom:27.564085px;}
.ya4{bottom:28.095045px;}
.ya8{bottom:28.157426px;}
.y77{bottom:28.254083px;}
.ya6{bottom:28.384820px;}
.yd4{bottom:32.183453px;}
.y42{bottom:33.023767px;}
.y13{bottom:37.427072px;}
.y56{bottom:43.874998px;}
.y8d{bottom:44.950719px;}
.y96{bottom:45.075154px;}
.y15{bottom:49.851216px;}
.y62{bottom:50.280653px;}
.y55{bottom:50.280668px;}
.y31{bottom:65.979012px;}
.y5b{bottom:66.072407px;}
.y36{bottom:66.309272px;}
.y53{bottom:66.374997px;}
.yda{bottom:66.426255px;}
.ye0{bottom:69.819789px;}
.y82{bottom:70.413405px;}
.y26{bottom:76.555456px;}
.y8c{bottom:80.152161px;}
.y95{bottom:80.276596px;}
.y3c{bottom:81.340748px;}
.y8{bottom:86.760007px;}
.ye{bottom:94.155258px;}
.y78{bottom:96.839744px;}
.ya9{bottom:97.964744px;}
.y81{bottom:110.913403px;}
.y5{bottom:113.440442px;}
.y8b{bottom:115.353604px;}
.y94{bottom:115.478039px;}
.yd9{bottom:117.747487px;}
.yba{bottom:120.332061px;}
.y41{bottom:125.826342px;}
.y25{bottom:127.080005px;}
.y30{bottom:128.160005px;}
.y49{bottom:128.384732px;}
.y63{bottom:133.200005px;}
.y3b{bottom:139.840746px;}
.y14{bottom:146.160004px;}
.y59{bottom:148.155654px;}
.y8a{bottom:150.555046px;}
.y93{bottom:150.679481px;}
.y80{bottom:151.413402px;}
.y58{bottom:152.481270px;}
.y48{bottom:159.244936px;}
.y12{bottom:162.720003px;}
.y47{bottom:165.600003px;}
.yb9{bottom:167.582059px;}
.yd8{bottom:169.068720px;}
.y10{bottom:180.000003px;}
.y6c{bottom:183.238048px;}
.y89{bottom:185.756489px;}
.y92{bottom:185.880924px;}
.y7f{bottom:191.913400px;}
.y4{bottom:200.977496px;}
.y57{bottom:206.481267px;}
.y7{bottom:209.972115px;}
.y52{bottom:212.481289px;}
.y61{bottom:212.481300px;}
.yb8{bottom:214.832057px;}
.yd7{bottom:220.389953px;}
.y88{bottom:220.957931px;}
.y91{bottom:221.082366px;}
.y79{bottom:226.944747px;}
.y7e{bottom:232.413398px;}
.ycc{bottom:235.392362px;}
.y90{bottom:256.283809px;}
.y6b{bottom:258.613045px;}
.yb7{bottom:262.082055px;}
.y40{bottom:263.096817px;}
.y1d{bottom:267.119999px;}
.y7d{bottom:272.913397px;}
.y2{bottom:273.194989px;}
.ydf{bottom:275.399999px;}
.y38{bottom:283.679998px;}
.ycb{bottom:290.517360px;}
.y24{bottom:294.482364px;}
.yb6{bottom:309.332054px;}
.y1f{bottom:329.039996px;}
.y23{bottom:341.732362px;}
.y9a{bottom:344.550658px;}
.y3f{bottom:355.899392px;}
.yb5{bottom:356.582052px;}
.y21{bottom:376.559994px;}
.ye2{bottom:377.639994px;}
.y27{bottom:379.799994px;}
.y16{bottom:385.559994px;}
.y8f{bottom:388.799994px;}
.y87{bottom:401.399993px;}
.yb4{bottom:403.832050px;}
.y3e{bottom:406.439993px;}
.ycd{bottom:407.570959px;}
.yd2{bottom:408.937483px;}
.y6d{bottom:425.519992px;}
.y18{bottom:436.679992px;}
.y5d{bottom:437.039992px;}
.y6a{bottom:438.162318px;}
.y99{bottom:439.275402px;}
.y1c{bottom:440.324370px;}
.y29{bottom:440.639992px;}
.yb3{bottom:451.082048px;}
.y60{bottom:460.373174px;}
.y98{bottom:461.775401px;}
.ye4{bottom:464.399991px;}
.y50{bottom:479.879990px;}
.yd6{bottom:481.679990px;}
.y6f{bottom:482.399990px;}
.y71{bottom:485.279990px;}
.y5f{bottom:485.496396px;}
.y3{bottom:487.079990px;}
.y45{bottom:491.039990px;}
.yd1{bottom:497.812479px;}
.yb2{bottom:498.332046px;}
.y2b{bottom:500.039989px;}
.y4b{bottom:513.531339px;}
.y69{bottom:516.912314px;}
.yca{bottom:542.564715px;}
.yb1{bottom:545.582044px;}
.yb{bottom:549.714177px;}
.y1b{bottom:553.920961px;}
.y2d{bottom:558.719987px;}
.y4a{bottom:567.531336px;}
.y5a{bottom:575.279986px;}
.y35{bottom:575.639986px;}
.ya5{bottom:580.679986px;}
.y44{bottom:585.219000px;}
.yc9{bottom:586.439713px;}
.yd0{bottom:586.687476px;}
.yb0{bottom:592.832042px;}
.ya2{bottom:625.760438px;}
.yc8{bottom:630.314711px;}
.y2f{bottom:633.232986px;}
.y43{bottom:639.218997px;}
.yaf{bottom:640.082040px;}
.y9f{bottom:646.288742px;}
.ybe{bottom:657.785406px;}
.y7c{bottom:667.718058px;}
.yc7{bottom:674.189709px;}
.y85{bottom:674.279982px;}
.y76{bottom:685.799982px;}
.yae{bottom:687.332038px;}
.y9e{bottom:693.538740px;}
.y7b{bottom:707.427943px;}
.ya3{bottom:708.479981px;}
.y75{bottom:709.195665px;}
.ybd{bottom:710.660404px;}
.y67{bottom:711.699908px;}
.yc6{bottom:718.064707px;}
.ya1{bottom:731.510433px;}
.yad{bottom:734.582036px;}
.y9d{bottom:740.788738px;}
.y3a{bottom:748.079979px;}
.y7a{bottom:760.302940px;}
.yc5{bottom:761.939705px;}
.y74{bottom:762.070663px;}
.ybc{bottom:763.535402px;}
.y83{bottom:763.919978px;}
.ycf{bottom:764.437468px;}
.y34{bottom:770.920740px;}
.yd{bottom:772.199978px;}
.yac{bottom:781.832034px;}
.ya0{bottom:784.385431px;}
.y66{bottom:792.699904px;}
.ya7{bottom:792.719977px;}
.ybf{bottom:794.879977px;}
.yde{bottom:806.378446px;}
.ya{bottom:817.416837px;}
.y9c{bottom:818.413735px;}
.yc4{bottom:825.543423px;}
.y33{bottom:829.420738px;}
.yce{bottom:839.160249px;}
.yaa{bottom:841.319975px;}
.ybb{bottom:842.629119px;}
.y73{bottom:843.562405px;}
.y9b{bottom:860.038733px;}
.y65{bottom:873.699901px;}
.y32{bottom:887.920735px;}
.yc2{bottom:888.119973px;}
.ydd{bottom:889.628442px;}
.y4f{bottom:899.498151px;}
.y4e{bottom:953.498149px;}
.ydc{bottom:972.878439px;}
.yd3{bottom:1000.439968px;}
.yd5{bottom:1011.149947px;}
.y68{bottom:1021.395215px;}
.yc{bottom:1030.398487px;}
.yc1{bottom:1030.555393px;}
.y4d{bottom:1033.373146px;}
.y4c{bottom:1087.373143px;}
.h52{height:36.359998px;}
.h8{height:37.439998px;}
.h76{height:41.759998px;}
.h48{height:42.119998px;}
.h50{height:43.199998px;}
.h47{height:47.879998px;}
.h61{height:52.559998px;}
.h1b{height:53.279998px;}
.h1d{height:54.359998px;}
.h1f{height:54.719998px;}
.h3f{height:55.799998px;}
.h74{height:57.599998px;}
.h16{height:61.559997px;}
.h18{height:61.919997px;}
.h4e{height:65.009160px;}
.h59{height:66.020202px;}
.h24{height:73.079997px;}
.h26{height:73.799997px;}
.h55{height:75.925111px;}
.h57{height:76.092674px;}
.h53{height:76.119574px;}
.h10{height:79.199997px;}
.h9{height:80.096389px;}
.h46{height:85.198194px;}
.h39{height:86.516221px;}
.h77{height:87.452828px;}
.h51{height:89.148097px;}
.h68{height:94.397933px;}
.h64{height:98.279996px;}
.h67{height:99.623707px;}
.h5f{height:100.079996px;}
.h4b{height:100.439996px;}
.h5b{height:101.929497px;}
.h4d{height:103.457159px;}
.h7{height:103.823996px;}
.h3e{height:103.994543px;}
.h49{height:104.764904px;}
.h3c{height:107.089292px;}
.h63{height:109.241995px;}
.h5d{height:109.434779px;}
.h2f{height:109.439995px;}
.h60{height:109.491140px;}
.h72{height:110.159995px;}
.h4a{height:110.312995px;}
.h21{height:111.105542px;}
.h1c{height:111.273071px;}
.h20{height:112.194812px;}
.h3b{height:112.499995px;}
.h6a{height:113.017647px;}
.h70{height:113.717175px;}
.h1e{height:114.377541px;}
.h3a{height:115.073610px;}
.h5e{height:115.289522px;}
.h62{height:115.485671px;}
.h5c{height:115.492977px;}
.h1a{height:115.504189px;}
.h3d{height:115.667995px;}
.h73{height:118.097003px;}
.h66{height:120.340371px;}
.h75{height:121.048460px;}
.h6d{height:123.479995px;}
.h30{height:123.571765px;}
.h69{height:126.581120px;}
.h17{height:127.488928px;}
.h19{height:128.741755px;}
.h12{height:143.279994px;}
.h25{height:151.083341px;}
.h27{height:151.090383px;}
.h3{height:151.388364px;}
.hd{height:154.799994px;}
.h71{height:156.087540px;}
.h5a{height:158.217914px;}
.h45{height:161.639993px;}
.h11{height:165.585531px;}
.h32{height:168.872975px;}
.h37{height:168.874023px;}
.he{height:172.610984px;}
.h2d{height:173.084300px;}
.h2c{height:173.095847px;}
.h2e{height:174.781204px;}
.hf{height:174.792865px;}
.h6c{height:188.635219px;}
.h14{height:190.799992px;}
.h44{height:194.669992px;}
.h33{height:199.799992px;}
.h42{height:201.326572px;}
.h43{height:203.300362px;}
.h40{height:205.599868px;}
.h5{height:205.887151px;}
.h41{height:207.615553px;}
.h6{height:207.905653px;}
.h6b{height:216.278374px;}
.h28{height:221.826465px;}
.h54{height:248.399990px;}
.hb{height:250.153675px;}
.h2a{height:254.159989px;}
.h6e{height:256.672656px;}
.h29{height:257.367808px;}
.hc{height:259.527538px;}
.h6f{height:259.559989px;}
.h35{height:260.170936px;}
.h65{height:262.909752px;}
.h4c{height:263.364097px;}
.h4f{height:268.152535px;}
.h58{height:271.235547px;}
.h4{height:273.959989px;}
.h56{height:283.679988px;}
.ha{height:289.182263px;}
.h22{height:295.199988px;}
.h36{height:296.639988px;}
.h13{height:299.154384px;}
.h38{height:305.639987px;}
.h15{height:398.862540px;}
.h34{height:444.959981px;}
.h2b{height:531.388185px;}
.h31{height:603.719975px;}
.h23{height:617.539039px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.w28{width:38.519998px;}
.w26{width:44.639998px;}
.w27{width:44.999998px;}
.w25{width:49.319998px;}
.w30{width:58.679998px;}
.w32{width:60.119997px;}
.w18{width:62.999997px;}
.w15{width:63.359997px;}
.w2f{width:65.519997px;}
.w29{width:65.879997px;}
.w2c{width:78.119997px;}
.w5{width:82.799997px;}
.wb{width:125.279995px;}
.wc{width:126.359995px;}
.w2b{width:138.239994px;}
.w24{width:140.399994px;}
.w1e{width:146.249994px;}
.w6{width:149.039994px;}
.w22{width:149.558812px;}
.w1d{width:149.624994px;}
.wd{width:150.839994px;}
.w8{width:152.279994px;}
.wf{width:167.039993px;}
.w9{width:168.479993px;}
.w3{width:183.599992px;}
.wa{width:192.239992px;}
.w7{width:197.999992px;}
.w10{width:199.799992px;}
.w11{width:227.519991px;}
.w1f{width:238.499990px;}
.w21{width:239.440947px;}
.w1a{width:239.624990px;}
.w23{width:241.199990px;}
.w19{width:247.319990px;}
.w13{width:263.519989px;}
.w1b{width:277.874988px;}
.w1c{width:294.749988px;}
.we{width:305.999987px;}
.w37{width:314.279987px;}
.w34{width:408.599983px;}
.w31{width:439.919982px;}
.w38{width:451.439981px;}
.w12{width:470.879980px;}
.w17{width:483.839980px;}
.w2e{width:503.279979px;}
.w2d{width:505.799979px;}
.w36{width:587.159976px;}
.w2a{width:725.399970px;}
.w20{width:733.679969px;}
.w4{width:735.119969px;}
.w16{width:775.439968px;}
.w35{width:818.999966px;}
.w14{width:824.759966px;}
.w33{width:838.799965px;}
.w2{width:1544.399936px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x67{left:2.850920px;}
.x35{left:16.013671px;}
.x18{left:22.319999px;}
.x2c{left:23.695312px;}
.x30{left:24.943358px;}
.x32{left:28.353514px;}
.x2f{left:32.326171px;}
.x19{left:45.453845px;}
.x2d{left:51.644529px;}
.x1f{left:60.486461px;}
.x1b{left:82.916010px;}
.x24{left:89.138400px;}
.x1d{left:107.461722px;}
.x6{left:114.479995px;}
.x1e{left:119.696447px;}
.x42{left:121.499995px;}
.x5f{left:131.039995px;}
.x53{left:132.119994px;}
.x8{left:139.499994px;}
.x5e{left:144.719994px;}
.x51{left:145.799994px;}
.x47{left:146.879994px;}
.xb{left:148.319994px;}
.x44{left:164.308827px;}
.x69{left:167.652457px;}
.x4f{left:170.169527px;}
.x6c{left:171.588092px;}
.x68{left:175.319993px;}
.x46{left:179.988513px;}
.x6d{left:189.197283px;}
.xa{left:197.382806px;}
.x6b{left:199.422852px;}
.x50{left:205.777629px;}
.x17{left:211.319991px;}
.x6a{left:214.595058px;}
.x1a{left:217.230458px;}
.x9{left:219.599991px;}
.x4{left:223.993209px;}
.x49{left:253.079989px;}
.x52{left:263.842657px;}
.x70{left:280.624823px;}
.x2{left:307.799987px;}
.x48{left:310.679987px;}
.x72{left:314.279987px;}
.x45{left:343.148663px;}
.x37{left:349.811946px;}
.x4a{left:368.999985px;}
.x38{left:370.768849px;}
.x10{left:409.986019px;}
.x36{left:412.003350px;}
.xc{left:419.039983px;}
.x4c{left:429.479982px;}
.x3{left:432.148488px;}
.x7{left:471.830676px;}
.x6f{left:473.845938px;}
.x4b{left:489.599980px;}
.x4e{left:545.039977px;}
.x40{left:603.318892px;}
.x4d{left:604.799975px;}
.x20{left:616.580088px;}
.x21{left:635.722671px;}
.x2b{left:678.919004px;}
.x23{left:691.199971px;}
.x41{left:716.522012px;}
.xf{left:726.540882px;}
.xd{left:739.799969px;}
.x60{left:744.839969px;}
.x61{left:760.405468px;}
.x56{left:791.999967px;}
.x43{left:796.224822px;}
.x55{left:799.199967px;}
.x58{left:813.239966px;}
.x5d{left:816.655394px;}
.x3f{left:876.096224px;}
.x27{left:923.007987px;}
.x5a{left:930.238917px;}
.x2e{left:934.791477px;}
.x2a{left:939.239961px;}
.x54{left:943.161189px;}
.x29{left:957.865407px;}
.x1c{left:962.639960px;}
.x5b{left:977.941540px;}
.x6e{left:982.045075px;}
.x33{left:983.283259px;}
.x25{left:985.199390px;}
.x28{left:992.318536px;}
.x26{left:1004.341973px;}
.x5c{left:1017.376137px;}
.xe{left:1071.359955px;}
.x13{left:1092.239954px;}
.x34{left:1139.988301px;}
.x71{left:1157.759952px;}
.x15{left:1174.978770px;}
.x39{left:1178.279951px;}
.x1{left:1208.486121px;}
.x31{left:1229.241117px;}
.x16{left:1257.595954px;}
.x3c{left:1293.102236px;}
.x3b{left:1315.870191px;}
.x14{left:1391.910402px;}
.x57{left:1407.239941px;}
.x59{left:1428.479940px;}
.x66{left:1453.319939px;}
.x65{left:1469.216711px;}
.x3e{left:1481.857326px;}
.x62{left:1493.279938px;}
.x3d{left:1519.210840px;}
.x63{left:1529.671149px;}
.x64{left:1538.167436px;}
.x11{left:1576.799934px;}
.x5{left:1596.932506px;}
.x12{left:1604.159933px;}
.x3a{left:2069.639914px;}
.x22{left:2076.119913px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7{word-spacing:-362.366342pt;}
.wse{word-spacing:-330.311226pt;}
.wsa{word-spacing:-311.813797pt;}
.wsd{word-spacing:-247.933203pt;}
.ws3{word-spacing:-234.048943pt;}
.ws9{word-spacing:-217.572785pt;}
.wsc{word-spacing:-185.954551pt;}
.ws2{word-spacing:-175.541096pt;}
.wsb{word-spacing:-102.928069pt;}
.ws1{word-spacing:-97.164097pt;}
.wsf{word-spacing:-86.924116pt;}
.ws14{word-spacing:-75.725761pt;}
.ws4{word-spacing:-65.294035pt;}
.ws21{word-spacing:-63.473388pt;}
.ws10{word-spacing:-50.579438pt;}
.ws1f{word-spacing:-50.134560pt;}
.ws8{word-spacing:-48.527236pt;}
.ws17{word-spacing:-48.153118pt;}
.ws16{word-spacing:-42.553918pt;}
.ws20{word-spacing:-37.932184pt;}
.ws1b{word-spacing:-36.921040pt;}
.ws15{word-spacing:-36.855998pt;}
.ws5{word-spacing:-36.737511pt;}
.ws6{word-spacing:-35.686561pt;}
.ws1c{word-spacing:-35.149920pt;}
.ws12{word-spacing:-34.396561pt;}
.ws13{word-spacing:-33.828958pt;}
.ws1e{word-spacing:-31.847918pt;}
.ws11{word-spacing:-28.905404pt;}
.ws18{word-spacing:-25.431844pt;}
.ws1a{word-spacing:-24.440598pt;}
.ws19{word-spacing:-24.386777pt;}
.ws0{word-spacing:0.000000pt;}
.ws1d{word-spacing:2797.251244pt;}
._8{margin-left:-3469.852114pt;}
._0{margin-left:-17.849838pt;}
._1{margin-left:-14.910853pt;}
._7{margin-left:-12.813368pt;}
._2{margin-left:-10.785178pt;}
._3{margin-left:-7.643296pt;}
._9{margin-left:-2.995936pt;}
._6{margin-left:-1.462009pt;}
._b{width:1.127403pt;}
._a{width:2.614403pt;}
._5{width:4.088487pt;}
._c{width:8.018771pt;}
._4{width:11.079378pt;}
.fs2c{font-size:77.879993pt;}
.fs27{font-size:81.160001pt;}
.fs29{font-size:93.844443pt;}
.fs2a{font-size:94.522392pt;}
.fs2b{font-size:94.730998pt;}
.fs3{font-size:98.747281pt;}
.fs23{font-size:104.584342pt;}
.fs1b{font-size:106.662008pt;}
.fs3b{font-size:108.873735pt;}
.fs28{font-size:109.906731pt;}
.fs32{font-size:117.519991pt;}
.fs2d{font-size:120.239991pt;}
.fs2{font-size:127.999995pt;}
.fs24{font-size:129.159999pt;}
.fs1f{font-size:131.119991pt;}
.fs1d{font-size:133.320002pt;}
.fs25{font-size:135.999994pt;}
.fs2f{font-size:136.231380pt;}
.fs2e{font-size:136.239998pt;}
.fs10{font-size:138.320002pt;}
.fse{font-size:138.334821pt;}
.fs37{font-size:140.196856pt;}
.fs31{font-size:141.958173pt;}
.fsf{font-size:142.393453pt;}
.fsd{font-size:142.399986pt;}
.fs1c{font-size:143.260019pt;}
.fs1e{font-size:143.999994pt;}
.fs39{font-size:147.023968pt;}
.fs3a{font-size:149.235273pt;}
.fs33{font-size:149.320002pt;}
.fs17{font-size:152.346143pt;}
.fsb{font-size:158.716375pt;}
.fsc{font-size:158.719993pt;}
.fs18{font-size:178.701561pt;}
.fs1a{font-size:178.702670pt;}
.fs0{font-size:186.639992pt;}
.fs12{font-size:188.090061pt;}
.fs13{font-size:188.098827pt;}
.fs38{font-size:194.320000pt;}
.fs8{font-size:205.856138pt;}
.fs16{font-size:215.479987pt;}
.fs7{font-size:215.494363pt;}
.fs35{font-size:232.559986pt;}
.fs22{font-size:239.999990pt;}
.fs21{font-size:250.639990pt;}
.fs20{font-size:255.959997pt;}
.fs1{font-size:256.317648pt;}
.fs34{font-size:266.640005pt;}
.fs14{font-size:273.480001pt;}
.fs30{font-size:278.211378pt;}
.fs26{font-size:283.759297pt;}
.fs5{font-size:297.839984pt;}
.fs6{font-size:319.959979pt;}
.fs36{font-size:319.990844pt;}
.fs19{font-size:320.753196pt;}
.fs4{font-size:356.519973pt;}
.fs9{font-size:371.909102pt;}
.fsa{font-size:495.866406pt;}
.fs15{font-size:660.622452pt;}
.fs11{font-size:767.725300pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.y46{bottom:0.097230pt;}
.y5e{bottom:0.110682pt;}
.y39{bottom:0.404144pt;}
.y6e{bottom:5.415634pt;}
.y72{bottom:5.450417pt;}
.y70{bottom:5.579801pt;}
.y8e{bottom:8.666023pt;}
.y97{bottom:8.776632pt;}
.y86{bottom:8.785183pt;}
.y9{bottom:9.279031pt;}
.y84{bottom:10.095197pt;}
.ye5{bottom:10.499660pt;}
.yab{bottom:12.353724pt;}
.y1e{bottom:12.731365pt;}
.y20{bottom:13.290382pt;}
.y64{bottom:13.293906pt;}
.ydb{bottom:13.426686pt;}
.y22{bottom:13.508116pt;}
.yc3{bottom:13.591513pt;}
.y5c{bottom:13.633028pt;}
.y51{bottom:13.659042pt;}
.ye1{bottom:13.819795pt;}
.y37{bottom:13.843575pt;}
.ye3{bottom:14.014212pt;}
.y17{bottom:14.376602pt;}
.y1a{bottom:14.380625pt;}
.y19{bottom:14.554453pt;}
.y2a{bottom:17.064681pt;}
.y28{bottom:17.084407pt;}
.y2c{bottom:17.149876pt;}
.y2e{bottom:17.251530pt;}
.y11{bottom:18.898954pt;}
.yf{bottom:19.790270pt;}
.y54{bottom:19.999999pt;}
.y3d{bottom:20.302890pt;}
.y6{bottom:23.025234pt;}
.yc0{bottom:24.501409pt;}
.ya4{bottom:24.973373pt;}
.ya8{bottom:25.028823pt;}
.y77{bottom:25.114740pt;}
.ya6{bottom:25.230951pt;}
.yd4{bottom:28.607514pt;}
.y42{bottom:29.354460pt;}
.y13{bottom:33.268508pt;}
.y56{bottom:38.999998pt;}
.y8d{bottom:39.956194pt;}
.y96{bottom:40.066803pt;}
.y15{bottom:44.312192pt;}
.y62{bottom:44.693913pt;}
.y55{bottom:44.693927pt;}
.y31{bottom:58.648010pt;}
.y5b{bottom:58.731028pt;}
.y36{bottom:58.941575pt;}
.y53{bottom:58.999998pt;}
.yda{bottom:59.045560pt;}
.ye0{bottom:62.062035pt;}
.y82{bottom:62.589693pt;}
.y26{bottom:68.049294pt;}
.y8c{bottom:71.246366pt;}
.y95{bottom:71.356974pt;}
.y3c{bottom:72.302888pt;}
.y8{bottom:77.120006pt;}
.ye{bottom:83.693562pt;}
.y78{bottom:86.079772pt;}
.ya9{bottom:87.079772pt;}
.y81{bottom:98.589692pt;}
.y5{bottom:100.835948pt;}
.y8b{bottom:102.536537pt;}
.y94{bottom:102.647145pt;}
.yd9{bottom:104.664433pt;}
.yba{bottom:106.961832pt;}
.y41{bottom:111.845638pt;}
.y25{bottom:112.960004pt;}
.y30{bottom:113.920004pt;}
.y49{bottom:114.119762pt;}
.y63{bottom:118.400004pt;}
.y3b{bottom:124.302885pt;}
.y14{bottom:129.920004pt;}
.y59{bottom:131.693915pt;}
.y8a{bottom:133.826708pt;}
.y93{bottom:133.937317pt;}
.y80{bottom:134.589690pt;}
.y58{bottom:135.538906pt;}
.y48{bottom:141.551054pt;}
.y12{bottom:144.640003pt;}
.y47{bottom:147.200003pt;}
.yb9{bottom:148.961831pt;}
.yd8{bottom:150.283307pt;}
.y10{bottom:160.000002pt;}
.y6c{bottom:162.878265pt;}
.y89{bottom:165.116879pt;}
.y92{bottom:165.227488pt;}
.y7f{bottom:170.589689pt;}
.y4{bottom:178.646663pt;}
.y57{bottom:183.538904pt;}
.y7{bottom:186.641880pt;}
.y52{bottom:188.872257pt;}
.y61{bottom:188.872267pt;}
.yb8{bottom:190.961829pt;}
.yd7{bottom:195.902181pt;}
.y88{bottom:196.407050pt;}
.y91{bottom:196.517659pt;}
.y79{bottom:201.728664pt;}
.y7e{bottom:206.589687pt;}
.ycc{bottom:209.237655pt;}
.y90{bottom:227.807830pt;}
.y6b{bottom:229.878262pt;}
.yb7{bottom:232.961827pt;}
.y40{bottom:233.863838pt;}
.y1d{bottom:237.439999pt;}
.y7d{bottom:242.589686pt;}
.y2{bottom:242.839990pt;}
.ydf{bottom:244.799999pt;}
.y38{bottom:252.159998pt;}
.ycb{bottom:258.237653pt;}
.y24{bottom:261.762101pt;}
.yb6{bottom:274.961825pt;}
.y1f{bottom:292.479997pt;}
.y23{bottom:303.762099pt;}
.y9a{bottom:306.267251pt;}
.y3f{bottom:316.355015pt;}
.yb5{bottom:316.961824pt;}
.y21{bottom:334.719995pt;}
.ye2{bottom:335.679995pt;}
.y27{bottom:337.599995pt;}
.y16{bottom:342.719995pt;}
.y8f{bottom:345.599995pt;}
.y87{bottom:356.799994pt;}
.yb4{bottom:358.961822pt;}
.y3e{bottom:361.279994pt;}
.ycd{bottom:362.285297pt;}
.yd2{bottom:363.499985pt;}
.y6d{bottom:378.239993pt;}
.y18{bottom:388.159993pt;}
.y5d{bottom:388.479993pt;}
.y6a{bottom:389.477616pt;}
.y99{bottom:390.467024pt;}
.y1c{bottom:391.399440pt;}
.y29{bottom:391.679993pt;}
.yb3{bottom:400.961820pt;}
.y60{bottom:409.220599pt;}
.y98{bottom:410.467023pt;}
.ye4{bottom:412.799992pt;}
.y50{bottom:426.559991pt;}
.yd6{bottom:428.159991pt;}
.y6f{bottom:428.799991pt;}
.y71{bottom:431.359991pt;}
.y5f{bottom:431.552352pt;}
.y3{bottom:432.959991pt;}
.y45{bottom:436.479991pt;}
.yd1{bottom:442.499982pt;}
.yb2{bottom:442.961818pt;}
.y2b{bottom:444.479990pt;}
.y4b{bottom:456.472301pt;}
.y69{bottom:459.477613pt;}
.yca{bottom:482.279746pt;}
.yb1{bottom:484.961817pt;}
.yb{bottom:488.634824pt;}
.y1b{bottom:492.374187pt;}
.y2d{bottom:496.639988pt;}
.y4a{bottom:504.472299pt;}
.y5a{bottom:511.359988pt;}
.y35{bottom:511.679988pt;}
.ya5{bottom:516.159987pt;}
.y44{bottom:520.194666pt;}
.yc9{bottom:521.279745pt;}
.yd0{bottom:521.499978pt;}
.yb0{bottom:526.961815pt;}
.ya2{bottom:556.231500pt;}
.yc8{bottom:560.279743pt;}
.y2f{bottom:562.873765pt;}
.y43{bottom:568.194664pt;}
.yaf{bottom:568.961813pt;}
.y9f{bottom:574.478882pt;}
.ybe{bottom:584.698139pt;}
.y7c{bottom:593.527162pt;}
.yc7{bottom:599.279741pt;}
.y85{bottom:599.359984pt;}
.y76{bottom:609.599984pt;}
.yae{bottom:610.961811pt;}
.y9e{bottom:616.478880pt;}
.y7b{bottom:628.824838pt;}
.ya3{bottom:629.759983pt;}
.y75{bottom:630.396147pt;}
.ybd{bottom:631.698137pt;}
.y67{bottom:632.622140pt;}
.yc6{bottom:638.279740pt;}
.ya1{bottom:650.231496pt;}
.yad{bottom:652.961810pt;}
.y9d{bottom:658.478878pt;}
.y3a{bottom:664.959981pt;}
.y7a{bottom:675.824836pt;}
.yc5{bottom:677.279738pt;}
.y74{bottom:677.396145pt;}
.ybc{bottom:678.698135pt;}
.y83{bottom:679.039981pt;}
.ycf{bottom:679.499972pt;}
.y34{bottom:685.262880pt;}
.yd{bottom:686.399980pt;}
.yac{bottom:694.961808pt;}
.ya0{bottom:697.231494pt;}
.y66{bottom:704.622137pt;}
.ya7{bottom:704.639980pt;}
.ybf{bottom:706.559980pt;}
.yde{bottom:716.780841pt;}
.ya{bottom:726.592744pt;}
.y9c{bottom:727.478875pt;}
.yc4{bottom:733.816376pt;}
.y33{bottom:737.262878pt;}
.yce{bottom:745.920222pt;}
.yaa{bottom:747.839978pt;}
.ybb{bottom:749.003662pt;}
.y73{bottom:749.833249pt;}
.y9b{bottom:764.478874pt;}
.y65{bottom:776.622134pt;}
.y32{bottom:789.262876pt;}
.yc2{bottom:789.439976pt;}
.ydd{bottom:790.780837pt;}
.y4f{bottom:799.553912pt;}
.y4e{bottom:847.553910pt;}
.ydc{bottom:864.780834pt;}
.yd3{bottom:889.279972pt;}
.yd5{bottom:898.799953pt;}
.y68{bottom:907.906858pt;}
.yc{bottom:915.909767pt;}
.yc1{bottom:916.049239pt;}
.y4d{bottom:918.553907pt;}
.y4c{bottom:966.553905pt;}
.h52{height:32.319999pt;}
.h8{height:33.279999pt;}
.h76{height:37.119998pt;}
.h48{height:37.439998pt;}
.h50{height:38.399998pt;}
.h47{height:42.559998pt;}
.h61{height:46.719998pt;}
.h1b{height:47.359998pt;}
.h1d{height:48.319998pt;}
.h1f{height:48.639998pt;}
.h3f{height:49.599998pt;}
.h74{height:51.199998pt;}
.h16{height:54.719998pt;}
.h18{height:55.039998pt;}
.h4e{height:57.785920pt;}
.h59{height:58.684624pt;}
.h24{height:64.959997pt;}
.h26{height:65.599997pt;}
.h55{height:67.488988pt;}
.h57{height:67.637933pt;}
.h53{height:67.661844pt;}
.h10{height:70.399997pt;}
.h9{height:71.196790pt;}
.h46{height:75.731728pt;}
.h39{height:76.903308pt;}
.h77{height:77.735847pt;}
.h51{height:79.242753pt;}
.h68{height:83.909274pt;}
.h64{height:87.359996pt;}
.h67{height:88.554406pt;}
.h5f{height:88.959996pt;}
.h4b{height:89.279996pt;}
.h5b{height:90.603997pt;}
.h4d{height:91.961919pt;}
.h7{height:92.287996pt;}
.h3e{height:92.439594pt;}
.h49{height:93.124359pt;}
.h3c{height:95.190482pt;}
.h63{height:97.103996pt;}
.h5d{height:97.275359pt;}
.h2f{height:97.279996pt;}
.h60{height:97.325458pt;}
.h72{height:97.919996pt;}
.h4a{height:98.055996pt;}
.h21{height:98.760482pt;}
.h1c{height:98.909397pt;}
.h20{height:99.728722pt;}
.h3b{height:99.999996pt;}
.h6a{height:100.460130pt;}
.h70{height:101.081933pt;}
.h1e{height:101.668926pt;}
.h3a{height:102.287654pt;}
.h5e{height:102.479575pt;}
.h62{height:102.653930pt;}
.h5c{height:102.660424pt;}
.h1a{height:102.670390pt;}
.h3d{height:102.815996pt;}
.h73{height:104.975113pt;}
.h66{height:106.969219pt;}
.h75{height:107.598632pt;}
.h6d{height:109.759995pt;}
.h30{height:109.841569pt;}
.h69{height:112.516551pt;}
.h17{height:113.323491pt;}
.h19{height:114.437115pt;}
.h12{height:127.359995pt;}
.h25{height:134.296303pt;}
.h27{height:134.302563pt;}
.h3{height:134.567434pt;}
.hd{height:137.599994pt;}
.h71{height:138.744480pt;}
.h5a{height:140.638146pt;}
.h45{height:143.679994pt;}
.h11{height:147.187138pt;}
.h32{height:150.109311pt;}
.h37{height:150.110243pt;}
.he{height:153.431986pt;}
.h2d{height:153.852711pt;}
.h2c{height:153.862975pt;}
.h2e{height:155.361071pt;}
.hf{height:155.371435pt;}
.h6c{height:167.675750pt;}
.h14{height:169.599993pt;}
.h44{height:173.039993pt;}
.h33{height:177.599993pt;}
.h42{height:178.956953pt;}
.h43{height:180.711432pt;}
.h40{height:182.755438pt;}
.h5{height:183.010801pt;}
.h41{height:184.547158pt;}
.h6{height:184.805025pt;}
.h6b{height:192.247444pt;}
.h28{height:197.179080pt;}
.h54{height:220.799991pt;}
.hb{height:222.358822pt;}
.h2a{height:225.919991pt;}
.h6e{height:228.153472pt;}
.h29{height:228.771385pt;}
.hc{height:230.691145pt;}
.h6f{height:230.719990pt;}
.h35{height:231.263054pt;}
.h65{height:233.697558pt;}
.h4c{height:234.101420pt;}
.h4f{height:238.357809pt;}
.h58{height:241.098264pt;}
.h4{height:243.519990pt;}
.h56{height:252.159989pt;}
.ha{height:257.050901pt;}
.h22{height:262.399989pt;}
.h36{height:263.679989pt;}
.h13{height:265.915008pt;}
.h38{height:271.679989pt;}
.h15{height:354.544480pt;}
.h34{height:395.519984pt;}
.h2b{height:472.345053pt;}
.h31{height:536.639978pt;}
.h23{height:548.923590pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.w28{width:34.239999pt;}
.w26{width:39.679998pt;}
.w27{width:39.999998pt;}
.w25{width:43.839998pt;}
.w30{width:52.159998pt;}
.w32{width:53.439998pt;}
.w18{width:55.999998pt;}
.w15{width:56.319998pt;}
.w2f{width:58.239998pt;}
.w29{width:58.559998pt;}
.w2c{width:69.439997pt;}
.w5{width:73.599997pt;}
.wb{width:111.359995pt;}
.wc{width:112.319995pt;}
.w2b{width:122.879995pt;}
.w24{width:124.799995pt;}
.w1e{width:129.999995pt;}
.w6{width:132.479994pt;}
.w22{width:132.941166pt;}
.w1d{width:132.999994pt;}
.wd{width:134.079994pt;}
.w8{width:135.359994pt;}
.wf{width:148.479994pt;}
.w9{width:149.759994pt;}
.w3{width:163.199993pt;}
.wa{width:170.879993pt;}
.w7{width:175.999993pt;}
.w10{width:177.599993pt;}
.w11{width:202.239992pt;}
.w1f{width:211.999991pt;}
.w21{width:212.836397pt;}
.w1a{width:212.999991pt;}
.w23{width:214.399991pt;}
.w19{width:219.839991pt;}
.w13{width:234.239990pt;}
.w1b{width:246.999990pt;}
.w1c{width:261.999989pt;}
.we{width:271.999989pt;}
.w37{width:279.359988pt;}
.w34{width:363.199985pt;}
.w31{width:391.039984pt;}
.w38{width:401.279983pt;}
.w12{width:418.559983pt;}
.w17{width:430.079982pt;}
.w2e{width:447.359981pt;}
.w2d{width:449.599981pt;}
.w36{width:521.919978pt;}
.w2a{width:644.799973pt;}
.w20{width:652.159973pt;}
.w4{width:653.439973pt;}
.w16{width:689.279971pt;}
.w35{width:727.999970pt;}
.w14{width:733.119969pt;}
.w33{width:745.599969pt;}
.w2{width:1372.799943pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x67{left:2.534151pt;}
.x35{left:14.234374pt;}
.x18{left:19.839999pt;}
.x2c{left:21.062499pt;}
.x30{left:22.171874pt;}
.x32{left:25.203124pt;}
.x2f{left:28.734374pt;}
.x19{left:40.403418pt;}
.x2d{left:45.906248pt;}
.x1f{left:53.765743pt;}
.x1b{left:73.703120pt;}
.x24{left:79.234134pt;}
.x1d{left:95.521531pt;}
.x6{left:101.759996pt;}
.x1e{left:106.396841pt;}
.x42{left:107.999996pt;}
.x5f{left:116.479995pt;}
.x53{left:117.439995pt;}
.x8{left:123.999995pt;}
.x5e{left:128.639995pt;}
.x51{left:129.599995pt;}
.x47{left:130.559995pt;}
.xb{left:131.839995pt;}
.x44{left:146.052290pt;}
.x69{left:149.024407pt;}
.x4f{left:151.261802pt;}
.x6c{left:152.522749pt;}
.x68{left:155.839994pt;}
.x46{left:159.989790pt;}
.x6d{left:168.175363pt;}
.xa{left:175.451383pt;}
.x6b{left:177.264757pt;}
.x50{left:182.913448pt;}
.x17{left:187.839992pt;}
.x6a{left:190.751162pt;}
.x1a{left:193.093740pt;}
.x9{left:195.199992pt;}
.x4{left:199.105075pt;}
.x49{left:224.959991pt;}
.x52{left:234.526806pt;}
.x70{left:249.444287pt;}
.x2{left:273.599989pt;}
.x48{left:276.159988pt;}
.x72{left:279.359988pt;}
.x45{left:305.021034pt;}
.x37{left:310.943952pt;}
.x4a{left:327.999986pt;}
.x38{left:329.572310pt;}
.x10{left:364.432017pt;}
.x36{left:366.225200pt;}
.xc{left:372.479984pt;}
.x4c{left:381.759984pt;}
.x3{left:384.131990pt;}
.x7{left:419.405045pt;}
.x6f{left:421.196390pt;}
.x4b{left:435.199982pt;}
.x4e{left:484.479980pt;}
.x40{left:536.283459pt;}
.x4d{left:537.599978pt;}
.x20{left:548.071189pt;}
.x21{left:565.086818pt;}
.x2b{left:603.483559pt;}
.x23{left:614.399974pt;}
.x41{left:636.908455pt;}
.xf{left:645.814117pt;}
.xd{left:657.599973pt;}
.x60{left:662.079972pt;}
.x61{left:675.915972pt;}
.x56{left:703.999971pt;}
.x43{left:707.755397pt;}
.x55{left:710.399970pt;}
.x58{left:722.879970pt;}
.x5d{left:725.915906pt;}
.x3f{left:778.752199pt;}
.x27{left:820.451544pt;}
.x5a{left:826.879038pt;}
.x2e{left:830.925757pt;}
.x2a{left:834.879965pt;}
.x54{left:838.365501pt;}
.x29{left:851.435918pt;}
.x1c{left:855.679964pt;}
.x5b{left:869.281369pt;}
.x6e{left:872.928956pt;}
.x33{left:874.029564pt;}
.x25{left:875.732792pt;}
.x28{left:882.060921pt;}
.x26{left:892.748421pt;}
.x5c{left:904.334344pt;}
.xe{left:952.319960pt;}
.x13{left:970.879960pt;}
.x34{left:1013.322934pt;}
.x71{left:1029.119957pt;}
.x15{left:1044.425573pt;}
.x39{left:1047.359956pt;}
.x1{left:1074.209885pt;}
.x31{left:1092.658770pt;}
.x16{left:1117.863070pt;}
.x3c{left:1149.424210pt;}
.x3b{left:1169.662392pt;}
.x14{left:1237.253690pt;}
.x57{left:1250.879948pt;}
.x59{left:1269.759947pt;}
.x66{left:1291.839946pt;}
.x65{left:1305.970410pt;}
.x3e{left:1317.206512pt;}
.x62{left:1327.359945pt;}
.x3d{left:1350.409636pt;}
.x63{left:1359.707688pt;}
.x64{left:1367.259943pt;}
.x11{left:1401.599942pt;}
.x5{left:1419.495561pt;}
.x12{left:1425.919941pt;}
.x3a{left:1839.679923pt;}
.x22{left:1845.439923pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  