
    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_b85ac706eb5ccaf2ac0d13fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_3aab8964ce926be8817ca465.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.999000;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_a7b770ef3ec60c4c5ed86d13.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.652000;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_28c4a140689628f7adbae93f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.522000;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_d6eb99f175cb2505d5615aa9.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_a20a91e5abc7222dbf28b5a4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.686000;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_edb3687e4bfc9ef58fa50a3a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_63d685c046b3baaa36597a03.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.683000;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_920a0e60a983743f7d594c66.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.704000;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_528c3c4755954f96130f8b91.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.664000;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;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffe;src:url('chunks/assets/font_877c76caefdf95864eceb320.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.454000;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_af5bb094c2c0e2f386eaa409.woff2')format("woff");}.fff{font-family:fff;line-height:0.923000;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_f20dd95e83bcfa430423b5b3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.936523;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_dfd7ecd74ed5e171f9f3e719.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.936523;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_50c2d6d87b5e75175b948a6b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.932129;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_df1cf9e3bba6ad71c5030445.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.926758;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_b8aef11f40e3e11cccd1680b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.431000;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_82106ae433d80a81c440269d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.922000;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_7a0efc6c248329b52f852740.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.940000;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_6189f1f19034fde088574e0a.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.739000;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_01723721245b3f5c6c79a39a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.750000;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_48138d3a2c535738d3a4a3fd.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.940000;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_3ca6d29dcac3982edc81ef15.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.700000;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_397d21499c40c858efdd3c1a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.940000;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_8883bf194fb6f67158e8442f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.720000;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_fe24a9359e2af9caab270b0f.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_e7aaa6d8b9cc2d9c9c8c7ebb.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.720000;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);}
.m3{transform:matrix(0.245407,0.047702,-0.047702,0.245407,0,0);-ms-transform:matrix(0.245407,0.047702,-0.047702,0.245407,0,0);-webkit-transform:matrix(0.245407,0.047702,-0.047702,0.245407,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);}
.m4{transform:matrix(0.253185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253185,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253185,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);}
.vc{vertical-align:-23.754000px;}
.v6{vertical-align:-21.696000px;}
.v2{vertical-align:-14.916000px;}
.v3{vertical-align:-11.406000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:7.467508px;}
.v9{vertical-align:9.183549px;}
.v4{vertical-align:12.048000px;}
.v7{vertical-align:16.560000px;}
.v5{vertical-align:21.696000px;}
.v8{vertical-align:23.748000px;}
.va{vertical-align:31.236092px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.034872px;}
.ls11{letter-spacing:0.040872px;}
.ls23{letter-spacing:0.048359px;}
.ls2e{letter-spacing:0.051776px;}
.ls21{letter-spacing:0.659838px;}
.ls19{letter-spacing:0.732486px;}
.ls18{letter-spacing:2.985288px;}
.ls1c{letter-spacing:2.985647px;}
.ls7{letter-spacing:2.987720px;}
.ls1b{letter-spacing:2.988158px;}
.ls5{letter-spacing:2.988389px;}
.ls17{letter-spacing:2.991288px;}
.ls1f{letter-spacing:10.008359px;}
.ls20{letter-spacing:10.014359px;}
.ls13{letter-spacing:10.919261px;}
.lsc{letter-spacing:10.925261px;}
.ls1a{letter-spacing:11.781764px;}
.lsa{letter-spacing:14.540700px;}
.ls8{letter-spacing:14.546700px;}
.ls9{letter-spacing:14.595776px;}
.lsd{letter-spacing:16.321534px;}
.ls1e{letter-spacing:16.322400px;}
.ls4{letter-spacing:16.362359px;}
.ls3{letter-spacing:16.368359px;}
.ls2c{letter-spacing:17.867400px;}
.lsb{letter-spacing:17.870700px;}
.ls15{letter-spacing:17.873400px;}
.ls14{letter-spacing:17.879261px;}
.ls10{letter-spacing:17.919776px;}
.ls2d{letter-spacing:20.867261px;}
.ls12{letter-spacing:21.323261px;}
.lsf{letter-spacing:21.329261px;}
.ls1d{letter-spacing:25.170016px;}
.ls16{letter-spacing:25.176016px;}
.ls6{letter-spacing:28.095088px;}
.ls2b{letter-spacing:32.721840px;}
.ls1{letter-spacing:32.727840px;}
.ls22{letter-spacing:32.753885px;}
.ls2{letter-spacing:32.759885px;}
.ls24{letter-spacing:32.761747px;}
.ls26{letter-spacing:46.391720px;}
.ls28{letter-spacing:46.659746px;}
.ls29{letter-spacing:46.826491px;}
.ls2a{letter-spacing:47.112338px;}
.ls27{letter-spacing:47.517288px;}
.ls25{letter-spacing:51.989740px;}
.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;}
}
.ws86{word-spacing:-125.289972px;}
.ws9{word-spacing:-71.922182px;}
.ws32{word-spacing:-71.730900px;}
.ws5{word-spacing:-70.475904px;}
.ws16{word-spacing:-58.729920px;}
.ws3d{word-spacing:-56.380733px;}
.ws80{word-spacing:-55.919698px;}
.ws81{word-spacing:-55.770975px;}
.ws44{word-spacing:-53.941637px;}
.ws0{word-spacing:-49.446557px;}
.ws1{word-spacing:-49.315050px;}
.ws30{word-spacing:-42.872763px;}
.ws18{word-spacing:-42.610945px;}
.ws3{word-spacing:-40.456397px;}
.ws4{word-spacing:-40.348800px;}
.ws14{word-spacing:-39.153018px;}
.wse{word-spacing:-38.913916px;}
.ws3b{word-spacing:-34.689214px;}
.ws3a{word-spacing:-34.603137px;}
.wsa{word-spacing:-33.713664px;}
.ws17{word-spacing:-33.624000px;}
.ws2a{word-spacing:-31.680026px;}
.ws37{word-spacing:-28.991166px;}
.ws36{word-spacing:-28.931390px;}
.ws4c{word-spacing:-26.970931px;}
.ws4d{word-spacing:-26.899200px;}
.ws71{word-spacing:-25.658203px;}
.ws49{word-spacing:-25.134566px;}
.ws21{word-spacing:-25.066556px;}
.ws78{word-spacing:-25.008935px;}
.ws8a{word-spacing:-25.008241px;}
.ws76{word-spacing:-25.008137px;}
.ws1a{word-spacing:-25.007627px;}
.ws6b{word-spacing:-25.007145px;}
.ws1b{word-spacing:-25.005787px;}
.ws8b{word-spacing:-25.004933px;}
.ws6e{word-spacing:-25.004262px;}
.ws31{word-spacing:-25.003801px;}
.ws89{word-spacing:-25.003796px;}
.ws7a{word-spacing:-24.942470px;}
.ws69{word-spacing:-24.942275px;}
.ws88{word-spacing:-24.942221px;}
.ws1d{word-spacing:-24.938722px;}
.ws48{word-spacing:-24.938203px;}
.ws11{word-spacing:-24.807293px;}
.ws6c{word-spacing:-24.805723px;}
.ws79{word-spacing:-24.802602px;}
.ws28{word-spacing:-24.747034px;}
.ws22{word-spacing:-24.746363px;}
.ws34{word-spacing:-24.746340px;}
.ws29{word-spacing:-24.746330px;}
.ws46{word-spacing:-24.745345px;}
.ws2c{word-spacing:-24.744692px;}
.ws65{word-spacing:-24.744676px;}
.ws6d{word-spacing:-24.743577px;}
.ws7b{word-spacing:-24.742533px;}
.ws19{word-spacing:-24.742453px;}
.ws12{word-spacing:-24.741839px;}
.ws2f{word-spacing:-24.741435px;}
.ws2e{word-spacing:-24.741421px;}
.ws64{word-spacing:-24.741394px;}
.ws4a{word-spacing:-24.740865px;}
.ws4b{word-spacing:-24.738135px;}
.ws77{word-spacing:-24.737024px;}
.wsb{word-spacing:-24.610930px;}
.ws20{word-spacing:-24.547745px;}
.ws2b{word-spacing:-24.545475px;}
.ws7d{word-spacing:-22.889586px;}
.ws73{word-spacing:-22.838209px;}
.ws75{word-spacing:-22.837188px;}
.ws74{word-spacing:-22.834608px;}
.wsd{word-spacing:-22.654952px;}
.ws7c{word-spacing:-22.599506px;}
.wsc{word-spacing:-22.598449px;}
.ws3f{word-spacing:-22.598234px;}
.ws3e{word-spacing:-22.596824px;}
.ws13{word-spacing:-22.595177px;}
.ws10{word-spacing:-22.595142px;}
.ws15{word-spacing:-22.475626px;}
.ws51{word-spacing:-22.415850px;}
.ws3c{word-spacing:-21.815122px;}
.ws2{word-spacing:-20.389594px;}
.ws43{word-spacing:-20.335795px;}
.ws7e{word-spacing:-20.228198px;}
.ws45{word-spacing:-20.084736px;}
.ws63{word-spacing:-20.013005px;}
.ws60{word-spacing:-19.052323px;}
.ws56{word-spacing:-19.051211px;}
.ws5e{word-spacing:-19.051185px;}
.ws59{word-spacing:-19.050694px;}
.ws55{word-spacing:-19.050655px;}
.ws5f{word-spacing:-19.050653px;}
.ws62{word-spacing:-19.050150px;}
.ws5d{word-spacing:-19.049549px;}
.ws5a{word-spacing:-19.049024px;}
.ws54{word-spacing:-19.049020px;}
.ws61{word-spacing:-19.048514px;}
.ws58{word-spacing:-19.048502px;}
.ws5c{word-spacing:-19.047358px;}
.ws57{word-spacing:-19.046833px;}
.ws53{word-spacing:-19.046828px;}
.ws87{word-spacing:-18.850925px;}
.ws50{word-spacing:-18.787892px;}
.ws2d{word-spacing:-18.785470px;}
.ws26{word-spacing:-18.523652px;}
.ws82{word-spacing:-18.520905px;}
.ws1f{word-spacing:-18.327288px;}
.ws70{word-spacing:-18.076187px;}
.wsf{word-spacing:-17.215373px;}
.ws47{word-spacing:-16.737168px;}
.ws7f{word-spacing:-15.063552px;}
.ws85{word-spacing:-14.959158px;}
.ws6{word-spacing:-13.593062px;}
.ws7{word-spacing:-13.557197px;}
.ws84{word-spacing:-11.634891px;}
.ws33{word-spacing:-10.274495px;}
.ws27{word-spacing:-7.971808px;}
.ws35{word-spacing:-7.933082px;}
.ws4f{word-spacing:-2.749093px;}
.ws4e{word-spacing:-1.963638px;}
.ws72{word-spacing:-1.315248px;}
.ws1c{word-spacing:-0.065455px;}
.ws83{word-spacing:-0.035873px;}
.ws8{word-spacing:0.000000px;}
.ws6f{word-spacing:1.865003px;}
.ws1e{word-spacing:9.862974px;}
.ws23{word-spacing:10.800009px;}
.ws42{word-spacing:20.836702px;}
.ws66{word-spacing:34.536384px;}
.ws6a{word-spacing:37.414652px;}
.ws67{word-spacing:55.541800px;}
.ws68{word-spacing:55.546214px;}
.ws41{word-spacing:64.378563px;}
.ws40{word-spacing:64.409560px;}
.ws39{word-spacing:69.697109px;}
.ws38{word-spacing:127.525509px;}
.ws5b{word-spacing:588.011222px;}
.ws52{word-spacing:735.562301px;}
.ws25{word-spacing:1603.925730px;}
.ws24{word-spacing:1723.691185px;}
._13{margin-left:-10.494480px;}
._19{margin-left:-9.059472px;}
._11{margin-left:-7.854552px;}
._10{margin-left:-6.807278px;}
._28{margin-left:-5.739729px;}
._14{margin-left:-4.314028px;}
._0{margin-left:-3.287670px;}
._1{margin-left:-1.315068px;}
._a{width:1.071178px;}
._2{width:2.151936px;}
._b{width:3.228904px;}
._1a{width:9.982525px;}
._15{width:11.139234px;}
._5{width:12.337766px;}
._d{width:13.418525px;}
._9{width:15.481880px;}
._e{width:17.306627px;}
._21{width:18.769727px;}
._8{width:21.698543px;}
._f{width:22.853701px;}
._c{width:23.886860px;}
._27{width:28.979284px;}
._22{width:32.518140px;}
._3{width:40.133606px;}
._4{width:41.233481px;}
._25{width:67.405628px;}
._26{width:73.575860px;}
._1c{width:83.012189px;}
._1f{width:97.894562px;}
._1b{width:137.582058px;}
._24{width:141.637077px;}
._1d{width:580.382837px;}
._1e{width:581.384837px;}
._20{width:583.070837px;}
._23{width:584.756837px;}
._12{width:588.770837px;}
._17{width:589.778837px;}
._18{width:591.464837px;}
._16{width:598.166837px;}
._6{width:601.718837px;}
._7{width:603.404837px;}
.fc10{color:rgb(6,125,180);}
.fcf{color:rgb(75,74,74);}
.fcd{color:rgb(68,99,160);}
.fc1{color:rgb(47,160,219);}
.fcb{color:rgb(128,81,154);}
.fc6{color:rgb(0,0,0);}
.fce{color:rgb(29,29,27);}
.fc3{color:rgb(29,29,27);}
.fc8{color:rgb(100,180,80);}
.fc9{color:rgb(29,29,27);}
.fc0{color:rgb(55,39,124);}
.fcc{color:rgb(55,39,124);}
.fc4{color:rgb(158,85,157);}
.fc5{color:transparent;}
.fc7{color:rgb(223,80,100);}
.fc2{color:rgb(255,255,255);}
.fca{color:rgb(158,81,157);}
.fs12{font-size:13.654872px;}
.fse{font-size:16.792776px;}
.fs11{font-size:19.506960px;}
.fs13{font-size:22.758120px;}
.fsc{font-size:23.989680px;}
.fs14{font-size:26.009280px;}
.fs15{font-size:29.260440px;}
.fsd{font-size:29.525760px;}
.fs4{font-size:35.865600px;}
.fs22{font-size:35.873280px;}
.fsa{font-size:41.842800px;}
.fs23{font-size:41.852124px;}
.fs9{font-size:47.820600px;}
.fs21{font-size:47.831076px;}
.fs19{font-size:50.162307px;}
.fs1a{font-size:50.390978px;}
.fs18{font-size:51.480919px;}
.fs1{font-size:53.798400px;}
.fs25{font-size:53.809920px;}
.fs7{font-size:59.775600px;}
.fs10{font-size:59.775777px;}
.fs8{font-size:62.764200px;}
.fs1e{font-size:62.778240px;}
.fs6{font-size:65.454600px;}
.fs1d{font-size:66.621960px;}
.fs17{font-size:71.731200px;}
.fs24{font-size:71.746560px;}
.fs20{font-size:77.990512px;}
.fs1f{font-size:77.990530px;}
.fsb{font-size:86.077200px;}
.fsf{font-size:86.077454px;}
.fs2{font-size:89.664000px;}
.fs3{font-size:107.596800px;}
.fs0{font-size:131.506800px;}
.fs16{font-size:143.461800px;}
.fs1c{font-size:144.839853px;}
.fs1b{font-size:148.722600px;}
.fs5{font-size:191.282400px;}
.ye3{bottom:-168.934592px;}
.ye2{bottom:-161.968727px;}
.y114{bottom:-154.897581px;}
.y111{bottom:-154.874268px;}
.ye6{bottom:-153.992717px;}
.ye7{bottom:-146.958646px;}
.y115{bottom:-146.486311px;}
.ye4{bottom:-141.343730px;}
.y112{bottom:-139.324095px;}
.y113{bottom:-123.862821px;}
.ye5{bottom:-120.742434px;}
.y10f{bottom:-102.005272px;}
.y10c{bottom:-101.981959px;}
.ye0{bottom:-101.100408px;}
.ye1{bottom:-95.034699px;}
.y110{bottom:-94.562365px;}
.yde{bottom:-88.451421px;}
.y10d{bottom:-86.431786px;}
.y10e{bottom:-70.970512px;}
.ydf{bottom:-67.850124px;}
.y10a{bottom:-49.112963px;}
.y107{bottom:-49.089650px;}
.ydc{bottom:-48.208099px;}
.ydd{bottom:-42.142390px;}
.y10b{bottom:-41.670056px;}
.yda{bottom:-35.559111px;}
.y108{bottom:-33.539476px;}
.y109{bottom:-18.078202px;}
.ydb{bottom:-14.957815px;}
.y0{bottom:0.000000px;}
.yf9{bottom:1.559084px;}
.y103{bottom:3.779347px;}
.y100{bottom:3.802660px;}
.yd5{bottom:4.684210px;}
.yf8{bottom:8.524948px;}
.yd8{bottom:8.666373px;}
.y25a{bottom:8.915232px;}
.yd{bottom:10.297500px;}
.yd9{bottom:10.734044px;}
.y106{bottom:11.206378px;}
.y18e{bottom:13.692319px;}
.y193{bottom:14.119663px;}
.y12b{bottom:15.596094px;}
.y128{bottom:15.619407px;}
.yd7{bottom:15.829085px;}
.yfc{bottom:16.500958px;}
.yd3{bottom:17.333198px;}
.y260{bottom:17.838427px;}
.y101{bottom:19.352833px;}
.y187{bottom:19.594310px;}
.y105{bottom:19.708126px;}
.y26d{bottom:21.921077px;}
.yb1{bottom:22.103722px;}
.yfd{bottom:23.535030px;}
.y12c{bottom:24.007364px;}
.y18d{bottom:26.107490px;}
.y192{bottom:26.591430px;}
.y104{bottom:26.870837px;}
.yfa{bottom:29.149945px;}
.yc{bottom:29.262000px;}
.y279{bottom:30.890061px;}
.y129{bottom:31.169580px;}
.y186{bottom:32.335838px;}
.y102{bottom:34.814107px;}
.y26c{bottom:34.955045px;}
.y26e{bottom:36.841699px;}
.y5{bottom:37.387500px;}
.yd4{bottom:37.934494px;}
.y18c{bottom:38.522661px;}
.y191{bottom:39.063197px;}
.yb7{bottom:41.379173px;}
.y265{bottom:44.974500px;}
.y185{bottom:45.077365px;}
.y1eb{bottom:45.265500px;}
.y12d{bottom:45.820500px;}
.y12a{bottom:46.630854px;}
.y26b{bottom:47.989014px;}
.yd6{bottom:48.448380px;}
.y4a{bottom:48.880500px;}
.yfb{bottom:49.751242px;}
.y25b{bottom:50.881821px;}
.y1fc{bottom:51.169500px;}
.y190{bottom:51.534964px;}
.y215{bottom:52.761000px;}
.y1c5{bottom:53.004000px;}
.y1c0{bottom:53.214000px;}
.y1b9{bottom:55.488000px;}
.y21e{bottom:56.899500px;}
.y264{bottom:57.006000px;}
.y4{bottom:57.711000px;}
.y184{bottom:57.818892px;}
.y1f{bottom:58.237500px;}
.y25f{bottom:59.805015px;}
.y198{bottom:60.498000px;}
.y116{bottom:61.891207px;}
.y253{bottom:64.513500px;}
.y1ca{bottom:64.848000px;}
.y74{bottom:65.647500px;}
.y97{bottom:66.699000px;}
.y202{bottom:67.240500px;}
.y1cc{bottom:67.666500px;}
.y126{bottom:68.488403px;}
.y123{bottom:68.511716px;}
.y21c{bottom:68.634000px;}
.yf6{bottom:69.393267px;}
.y45{bottom:70.776000px;}
.y28f{bottom:70.794000px;}
.y1fb{bottom:71.493000px;}
.y142{bottom:74.086500px;}
.y138{bottom:74.755500px;}
.y1e2{bottom:74.794500px;}
.yf7{bottom:75.458976px;}
.y127{bottom:75.931310px;}
.y1e{bottom:76.170000px;}
.y263{bottom:77.331000px;}
.y214{bottom:77.568000px;}
.y1c4{bottom:77.811000px;}
.y47{bottom:78.178500px;}
.y258{bottom:81.768000px;}
.yf4{bottom:82.042255px;}
.y124{bottom:84.061889px;}
.y15a{bottom:84.693000px;}
.y44{bottom:86.467500px;}
.y96{bottom:87.022500px;}
.y201{bottom:87.564000px;}
.y82{bottom:88.650000px;}
.y176{bottom:88.695000px;}
.y181{bottom:88.756500px;}
.y161{bottom:89.424000px;}
.y23e{bottom:89.821500px;}
.y2e{bottom:90.729000px;}
.y5a{bottom:90.768000px;}
.y248{bottom:90.940500px;}
.y28e{bottom:91.117500px;}
.y252{bottom:91.561500px;}
.y70{bottom:91.788000px;}
.y1fa{bottom:91.816500px;}
.y1e1{bottom:92.727000px;}
.y25c{bottom:92.848411px;}
.yb6{bottom:93.171000px;}
.y1a3{bottom:93.642000px;}
.y141{bottom:94.410000px;}
.y197{bottom:95.202000px;}
.y1d{bottom:96.343500px;}
.y22e{bottom:97.764000px;}
.y262{bottom:98.401500px;}
.y46{bottom:98.502000px;}
.y1ae{bottom:99.235500px;}
.y125{bottom:99.523164px;}
.y159{bottom:101.130000px;}
.y25e{bottom:101.771603px;}
.y257{bottom:102.091500px;}
.y213{bottom:102.375000px;}
.yf5{bottom:102.643551px;}
.y8d{bottom:104.505000px;}
.y43{bottom:106.641000px;}
.y55{bottom:106.828500px;}
.y1ea{bottom:107.169000px;}
.y95{bottom:107.346000px;}
.y3{bottom:107.452500px;}
.y200{bottom:107.889000px;}
.y251{bottom:108.000000px;}
.y27e{bottom:108.014588px;}
.y247{bottom:108.873000px;}
.y175{bottom:109.018500px;}
.y180{bottom:109.080000px;}
.y81{bottom:109.335000px;}
.y1e0{bottom:110.659500px;}
.y160{bottom:111.037500px;}
.yb5{bottom:111.105000px;}
.y28d{bottom:111.442500px;}
.y270{bottom:111.539762px;}
.y1a2{bottom:111.574500px;}
.yb{bottom:111.682500px;}
.y1f9{bottom:112.140000px;}
.yd1{bottom:112.278000px;}
.y14d{bottom:112.578000px;}
.y231{bottom:112.729500px;}
.y32{bottom:113.908500px;}
.y23d{bottom:114.154500px;}
.y1c{bottom:114.277500px;}
.y196{bottom:115.525500px;}
.y22d{bottom:115.696500px;}
.y209{bottom:116.007000px;}
.y6c{bottom:116.239500px;}
.y158{bottom:117.568500px;}
.y1c2{bottom:118.104000px;}
.y121{bottom:121.380712px;}
.y11e{bottom:121.404026px;}
.y26f{bottom:121.898163px;}
.yf2{bottom:122.285576px;}
.y212{bottom:122.698500px;}
.y246{bottom:123.397500px;}
.y137{bottom:124.369500px;}
.y42{bottom:124.573500px;}
.y63{bottom:124.591500px;}
.y8c{bottom:124.828500px;}
.yff{bottom:125.823382px;}
.y1e9{bottom:125.850000px;}
.y16b{bottom:125.943000px;}
.y1ad{bottom:126.135000px;}
.y140{bottom:126.189000px;}
.y230{bottom:126.927000px;}
.y250{bottom:127.428000px;}
.y59{bottom:127.557000px;}
.y94{bottom:127.669500px;}
.y1ff{bottom:128.212500px;}
.yf3{bottom:128.351285px;}
.y122{bottom:128.823619px;}
.y1df{bottom:129.339000px;}
.y1a1{bottom:129.508500px;}
.y80{bottom:129.658500px;}
.y174{bottom:129.757500px;}
.yb4{bottom:129.784500px;}
.y17f{bottom:129.892500px;}
.y1b{bottom:129.967500px;}
.yd0{bottom:130.210500px;}
.y27d{bottom:131.287133px;}
.y28c{bottom:131.766000px;}
.y23c{bottom:132.087000px;}
.y1f8{bottom:132.465000px;}
.y15f{bottom:132.651000px;}
.y1b6{bottom:132.777000px;}
.y14c{bottom:132.901500px;}
.y157{bottom:134.007000px;}
.y31{bottom:134.083500px;}
.y22c{bottom:134.703000px;}
.y25d{bottom:134.814999px;}
.yf0{bottom:134.934564px;}
.y208{bottom:136.330500px;}
.y11f{bottom:136.954199px;}
.y259{bottom:137.458500px;}
.y274{bottom:139.136583px;}
.y295{bottom:139.656000px;}
.y195{bottom:140.332500px;}
.y2{bottom:140.628000px;}
.y6b{bottom:140.691000px;}
.y27c{bottom:141.645534px;}
.y1d3{bottom:142.002000px;}
.y136{bottom:142.302000px;}
.y41{bottom:143.254500px;}
.y245{bottom:143.721000px;}
.y261{bottom:143.738192px;}
.y1e8{bottom:143.782500px;}
.y24f{bottom:143.866500px;}
.y62{bottom:145.258500px;}
.y58{bottom:145.491000px;}
.y13f{bottom:146.512500px;}
.y211{bottom:147.505500px;}
.y18b{bottom:147.514500px;}
.y1a0{bottom:147.867000px;}
.y1a{bottom:147.901500px;}
.ycf{bottom:148.143000px;}
.y1fe{bottom:148.536000px;}
.y60{bottom:149.398500px;}
.y23b{bottom:150.019500px;}
.y173{bottom:150.082500px;}
.y17e{bottom:150.216000px;}
.y93{bottom:150.235500px;}
.y7f{bottom:150.343500px;}
.y156{bottom:150.445500px;}
.y1b5{bottom:150.711000px;}
.y2b{bottom:151.678500px;}
.y28b{bottom:152.089500px;}
.ya{bottom:152.331000px;}
.y120{bottom:152.415473px;}
.y61{bottom:152.448000px;}
.y1f7{bottom:152.788500px;}
.y15e{bottom:152.974500px;}
.y1ac{bottom:153.034500px;}
.ya5{bottom:153.478344px;}
.y224{bottom:154.359000px;}
.yf1{bottom:155.535860px;}
.y1de{bottom:156.238500px;}
.y16a{bottom:156.601500px;}
.y207{bottom:156.654000px;}
.y272{bottom:156.705552px;}
.y29a{bottom:157.239000px;}
.y14b{bottom:157.708500px;}
.y135{bottom:160.234500px;}
.y1c3{bottom:160.624500px;}
.y194{bottom:160.657500px;}
.ya4{bottom:161.126496px;}
.y40{bottom:161.187000px;}
.y52{bottom:161.551500px;}
.yaf{bottom:161.643061px;}
.y21b{bottom:161.947500px;}
.y1d2{bottom:162.325500px;}
.y22b{bottom:162.676500px;}
.y294{bottom:164.463000px;}
.y24e{bottom:164.787000px;}
.y145{bottom:164.905500px;}
.y6a{bottom:165.141000px;}
.yaa{bottom:165.229259px;}
.y87{bottom:165.453000px;}
.y1e7{bottom:166.198500px;}
.y244{bottom:166.287000px;}
.y286{bottom:166.554000px;}
.yce{bottom:166.824000px;}
.y13e{bottom:166.836000px;}
.y155{bottom:166.884000px;}
.y271{bottom:167.063953px;}
.y77{bottom:167.887500px;}
.y23a{bottom:167.952000px;}
.y19{bottom:168.075000px;}
.y92{bottom:168.168000px;}
.y1b4{bottom:168.643500px;}
.y17d{bottom:170.539500px;}
.y172{bottom:170.821500px;}
.y7e{bottom:171.028500px;}
.y19f{bottom:172.045500px;}
.y210{bottom:172.312500px;}
.y28a{bottom:172.413000px;}
.yb0{bottom:172.711120px;}
.y10{bottom:173.076000px;}
.yab{bottom:173.236264px;}
.y1{bottom:173.803500px;}
.ya6{bottom:173.841501px;}
.y5f{bottom:174.205500px;}
.y11a{bottom:174.273022px;}
.y117{bottom:174.296335px;}
.y30{bottom:174.709500px;}
.yeb{bottom:175.177886px;}
.y1fd{bottom:175.297500px;}
.y1dd{bottom:176.562000px;}
.yac{bottom:176.751786px;}
.y1ef{bottom:177.217500px;}
.yae{bottom:177.350246px;}
.y299{bottom:177.562500px;}
.y273{bottom:177.753485px;}
.yee{bottom:179.160049px;}
.y223{bottom:179.166000px;}
.y1f6{bottom:179.550000px;}
.y1ab{bottom:179.934000px;}
.y57{bottom:180.037500px;}
.y134{bottom:180.409500px;}
.y22a{bottom:180.610500px;}
.y89{bottom:181.017000px;}
.y24d{bottom:181.225500px;}
.yef{bottom:181.227720px;}
.y278{bottom:181.312686px;}
.y11d{bottom:181.700054px;}
.y21a{bottom:182.272500px;}
.y14a{bottom:182.515500px;}
.y154{bottom:183.322500px;}
.y206{bottom:183.424500px;}
.y91{bottom:183.859500px;}
.y86{bottom:184.134000px;}
.y243{bottom:184.219500px;}
.y239{bottom:184.821000px;}
.ya7{bottom:185.373916px;}
.y69{bottom:185.464500px;}
.y49{bottom:185.844000px;}
.y18{bottom:186.007500px;}
.yed{bottom:186.322760px;}
.y1e6{bottom:186.372000px;}
.y1b3{bottom:186.576000px;}
.y1d1{bottom:187.132500px;}
.ye9{bottom:187.826873px;}
.y293{bottom:189.270000px;}
.y118{bottom:189.846508px;}
.y11c{bottom:190.201801px;}
.y19e{bottom:190.404000px;}
.y171{bottom:191.145000px;}
.y17c{bottom:191.352000px;}
.y285{bottom:191.361000px;}
.yc9{bottom:191.481000px;}
.y7d{bottom:191.713500px;}
.y29{bottom:192.304500px;}
.y289{bottom:192.736500px;}
.y9{bottom:192.978000px;}
.yfe{bottom:193.461000px;}
.y133{bottom:196.101000px;}
.y169{bottom:196.573500px;}
.ya8{bottom:196.906330px;}
.y20f{bottom:197.119500px;}
.y11b{bottom:197.364513px;}
.y24c{bottom:197.664000px;}
.y13d{bottom:198.615000px;}
.y88{bottom:198.951000px;}
.y5e{bottom:199.012500px;}
.y222{bottom:199.489500px;}
.y229{bottom:199.617000px;}
.y153{bottom:199.761000px;}
.y51{bottom:200.212500px;}
.y1dc{bottom:201.369000px;}
.y90{bottom:201.792000px;}
.y1ee{bottom:202.024500px;}
.y242{bottom:202.152000px;}
.y298{bottom:202.369500px;}
.yc0{bottom:202.422000px;}
.y48{bottom:203.776500px;}
.y17{bottom:203.940000px;}
.y1e5{bottom:204.304500px;}
.y238{bottom:204.520500px;}
.y4c{bottom:204.865500px;}
.y1b2{bottom:205.255500px;}
.y119{bottom:205.307782px;}
.y1cb{bottom:205.434000px;}
.y219{bottom:207.079500px;}
.y149{bottom:207.322500px;}
.y256{bottom:207.456000px;}
.yea{bottom:208.428169px;}
.ya9{bottom:208.438745px;}
.y85{bottom:208.791000px;}
.y277{bottom:209.330364px;}
.yc8{bottom:209.413500px;}
.ye8{bottom:209.533207px;}
.y292{bottom:209.593500px;}
.yad{bottom:210.041897px;}
.y9e{bottom:210.733500px;}
.y73{bottom:211.594500px;}
.y17b{bottom:211.677000px;}
.y170{bottom:211.884000px;}
.y1d0{bottom:211.939500px;}
.y6f{bottom:212.157000px;}
.y7c{bottom:212.398500px;}
.y288{bottom:213.061500px;}
.y132{bottom:214.033500px;}
.y1f5{bottom:214.287000px;}
.y144{bottom:214.509000px;}
.y19d{bottom:214.582500px;}
.y2f{bottom:215.335500px;}
.y152{bottom:215.452500px;}
.y76{bottom:215.709000px;}
.y284{bottom:216.168000px;}
.y168{bottom:216.897000px;}
.y26a{bottom:217.089183px;}
.y24b{bottom:217.092000px;}
.y20e{bottom:217.294500px;}
.y50{bottom:218.145000px;}
.y269{bottom:218.568399px;}
.yec{bottom:218.942055px;}
.yf{bottom:219.522000px;}
.y241{bottom:220.084500px;}
.ybe{bottom:220.354500px;}
.y183{bottom:221.403000px;}
.y3d{bottom:222.457500px;}
.y16{bottom:222.621000px;}
.y1e4{bottom:222.985500px;}
.y5d{bottom:223.819500px;}
.y27b{bottom:223.996088px;}
.y221{bottom:224.296500px;}
.y228{bottom:224.424000px;}
.y276{bottom:224.867979px;}
.y1db{bottom:226.176000px;}
.y237{bottom:226.611000px;}
.y1ed{bottom:226.831500px;}
.y205{bottom:227.116500px;}
.y297{bottom:227.176500px;}
.yc7{bottom:227.346000px;}
.y84{bottom:227.470500px;}
.y148{bottom:227.646000px;}
.y1b1{bottom:227.671500px;}
.y38{bottom:228.196500px;}
.y9c{bottom:228.666000px;}
.y6e{bottom:230.091000px;}
.y13c{bottom:230.392500px;}
.y218{bottom:231.886500px;}
.y72{bottom:231.918000px;}
.y131{bottom:231.966000px;}
.y16f{bottom:232.207500px;}
.y1cf{bottom:232.263000px;}
.y17a{bottom:232.489500px;}
.y19c{bottom:232.515000px;}
.y7b{bottom:232.722000px;}
.y27{bottom:232.930500px;}
.y151{bottom:233.385000px;}
.y8{bottom:233.626500px;}
.y164{bottom:234.132000px;}
.y4f{bottom:234.205500px;}
.y24a{bottom:234.277500px;}
.y27a{bottom:234.354489px;}
.y291{bottom:234.400500px;}
.y1f4{bottom:234.610500px;}
.y20d{bottom:235.227000px;}
.y240{bottom:235.776000px;}
.y1c9{bottom:236.632500px;}
.y18a{bottom:237.040500px;}
.y167{bottom:237.222000px;}
.ybc{bottom:238.288500px;}
.y267{bottom:240.035167px;}
.y1c1{bottom:240.106500px;}
.y275{bottom:240.405593px;}
.y280{bottom:240.975000px;}
.y27f{bottom:241.399500px;}
.y255{bottom:243.900000px;}
.y3c{bottom:244.873500px;}
.y287{bottom:245.034000px;}
.y1e3{bottom:245.401500px;}
.y83{bottom:245.404500px;}
.yc6{bottom:246.027000px;}
.y1da{bottom:246.499500px;}
.y9a{bottom:246.598500px;}
.y1ec{bottom:247.155000px;}
.y23{bottom:247.278000px;}
.y1f0{bottom:247.392000px;}
.y204{bottom:247.440000px;}
.y296{bottom:247.500000px;}
.y66{bottom:248.533500px;}
.y35{bottom:248.562000px;}
.y5c{bottom:248.626500px;}
.y236{bottom:248.701500px;}
.y220{bottom:249.103500px;}
.y227{bottom:249.231000px;}
.y254{bottom:249.385500px;}
.y130{bottom:249.898500px;}
.y165{bottom:250.032000px;}
.y13b{bottom:250.717500px;}
.y26{bottom:250.863000px;}
.y19b{bottom:250.875000px;}
.y15d{bottom:251.344500px;}
.y147{bottom:252.453000px;}
.y1b0{bottom:252.478500px;}
.y4e{bottom:252.693000px;}
.y179{bottom:252.813000px;}
.y16e{bottom:252.946500px;}
.y37{bottom:253.003500px;}
.y7a{bottom:253.047000px;}
.y20c{bottom:253.159500px;}
.yb9{bottom:253.186073px;}
.y150{bottom:253.708500px;}
.y268{bottom:254.055360px;}
.y163{bottom:254.455500px;}
.y1f3{bottom:254.935500px;}
.y266{bottom:255.572782px;}
.y217{bottom:256.693500px;}
.ybb{bottom:256.968000px;}
.y1ce{bottom:257.070000px;}
.y189{bottom:257.365500px;}
.y290{bottom:259.207500px;}
.y4b{bottom:260.875500px;}
.y1ba{bottom:264.912000px;}
.y1c8{bottom:264.966000px;}
.y3b{bottom:265.197000px;}
.y22{bottom:265.210500px;}
.y99{bottom:265.279500px;}
.y166{bottom:267.879000px;}
.yc5{bottom:268.443000px;}
.y12f{bottom:270.073500px;}
.y65{bottom:270.592500px;}
.y235{bottom:270.793500px;}
.y13a{bottom:271.041000px;}
.y1d9{bottom:271.306500px;}
.y25{bottom:271.651500px;}
.y15c{bottom:271.668000px;}
.y20b{bottom:271.840500px;}
.y16d{bottom:273.271500px;}
.y34{bottom:273.369000px;}
.y79{bottom:273.370500px;}
.y5b{bottom:273.433500px;}
.yd2{bottom:273.463882px;}
.y4d{bottom:273.570000px;}
.y178{bottom:273.625500px;}
.y14f{bottom:274.032000px;}
.y226{bottom:274.038000px;}
.y203{bottom:274.209000px;}
.y7{bottom:274.273500px;}
.y162{bottom:274.779000px;}
.y19a{bottom:275.052000px;}
.y1f2{bottom:275.259000px;}
.ye{bottom:276.010500px;}
.y216{bottom:277.017000px;}
.y146{bottom:277.260000px;}
.y1af{bottom:277.285500px;}
.y1cd{bottom:277.395000px;}
.y36{bottom:277.810500px;}
.yba{bottom:279.384000px;}
.yb8{bottom:281.183142px;}
.y143{bottom:281.457000px;}
.y249{bottom:281.500500px;}
.y188{bottom:282.172500px;}
.y1b8{bottom:282.535500px;}
.y75{bottom:282.657000px;}
.y21{bottom:283.143000px;}
.y232{bottom:283.212000px;}
.y98{bottom:287.695500px;}
.y12e{bottom:288.753000px;}
.y1c7{bottom:289.773000px;}
.y3a{bottom:290.004000px;}
.y1d8{bottom:291.631500px;}
.y234{bottom:292.884000px;}
.y15b{bottom:293.281500px;}
.y199{bottom:293.412000px;}
.y177{bottom:293.949000px;}
.y16c{bottom:294.010500px;}
.y78{bottom:294.055500px;}
.y20a{bottom:294.256500px;}
.y14e{bottom:294.355500px;}
.y225{bottom:294.361500px;}
.y24{bottom:295.104000px;}
.y33{bottom:298.176000px;}
.y21d{bottom:299.355000px;}
.y20{bottom:301.824000px;}
.y139{bottom:302.818500px;}
.y1b7{bottom:303.607500px;}
.y1f1{bottom:305.916000px;}
.y39{bottom:310.327500px;}
.y1c6{bottom:314.580000px;}
.y6{bottom:344.358000px;}
.y233{bottom:344.806500px;}
.y64{bottom:345.142500px;}
.y23f{bottom:346.285500px;}
.y71{bottom:346.345500px;}
.y11{bottom:346.488000px;}
.y21f{bottom:346.723500px;}
.y182{bottom:346.924500px;}
.ya3{bottom:3041.417858px;}
.y1bf{bottom:3053.042685px;}
.y18f{bottom:3060.536685px;}
.y1d7{bottom:3060.596685px;}
.y8f{bottom:3063.895185px;}
.y1be{bottom:3077.849685px;}
.y1d6{bottom:3078.529185px;}
.y8e{bottom:3084.220185px;}
.y56{bottom:3090.806685px;}
.y6d{bottom:3091.826685px;}
.ya2{bottom:3093.209685px;}
.y1d5{bottom:3096.461685px;}
.y1aa{bottom:3099.274185px;}
.ya1{bottom:3111.143685px;}
.ycd{bottom:3112.316685px;}
.y2d{bottom:3113.947185px;}
.y1d4{bottom:3115.141185px;}
.y1bc{bottom:3118.142685px;}
.yc4{bottom:3123.257685px;}
.y1a9{bottom:3126.173685px;}
.y54{bottom:3127.595685px;}
.ya0{bottom:3129.823185px;}
.ycc{bottom:3130.249185px;}
.y2c{bottom:3134.122185px;}
.yc3{bottom:3141.190185px;}
.y53{bottom:3145.529685px;}
.y8b{bottom:3147.433185px;}
.ycb{bottom:3148.181685px;}
.y1a8{bottom:3153.073185px;}
.yc2{bottom:3159.124185px;}
.y1bd{bottom:3160.663185px;}
.y8a{bottom:3165.365685px;}
.y283{bottom:3166.592685px;}
.yca{bottom:3166.862685px;}
.y2a{bottom:3174.748185px;}
.yc1{bottom:3177.803685px;}
.y1a7{bottom:3179.972685px;}
.y3f{bottom:3185.882685px;}
.y282{bottom:3191.399685px;}
.y3e{bottom:3203.815185px;}
.y9f{bottom:3208.531185px;}
.y68{bottom:3212.195685px;}
.y28{bottom:3215.374185px;}
.y281{bottom:3216.206685px;}
.ybf{bottom:3218.152185px;}
.y9d{bottom:3226.463685px;}
.y67{bottom:3230.129685px;}
.y1a6{bottom:3233.423685px;}
.ybd{bottom:3236.084685px;}
.y1bb{bottom:3240.145185px;}
.y9b{bottom:3244.396185px;}
.y15{bottom:3247.316685px;}
.yb3{bottom:3253.224758px;}
.y1a5{bottom:3253.747185px;}
.y14{bottom:3265.249185px;}
.y1a4{bottom:3274.070685px;}
.yb2{bottom:3281.221827px;}
.y13{bottom:3283.181685px;}
.y22f{bottom:3283.250685px;}
.y12{bottom:3301.862685px;}
.h2e{height:-2677.856685px;}
.h16{height:-2658.737858px;}
.h21{height:18.121966px;}
.h1e{height:20.152884px;}
.h1f{height:21.142293px;}
.h17{height:22.286413px;}
.h20{height:24.162621px;}
.h19{height:24.784038px;}
.h42{height:25.111296px;}
.h46{height:25.470029px;}
.h22{height:27.182949px;}
.h18{height:27.429431px;}
.h38{height:28.372090px;}
.h6{height:28.656614px;}
.h36{height:28.675135px;}
.h43{height:30.970572px;}
.h33{height:32.514266px;}
.h32{height:32.520266px;}
.h4d{height:33.481699px;}
.h27{height:34.014922px;}
.h26{height:34.020922px;}
.h37{height:34.128518px;}
.h41{height:35.394996px;}
.h2d{height:36.348078px;}
.h2f{height:36.513775px;}
.h2b{height:37.303556px;}
.h10{height:38.208659px;}
.h48{height:38.264861px;}
.hb{height:38.790704px;}
.h9{height:38.796704px;}
.h12{height:38.910256px;}
.hd{height:38.916256px;}
.h15{height:40.509619px;}
.h3{height:42.984922px;}
.h4a{height:43.047936px;}
.h30{height:45.425492px;}
.hf{height:46.158397px;}
.h3e{height:46.455898px;}
.ha{height:47.760704px;}
.he{height:49.090950px;}
.h3c{height:49.300250px;}
.h29{height:49.781453px;}
.h49{height:50.222592px;}
.h35{height:52.222275px;}
.hc{height:52.298225px;}
.h8{height:52.429135px;}
.h44{height:53.092454px;}
.h1d{height:53.221489px;}
.h14{height:55.122397px;}
.h24{height:55.128397px;}
.h25{height:55.554699px;}
.h47{height:57.397248px;}
.h34{height:57.456691px;}
.h40{height:57.712979px;}
.h3f{height:57.712992px;}
.h13{height:61.956659px;}
.h4c{height:62.392410px;}
.h4b{height:62.392424px;}
.h23{height:62.437715px;}
.h2c{height:63.892205px;}
.h11{height:68.858225px;}
.h1a{height:68.948041px;}
.h4{height:71.820864px;}
.h31{height:77.020157px;}
.h1b{height:79.116490px;}
.h2a{height:85.243252px;}
.h5{height:86.185037px;}
.h2{height:105.336947px;}
.h3b{height:107.181491px;}
.h28{height:114.912902px;}
.h39{height:119.126803px;}
.h1c{height:148.819980px;}
.h7{height:153.217202px;}
.h3a{height:170.489268px;}
.h45{height:182.728025px;}
.h3d{height:277.457400px;}
.h1{height:382.500000px;}
.h0{height:382.680000px;}
.w2{width:-2664.113064px;}
.w7{width:-2343.115185px;}
.w8{width:141.203622px;}
.w6{width:166.119732px;}
.wb{width:166.839525px;}
.w5{width:209.829543px;}
.w4{width:282.236044px;}
.w3{width:312.548162px;}
.w9{width:411.797154px;}
.wa{width:638.992800px;}
.w1{width:680.250000px;}
.w0{width:680.310000px;}
.x28{left:-5.778572px;}
.x0{left:0.000000px;}
.x27{left:2.339030px;}
.x3a{left:4.938596px;}
.x39{left:7.745261px;}
.x50{left:12.844424px;}
.x29{left:18.313592px;}
.x4{left:21.259500px;}
.x1{left:22.536000px;}
.x2{left:25.558500px;}
.x8{left:28.123500px;}
.x63{left:30.862500px;}
.x3f{left:33.979232px;}
.x75{left:35.314500px;}
.x26{left:37.071623px;}
.x38{left:39.067207px;}
.x78{left:41.967593px;}
.xb{left:43.366500px;}
.x9{left:47.158500px;}
.x58{left:53.776500px;}
.x77{left:56.393609px;}
.x79{left:58.665755px;}
.xa{left:63.346500px;}
.x7f{left:65.323581px;}
.x4b{left:69.415500px;}
.x7e{left:71.329350px;}
.x7a{left:73.091774px;}
.x13{left:76.207500px;}
.x3b{left:79.934791px;}
.x76{left:84.876000px;}
.x7b{left:87.517777px;}
.x81{left:90.451008px;}
.x80{left:92.799937px;}
.x14{left:97.092000px;}
.x40{left:111.687061px;}
.x15{left:117.976500px;}
.x41{left:119.590210px;}
.x44{left:125.712000px;}
.x3c{left:132.166231px;}
.x55{left:134.944500px;}
.x83{left:138.963653px;}
.x12{left:140.556000px;}
.x1d{left:141.865500px;}
.x2d{left:154.191075px;}
.x2e{left:161.959608px;}
.x2c{left:165.310811px;}
.x66{left:170.802000px;}
.x33{left:174.186873px;}
.x32{left:179.628965px;}
.x21{left:183.945000px;}
.x7d{left:192.307966px;}
.xe{left:195.810000px;}
.x42{left:197.298039px;}
.x2a{left:198.899774px;}
.x82{left:203.654964px;}
.x43{left:205.201189px;}
.x70{left:208.648500px;}
.x18{left:210.160500px;}
.x54{left:213.853500px;}
.x19{left:215.440500px;}
.xf{left:216.694500px;}
.x3e{left:217.777209px;}
.x1a{left:222.597000px;}
.x2b{left:226.373772px;}
.x56{left:228.823500px;}
.xd{left:236.191500px;}
.x10{left:237.579000px;}
.x59{left:240.360000px;}
.x51{left:242.326500px;}
.x1b{left:245.127000px;}
.x57{left:250.992000px;}
.x60{left:254.341500px;}
.x5{left:255.364500px;}
.x52{left:257.569500px;}
.x6c{left:263.904000px;}
.x6e{left:274.149000px;}
.x8a{left:275.179500px;}
.x3d{left:281.916103px;}
.x69{left:287.878500px;}
.x4e{left:293.605500px;}
.x4a{left:297.931500px;}
.x34{left:302.236500px;}
.x1e{left:303.477000px;}
.x6a{left:306.913500px;}
.x48{left:308.760000px;}
.x17{left:313.227000px;}
.x4d{left:317.277000px;}
.x74{left:318.981000px;}
.x4c{left:320.482500px;}
.x6b{left:323.101500px;}
.x61{left:324.865500px;}
.x31{left:344.384379px;}
.x11{left:346.489500px;}
.x86{left:353.717672px;}
.x87{left:362.119465px;}
.x45{left:370.231500px;}
.x1f{left:376.366500px;}
.x1c{left:378.874500px;}
.x62{left:382.174500px;}
.x49{left:385.221000px;}
.x46{left:389.268000px;}
.x4f{left:400.980000px;}
.x37{left:406.381500px;}
.x88{left:410.805555px;}
.x68{left:412.725000px;}
.x47{left:424.479000px;}
.x64{left:425.859000px;}
.x67{left:427.099500px;}
.x85{left:436.312134px;}
.x6d{left:444.733500px;}
.x65{left:447.048000px;}
.x89{left:448.053000px;}
.x5f{left:451.620000px;}
.x84{left:455.204393px;}
.x7c{left:459.195000px;}
.x16{left:461.145000px;}
.x73{left:466.162500px;}
.x3{left:486.049500px;}
.x72{left:511.216500px;}
.x6f{left:536.656500px;}
.x53{left:3023.425185px;}
.x6{left:3028.162185px;}
.x20{left:3043.405185px;}
.x7{left:3047.197185px;}
.xc{left:3063.385185px;}
.x35{left:3110.024685px;}
.x36{left:3146.129685px;}
.x24{left:3168.142185px;}
.x30{left:3174.225558px;}
.x2f{left:3179.667650px;}
.x22{left:3180.934185px;}
.x23{left:3197.207685px;}
.x5a{left:3240.398685px;}
.x5b{left:3254.380185px;}
.x5c{left:3312.506685px;}
.x5d{left:3324.904185px;}
.x25{left:3344.423064px;}
.x5e{left:3382.213185px;}
.x71{left:3511.255185px;}
@media print{
.vc{vertical-align:-21.114667pt;}
.v6{vertical-align:-19.285333pt;}
.v2{vertical-align:-13.258667pt;}
.v3{vertical-align:-10.138667pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:6.637785pt;}
.v9{vertical-align:8.163155pt;}
.v4{vertical-align:10.709333pt;}
.v7{vertical-align:14.720000pt;}
.v5{vertical-align:19.285333pt;}
.v8{vertical-align:21.109333pt;}
.va{vertical-align:27.765415pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.030997pt;}
.ls11{letter-spacing:0.036331pt;}
.ls23{letter-spacing:0.042986pt;}
.ls2e{letter-spacing:0.046023pt;}
.ls21{letter-spacing:0.586523pt;}
.ls19{letter-spacing:0.651099pt;}
.ls18{letter-spacing:2.653589pt;}
.ls1c{letter-spacing:2.653908pt;}
.ls7{letter-spacing:2.655751pt;}
.ls1b{letter-spacing:2.656141pt;}
.ls5{letter-spacing:2.656346pt;}
.ls17{letter-spacing:2.658923pt;}
.ls1f{letter-spacing:8.896319pt;}
.ls20{letter-spacing:8.901652pt;}
.ls13{letter-spacing:9.706010pt;}
.lsc{letter-spacing:9.711343pt;}
.ls1a{letter-spacing:10.472679pt;}
.lsa{letter-spacing:12.925067pt;}
.ls8{letter-spacing:12.930400pt;}
.ls9{letter-spacing:12.974023pt;}
.lsd{letter-spacing:14.508030pt;}
.ls1e{letter-spacing:14.508800pt;}
.ls4{letter-spacing:14.544319pt;}
.ls3{letter-spacing:14.549652pt;}
.ls2c{letter-spacing:15.882133pt;}
.lsb{letter-spacing:15.885067pt;}
.ls15{letter-spacing:15.887467pt;}
.ls14{letter-spacing:15.892677pt;}
.ls10{letter-spacing:15.928690pt;}
.ls2d{letter-spacing:18.548677pt;}
.ls12{letter-spacing:18.954010pt;}
.lsf{letter-spacing:18.959343pt;}
.ls1d{letter-spacing:22.373347pt;}
.ls16{letter-spacing:22.378681pt;}
.ls6{letter-spacing:24.973411pt;}
.ls2b{letter-spacing:29.086080pt;}
.ls1{letter-spacing:29.091413pt;}
.ls22{letter-spacing:29.114564pt;}
.ls2{letter-spacing:29.119898pt;}
.ls24{letter-spacing:29.121553pt;}
.ls26{letter-spacing:41.237084pt;}
.ls28{letter-spacing:41.475330pt;}
.ls29{letter-spacing:41.623547pt;}
.ls2a{letter-spacing:41.877634pt;}
.ls27{letter-spacing:42.237589pt;}
.ls25{letter-spacing:46.213102pt;}
.ws86{word-spacing:-111.368864pt;}
.ws9{word-spacing:-63.930829pt;}
.ws32{word-spacing:-63.760800pt;}
.ws5{word-spacing:-62.645248pt;}
.ws16{word-spacing:-52.204373pt;}
.ws3d{word-spacing:-50.116207pt;}
.ws80{word-spacing:-49.706398pt;}
.ws81{word-spacing:-49.574200pt;}
.ws44{word-spacing:-47.948122pt;}
.ws0{word-spacing:-43.952495pt;}
.ws1{word-spacing:-43.835600pt;}
.ws30{word-spacing:-38.109123pt;}
.ws18{word-spacing:-37.876395pt;}
.ws3{word-spacing:-35.961242pt;}
.ws4{word-spacing:-35.865600pt;}
.ws14{word-spacing:-34.802683pt;}
.wse{word-spacing:-34.590147pt;}
.ws3b{word-spacing:-30.834857pt;}
.ws3a{word-spacing:-30.758344pt;}
.wsa{word-spacing:-29.967701pt;}
.ws17{word-spacing:-29.888000pt;}
.ws2a{word-spacing:-28.160023pt;}
.ws37{word-spacing:-25.769925pt;}
.ws36{word-spacing:-25.716791pt;}
.ws4c{word-spacing:-23.974161pt;}
.ws4d{word-spacing:-23.910400pt;}
.ws71{word-spacing:-22.807292pt;}
.ws49{word-spacing:-22.341837pt;}
.ws21{word-spacing:-22.281383pt;}
.ws78{word-spacing:-22.230165pt;}
.ws8a{word-spacing:-22.229548pt;}
.ws76{word-spacing:-22.229455pt;}
.ws1a{word-spacing:-22.229002pt;}
.ws6b{word-spacing:-22.228573pt;}
.ws1b{word-spacing:-22.227366pt;}
.ws8b{word-spacing:-22.226607pt;}
.ws6e{word-spacing:-22.226011pt;}
.ws31{word-spacing:-22.225601pt;}
.ws89{word-spacing:-22.225596pt;}
.ws7a{word-spacing:-22.171084pt;}
.ws69{word-spacing:-22.170911pt;}
.ws88{word-spacing:-22.170863pt;}
.ws1d{word-spacing:-22.167753pt;}
.ws48{word-spacing:-22.167291pt;}
.ws11{word-spacing:-22.050927pt;}
.ws6c{word-spacing:-22.049531pt;}
.ws79{word-spacing:-22.046757pt;}
.ws28{word-spacing:-21.997364pt;}
.ws22{word-spacing:-21.996767pt;}
.ws34{word-spacing:-21.996747pt;}
.ws29{word-spacing:-21.996738pt;}
.ws46{word-spacing:-21.995862pt;}
.ws2c{word-spacing:-21.995282pt;}
.ws65{word-spacing:-21.995267pt;}
.ws6d{word-spacing:-21.994291pt;}
.ws7b{word-spacing:-21.993363pt;}
.ws19{word-spacing:-21.993291pt;}
.ws12{word-spacing:-21.992746pt;}
.ws2f{word-spacing:-21.992387pt;}
.ws2e{word-spacing:-21.992374pt;}
.ws64{word-spacing:-21.992350pt;}
.ws4a{word-spacing:-21.991880pt;}
.ws4b{word-spacing:-21.989453pt;}
.ws77{word-spacing:-21.988466pt;}
.wsb{word-spacing:-21.876382pt;}
.ws20{word-spacing:-21.820218pt;}
.ws2b{word-spacing:-21.818200pt;}
.ws7d{word-spacing:-20.346299pt;}
.ws73{word-spacing:-20.300630pt;}
.ws75{word-spacing:-20.299723pt;}
.ws74{word-spacing:-20.297429pt;}
.wsd{word-spacing:-20.137735pt;}
.ws7c{word-spacing:-20.088450pt;}
.wsc{word-spacing:-20.087510pt;}
.ws3f{word-spacing:-20.087319pt;}
.ws3e{word-spacing:-20.086066pt;}
.ws13{word-spacing:-20.084602pt;}
.ws10{word-spacing:-20.084571pt;}
.ws15{word-spacing:-19.978334pt;}
.ws51{word-spacing:-19.925200pt;}
.ws3c{word-spacing:-19.391220pt;}
.ws2{word-spacing:-18.124083pt;}
.ws43{word-spacing:-18.076262pt;}
.ws7e{word-spacing:-17.980621pt;}
.ws45{word-spacing:-17.853099pt;}
.ws63{word-spacing:-17.789338pt;}
.ws60{word-spacing:-16.935398pt;}
.ws56{word-spacing:-16.934410pt;}
.ws5e{word-spacing:-16.934387pt;}
.ws59{word-spacing:-16.933950pt;}
.ws55{word-spacing:-16.933916pt;}
.ws5f{word-spacing:-16.933914pt;}
.ws62{word-spacing:-16.933467pt;}
.ws5d{word-spacing:-16.932933pt;}
.ws5a{word-spacing:-16.932466pt;}
.ws54{word-spacing:-16.932462pt;}
.ws61{word-spacing:-16.932013pt;}
.ws58{word-spacing:-16.932002pt;}
.ws5c{word-spacing:-16.930985pt;}
.ws57{word-spacing:-16.930518pt;}
.ws53{word-spacing:-16.930514pt;}
.ws87{word-spacing:-16.756378pt;}
.ws50{word-spacing:-16.700348pt;}
.ws2d{word-spacing:-16.698196pt;}
.ws26{word-spacing:-16.465468pt;}
.ws82{word-spacing:-16.463027pt;}
.ws1f{word-spacing:-16.290923pt;}
.ws70{word-spacing:-16.067722pt;}
.wsf{word-spacing:-15.302554pt;}
.ws47{word-spacing:-14.877483pt;}
.ws7f{word-spacing:-13.389824pt;}
.ws85{word-spacing:-13.297029pt;}
.ws6{word-spacing:-12.082722pt;}
.ws7{word-spacing:-12.050842pt;}
.ws84{word-spacing:-10.342125pt;}
.ws33{word-spacing:-9.132884pt;}
.ws27{word-spacing:-7.086051pt;}
.ws35{word-spacing:-7.051629pt;}
.ws4f{word-spacing:-2.443638pt;}
.ws4e{word-spacing:-1.745456pt;}
.ws72{word-spacing:-1.169109pt;}
.ws1c{word-spacing:-0.058182pt;}
.ws83{word-spacing:-0.031887pt;}
.ws8{word-spacing:0.000000pt;}
.ws6f{word-spacing:1.657781pt;}
.ws1e{word-spacing:8.767088pt;}
.ws23{word-spacing:9.600008pt;}
.ws42{word-spacing:18.521513pt;}
.ws66{word-spacing:30.699008pt;}
.ws6a{word-spacing:33.257468pt;}
.ws67{word-spacing:49.370489pt;}
.ws68{word-spacing:49.374412pt;}
.ws41{word-spacing:57.225390pt;}
.ws40{word-spacing:57.252942pt;}
.ws39{word-spacing:61.952985pt;}
.ws38{word-spacing:113.356008pt;}
.ws5b{word-spacing:522.676642pt;}
.ws52{word-spacing:653.833156pt;}
.ws25{word-spacing:1425.711760pt;}
.ws24{word-spacing:1532.169942pt;}
._13{margin-left:-9.328427pt;}
._19{margin-left:-8.052864pt;}
._11{margin-left:-6.981824pt;}
._10{margin-left:-6.050914pt;}
._28{margin-left:-5.101981pt;}
._14{margin-left:-3.834691pt;}
._0{margin-left:-2.922373pt;}
._1{margin-left:-1.168949pt;}
._a{width:0.952158pt;}
._2{width:1.912832pt;}
._b{width:2.870137pt;}
._1a{width:8.873356pt;}
._15{width:9.901541pt;}
._5{width:10.966903pt;}
._d{width:11.927578pt;}
._9{width:13.761671pt;}
._e{width:15.383668pt;}
._21{width:16.684202pt;}
._8{width:19.287594pt;}
._f{width:20.314401pt;}
._c{width:21.232764pt;}
._27{width:25.759363pt;}
._22{width:28.905013pt;}
._3{width:35.674317pt;}
._4{width:36.651983pt;}
._25{width:59.916114pt;}
._26{width:65.400765pt;}
._1c{width:73.788613pt;}
._1f{width:87.017388pt;}
._1b{width:122.295162pt;}
._24{width:125.899624pt;}
._1d{width:515.895855pt;}
._1e{width:516.786522pt;}
._20{width:518.285188pt;}
._23{width:519.783855pt;}
._12{width:523.351855pt;}
._17{width:524.247855pt;}
._18{width:525.746522pt;}
._16{width:531.703855pt;}
._6{width:534.861188pt;}
._7{width:536.359855pt;}
.fs12{font-size:12.137664pt;}
.fse{font-size:14.926912pt;}
.fs11{font-size:17.339520pt;}
.fs13{font-size:20.229440pt;}
.fsc{font-size:21.324160pt;}
.fs14{font-size:23.119360pt;}
.fs15{font-size:26.009280pt;}
.fsd{font-size:26.245120pt;}
.fs4{font-size:31.880533pt;}
.fs22{font-size:31.887360pt;}
.fsa{font-size:37.193600pt;}
.fs23{font-size:37.201888pt;}
.fs9{font-size:42.507200pt;}
.fs21{font-size:42.516512pt;}
.fs19{font-size:44.588718pt;}
.fs1a{font-size:44.791980pt;}
.fs18{font-size:45.760817pt;}
.fs1{font-size:47.820800pt;}
.fs25{font-size:47.831040pt;}
.fs7{font-size:53.133867pt;}
.fs10{font-size:53.134024pt;}
.fs8{font-size:55.790400pt;}
.fs1e{font-size:55.802880pt;}
.fs6{font-size:58.181867pt;}
.fs1d{font-size:59.219520pt;}
.fs17{font-size:63.761067pt;}
.fs24{font-size:63.774720pt;}
.fs20{font-size:69.324900pt;}
.fs1f{font-size:69.324916pt;}
.fsb{font-size:76.513067pt;}
.fsf{font-size:76.513293pt;}
.fs2{font-size:79.701333pt;}
.fs3{font-size:95.641600pt;}
.fs0{font-size:116.894933pt;}
.fs16{font-size:127.521600pt;}
.fs1c{font-size:128.746536pt;}
.fs1b{font-size:132.197867pt;}
.fs5{font-size:170.028800pt;}
.ye3{bottom:-150.164081pt;}
.ye2{bottom:-143.972202pt;}
.y114{bottom:-137.686739pt;}
.y111{bottom:-137.666016pt;}
.ye6{bottom:-136.882415pt;}
.ye7{bottom:-130.629907pt;}
.y115{bottom:-130.210055pt;}
.ye4{bottom:-125.638871pt;}
.y112{bottom:-123.843640pt;}
.y113{bottom:-110.100285pt;}
.ye5{bottom:-107.326608pt;}
.y10f{bottom:-90.671353pt;}
.y10c{bottom:-90.650630pt;}
.ye0{bottom:-89.867029pt;}
.ye1{bottom:-84.475288pt;}
.y110{bottom:-84.055436pt;}
.yde{bottom:-78.623485pt;}
.y10d{bottom:-76.828254pt;}
.y10e{bottom:-63.084899pt;}
.ydf{bottom:-60.311222pt;}
.y10a{bottom:-43.655967pt;}
.y107{bottom:-43.635244pt;}
.ydc{bottom:-42.851643pt;}
.ydd{bottom:-37.459902pt;}
.y10b{bottom:-37.040050pt;}
.yda{bottom:-31.608099pt;}
.y108{bottom:-29.812868pt;}
.y109{bottom:-16.069513pt;}
.ydb{bottom:-13.295836pt;}
.y0{bottom:0.000000pt;}
.yf9{bottom:1.385852pt;}
.y103{bottom:3.359419pt;}
.y100{bottom:3.380142pt;}
.yd5{bottom:4.163743pt;}
.yf8{bottom:7.577731pt;}
.yd8{bottom:7.703443pt;}
.y25a{bottom:7.924651pt;}
.yd{bottom:9.153333pt;}
.yd9{bottom:9.541373pt;}
.y106{bottom:9.961225pt;}
.y18e{bottom:12.170951pt;}
.y193{bottom:12.550812pt;}
.y12b{bottom:13.863195pt;}
.y128{bottom:13.883917pt;}
.yd7{bottom:14.070298pt;}
.yfc{bottom:14.667518pt;}
.yd3{bottom:15.407287pt;}
.y260{bottom:15.856379pt;}
.y101{bottom:17.202518pt;}
.y187{bottom:17.417165pt;}
.y105{bottom:17.518334pt;}
.y26d{bottom:19.485402pt;}
.yb1{bottom:19.647753pt;}
.yfd{bottom:20.920026pt;}
.y12c{bottom:21.339879pt;}
.y18d{bottom:23.206658pt;}
.y192{bottom:23.636827pt;}
.y104{bottom:23.885189pt;}
.yfa{bottom:25.911063pt;}
.yc{bottom:26.010667pt;}
.y279{bottom:27.457832pt;}
.y129{bottom:27.706294pt;}
.y186{bottom:28.742967pt;}
.y102{bottom:30.945873pt;}
.y26c{bottom:31.071151pt;}
.y26e{bottom:32.748177pt;}
.y5{bottom:33.233333pt;}
.yd4{bottom:33.719550pt;}
.y18c{bottom:34.242366pt;}
.y191{bottom:34.722842pt;}
.yb7{bottom:36.781487pt;}
.y265{bottom:39.977333pt;}
.y185{bottom:40.068769pt;}
.y1eb{bottom:40.236000pt;}
.y12d{bottom:40.729333pt;}
.y12a{bottom:41.449648pt;}
.y26b{bottom:42.656901pt;}
.yd6{bottom:43.065227pt;}
.y4a{bottom:43.449333pt;}
.yfb{bottom:44.223326pt;}
.y25b{bottom:45.228286pt;}
.y1fc{bottom:45.484000pt;}
.y190{bottom:45.808857pt;}
.y215{bottom:46.898667pt;}
.y1c5{bottom:47.114667pt;}
.y1c0{bottom:47.301333pt;}
.y1b9{bottom:49.322667pt;}
.y21e{bottom:50.577333pt;}
.y264{bottom:50.672000pt;}
.y4{bottom:51.298667pt;}
.y184{bottom:51.394571pt;}
.y1f{bottom:51.766667pt;}
.y25f{bottom:53.160013pt;}
.y198{bottom:53.776000pt;}
.y116{bottom:55.014406pt;}
.y253{bottom:57.345333pt;}
.y1ca{bottom:57.642667pt;}
.y74{bottom:58.353333pt;}
.y97{bottom:59.288000pt;}
.y202{bottom:59.769333pt;}
.y1cc{bottom:60.148000pt;}
.y126{bottom:60.878581pt;}
.y123{bottom:60.899303pt;}
.y21c{bottom:61.008000pt;}
.yf6{bottom:61.682904pt;}
.y45{bottom:62.912000pt;}
.y28f{bottom:62.928000pt;}
.y1fb{bottom:63.549333pt;}
.y142{bottom:65.854667pt;}
.y138{bottom:66.449333pt;}
.y1e2{bottom:66.484000pt;}
.yf7{bottom:67.074645pt;}
.y127{bottom:67.494498pt;}
.y1e{bottom:67.706667pt;}
.y263{bottom:68.738667pt;}
.y214{bottom:68.949333pt;}
.y1c4{bottom:69.165333pt;}
.y47{bottom:69.492000pt;}
.y258{bottom:72.682667pt;}
.yf4{bottom:72.926449pt;}
.y124{bottom:74.721680pt;}
.y15a{bottom:75.282667pt;}
.y44{bottom:76.860000pt;}
.y96{bottom:77.353333pt;}
.y201{bottom:77.834667pt;}
.y82{bottom:78.800000pt;}
.y176{bottom:78.840000pt;}
.y181{bottom:78.894667pt;}
.y161{bottom:79.488000pt;}
.y23e{bottom:79.841333pt;}
.y2e{bottom:80.648000pt;}
.y5a{bottom:80.682667pt;}
.y248{bottom:80.836000pt;}
.y28e{bottom:80.993333pt;}
.y252{bottom:81.388000pt;}
.y70{bottom:81.589333pt;}
.y1fa{bottom:81.614667pt;}
.y1e1{bottom:82.424000pt;}
.y25c{bottom:82.531921pt;}
.yb6{bottom:82.818667pt;}
.y1a3{bottom:83.237333pt;}
.y141{bottom:83.920000pt;}
.y197{bottom:84.624000pt;}
.y1d{bottom:85.638667pt;}
.y22e{bottom:86.901333pt;}
.y262{bottom:87.468000pt;}
.y46{bottom:87.557333pt;}
.y1ae{bottom:88.209333pt;}
.y125{bottom:88.465034pt;}
.y159{bottom:89.893333pt;}
.y25e{bottom:90.463647pt;}
.y257{bottom:90.748000pt;}
.y213{bottom:91.000000pt;}
.yf5{bottom:91.238712pt;}
.y8d{bottom:92.893333pt;}
.y43{bottom:94.792000pt;}
.y55{bottom:94.958667pt;}
.y1ea{bottom:95.261333pt;}
.y95{bottom:95.418667pt;}
.y3{bottom:95.513333pt;}
.y200{bottom:95.901333pt;}
.y251{bottom:96.000000pt;}
.y27e{bottom:96.012968pt;}
.y247{bottom:96.776000pt;}
.y175{bottom:96.905333pt;}
.y180{bottom:96.960000pt;}
.y81{bottom:97.186667pt;}
.y1e0{bottom:98.364000pt;}
.y160{bottom:98.700000pt;}
.yb5{bottom:98.760000pt;}
.y28d{bottom:99.060000pt;}
.y270{bottom:99.146455pt;}
.y1a2{bottom:99.177333pt;}
.yb{bottom:99.273333pt;}
.y1f9{bottom:99.680000pt;}
.yd1{bottom:99.802667pt;}
.y14d{bottom:100.069333pt;}
.y231{bottom:100.204000pt;}
.y32{bottom:101.252000pt;}
.y23d{bottom:101.470667pt;}
.y1c{bottom:101.580000pt;}
.y196{bottom:102.689333pt;}
.y22d{bottom:102.841333pt;}
.y209{bottom:103.117333pt;}
.y6c{bottom:103.324000pt;}
.y158{bottom:104.505333pt;}
.y1c2{bottom:104.981333pt;}
.y121{bottom:107.893967pt;}
.y11e{bottom:107.914689pt;}
.y26f{bottom:108.353922pt;}
.yf2{bottom:108.698290pt;}
.y212{bottom:109.065333pt;}
.y246{bottom:109.686667pt;}
.y137{bottom:110.550667pt;}
.y42{bottom:110.732000pt;}
.y63{bottom:110.748000pt;}
.y8c{bottom:110.958667pt;}
.yff{bottom:111.843006pt;}
.y1e9{bottom:111.866667pt;}
.y16b{bottom:111.949333pt;}
.y1ad{bottom:112.120000pt;}
.y140{bottom:112.168000pt;}
.y230{bottom:112.824000pt;}
.y250{bottom:113.269333pt;}
.y59{bottom:113.384000pt;}
.y94{bottom:113.484000pt;}
.y1ff{bottom:113.966667pt;}
.yf3{bottom:114.090031pt;}
.y122{bottom:114.509884pt;}
.y1df{bottom:114.968000pt;}
.y1a1{bottom:115.118667pt;}
.y80{bottom:115.252000pt;}
.y174{bottom:115.340000pt;}
.yb4{bottom:115.364000pt;}
.y17f{bottom:115.460000pt;}
.y1b{bottom:115.526667pt;}
.yd0{bottom:115.742667pt;}
.y27d{bottom:116.699674pt;}
.y28c{bottom:117.125333pt;}
.y23c{bottom:117.410667pt;}
.y1f8{bottom:117.746667pt;}
.y15f{bottom:117.912000pt;}
.y1b6{bottom:118.024000pt;}
.y14c{bottom:118.134667pt;}
.y157{bottom:119.117333pt;}
.y31{bottom:119.185333pt;}
.y22c{bottom:119.736000pt;}
.y25d{bottom:119.835555pt;}
.yf0{bottom:119.941835pt;}
.y208{bottom:121.182667pt;}
.y11f{bottom:121.737066pt;}
.y259{bottom:122.185333pt;}
.y274{bottom:123.676962pt;}
.y295{bottom:124.138667pt;}
.y195{bottom:124.740000pt;}
.y2{bottom:125.002667pt;}
.y6b{bottom:125.058667pt;}
.y27c{bottom:125.907141pt;}
.y1d3{bottom:126.224000pt;}
.y136{bottom:126.490667pt;}
.y41{bottom:127.337333pt;}
.y245{bottom:127.752000pt;}
.y261{bottom:127.767282pt;}
.y1e8{bottom:127.806667pt;}
.y24f{bottom:127.881333pt;}
.y62{bottom:129.118667pt;}
.y58{bottom:129.325333pt;}
.y13f{bottom:130.233333pt;}
.y211{bottom:131.116000pt;}
.y18b{bottom:131.124000pt;}
.y1a0{bottom:131.437333pt;}
.y1a{bottom:131.468000pt;}
.ycf{bottom:131.682667pt;}
.y1fe{bottom:132.032000pt;}
.y60{bottom:132.798667pt;}
.y23b{bottom:133.350667pt;}
.y173{bottom:133.406667pt;}
.y17e{bottom:133.525333pt;}
.y93{bottom:133.542667pt;}
.y7f{bottom:133.638667pt;}
.y156{bottom:133.729333pt;}
.y1b5{bottom:133.965333pt;}
.y2b{bottom:134.825333pt;}
.y28b{bottom:135.190667pt;}
.ya{bottom:135.405333pt;}
.y120{bottom:135.480420pt;}
.y61{bottom:135.509333pt;}
.y1f7{bottom:135.812000pt;}
.y15e{bottom:135.977333pt;}
.y1ac{bottom:136.030667pt;}
.ya5{bottom:136.425194pt;}
.y224{bottom:137.208000pt;}
.yf1{bottom:138.254098pt;}
.y1de{bottom:138.878667pt;}
.y16a{bottom:139.201333pt;}
.y207{bottom:139.248000pt;}
.y272{bottom:139.293824pt;}
.y29a{bottom:139.768000pt;}
.y14b{bottom:140.185333pt;}
.y135{bottom:142.430667pt;}
.y1c3{bottom:142.777333pt;}
.y194{bottom:142.806667pt;}
.ya4{bottom:143.223552pt;}
.y40{bottom:143.277333pt;}
.y52{bottom:143.601333pt;}
.yaf{bottom:143.682721pt;}
.y21b{bottom:143.953333pt;}
.y1d2{bottom:144.289333pt;}
.y22b{bottom:144.601333pt;}
.y294{bottom:146.189333pt;}
.y24e{bottom:146.477333pt;}
.y145{bottom:146.582667pt;}
.y6a{bottom:146.792000pt;}
.yaa{bottom:146.870452pt;}
.y87{bottom:147.069333pt;}
.y1e7{bottom:147.732000pt;}
.y244{bottom:147.810667pt;}
.y286{bottom:148.048000pt;}
.yce{bottom:148.288000pt;}
.y13e{bottom:148.298667pt;}
.y155{bottom:148.341333pt;}
.y271{bottom:148.501291pt;}
.y77{bottom:149.233333pt;}
.y23a{bottom:149.290667pt;}
.y19{bottom:149.400000pt;}
.y92{bottom:149.482667pt;}
.y1b4{bottom:149.905333pt;}
.y17d{bottom:151.590667pt;}
.y172{bottom:151.841333pt;}
.y7e{bottom:152.025333pt;}
.y19f{bottom:152.929333pt;}
.y210{bottom:153.166667pt;}
.y28a{bottom:153.256000pt;}
.yb0{bottom:153.520995pt;}
.y10{bottom:153.845333pt;}
.yab{bottom:153.987790pt;}
.y1{bottom:154.492000pt;}
.ya6{bottom:154.525779pt;}
.y5f{bottom:154.849333pt;}
.y11a{bottom:154.909353pt;}
.y117{bottom:154.930075pt;}
.y30{bottom:155.297333pt;}
.yeb{bottom:155.713676pt;}
.y1fd{bottom:155.820000pt;}
.y1dd{bottom:156.944000pt;}
.yac{bottom:157.112699pt;}
.y1ef{bottom:157.526667pt;}
.yae{bottom:157.644663pt;}
.y299{bottom:157.833333pt;}
.y273{bottom:158.003098pt;}
.yee{bottom:159.253376pt;}
.y223{bottom:159.258667pt;}
.y1f6{bottom:159.600000pt;}
.y1ab{bottom:159.941333pt;}
.y57{bottom:160.033333pt;}
.y134{bottom:160.364000pt;}
.y22a{bottom:160.542667pt;}
.y89{bottom:160.904000pt;}
.y24d{bottom:161.089333pt;}
.yef{bottom:161.091306pt;}
.y278{bottom:161.166832pt;}
.y11d{bottom:161.511159pt;}
.y21a{bottom:162.020000pt;}
.y14a{bottom:162.236000pt;}
.y154{bottom:162.953333pt;}
.y206{bottom:163.044000pt;}
.y91{bottom:163.430667pt;}
.y86{bottom:163.674667pt;}
.y243{bottom:163.750667pt;}
.y239{bottom:164.285333pt;}
.ya7{bottom:164.776814pt;}
.y69{bottom:164.857333pt;}
.y49{bottom:165.194667pt;}
.y18{bottom:165.340000pt;}
.yed{bottom:165.620231pt;}
.y1e6{bottom:165.664000pt;}
.y1b3{bottom:165.845333pt;}
.y1d1{bottom:166.340000pt;}
.ye9{bottom:166.957221pt;}
.y293{bottom:168.240000pt;}
.y118{bottom:168.752452pt;}
.y11c{bottom:169.068267pt;}
.y19e{bottom:169.248000pt;}
.y171{bottom:169.906667pt;}
.y17c{bottom:170.090667pt;}
.y285{bottom:170.098667pt;}
.yc9{bottom:170.205333pt;}
.y7d{bottom:170.412000pt;}
.y29{bottom:170.937333pt;}
.y289{bottom:171.321333pt;}
.y9{bottom:171.536000pt;}
.yfe{bottom:171.965333pt;}
.y133{bottom:174.312000pt;}
.y169{bottom:174.732000pt;}
.ya8{bottom:175.027849pt;}
.y20f{bottom:175.217333pt;}
.y11b{bottom:175.435122pt;}
.y24c{bottom:175.701333pt;}
.y13d{bottom:176.546667pt;}
.y88{bottom:176.845333pt;}
.y5e{bottom:176.900000pt;}
.y222{bottom:177.324000pt;}
.y229{bottom:177.437333pt;}
.y153{bottom:177.565333pt;}
.y51{bottom:177.966667pt;}
.y1dc{bottom:178.994667pt;}
.y90{bottom:179.370667pt;}
.y1ee{bottom:179.577333pt;}
.y242{bottom:179.690667pt;}
.y298{bottom:179.884000pt;}
.yc0{bottom:179.930667pt;}
.y48{bottom:181.134667pt;}
.y17{bottom:181.280000pt;}
.y1e5{bottom:181.604000pt;}
.y238{bottom:181.796000pt;}
.y4c{bottom:182.102667pt;}
.y1b2{bottom:182.449333pt;}
.y119{bottom:182.495806pt;}
.y1cb{bottom:182.608000pt;}
.y219{bottom:184.070667pt;}
.y149{bottom:184.286667pt;}
.y256{bottom:184.405333pt;}
.yea{bottom:185.269484pt;}
.ya9{bottom:185.278884pt;}
.y85{bottom:185.592000pt;}
.y277{bottom:186.071435pt;}
.yc8{bottom:186.145333pt;}
.ye8{bottom:186.251739pt;}
.y292{bottom:186.305333pt;}
.yad{bottom:186.703908pt;}
.y9e{bottom:187.318667pt;}
.y73{bottom:188.084000pt;}
.y17b{bottom:188.157333pt;}
.y170{bottom:188.341333pt;}
.y1d0{bottom:188.390667pt;}
.y6f{bottom:188.584000pt;}
.y7c{bottom:188.798667pt;}
.y288{bottom:189.388000pt;}
.y132{bottom:190.252000pt;}
.y1f5{bottom:190.477333pt;}
.y144{bottom:190.674667pt;}
.y19d{bottom:190.740000pt;}
.y2f{bottom:191.409333pt;}
.y152{bottom:191.513333pt;}
.y76{bottom:191.741333pt;}
.y284{bottom:192.149333pt;}
.y168{bottom:192.797333pt;}
.y26a{bottom:192.968163pt;}
.y24b{bottom:192.970667pt;}
.y20e{bottom:193.150667pt;}
.y50{bottom:193.906667pt;}
.y269{bottom:194.283021pt;}
.yec{bottom:194.615160pt;}
.yf{bottom:195.130667pt;}
.y241{bottom:195.630667pt;}
.ybe{bottom:195.870667pt;}
.y183{bottom:196.802667pt;}
.y3d{bottom:197.740000pt;}
.y16{bottom:197.885333pt;}
.y1e4{bottom:198.209333pt;}
.y5d{bottom:198.950667pt;}
.y27b{bottom:199.107634pt;}
.y221{bottom:199.374667pt;}
.y228{bottom:199.488000pt;}
.y276{bottom:199.882648pt;}
.y1db{bottom:201.045333pt;}
.y237{bottom:201.432000pt;}
.y1ed{bottom:201.628000pt;}
.y205{bottom:201.881333pt;}
.y297{bottom:201.934667pt;}
.yc7{bottom:202.085333pt;}
.y84{bottom:202.196000pt;}
.y148{bottom:202.352000pt;}
.y1b1{bottom:202.374667pt;}
.y38{bottom:202.841333pt;}
.y9c{bottom:203.258667pt;}
.y6e{bottom:204.525333pt;}
.y13c{bottom:204.793333pt;}
.y218{bottom:206.121333pt;}
.y72{bottom:206.149333pt;}
.y131{bottom:206.192000pt;}
.y16f{bottom:206.406667pt;}
.y1cf{bottom:206.456000pt;}
.y17a{bottom:206.657333pt;}
.y19c{bottom:206.680000pt;}
.y7b{bottom:206.864000pt;}
.y27{bottom:207.049333pt;}
.y151{bottom:207.453333pt;}
.y8{bottom:207.668000pt;}
.y164{bottom:208.117333pt;}
.y4f{bottom:208.182667pt;}
.y24a{bottom:208.246667pt;}
.y27a{bottom:208.315101pt;}
.y291{bottom:208.356000pt;}
.y1f4{bottom:208.542667pt;}
.y20d{bottom:209.090667pt;}
.y240{bottom:209.578667pt;}
.y1c9{bottom:210.340000pt;}
.y18a{bottom:210.702667pt;}
.y167{bottom:210.864000pt;}
.ybc{bottom:211.812000pt;}
.y267{bottom:213.364593pt;}
.y1c1{bottom:213.428000pt;}
.y275{bottom:213.693861pt;}
.y280{bottom:214.200000pt;}
.y27f{bottom:214.577333pt;}
.y255{bottom:216.800000pt;}
.y3c{bottom:217.665333pt;}
.y287{bottom:217.808000pt;}
.y1e3{bottom:218.134667pt;}
.y83{bottom:218.137333pt;}
.yc6{bottom:218.690667pt;}
.y1da{bottom:219.110667pt;}
.y9a{bottom:219.198667pt;}
.y1ec{bottom:219.693333pt;}
.y23{bottom:219.802667pt;}
.y1f0{bottom:219.904000pt;}
.y204{bottom:219.946667pt;}
.y296{bottom:220.000000pt;}
.y66{bottom:220.918667pt;}
.y35{bottom:220.944000pt;}
.y5c{bottom:221.001333pt;}
.y236{bottom:221.068000pt;}
.y220{bottom:221.425333pt;}
.y227{bottom:221.538667pt;}
.y254{bottom:221.676000pt;}
.y130{bottom:222.132000pt;}
.y165{bottom:222.250667pt;}
.y13b{bottom:222.860000pt;}
.y26{bottom:222.989333pt;}
.y19b{bottom:223.000000pt;}
.y15d{bottom:223.417333pt;}
.y147{bottom:224.402667pt;}
.y1b0{bottom:224.425333pt;}
.y4e{bottom:224.616000pt;}
.y179{bottom:224.722667pt;}
.y16e{bottom:224.841333pt;}
.y37{bottom:224.892000pt;}
.y7a{bottom:224.930667pt;}
.y20c{bottom:225.030667pt;}
.yb9{bottom:225.054287pt;}
.y150{bottom:225.518667pt;}
.y268{bottom:225.826986pt;}
.y163{bottom:226.182667pt;}
.y1f3{bottom:226.609333pt;}
.y266{bottom:227.175806pt;}
.y217{bottom:228.172000pt;}
.ybb{bottom:228.416000pt;}
.y1ce{bottom:228.506667pt;}
.y189{bottom:228.769333pt;}
.y290{bottom:230.406667pt;}
.y4b{bottom:231.889333pt;}
.y1ba{bottom:235.477333pt;}
.y1c8{bottom:235.525333pt;}
.y3b{bottom:235.730667pt;}
.y22{bottom:235.742667pt;}
.y99{bottom:235.804000pt;}
.y166{bottom:238.114667pt;}
.yc5{bottom:238.616000pt;}
.y12f{bottom:240.065333pt;}
.y65{bottom:240.526667pt;}
.y235{bottom:240.705333pt;}
.y13a{bottom:240.925333pt;}
.y1d9{bottom:241.161333pt;}
.y25{bottom:241.468000pt;}
.y15c{bottom:241.482667pt;}
.y20b{bottom:241.636000pt;}
.y16d{bottom:242.908000pt;}
.y34{bottom:242.994667pt;}
.y79{bottom:242.996000pt;}
.y5b{bottom:243.052000pt;}
.yd2{bottom:243.079006pt;}
.y4d{bottom:243.173333pt;}
.y178{bottom:243.222667pt;}
.y14f{bottom:243.584000pt;}
.y226{bottom:243.589333pt;}
.y203{bottom:243.741333pt;}
.y7{bottom:243.798667pt;}
.y162{bottom:244.248000pt;}
.y19a{bottom:244.490667pt;}
.y1f2{bottom:244.674667pt;}
.ye{bottom:245.342667pt;}
.y216{bottom:246.237333pt;}
.y146{bottom:246.453333pt;}
.y1af{bottom:246.476000pt;}
.y1cd{bottom:246.573333pt;}
.y36{bottom:246.942667pt;}
.yba{bottom:248.341333pt;}
.yb8{bottom:249.940570pt;}
.y143{bottom:250.184000pt;}
.y249{bottom:250.222667pt;}
.y188{bottom:250.820000pt;}
.y1b8{bottom:251.142667pt;}
.y75{bottom:251.250667pt;}
.y21{bottom:251.682667pt;}
.y232{bottom:251.744000pt;}
.y98{bottom:255.729333pt;}
.y12e{bottom:256.669333pt;}
.y1c7{bottom:257.576000pt;}
.y3a{bottom:257.781333pt;}
.y1d8{bottom:259.228000pt;}
.y234{bottom:260.341333pt;}
.y15b{bottom:260.694667pt;}
.y199{bottom:260.810667pt;}
.y177{bottom:261.288000pt;}
.y16c{bottom:261.342667pt;}
.y78{bottom:261.382667pt;}
.y20a{bottom:261.561333pt;}
.y14e{bottom:261.649333pt;}
.y225{bottom:261.654667pt;}
.y24{bottom:262.314667pt;}
.y33{bottom:265.045333pt;}
.y21d{bottom:266.093333pt;}
.y20{bottom:268.288000pt;}
.y139{bottom:269.172000pt;}
.y1b7{bottom:269.873333pt;}
.y1f1{bottom:271.925333pt;}
.y39{bottom:275.846667pt;}
.y1c6{bottom:279.626667pt;}
.y6{bottom:306.096000pt;}
.y233{bottom:306.494667pt;}
.y64{bottom:306.793333pt;}
.y23f{bottom:307.809333pt;}
.y71{bottom:307.862667pt;}
.y11{bottom:307.989333pt;}
.y21f{bottom:308.198667pt;}
.y182{bottom:308.377333pt;}
.ya3{bottom:2703.482540pt;}
.y1bf{bottom:2713.815720pt;}
.y18f{bottom:2720.477053pt;}
.y1d7{bottom:2720.530387pt;}
.y8f{bottom:2723.462387pt;}
.y1be{bottom:2735.866387pt;}
.y1d6{bottom:2736.470387pt;}
.y8e{bottom:2741.529053pt;}
.y56{bottom:2747.383720pt;}
.y6d{bottom:2748.290387pt;}
.ya2{bottom:2749.519720pt;}
.y1d5{bottom:2752.410387pt;}
.y1aa{bottom:2754.910387pt;}
.ya1{bottom:2765.461053pt;}
.ycd{bottom:2766.503720pt;}
.y2d{bottom:2767.953053pt;}
.y1d4{bottom:2769.014387pt;}
.y1bc{bottom:2771.682387pt;}
.yc4{bottom:2776.229053pt;}
.y1a9{bottom:2778.821053pt;}
.y54{bottom:2780.085053pt;}
.ya0{bottom:2782.065053pt;}
.ycc{bottom:2782.443720pt;}
.y2c{bottom:2785.886387pt;}
.yc3{bottom:2792.169053pt;}
.y53{bottom:2796.026387pt;}
.y8b{bottom:2797.718387pt;}
.ycb{bottom:2798.383720pt;}
.y1a8{bottom:2802.731720pt;}
.yc2{bottom:2808.110387pt;}
.y1bd{bottom:2809.478387pt;}
.y8a{bottom:2813.658387pt;}
.y283{bottom:2814.749053pt;}
.yca{bottom:2814.989053pt;}
.y2a{bottom:2821.998387pt;}
.yc1{bottom:2824.714387pt;}
.y1a7{bottom:2826.642387pt;}
.y3f{bottom:2831.895720pt;}
.y282{bottom:2836.799720pt;}
.y3e{bottom:2847.835720pt;}
.y9f{bottom:2852.027720pt;}
.y68{bottom:2855.285053pt;}
.y28{bottom:2858.110387pt;}
.y281{bottom:2858.850387pt;}
.ybf{bottom:2860.579720pt;}
.y9d{bottom:2867.967720pt;}
.y67{bottom:2871.226387pt;}
.y1a6{bottom:2874.154387pt;}
.ybd{bottom:2876.519720pt;}
.y1bb{bottom:2880.129053pt;}
.y9b{bottom:2883.907720pt;}
.y15{bottom:2886.503720pt;}
.yb3{bottom:2891.755340pt;}
.y1a5{bottom:2892.219720pt;}
.y14{bottom:2902.443720pt;}
.y1a4{bottom:2910.285053pt;}
.yb2{bottom:2916.641624pt;}
.y13{bottom:2918.383720pt;}
.y22f{bottom:2918.445053pt;}
.y12{bottom:2934.989053pt;}
.h2e{height:-2380.317053pt;}
.h16{height:-2363.322540pt;}
.h21{height:16.108414pt;}
.h1e{height:17.913675pt;}
.h1f{height:18.793150pt;}
.h17{height:19.810145pt;}
.h20{height:21.477885pt;}
.h19{height:22.030256pt;}
.h42{height:22.321152pt;}
.h46{height:22.640026pt;}
.h22{height:24.162621pt;}
.h18{height:24.381716pt;}
.h38{height:25.219635pt;}
.h6{height:25.472546pt;}
.h36{height:25.489009pt;}
.h43{height:27.529397pt;}
.h33{height:28.901570pt;}
.h32{height:28.906903pt;}
.h4d{height:29.761510pt;}
.h27{height:30.235486pt;}
.h26{height:30.240819pt;}
.h37{height:30.336461pt;}
.h41{height:31.462219pt;}
.h2d{height:32.309403pt;}
.h2f{height:32.456689pt;}
.h2b{height:33.158717pt;}
.h10{height:33.963253pt;}
.h48{height:34.013210pt;}
.hb{height:34.480626pt;}
.h9{height:34.485959pt;}
.h12{height:34.586894pt;}
.hd{height:34.592227pt;}
.h15{height:36.008550pt;}
.h3{height:38.208819pt;}
.h4a{height:38.264832pt;}
.h30{height:40.378215pt;}
.hf{height:41.029686pt;}
.h3e{height:41.294131pt;}
.ha{height:42.453959pt;}
.he{height:43.636400pt;}
.h3c{height:43.822445pt;}
.h29{height:44.250180pt;}
.h49{height:44.642304pt;}
.h35{height:46.419800pt;}
.hc{height:46.487311pt;}
.h8{height:46.603675pt;}
.h44{height:47.193293pt;}
.h1d{height:47.307990pt;}
.h14{height:48.997686pt;}
.h24{height:49.003020pt;}
.h25{height:49.381955pt;}
.h47{height:51.019776pt;}
.h34{height:51.072614pt;}
.h40{height:51.300426pt;}
.h3f{height:51.300438pt;}
.h13{height:55.072586pt;}
.h4c{height:55.459920pt;}
.h4b{height:55.459933pt;}
.h23{height:55.500191pt;}
.h2c{height:56.793071pt;}
.h11{height:61.207311pt;}
.h1a{height:61.287148pt;}
.h4{height:63.840768pt;}
.h31{height:68.462362pt;}
.h1b{height:70.325768pt;}
.h2a{height:75.771780pt;}
.h5{height:76.608922pt;}
.h2{height:93.632842pt;}
.h3b{height:95.272437pt;}
.h28{height:102.144802pt;}
.h39{height:105.890491pt;}
.h1c{height:132.284427pt;}
.h7{height:136.193069pt;}
.h3a{height:151.546016pt;}
.h45{height:162.424911pt;}
.h3d{height:246.628800pt;}
.h1{height:340.000000pt;}
.h0{height:340.160000pt;}
.w2{width:-2368.100501pt;}
.w7{width:-2082.769053pt;}
.w8{width:125.514331pt;}
.w6{width:147.661984pt;}
.wb{width:148.301800pt;}
.w5{width:186.515150pt;}
.w4{width:250.876484pt;}
.w3{width:277.820588pt;}
.w9{width:366.041915pt;}
.wa{width:567.993600pt;}
.w1{width:604.666667pt;}
.w0{width:604.720000pt;}
.x28{left:-5.136508pt;}
.x0{left:0.000000pt;}
.x27{left:2.079138pt;}
.x3a{left:4.389863pt;}
.x39{left:6.884677pt;}
.x50{left:11.417266pt;}
.x29{left:16.278748pt;}
.x4{left:18.897333pt;}
.x1{left:20.032000pt;}
.x2{left:22.718667pt;}
.x8{left:24.998667pt;}
.x63{left:27.433333pt;}
.x3f{left:30.203762pt;}
.x75{left:31.390667pt;}
.x26{left:32.952554pt;}
.x38{left:34.726406pt;}
.x78{left:37.304527pt;}
.xb{left:38.548000pt;}
.x9{left:41.918667pt;}
.x58{left:47.801333pt;}
.x77{left:50.127652pt;}
.x79{left:52.147337pt;}
.xa{left:56.308000pt;}
.x7f{left:58.065405pt;}
.x4b{left:61.702667pt;}
.x7e{left:63.403867pt;}
.x7a{left:64.970466pt;}
.x13{left:67.740000pt;}
.x3b{left:71.053147pt;}
.x76{left:75.445333pt;}
.x7b{left:77.793579pt;}
.x81{left:80.400896pt;}
.x80{left:82.488833pt;}
.x14{left:86.304000pt;}
.x40{left:99.277387pt;}
.x15{left:104.868000pt;}
.x41{left:106.302409pt;}
.x44{left:111.744000pt;}
.x3c{left:117.481094pt;}
.x55{left:119.950667pt;}
.x83{left:123.523247pt;}
.x12{left:124.938667pt;}
.x1d{left:126.102667pt;}
.x2d{left:137.058733pt;}
.x2e{left:143.964096pt;}
.x2c{left:146.942943pt;}
.x66{left:151.824000pt;}
.x33{left:154.832776pt;}
.x32{left:159.670191pt;}
.x21{left:163.506667pt;}
.x7d{left:170.940415pt;}
.xe{left:174.053333pt;}
.x42{left:175.376035pt;}
.x2a{left:176.799799pt;}
.x82{left:181.026634pt;}
.x43{left:182.401057pt;}
.x70{left:185.465333pt;}
.x18{left:186.809333pt;}
.x54{left:190.092000pt;}
.x19{left:191.502667pt;}
.xf{left:192.617333pt;}
.x3e{left:193.579741pt;}
.x1a{left:197.864000pt;}
.x2b{left:201.221131pt;}
.x56{left:203.398667pt;}
.xd{left:209.948000pt;}
.x10{left:211.181333pt;}
.x59{left:213.653333pt;}
.x51{left:215.401333pt;}
.x1b{left:217.890667pt;}
.x57{left:223.104000pt;}
.x60{left:226.081333pt;}
.x5{left:226.990667pt;}
.x52{left:228.950667pt;}
.x6c{left:234.581333pt;}
.x6e{left:243.688000pt;}
.x8a{left:244.604000pt;}
.x3d{left:250.592092pt;}
.x69{left:255.892000pt;}
.x4e{left:260.982667pt;}
.x4a{left:264.828000pt;}
.x34{left:268.654667pt;}
.x1e{left:269.757333pt;}
.x6a{left:272.812000pt;}
.x48{left:274.453333pt;}
.x17{left:278.424000pt;}
.x4d{left:282.024000pt;}
.x74{left:283.538667pt;}
.x4c{left:284.873333pt;}
.x6b{left:287.201333pt;}
.x61{left:288.769333pt;}
.x31{left:306.119448pt;}
.x11{left:307.990667pt;}
.x86{left:314.415709pt;}
.x87{left:321.883969pt;}
.x45{left:329.094667pt;}
.x1f{left:334.548000pt;}
.x1c{left:336.777333pt;}
.x62{left:339.710667pt;}
.x49{left:342.418667pt;}
.x46{left:346.016000pt;}
.x4f{left:356.426667pt;}
.x37{left:361.228000pt;}
.x88{left:365.160493pt;}
.x68{left:366.866667pt;}
.x47{left:377.314667pt;}
.x64{left:378.541333pt;}
.x67{left:379.644000pt;}
.x85{left:387.833008pt;}
.x6d{left:395.318667pt;}
.x65{left:397.376000pt;}
.x89{left:398.269333pt;}
.x5f{left:401.440000pt;}
.x84{left:404.626127pt;}
.x7c{left:408.173333pt;}
.x16{left:409.906667pt;}
.x73{left:414.366667pt;}
.x3{left:432.044000pt;}
.x72{left:454.414667pt;}
.x6f{left:477.028000pt;}
.x53{left:2687.489053pt;}
.x6{left:2691.699720pt;}
.x20{left:2705.249053pt;}
.x7{left:2708.619720pt;}
.xc{left:2723.009053pt;}
.x35{left:2764.466387pt;}
.x36{left:2796.559720pt;}
.x24{left:2816.126387pt;}
.x30{left:2821.533829pt;}
.x2f{left:2826.371245pt;}
.x22{left:2827.497053pt;}
.x23{left:2841.962387pt;}
.x5a{left:2880.354387pt;}
.x5b{left:2892.782387pt;}
.x5c{left:2944.450387pt;}
.x5d{left:2955.470387pt;}
.x25{left:2972.820501pt;}
.x5e{left:3006.411720pt;}
.x71{left:3121.115720pt;}
}




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