
    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_e2144854ab598b8490bcda78.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_5fe6eb0adde132b734c67fe1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_63f47f320489f6161b52546c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_fab83c37cdb6ef4e4d5911b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.665000;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_0ff63a960e93344919616eb0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_7731dcee3c27a1b46e9dcad7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_9cce150eb6d18702748bd494.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_0855b48750de1907130b012d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919000;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_462bcde1072c6b5b2e3d5327.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.735000;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_1468c08a6eaca25e26423718.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.399000;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_ffa61985be11ba31638ae33b.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a361b8b6e0c7bcff33a546c1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.622000;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_f9d380c15afde7b131f3d1bd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_3923967724b8a6e08868a804.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_d8590762d9aae0d0c484abea.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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_272700b8476f5dd1a51dbd96.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.734000;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_afc331592964596437d1cd75.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.714450;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_0a01faa169e0caa16351873c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910000;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_6aff2c77825c82d5f6ee4267.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.052000;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_93c436159c77735a77cfdc5a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;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_6574b21c155103f10ab4a9a6.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;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_13506c4898617335277da727.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.000000;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_46836cced7ef4e02bf126281.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000000;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_d679688b8edd7f412a2ff92d.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_0cb643466f838e126ae62760.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000000;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_a94c7bcae5dc20a75739664e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.898000;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_7fdd3f785b3b1448a49deaf3.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000000;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_744e8114559da8724f18372e.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;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_d69dd0dbd4138f20618bcfa4.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.735000;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_9842c911746532a9e28a0e09.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;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_2cc267a9016211845f6eff69.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.000000;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_7c644330b9ad285439bc0b3e.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.000000;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_7fdd3f785b3b1448a49deaf3.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.000000;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_744e8114559da8724f18372e.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.000000;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_07355a0c40bf1a6395072736.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.000000;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_2cc267a9016211845f6eff69.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.000000;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_7c644330b9ad285439bc0b3e.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.000000;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_16080a61bf5841909e2e6341.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.000000;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_744e8114559da8724f18372e.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.000000;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_9842c911746532a9e28a0e09.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.000000;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_2cc267a9016211845f6eff69.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.000000;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_7c644330b9ad285439bc0b3e.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.000000;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_26b80eedc468c5948da2e23f.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.959000;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_92e49f59e0e3110513c81e36.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.666000;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_1432ef8cf97421a8f5b42a02.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.000000;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_a680e08f09e1109e0f16e196.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.000000;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_4c3751c87ee58da5520bc1bc.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.000000;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_9b55a150d1ab5cd53ad321bc.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.000000;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_a08b0c74a08ae9e5cec85ff6.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.959000;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_a61a74ecf7bd133a04c93b19.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.666000;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;}
.m2{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);}
.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);}
.m1{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);}
.v3{vertical-align:-16.872000px;}
.v5{vertical-align:-8.970000px;}
.v4{vertical-align:-7.476000px;}
.vc{vertical-align:-5.618991px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:12.234000px;}
.v9{vertical-align:15.048000px;}
.v2{vertical-align:16.362000px;}
.v7{vertical-align:20.616000px;}
.v6{vertical-align:21.690000px;}
.v1{vertical-align:23.754000px;}
.vb{vertical-align:27.282000px;}
.v8{vertical-align:42.306000px;}
.ls3{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.002133px;}
.lsc{letter-spacing:0.002638px;}
.ls13{letter-spacing:0.002698px;}
.lsa{letter-spacing:0.003269px;}
.ls20{letter-spacing:0.003427px;}
.ls12{letter-spacing:0.003652px;}
.ls3d{letter-spacing:0.004076px;}
.ls2c{letter-spacing:0.004200px;}
.ls37{letter-spacing:0.004289px;}
.ls23{letter-spacing:0.004743px;}
.ls3c{letter-spacing:0.007337px;}
.ls36{letter-spacing:0.007721px;}
.ls22{letter-spacing:0.008537px;}
.ls3f{letter-spacing:0.014689px;}
.ls3a{letter-spacing:0.015458px;}
.ls4{letter-spacing:0.018330px;}
.ls3b{letter-spacing:0.027373px;}
.ls38{letter-spacing:0.029225px;}
.ls3e{letter-spacing:0.032166px;}
.ls40{letter-spacing:0.032648px;}
.ls39{letter-spacing:0.033850px;}
.ls1e{letter-spacing:1.284298px;}
.ls1f{letter-spacing:1.290298px;}
.lsf{letter-spacing:2.144222px;}
.ls0{letter-spacing:2.984915px;}
.ls9{letter-spacing:2.987197px;}
.ls1{letter-spacing:2.990915px;}
.ls16{letter-spacing:2.992395px;}
.lsb{letter-spacing:3.806854px;}
.ls32{letter-spacing:5.092888px;}
.ls17{letter-spacing:12.702061px;}
.ls11{letter-spacing:13.284538px;}
.ls24{letter-spacing:13.819965px;}
.ls34{letter-spacing:14.109056px;}
.ls35{letter-spacing:14.115056px;}
.ls25{letter-spacing:15.309979px;}
.ls41{letter-spacing:16.111404px;}
.ls10{letter-spacing:16.268525px;}
.ls28{letter-spacing:16.599031px;}
.ls30{letter-spacing:16.602538px;}
.lse{letter-spacing:16.604400px;}
.ls2f{letter-spacing:16.605031px;}
.lsd{letter-spacing:16.605269px;}
.ls29{letter-spacing:16.605299px;}
.ls2b{letter-spacing:16.608538px;}
.ls33{letter-spacing:17.102289px;}
.ls2a{letter-spacing:19.586525px;}
.ls26{letter-spacing:19.592525px;}
.ls2{letter-spacing:19.920532px;}
.ls2d{letter-spacing:19.924200px;}
.ls27{letter-spacing:19.928338px;}
.ls2e{letter-spacing:19.930200px;}
.ls14{letter-spacing:21.812712px;}
.ls21{letter-spacing:21.818712px;}
.ls15{letter-spacing:21.819249px;}
.ls31{letter-spacing:21.821400px;}
.ls7{letter-spacing:32.725002px;}
.ls5{letter-spacing:32.726700px;}
.ls8{letter-spacing:32.728200px;}
.ls6{letter-spacing:41.276915px;}
.ls1b{letter-spacing:101.962395px;}
.ls19{letter-spacing:105.074023px;}
.ls18{letter-spacing:108.194023px;}
.ls1c{letter-spacing:130.204395px;}
.ls1d{letter-spacing:147.657193px;}
.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;}
}
.ws41{word-spacing:-59.775600px;}
.ws23{word-spacing:-42.637126px;}
.ws15{word-spacing:-38.937826px;}
.ws1b{word-spacing:-31.771663px;}
.ws1d{word-spacing:-31.633157px;}
.ws25{word-spacing:-29.388273px;}
.ws5e{word-spacing:-27.339081px;}
.ws20{word-spacing:-25.656876px;}
.ws60{word-spacing:-19.823579px;}
.ws4b{word-spacing:-16.730196px;}
.ws3{word-spacing:-15.637104px;}
.ws22{word-spacing:-15.278643px;}
.ws33{word-spacing:-13.750871px;}
.ws45{word-spacing:-12.122522px;}
.ws40{word-spacing:-9.091930px;}
.ws1e{word-spacing:-4.530419px;}
.ws9{word-spacing:-2.743718px;}
.ws17{word-spacing:-0.059776px;}
.ws28{word-spacing:-0.035866px;}
.ws8{word-spacing:0.000000px;}
.ws59{word-spacing:1.685046px;}
.ws37{word-spacing:1.960738px;}
.ws5f{word-spacing:1.987959px;}
.ws58{word-spacing:2.005252px;}
.ws54{word-spacing:2.110246px;}
.ws35{word-spacing:2.333332px;}
.ws5d{word-spacing:2.365726px;}
.ws5{word-spacing:3.604493px;}
.ws12{word-spacing:4.551345px;}
.ws61{word-spacing:4.653822px;}
.ws4{word-spacing:4.805970px;}
.ws5b{word-spacing:5.062557px;}
.wsc{word-spacing:5.110091px;}
.ws50{word-spacing:5.112775px;}
.ws49{word-spacing:5.116036px;}
.ws38{word-spacing:5.119884px;}
.wsf{word-spacing:5.196925px;}
.ws10{word-spacing:5.250724px;}
.ws44{word-spacing:5.279394px;}
.wse{word-spacing:5.497077px;}
.ws16{word-spacing:5.615329px;}
.ws57{word-spacing:5.619222px;}
.ws7{word-spacing:5.624884px;}
.ws4e{word-spacing:5.637351px;}
.ws18{word-spacing:5.668160px;}
.ws43{word-spacing:5.684660px;}
.ws36{word-spacing:5.872727px;}
.ws53{word-spacing:5.913441px;}
.wsd{word-spacing:5.993142px;}
.ws4a{word-spacing:6.103364px;}
.ws39{word-spacing:6.108752px;}
.ws2{word-spacing:6.159278px;}
.ws3a{word-spacing:6.170632px;}
.ws1a{word-spacing:6.176452px;}
.ws3d{word-spacing:6.176632px;}
.ws5a{word-spacing:6.198827px;}
.wsb{word-spacing:6.224732px;}
.ws3f{word-spacing:6.659002px;}
.ws42{word-spacing:7.226188px;}
.ws3b{word-spacing:7.291642px;}
.ws13{word-spacing:8.237588px;}
.ws21{word-spacing:8.323665px;}
.ws6{word-spacing:8.371031px;}
.ws0{word-spacing:9.502923px;}
.ws1{word-spacing:9.589000px;}
.ws3e{word-spacing:10.908309px;}
.ws63{word-spacing:12.324860px;}
.ws1f{word-spacing:13.210408px;}
.ws47{word-spacing:14.072140px;}
.ws19{word-spacing:16.530415px;}
.ws1c{word-spacing:16.557841px;}
.ws11{word-spacing:18.399053px;}
.ws4f{word-spacing:18.627154px;}
.ws4c{word-spacing:19.862624px;}
.ws4d{word-spacing:19.868624px;}
.ws62{word-spacing:20.234555px;}
.ws3c{word-spacing:20.391720px;}
.wsa{word-spacing:20.784115px;}
.ws14{word-spacing:21.746555px;}
.ws27{word-spacing:62.626700px;}
.ws30{word-spacing:62.634392px;}
.ws32{word-spacing:62.635667px;}
.ws31{word-spacing:62.638677px;}
.ws29{word-spacing:62.639270px;}
.ws46{word-spacing:76.799884px;}
.ws56{word-spacing:79.713225px;}
.ws34{word-spacing:82.920887px;}
.ws2f{word-spacing:97.715914px;}
.ws55{word-spacing:97.935321px;}
.ws48{word-spacing:99.634220px;}
.ws52{word-spacing:125.789116px;}
.ws5c{word-spacing:128.167048px;}
.ws2e{word-spacing:130.271914px;}
.ws2b{word-spacing:139.463630px;}
.ws2d{word-spacing:142.039084px;}
.ws26{word-spacing:143.946800px;}
.ws2c{word-spacing:144.277084px;}
.ws24{word-spacing:236.196495px;}
.ws51{word-spacing:287.473537px;}
.ws2a{word-spacing:702.759606px;}
._4{margin-left:-31.418208px;}
._7{margin-left:-24.824418px;}
._15{margin-left:-6.021823px;}
._5{margin-left:-4.824354px;}
._6{margin-left:-3.735037px;}
._1{margin-left:-2.410162px;}
._3{margin-left:-1.243832px;}
._8{width:1.609655px;}
._0{width:2.754470px;}
._14{width:6.601415px;}
._12{width:9.091930px;}
._a{width:12.696422px;}
._9{width:16.928563px;}
._c{width:18.254816px;}
._13{width:19.905822px;}
._10{width:20.926569px;}
._f{width:22.116404px;}
._e{width:24.054160px;}
._d{width:25.333760px;}
._2{width:26.404971px;}
._b{width:30.079775px;}
._17{width:71.709953px;}
._1a{width:91.576449px;}
._1c{width:142.792312px;}
._1f{width:146.993510px;}
._1e{width:151.597608px;}
._19{width:169.045821px;}
._1b{width:176.744938px;}
._18{width:189.369576px;}
._16{width:204.592772px;}
._11{width:292.125312px;}
._1d{width:462.425202px;}
.fc7{color:rgb(198,215,237);}
.fc6{color:rgb(65,86,113);}
.fc4{color:rgb(15,108,177);}
.fc5{color:transparent;}
.fc2{color:rgb(144,159,180);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs12{font-size:14.918061px;}
.fs16{font-size:21.332608px;}
.fs11{font-size:24.917559px;}
.fse{font-size:26.222227px;}
.fsf{font-size:28.477210px;}
.fs15{font-size:29.396862px;}
.fs9{font-size:29.887800px;}
.fsc{font-size:29.968259px;}
.fsa{font-size:33.136379px;}
.fs13{font-size:33.596413px;}
.fs10{font-size:35.596513px;}
.fs3{font-size:35.865600px;}
.fsd{font-size:37.460324px;}
.fsb{font-size:41.420473px;}
.fs8{font-size:41.842800px;}
.fs14{font-size:41.995517px;}
.fs2{font-size:47.820600px;}
.fs6{font-size:53.324439px;}
.fs5{font-size:53.798400px;}
.fs7{font-size:54.086259px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y1f{bottom:5.977500px;}
.yd7{bottom:7.458410px;}
.y108{bottom:8.213907px;}
.yc3{bottom:8.589130px;}
.yb{bottom:8.977500px;}
.y69{bottom:9.497137px;}
.yf8{bottom:9.628987px;}
.y109{bottom:13.333716px;}
.ye8{bottom:13.480500px;}
.yad{bottom:14.616000px;}
.ybd{bottom:15.195000px;}
.y94{bottom:16.131000px;}
.y10a{bottom:18.451308px;}
.yc2{bottom:20.309529px;}
.y1e{bottom:22.416000px;}
.y68{bottom:22.456568px;}
.yf7{bottom:22.768334px;}
.y10b{bottom:23.570979px;}
.ye{bottom:24.241849px;}
.y43{bottom:28.399500px;}
.y10c{bottom:28.688741px;}
.yc4{bottom:29.491081px;}
.y6a{bottom:32.608756px;}
.yf9{bottom:33.061466px;}
.ybc{bottom:33.127500px;}
.y10d{bottom:33.806327px;}
.yc9{bottom:37.601733px;}
.ye7{bottom:38.146500px;}
.y93{bottom:38.323500px;}
.y1d{bottom:38.854500px;}
.y10e{bottom:38.925998px;}
.ycf{bottom:41.030696px;}
.ycc{bottom:41.243720px;}
.ya5{bottom:43.747500px;}
.yc5{bottom:45.745159px;}
.y42{bottom:46.185000px;}
.y7f{bottom:49.152000px;}
.y106{bottom:50.441905px;}
.yca{bottom:51.163185px;}
.y41{bottom:51.339000px;}
.ye3{bottom:52.138133px;}
.yce{bottom:52.167955px;}
.y7e{bottom:52.210500px;}
.yf3{bottom:53.116500px;}
.ybb{bottom:53.344500px;}
.yfa{bottom:55.197561px;}
.y1c{bottom:55.293000px;}
.ydc{bottom:55.716842px;}
.y6b{bottom:55.749126px;}
.y107{bottom:56.839900px;}
.ydd{bottom:59.297166px;}
.yd0{bottom:60.892686px;}
.ya4{bottom:61.681500px;}
.y7d{bottom:61.729500px;}
.yc6{bottom:61.999236px;}
.yde{bottom:62.875934px;}
.y92{bottom:63.130500px;}
.y7c{bottom:64.788000px;}
.ydf{bottom:66.456164px;}
.yd3{bottom:66.517140px;}
.ya{bottom:68.223000px;}
.yff{bottom:69.749757px;}
.ye0{bottom:70.035059px;}
.y10f{bottom:71.428500px;}
.y70{bottom:71.710780px;}
.ycb{bottom:72.835288px;}
.ye1{bottom:73.613827px;}
.y14{bottom:74.016000px;}
.y40{bottom:74.128500px;}
.yba{bottom:75.636000px;}
.yf2{bottom:76.054500px;}
.ye2{bottom:77.194058px;}
.yfb{bottom:77.333656px;}
.yc7{bottom:78.253314px;}
.y6c{bottom:78.889496px;}
.ye4{bottom:80.772923px;}
.yd4{bottom:81.486509px;}
.ya3{bottom:82.228500px;}
.y2a{bottom:84.450000px;}
.yda{bottom:85.247215px;}
.yd1{bottom:85.605274px;}
.y7b{bottom:85.785000px;}
.y91{bottom:88.311000px;}
.ydb{bottom:89.721384px;}
.y11d{bottom:91.383000px;}
.y75{bottom:91.526813px;}
.y61{bottom:92.212500px;}
.y9{bottom:92.638500px;}
.yc8{bottom:94.507392px;}
.yb9{bottom:95.853000px;}
.yf1{bottom:96.229500px;}
.y3f{bottom:96.544500px;}
.y103{bottom:97.919697px;}
.yfc{bottom:99.469752px;}
.y27{bottom:101.635500px;}
.y6d{bottom:102.029866px;}
.yd5{bottom:102.080333px;}
.y60{bottom:102.979500px;}
.y74{bottom:103.115803px;}
.y7a{bottom:104.701500px;}
.ya2{bottom:105.018000px;}
.y90{bottom:106.243500px;}
.y102{bottom:109.669577px;}
.yd2{bottom:110.317863px;}
.yf6{bottom:111.208500px;}
.y5f{bottom:113.745000px;}
.y73{bottom:114.704793px;}
.y79{bottom:115.468500px;}
.y101{bottom:121.419458px;}
.yfd{bottom:121.605847px;}
.y3e{bottom:121.725000px;}
.yd6{bottom:122.674157px;}
.ya1{bottom:122.950500px;}
.y29{bottom:123.304500px;}
.y5e{bottom:124.804500px;}
.y6e{bottom:125.170236px;}
.y78{bottom:126.234000px;}
.y72{bottom:126.293783px;}
.y13{bottom:126.768000px;}
.y8{bottom:128.421000px;}
.y100{bottom:133.169339px;}
.y77{bottom:137.292000px;}
.y3d{bottom:137.416500px;}
.y71{bottom:137.882773px;}
.y11c{bottom:138.091500px;}
.y5d{bottom:138.880500px;}
.yac{bottom:139.344000px;}
.y25{bottom:140.490000px;}
.ye6{bottom:142.818000px;}
.ya0{bottom:143.499000px;}
.yfe{bottom:143.741943px;}
.y7{bottom:146.851500px;}
.y6f{bottom:148.310606px;}
.ycd{bottom:153.517500px;}
.y76{bottom:155.643000px;}
.y6{bottom:157.312500px;}
.y3c{bottom:157.590000px;}
.y67{bottom:158.359500px;}
.y11b{bottom:158.415000px;}
.y20{bottom:161.785500px;}
.yab{bottom:162.690000px;}
.yc1{bottom:165.337500px;}
.y9f{bottom:166.288500px;}
.y5c{bottom:173.715000px;}
.y3b{bottom:178.138500px;}
.y12{bottom:179.520000px;}
.y5{bottom:182.619000px;}
.y16{bottom:184.201500px;}
.y9e{bottom:186.837000px;}
.y5b{bottom:191.649000px;}
.y4{bottom:196.815000px;}
.yf0{bottom:197.715000px;}
.yb8{bottom:198.214500px;}
.y3a{bottom:198.685500px;}
.y11a{bottom:203.244000px;}
.y15{bottom:205.537500px;}
.y5a{bottom:209.581500px;}
.y8a{bottom:216.394500px;}
.y39{bottom:220.878000px;}
.y59{bottom:227.514000px;}
.y119{bottom:228.051000px;}
.y11{bottom:232.273500px;}
.y3{bottom:234.453000px;}
.yeb{bottom:235.447500px;}
.yb1{bottom:235.449000px;}
.y83{bottom:239.334000px;}
.y58{bottom:245.446500px;}
.y2d{bottom:246.058500px;}
.yea{bottom:250.242000px;}
.yb0{bottom:250.243500px;}
.y118{bottom:252.858000px;}
.y2c{bottom:263.991000px;}
.y82{bottom:264.141000px;}
.ye9{bottom:264.498000px;}
.yaf{bottom:264.499500px;}
.y57{bottom:268.236000px;}
.yc0{bottom:272.128500px;}
.y117{bottom:277.665000px;}
.y105{bottom:281.850000px;}
.y81{bottom:282.073500px;}
.y2b{bottom:284.539500px;}
.y10{bottom:285.025500px;}
.ya7{bottom:286.084500px;}
.ybf{bottom:288.201000px;}
.y44{bottom:290.652000px;}
.y2{bottom:294.837000px;}
.y95{bottom:302.472000px;}
.yae{bottom:302.886000px;}
.y80{bottom:304.863000px;}
.yf4{bottom:306.657000px;}
.ya6{bottom:309.430500px;}
.ybe{bottom:310.392000px;}
.y1{bottom:321.736500px;}
.yd{bottom:330.822000px;}
.yf{bottom:342.190500px;}
.yc{bottom:375.205500px;}
.y56{bottom:3006.016185px;}
.ye5{bottom:3013.519185px;}
.yaa{bottom:3014.654685px;}
.yb7{bottom:3015.233685px;}
.y8f{bottom:3016.169685px;}
.y55{bottom:3022.454685px;}
.y38{bottom:3028.438185px;}
.yb6{bottom:3033.166185px;}
.yd9{bottom:3038.185185px;}
.y8e{bottom:3038.362185px;}
.y9d{bottom:3043.786185px;}
.y66{bottom:3045.250185px;}
.y37{bottom:3046.223685px;}
.y65{bottom:3048.308685px;}
.y36{bottom:3051.377685px;}
.yef{bottom:3053.155185px;}
.yb5{bottom:3053.383185px;}
.y64{bottom:3057.827685px;}
.y63{bottom:3060.886185px;}
.y9c{bottom:3061.720185px;}
.y8d{bottom:3063.169185px;}
.y54{bottom:3064.547685px;}
.y53{bottom:3067.606185px;}
.y104{bottom:3071.467185px;}
.y35{bottom:3074.167185px;}
.yb4{bottom:3075.674685px;}
.yee{bottom:3076.093185px;}
.y52{bottom:3077.125185px;}
.y62{bottom:3077.608185px;}
.y51{bottom:3080.183685px;}
.y89{bottom:3080.966685px;}
.y9b{bottom:3082.267185px;}
.y28{bottom:3084.488685px;}
.y8c{bottom:3088.349685px;}
.y116{bottom:3091.421685px;}
.yb3{bottom:3095.891685px;}
.yed{bottom:3096.268185px;}
.y34{bottom:3096.583185px;}
.y50{bottom:3101.179185px;}
.y23{bottom:3101.674185px;}
.y88{bottom:3103.157685px;}
.y9a{bottom:3105.056685px;}
.y8b{bottom:3106.282185px;}
.y4f{bottom:3120.095685px;}
.y33{bottom:3121.763685px;}
.y99{bottom:3122.989185px;}
.y26{bottom:3123.343185px;}
.y87{bottom:3127.964685px;}
.y4e{bottom:3130.862685px;}
.y32{bottom:3137.455185px;}
.y115{bottom:3138.130185px;}
.ya9{bottom:3139.382685px;}
.y21{bottom:3140.528685px;}
.y4d{bottom:3141.628185px;}
.yd8{bottom:3142.856685px;}
.y98{bottom:3143.537685px;}
.y4c{bottom:3152.687685px;}
.y31{bottom:3157.628685px;}
.y114{bottom:3158.453685px;}
.y17{bottom:3161.824185px;}
.ya8{bottom:3162.728685px;}
.y97{bottom:3166.327185px;}
.y4b{bottom:3171.037185px;}
.y4a{bottom:3173.753685px;}
.y30{bottom:3178.177185px;}
.y96{bottom:3186.875685px;}
.y49{bottom:3191.687685px;}
.yec{bottom:3197.753685px;}
.yb2{bottom:3198.253185px;}
.y2f{bottom:3198.724185px;}
.y113{bottom:3203.282685px;}
.y48{bottom:3209.620185px;}
.y84{bottom:3216.433185px;}
.y2e{bottom:3220.916685px;}
.y47{bottom:3227.552685px;}
.y112{bottom:3228.089685px;}
.y46{bottom:3245.485185px;}
.y111{bottom:3252.896685px;}
.y45{bottom:3268.274685px;}
.y110{bottom:3277.703685px;}
.yf5{bottom:3281.888685px;}
.y24{bottom:6084.527370px;}
.y1a{bottom:6101.712870px;}
.y22{bottom:6123.381870px;}
.y18{bottom:6140.567370px;}
.y86{bottom:6153.183870px;}
.y85{bottom:6171.117870px;}
.y1b{bottom:9084.566055px;}
.y19{bottom:9123.420555px;}
.h28{height:-2655.508185px;}
.h29{height:11.054283px;}
.h2f{height:15.807462px;}
.h24{height:18.534710px;}
.h25{height:21.357908px;}
.h17{height:21.399665px;}
.h21{height:22.476194px;}
.h5{height:23.850624px;}
.h19{height:24.852284px;}
.h14{height:24.871000px;}
.h2c{height:25.197310px;}
.h26{height:26.697385px;}
.h6{height:26.899200px;}
.h23{height:28.095243px;}
.h22{height:29.031751px;}
.h1a{height:31.065355px;}
.he{height:31.378800px;}
.hf{height:31.384800px;}
.h2d{height:31.496638px;}
.h27{height:31.605865px;}
.h1f{height:33.665702px;}
.h1d{height:35.865450px;}
.h15{height:36.447665px;}
.h1b{height:36.453665px;}
.h9{height:38.854299px;}
.ha{height:39.376275px;}
.h8{height:40.348800px;}
.h1e{height:40.722624px;}
.h7{height:44.831700px;}
.h10{height:46.326090px;}
.h16{height:48.681665px;}
.h1c{height:48.687665px;}
.hc{height:49.090950px;}
.hd{height:50.727315px;}
.h11{height:53.072100px;}
.h12{height:53.407759px;}
.h4{height:59.619450px;}
.hb{height:61.545198px;}
.h2{height:64.557900px;}
.h3{height:65.452950px;}
.h13{height:73.688100px;}
.h2a{height:98.126928px;}
.h20{height:106.478360px;}
.h2b{height:157.162195px;}
.h2e{height:159.614073px;}
.h18{height:161.547095px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w6{width:-2453.018685px;}
.w2{width:41.459439px;}
.w8{width:223.243133px;}
.w4{width:242.374165px;}
.w3{width:255.121714px;}
.w9{width:350.800160px;}
.w7{width:446.477533px;}
.w5{width:510.248506px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x56{left:-129.189630px;}
.x55{left:-123.391848px;}
.x54{left:-119.609664px;}
.x52{left:-116.298613px;}
.x53{left:-34.626657px;}
.x0{left:0.000000px;}
.xf{left:4.998845px;}
.xd{left:12.756000px;}
.x34{left:14.674697px;}
.x48{left:18.852737px;}
.x10{left:21.259500px;}
.x4f{left:22.832954px;}
.x33{left:25.246759px;}
.x4d{left:26.317370px;}
.x1b{left:30.537000px;}
.x32{left:34.048736px;}
.x5f{left:35.205080px;}
.x12{left:37.623000px;}
.x1{left:39.328500px;}
.x7{left:41.265000px;}
.x6{left:46.719000px;}
.x2{left:51.780000px;}
.x3d{left:53.986500px;}
.x47{left:55.145787px;}
.x4e{left:59.259193px;}
.x2e{left:62.956500px;}
.x1c{left:63.973500px;}
.x3{left:65.592000px;}
.x18{left:70.044000px;}
.x41{left:71.061000px;}
.x60{left:72.844644px;}
.x22{left:79.627500px;}
.x35{left:80.649161px;}
.x59{left:84.159237px;}
.x5e{left:86.715000px;}
.x58{left:87.941420px;}
.x57{left:91.252472px;}
.x51{left:101.401500px;}
.x1a{left:104.349000px;}
.x46{left:111.429000px;}
.x5{left:123.349500px;}
.x31{left:130.863205px;}
.x4b{left:132.305487px;}
.x3c{left:135.834000px;}
.x49{left:137.780011px;}
.x36{left:139.087500px;}
.x23{left:141.075000px;}
.x62{left:143.342656px;}
.x5b{left:152.494774px;}
.x63{left:156.147361px;}
.x5c{left:161.449206px;}
.x45{left:164.520000px;}
.x4a{left:168.598537px;}
.x50{left:172.711943px;}
.x11{left:218.965500px;}
.x8{left:221.245500px;}
.x4{left:223.146000px;}
.xa{left:262.552500px;}
.x43{left:283.090500px;}
.x61{left:298.197000px;}
.xb{left:308.671500px;}
.x2f{left:312.787500px;}
.x9{left:313.986000px;}
.x4c{left:359.248500px;}
.x37{left:364.953000px;}
.x44{left:392.716500px;}
.x30{left:411.027000px;}
.x38{left:417.708000px;}
.xe{left:458.055000px;}
.x39{left:469.903500px;}
.x3a{left:520.278000px;}
.x3b{left:562.513500px;}
.xc{left:651.733500px;}
.x1d{left:3030.575685px;}
.x13{left:3037.661685px;}
.x1e{left:3046.939185px;}
.x3f{left:3054.025185px;}
.x24{left:3062.995185px;}
.x1f{left:3064.012185px;}
.x16{left:3070.082685px;}
.x40{left:3071.099685px;}
.x20{left:3079.666185px;}
.x5d{left:3086.753685px;}
.x19{left:3104.387685px;}
.x5a{left:3133.333185px;}
.x2d{left:3135.872685px;}
.x27{left:3139.126185px;}
.x21{left:3141.113685px;}
.x26{left:3222.046185px;}
.x42{left:3283.129185px;}
.x25{left:3312.826185px;}
.x28{left:3364.991685px;}
.x29{left:3417.746685px;}
.x2a{left:3469.942185px;}
.x2b{left:3520.316685px;}
.x2c{left:3562.552185px;}
.x14{left:6070.121370px;}
.x3e{left:6071.138370px;}
.x17{left:6104.426370px;}
.x15{left:9104.465055px;}
@media print{
.v3{vertical-align:-14.997333pt;}
.v5{vertical-align:-7.973333pt;}
.v4{vertical-align:-6.645333pt;}
.vc{vertical-align:-4.994659pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:10.874667pt;}
.v9{vertical-align:13.376000pt;}
.v2{vertical-align:14.544000pt;}
.v7{vertical-align:18.325333pt;}
.v6{vertical-align:19.280000pt;}
.v1{vertical-align:21.114667pt;}
.vb{vertical-align:24.250667pt;}
.v8{vertical-align:37.605333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.001896pt;}
.lsc{letter-spacing:0.002345pt;}
.ls13{letter-spacing:0.002399pt;}
.lsa{letter-spacing:0.002906pt;}
.ls20{letter-spacing:0.003046pt;}
.ls12{letter-spacing:0.003246pt;}
.ls3d{letter-spacing:0.003623pt;}
.ls2c{letter-spacing:0.003733pt;}
.ls37{letter-spacing:0.003813pt;}
.ls23{letter-spacing:0.004216pt;}
.ls3c{letter-spacing:0.006521pt;}
.ls36{letter-spacing:0.006863pt;}
.ls22{letter-spacing:0.007588pt;}
.ls3f{letter-spacing:0.013057pt;}
.ls3a{letter-spacing:0.013741pt;}
.ls4{letter-spacing:0.016294pt;}
.ls3b{letter-spacing:0.024331pt;}
.ls38{letter-spacing:0.025978pt;}
.ls3e{letter-spacing:0.028592pt;}
.ls40{letter-spacing:0.029020pt;}
.ls39{letter-spacing:0.030089pt;}
.ls1e{letter-spacing:1.141598pt;}
.ls1f{letter-spacing:1.146931pt;}
.lsf{letter-spacing:1.905975pt;}
.ls0{letter-spacing:2.653258pt;}
.ls9{letter-spacing:2.655286pt;}
.ls1{letter-spacing:2.658591pt;}
.ls16{letter-spacing:2.659906pt;}
.lsb{letter-spacing:3.383870pt;}
.ls32{letter-spacing:4.527012pt;}
.ls17{letter-spacing:11.290721pt;}
.ls11{letter-spacing:11.808479pt;}
.ls24{letter-spacing:12.284413pt;}
.ls34{letter-spacing:12.541383pt;}
.ls35{letter-spacing:12.546717pt;}
.ls25{letter-spacing:13.608870pt;}
.ls41{letter-spacing:14.321248pt;}
.ls10{letter-spacing:14.460911pt;}
.ls28{letter-spacing:14.754694pt;}
.ls30{letter-spacing:14.757812pt;}
.lse{letter-spacing:14.759467pt;}
.ls2f{letter-spacing:14.760027pt;}
.lsd{letter-spacing:14.760239pt;}
.ls29{letter-spacing:14.760266pt;}
.ls2b{letter-spacing:14.763145pt;}
.ls33{letter-spacing:15.202034pt;}
.ls2a{letter-spacing:17.410245pt;}
.ls26{letter-spacing:17.415578pt;}
.ls2{letter-spacing:17.707139pt;}
.ls2d{letter-spacing:17.710400pt;}
.ls27{letter-spacing:17.714079pt;}
.ls2e{letter-spacing:17.715733pt;}
.ls14{letter-spacing:19.389077pt;}
.ls21{letter-spacing:19.394411pt;}
.ls15{letter-spacing:19.394888pt;}
.ls31{letter-spacing:19.396800pt;}
.ls7{letter-spacing:29.088891pt;}
.ls5{letter-spacing:29.090400pt;}
.ls8{letter-spacing:29.091733pt;}
.ls6{letter-spacing:36.690591pt;}
.ls1b{letter-spacing:90.633240pt;}
.ls19{letter-spacing:93.399132pt;}
.ls18{letter-spacing:96.172465pt;}
.ls1c{letter-spacing:115.737240pt;}
.ls1d{letter-spacing:131.250839pt;}
.ws41{word-spacing:-53.133867pt;}
.ws23{word-spacing:-37.899668pt;}
.ws15{word-spacing:-34.611401pt;}
.ws1b{word-spacing:-28.241478pt;}
.ws1d{word-spacing:-28.118362pt;}
.ws25{word-spacing:-26.122909pt;}
.ws5e{word-spacing:-24.301406pt;}
.ws20{word-spacing:-22.806112pt;}
.ws60{word-spacing:-17.620959pt;}
.ws4b{word-spacing:-14.871285pt;}
.ws3{word-spacing:-13.899648pt;}
.ws22{word-spacing:-13.581016pt;}
.ws33{word-spacing:-12.222996pt;}
.ws45{word-spacing:-10.775575pt;}
.ws40{word-spacing:-8.081715pt;}
.ws1e{word-spacing:-4.027039pt;}
.ws9{word-spacing:-2.438861pt;}
.ws17{word-spacing:-0.053134pt;}
.ws28{word-spacing:-0.031881pt;}
.ws8{word-spacing:0.000000pt;}
.ws59{word-spacing:1.497819pt;}
.ws37{word-spacing:1.742878pt;}
.ws5f{word-spacing:1.767074pt;}
.ws58{word-spacing:1.782446pt;}
.ws54{word-spacing:1.875774pt;}
.ws35{word-spacing:2.074073pt;}
.ws5d{word-spacing:2.102868pt;}
.ws5{word-spacing:3.203994pt;}
.ws12{word-spacing:4.045640pt;}
.ws61{word-spacing:4.136731pt;}
.ws4{word-spacing:4.271974pt;}
.ws5b{word-spacing:4.500050pt;}
.wsc{word-spacing:4.542303pt;}
.ws50{word-spacing:4.544689pt;}
.ws49{word-spacing:4.547588pt;}
.ws38{word-spacing:4.551008pt;}
.wsf{word-spacing:4.619489pt;}
.ws10{word-spacing:4.667310pt;}
.ws44{word-spacing:4.692795pt;}
.wse{word-spacing:4.886291pt;}
.ws16{word-spacing:4.991403pt;}
.ws57{word-spacing:4.994864pt;}
.ws7{word-spacing:4.999897pt;}
.ws4e{word-spacing:5.010978pt;}
.ws18{word-spacing:5.038365pt;}
.ws43{word-spacing:5.053031pt;}
.ws36{word-spacing:5.220202pt;}
.ws53{word-spacing:5.256392pt;}
.wsd{word-spacing:5.327237pt;}
.ws4a{word-spacing:5.425213pt;}
.ws39{word-spacing:5.430001pt;}
.ws2{word-spacing:5.474914pt;}
.ws3a{word-spacing:5.485006pt;}
.ws1a{word-spacing:5.490179pt;}
.ws3d{word-spacing:5.490339pt;}
.ws5a{word-spacing:5.510068pt;}
.wsb{word-spacing:5.533096pt;}
.ws3f{word-spacing:5.919113pt;}
.ws42{word-spacing:6.423278pt;}
.ws3b{word-spacing:6.481460pt;}
.ws13{word-spacing:7.322300pt;}
.ws21{word-spacing:7.398814pt;}
.ws6{word-spacing:7.440916pt;}
.ws0{word-spacing:8.447043pt;}
.ws1{word-spacing:8.523556pt;}
.ws3e{word-spacing:9.696275pt;}
.ws63{word-spacing:10.955431pt;}
.ws1f{word-spacing:11.742585pt;}
.ws47{word-spacing:12.508569pt;}
.ws19{word-spacing:14.693702pt;}
.ws1c{word-spacing:14.718081pt;}
.ws11{word-spacing:16.354714pt;}
.ws4f{word-spacing:16.557470pt;}
.ws4c{word-spacing:17.655666pt;}
.ws4d{word-spacing:17.660999pt;}
.ws62{word-spacing:17.986271pt;}
.ws3c{word-spacing:18.125973pt;}
.wsa{word-spacing:18.474769pt;}
.ws14{word-spacing:19.330271pt;}
.ws27{word-spacing:55.668178pt;}
.ws30{word-spacing:55.675015pt;}
.ws32{word-spacing:55.676148pt;}
.ws31{word-spacing:55.678824pt;}
.ws29{word-spacing:55.679351pt;}
.ws46{word-spacing:68.266563pt;}
.ws56{word-spacing:70.856200pt;}
.ws34{word-spacing:73.707455pt;}
.ws2f{word-spacing:86.858590pt;}
.ws55{word-spacing:87.053618pt;}
.ws48{word-spacing:88.563751pt;}
.ws52{word-spacing:111.812547pt;}
.ws5c{word-spacing:113.926265pt;}
.ws2e{word-spacing:115.797257pt;}
.ws2b{word-spacing:123.967671pt;}
.ws2d{word-spacing:126.256964pt;}
.ws26{word-spacing:127.952711pt;}
.ws2c{word-spacing:128.246297pt;}
.ws24{word-spacing:209.952440pt;}
.ws51{word-spacing:255.532033pt;}
.ws2a{word-spacing:624.675206pt;}
._4{margin-left:-27.927296pt;}
._7{margin-left:-22.066149pt;}
._15{margin-left:-5.352732pt;}
._5{margin-left:-4.288315pt;}
._6{margin-left:-3.320033pt;}
._1{margin-left:-2.142366pt;}
._3{margin-left:-1.105629pt;}
._8{width:1.430804pt;}
._0{width:2.448418pt;}
._14{width:5.867925pt;}
._12{width:8.081715pt;}
._a{width:11.285709pt;}
._9{width:15.047612pt;}
._c{width:16.226503pt;}
._13{width:17.694064pt;}
._10{width:18.601395pt;}
._f{width:19.659026pt;}
._e{width:21.381476pt;}
._d{width:22.518898pt;}
._2{width:23.471086pt;}
._b{width:26.737578pt;}
._17{width:63.742180pt;}
._1a{width:81.401288pt;}
._1c{width:126.926499pt;}
._1f{width:130.660898pt;}
._1e{width:134.753430pt;}
._19{width:150.262952pt;}
._1b{width:157.106611pt;}
._18{width:168.328512pt;}
._16{width:181.860242pt;}
._11{width:259.666944pt;}
._1d{width:411.044624pt;}
.fs12{font-size:13.260499pt;}
.fs16{font-size:18.962318pt;}
.fs11{font-size:22.148941pt;}
.fse{font-size:23.308646pt;}
.fsf{font-size:25.313076pt;}
.fs15{font-size:26.130544pt;}
.fs9{font-size:26.566933pt;}
.fsc{font-size:26.638452pt;}
.fsa{font-size:29.454559pt;}
.fs13{font-size:29.863479pt;}
.fs10{font-size:31.641345pt;}
.fs3{font-size:31.880533pt;}
.fsd{font-size:33.298066pt;}
.fsb{font-size:36.818198pt;}
.fs8{font-size:37.193600pt;}
.fs14{font-size:37.329348pt;}
.fs2{font-size:42.507200pt;}
.fs6{font-size:47.399502pt;}
.fs5{font-size:47.820800pt;}
.fs7{font-size:48.076674pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:5.313333pt;}
.yd7{bottom:6.629698pt;}
.y108{bottom:7.301250pt;}
.yc3{bottom:7.634783pt;}
.yb{bottom:7.980000pt;}
.y69{bottom:8.441900pt;}
.yf8{bottom:8.559100pt;}
.y109{bottom:11.852192pt;}
.ye8{bottom:11.982667pt;}
.yad{bottom:12.992000pt;}
.ybd{bottom:13.506667pt;}
.y94{bottom:14.338667pt;}
.y10a{bottom:16.401162pt;}
.yc2{bottom:18.052915pt;}
.y1e{bottom:19.925333pt;}
.y68{bottom:19.961394pt;}
.yf7{bottom:20.238519pt;}
.y10b{bottom:20.951981pt;}
.ye{bottom:21.548310pt;}
.y43{bottom:25.244000pt;}
.y10c{bottom:25.501103pt;}
.yc4{bottom:26.214295pt;}
.y6a{bottom:28.985561pt;}
.yf9{bottom:29.387969pt;}
.ybc{bottom:29.446667pt;}
.y10d{bottom:30.050068pt;}
.yc9{bottom:33.423763pt;}
.ye7{bottom:33.908000pt;}
.y93{bottom:34.065333pt;}
.y1d{bottom:34.537333pt;}
.y10e{bottom:34.600887pt;}
.ycf{bottom:36.471729pt;}
.ycc{bottom:36.661085pt;}
.ya5{bottom:38.886667pt;}
.yc5{bottom:40.662363pt;}
.y42{bottom:41.053333pt;}
.y7f{bottom:43.690667pt;}
.y106{bottom:44.837249pt;}
.yca{bottom:45.478386pt;}
.y41{bottom:45.634667pt;}
.ye3{bottom:46.345008pt;}
.yce{bottom:46.371515pt;}
.y7e{bottom:46.409333pt;}
.yf3{bottom:47.214667pt;}
.ybb{bottom:47.417333pt;}
.yfa{bottom:49.064499pt;}
.y1c{bottom:49.149333pt;}
.ydc{bottom:49.526082pt;}
.y6b{bottom:49.554778pt;}
.y107{bottom:50.524356pt;}
.ydd{bottom:52.708592pt;}
.yd0{bottom:54.126832pt;}
.ya4{bottom:54.828000pt;}
.y7d{bottom:54.870667pt;}
.yc6{bottom:55.110432pt;}
.yde{bottom:55.889719pt;}
.y92{bottom:56.116000pt;}
.y7c{bottom:57.589333pt;}
.ydf{bottom:59.072146pt;}
.yd3{bottom:59.126347pt;}
.ya{bottom:60.642667pt;}
.yff{bottom:61.999784pt;}
.ye0{bottom:62.253386pt;}
.y10f{bottom:63.492000pt;}
.y70{bottom:63.742915pt;}
.ycb{bottom:64.742478pt;}
.ye1{bottom:65.434513pt;}
.y14{bottom:65.792000pt;}
.y40{bottom:65.892000pt;}
.yba{bottom:67.232000pt;}
.yf2{bottom:67.604000pt;}
.ye2{bottom:68.616940pt;}
.yfb{bottom:68.741028pt;}
.yc7{bottom:69.558501pt;}
.y6c{bottom:70.123996pt;}
.ye4{bottom:71.798154pt;}
.yd4{bottom:72.432453pt;}
.ya3{bottom:73.092000pt;}
.y2a{bottom:75.066667pt;}
.yda{bottom:75.775302pt;}
.yd1{bottom:76.093577pt;}
.y7b{bottom:76.253333pt;}
.y91{bottom:78.498667pt;}
.ydb{bottom:79.752341pt;}
.y11d{bottom:81.229333pt;}
.y75{bottom:81.357167pt;}
.y61{bottom:81.966667pt;}
.y9{bottom:82.345333pt;}
.yc8{bottom:84.006570pt;}
.yb9{bottom:85.202667pt;}
.yf1{bottom:85.537333pt;}
.y3f{bottom:85.817333pt;}
.y103{bottom:87.039730pt;}
.yfc{bottom:88.417557pt;}
.y27{bottom:90.342667pt;}
.y6d{bottom:90.693214pt;}
.yd5{bottom:90.738074pt;}
.y60{bottom:91.537333pt;}
.y74{bottom:91.658491pt;}
.y7a{bottom:93.068000pt;}
.ya2{bottom:93.349333pt;}
.y90{bottom:94.438667pt;}
.y102{bottom:97.484069pt;}
.yd2{bottom:98.060323pt;}
.yf6{bottom:98.852000pt;}
.y5f{bottom:101.106667pt;}
.y73{bottom:101.959816pt;}
.y79{bottom:102.638667pt;}
.y101{bottom:107.928407pt;}
.yfd{bottom:108.094086pt;}
.y3e{bottom:108.200000pt;}
.yd6{bottom:109.043695pt;}
.ya1{bottom:109.289333pt;}
.y29{bottom:109.604000pt;}
.y5e{bottom:110.937333pt;}
.y6e{bottom:111.262432pt;}
.y78{bottom:112.208000pt;}
.y72{bottom:112.261140pt;}
.y13{bottom:112.682667pt;}
.y8{bottom:114.152000pt;}
.y100{bottom:118.372746pt;}
.y77{bottom:122.037333pt;}
.y3d{bottom:122.148000pt;}
.y71{bottom:122.562465pt;}
.y11c{bottom:122.748000pt;}
.y5d{bottom:123.449333pt;}
.yac{bottom:123.861333pt;}
.y25{bottom:124.880000pt;}
.ye6{bottom:126.949333pt;}
.ya0{bottom:127.554667pt;}
.yfe{bottom:127.770616pt;}
.y7{bottom:130.534667pt;}
.y6f{bottom:131.831650pt;}
.ycd{bottom:136.460000pt;}
.y76{bottom:138.349333pt;}
.y6{bottom:139.833333pt;}
.y3c{bottom:140.080000pt;}
.y67{bottom:140.764000pt;}
.y11b{bottom:140.813333pt;}
.y20{bottom:143.809333pt;}
.yab{bottom:144.613333pt;}
.yc1{bottom:146.966667pt;}
.y9f{bottom:147.812000pt;}
.y5c{bottom:154.413333pt;}
.y3b{bottom:158.345333pt;}
.y12{bottom:159.573333pt;}
.y5{bottom:162.328000pt;}
.y16{bottom:163.734667pt;}
.y9e{bottom:166.077333pt;}
.y5b{bottom:170.354667pt;}
.y4{bottom:174.946667pt;}
.yf0{bottom:175.746667pt;}
.yb8{bottom:176.190667pt;}
.y3a{bottom:176.609333pt;}
.y11a{bottom:180.661333pt;}
.y15{bottom:182.700000pt;}
.y5a{bottom:186.294667pt;}
.y8a{bottom:192.350667pt;}
.y39{bottom:196.336000pt;}
.y59{bottom:202.234667pt;}
.y119{bottom:202.712000pt;}
.y11{bottom:206.465333pt;}
.y3{bottom:208.402667pt;}
.yeb{bottom:209.286667pt;}
.yb1{bottom:209.288000pt;}
.y83{bottom:212.741333pt;}
.y58{bottom:218.174667pt;}
.y2d{bottom:218.718667pt;}
.yea{bottom:222.437333pt;}
.yb0{bottom:222.438667pt;}
.y118{bottom:224.762667pt;}
.y2c{bottom:234.658667pt;}
.y82{bottom:234.792000pt;}
.ye9{bottom:235.109333pt;}
.yaf{bottom:235.110667pt;}
.y57{bottom:238.432000pt;}
.yc0{bottom:241.892000pt;}
.y117{bottom:246.813333pt;}
.y105{bottom:250.533333pt;}
.y81{bottom:250.732000pt;}
.y2b{bottom:252.924000pt;}
.y10{bottom:253.356000pt;}
.ya7{bottom:254.297333pt;}
.ybf{bottom:256.178667pt;}
.y44{bottom:258.357333pt;}
.y2{bottom:262.077333pt;}
.y95{bottom:268.864000pt;}
.yae{bottom:269.232000pt;}
.y80{bottom:270.989333pt;}
.yf4{bottom:272.584000pt;}
.ya6{bottom:275.049333pt;}
.ybe{bottom:275.904000pt;}
.y1{bottom:285.988000pt;}
.yd{bottom:294.064000pt;}
.yf{bottom:304.169333pt;}
.yc{bottom:333.516000pt;}
.y56{bottom:2672.014387pt;}
.ye5{bottom:2678.683720pt;}
.yaa{bottom:2679.693053pt;}
.yb7{bottom:2680.207720pt;}
.y8f{bottom:2681.039720pt;}
.y55{bottom:2686.626387pt;}
.y38{bottom:2691.945053pt;}
.yb6{bottom:2696.147720pt;}
.yd9{bottom:2700.609053pt;}
.y8e{bottom:2700.766387pt;}
.y9d{bottom:2705.587720pt;}
.y66{bottom:2706.889053pt;}
.y37{bottom:2707.754387pt;}
.y65{bottom:2709.607720pt;}
.y36{bottom:2712.335720pt;}
.yef{bottom:2713.915720pt;}
.yb5{bottom:2714.118387pt;}
.y64{bottom:2718.069053pt;}
.y63{bottom:2720.787720pt;}
.y9c{bottom:2721.529053pt;}
.y8d{bottom:2722.817053pt;}
.y54{bottom:2724.042387pt;}
.y53{bottom:2726.761053pt;}
.y104{bottom:2730.193053pt;}
.y35{bottom:2732.593053pt;}
.yb4{bottom:2733.933053pt;}
.yee{bottom:2734.305053pt;}
.y52{bottom:2735.222387pt;}
.y62{bottom:2735.651720pt;}
.y51{bottom:2737.941053pt;}
.y89{bottom:2738.637053pt;}
.y9b{bottom:2739.793053pt;}
.y28{bottom:2741.767720pt;}
.y8c{bottom:2745.199720pt;}
.y116{bottom:2747.930387pt;}
.yb3{bottom:2751.903720pt;}
.yed{bottom:2752.238387pt;}
.y34{bottom:2752.518387pt;}
.y50{bottom:2756.603720pt;}
.y23{bottom:2757.043720pt;}
.y88{bottom:2758.362387pt;}
.y9a{bottom:2760.050387pt;}
.y8b{bottom:2761.139720pt;}
.y4f{bottom:2773.418387pt;}
.y33{bottom:2774.901053pt;}
.y99{bottom:2775.990387pt;}
.y26{bottom:2776.305053pt;}
.y87{bottom:2780.413053pt;}
.y4e{bottom:2782.989053pt;}
.y32{bottom:2788.849053pt;}
.y115{bottom:2789.449053pt;}
.ya9{bottom:2790.562387pt;}
.y21{bottom:2791.581053pt;}
.y4d{bottom:2792.558387pt;}
.yd8{bottom:2793.650387pt;}
.y98{bottom:2794.255720pt;}
.y4c{bottom:2802.389053pt;}
.y31{bottom:2806.781053pt;}
.y114{bottom:2807.514387pt;}
.y17{bottom:2810.510387pt;}
.ya8{bottom:2811.314387pt;}
.y97{bottom:2814.513053pt;}
.y4b{bottom:2818.699720pt;}
.y4a{bottom:2821.114387pt;}
.y30{bottom:2825.046387pt;}
.y96{bottom:2832.778387pt;}
.y49{bottom:2837.055720pt;}
.yec{bottom:2842.447720pt;}
.yb2{bottom:2842.891720pt;}
.y2f{bottom:2843.310387pt;}
.y113{bottom:2847.362387pt;}
.y48{bottom:2852.995720pt;}
.y84{bottom:2859.051720pt;}
.y2e{bottom:2863.037053pt;}
.y47{bottom:2868.935720pt;}
.y112{bottom:2869.413053pt;}
.y46{bottom:2884.875720pt;}
.y111{bottom:2891.463720pt;}
.y45{bottom:2905.133053pt;}
.y110{bottom:2913.514387pt;}
.yf5{bottom:2917.234387pt;}
.y24{bottom:5408.468773pt;}
.y1a{bottom:5423.744773pt;}
.y22{bottom:5443.006107pt;}
.y18{bottom:5458.282107pt;}
.y86{bottom:5469.496773pt;}
.y85{bottom:5485.438107pt;}
.y1b{bottom:8075.169827pt;}
.y19{bottom:8109.707160pt;}
.h28{height:-2360.451720pt;}
.h29{height:9.826030pt;}
.h2f{height:14.051078pt;}
.h24{height:16.475298pt;}
.h25{height:18.984807pt;}
.h17{height:19.021924pt;}
.h21{height:19.978839pt;}
.h5{height:21.200555pt;}
.h19{height:22.090919pt;}
.h14{height:22.107556pt;}
.h2c{height:22.397609pt;}
.h26{height:23.731009pt;}
.h6{height:23.910400pt;}
.h23{height:24.973549pt;}
.h22{height:25.806001pt;}
.h1a{height:27.613649pt;}
.he{height:27.892267pt;}
.hf{height:27.897600pt;}
.h2d{height:27.997011pt;}
.h27{height:28.094102pt;}
.h1f{height:29.925069pt;}
.h1d{height:31.880400pt;}
.h15{height:32.397924pt;}
.h1b{height:32.403258pt;}
.h9{height:34.537154pt;}
.ha{height:35.001133pt;}
.h8{height:35.865600pt;}
.h1e{height:36.197888pt;}
.h7{height:39.850400pt;}
.h10{height:41.178747pt;}
.h16{height:43.272591pt;}
.h1c{height:43.277924pt;}
.hc{height:43.636400pt;}
.hd{height:45.090947pt;}
.h11{height:47.175200pt;}
.h12{height:47.473564pt;}
.h4{height:52.995067pt;}
.hb{height:54.706843pt;}
.h2{height:57.384800pt;}
.h3{height:58.180400pt;}
.h13{height:65.500533pt;}
.h2a{height:87.223936pt;}
.h20{height:94.647431pt;}
.h2b{height:139.699729pt;}
.h2e{height:141.879176pt;}
.h18{height:143.597418pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w6{width:-2180.461053pt;}
.w2{width:36.852834pt;}
.w8{width:198.438340pt;}
.w4{width:215.443702pt;}
.w3{width:226.774857pt;}
.w9{width:311.822364pt;}
.w7{width:396.868918pt;}
.w5{width:453.554227pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x56{left:-114.835227pt;}
.x55{left:-109.681643pt;}
.x54{left:-106.319702pt;}
.x52{left:-103.376545pt;}
.x53{left:-30.779251pt;}
.x0{left:0.000000pt;}
.xf{left:4.443418pt;}
.xd{left:11.338667pt;}
.x34{left:13.044175pt;}
.x48{left:16.757989pt;}
.x10{left:18.897333pt;}
.x4f{left:20.295959pt;}
.x33{left:22.441563pt;}
.x4d{left:23.393218pt;}
.x1b{left:27.144000pt;}
.x32{left:30.265543pt;}
.x5f{left:31.293405pt;}
.x12{left:33.442667pt;}
.x1{left:34.958667pt;}
.x7{left:36.680000pt;}
.x6{left:41.528000pt;}
.x2{left:46.026667pt;}
.x3d{left:47.988000pt;}
.x47{left:49.018477pt;}
.x4e{left:52.674838pt;}
.x2e{left:55.961333pt;}
.x1c{left:56.865333pt;}
.x3{left:58.304000pt;}
.x18{left:62.261333pt;}
.x41{left:63.165333pt;}
.x60{left:64.750795pt;}
.x22{left:70.780000pt;}
.x35{left:71.688143pt;}
.x59{left:74.808210pt;}
.x5e{left:77.080000pt;}
.x58{left:78.170151pt;}
.x57{left:81.113308pt;}
.x51{left:90.134667pt;}
.x1a{left:92.754667pt;}
.x46{left:99.048000pt;}
.x5{left:109.644000pt;}
.x31{left:116.322849pt;}
.x4b{left:117.604877pt;}
.x3c{left:120.741333pt;}
.x49{left:122.471121pt;}
.x36{left:123.633333pt;}
.x23{left:125.400000pt;}
.x62{left:127.415694pt;}
.x5b{left:135.550910pt;}
.x63{left:138.797654pt;}
.x5c{left:143.510405pt;}
.x45{left:146.240000pt;}
.x4a{left:149.865366pt;}
.x50{left:153.521727pt;}
.x11{left:194.636000pt;}
.x8{left:196.662667pt;}
.x4{left:198.352000pt;}
.xa{left:233.380000pt;}
.x43{left:251.636000pt;}
.x61{left:265.064000pt;}
.xb{left:274.374667pt;}
.x2f{left:278.033333pt;}
.x9{left:279.098667pt;}
.x4c{left:319.332000pt;}
.x37{left:324.402667pt;}
.x44{left:349.081333pt;}
.x30{left:365.357333pt;}
.x38{left:371.296000pt;}
.xe{left:407.160000pt;}
.x39{left:417.692000pt;}
.x3a{left:462.469333pt;}
.x3b{left:500.012000pt;}
.xc{left:579.318667pt;}
.x1d{left:2693.845053pt;}
.x13{left:2700.143720pt;}
.x1e{left:2708.390387pt;}
.x3f{left:2714.689053pt;}
.x24{left:2722.662387pt;}
.x1f{left:2723.566387pt;}
.x16{left:2728.962387pt;}
.x40{left:2729.866387pt;}
.x20{left:2737.481053pt;}
.x5d{left:2743.781053pt;}
.x19{left:2759.455720pt;}
.x5a{left:2785.185053pt;}
.x2d{left:2787.442387pt;}
.x27{left:2790.334387pt;}
.x21{left:2792.101053pt;}
.x26{left:2864.041053pt;}
.x42{left:2918.337053pt;}
.x25{left:2944.734387pt;}
.x28{left:2991.103720pt;}
.x29{left:3037.997053pt;}
.x2a{left:3084.393053pt;}
.x2b{left:3129.170387pt;}
.x2c{left:3166.713053pt;}
.x14{left:5395.663440pt;}
.x3e{left:5396.567440pt;}
.x17{left:5426.156773pt;}
.x15{left:8092.857827pt;}
}




    .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; }
  