
    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_be3f4034d5a2883c75099767.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.918500;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_0d1ce08fb2299288dd2cb9fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.948500;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_70516cdd53230adbea58650e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.965500;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_3cadca38066374b7a87d56e4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.558000;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_6b3e5a7156367b1122be44b5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;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_7576af048b1deca75a9c092b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.945500;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_55b1ee2cec121ce6c7f58367.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7868c8e04b892c7f3993e18c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_67c6daabf1b12660ed44645e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.724000;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_67c6daabf1b12660ed44645e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.724000;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_d288e001c2a79e5045c46bc5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.723000;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_b7d6bafbf64f92bc86a5dbb5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.558000;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;}
.m4{transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.151515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151515,0.000000,0.000000,0.250000,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);}
.m3{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);}
.v2{vertical-align:-32.400600px;}
.v5{vertical-align:-21.600000px;}
.v3{vertical-align:-18.900000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:20.298000px;}
.v4{vertical-align:21.600000px;}
.v1{vertical-align:32.400600px;}
.ls8f{letter-spacing:-3.735000px;}
.ls5b{letter-spacing:-3.510000px;}
.ls85{letter-spacing:-3.330000px;}
.ls86{letter-spacing:-3.105000px;}
.ls22{letter-spacing:-2.251200px;}
.ls69{letter-spacing:-2.250000px;}
.ls77{letter-spacing:-2.205000px;}
.ls67{letter-spacing:-2.115000px;}
.ls36{letter-spacing:-2.016000px;}
.ls84{letter-spacing:-1.980000px;}
.ls7f{letter-spacing:-1.968000px;}
.ls50{letter-spacing:-1.824000px;}
.ls71{letter-spacing:-1.728000px;}
.ls5f{letter-spacing:-1.620000px;}
.ls6f{letter-spacing:-1.584000px;}
.ls91{letter-spacing:-1.575000px;}
.ls30{letter-spacing:-1.536000px;}
.ls52{letter-spacing:-1.488000px;}
.ls4e{letter-spacing:-1.440000px;}
.ls1c{letter-spacing:-1.411200px;}
.ls7d{letter-spacing:-1.344000px;}
.ls59{letter-spacing:-1.305000px;}
.ls8d{letter-spacing:-1.260000px;}
.ls4f{letter-spacing:-1.248000px;}
.ls78{letter-spacing:-1.215000px;}
.ls28{letter-spacing:-1.200000px;}
.ls3c{letter-spacing:-1.152000px;}
.ls8e{letter-spacing:-1.125000px;}
.ls3b{letter-spacing:-1.104000px;}
.ls5d{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-1.050000px;}
.lsa{letter-spacing:-1.008000px;}
.ls17{letter-spacing:-0.972000px;}
.ls6c{letter-spacing:-0.960000px;}
.ls60{letter-spacing:-0.945000px;}
.ls68{letter-spacing:-0.900000px;}
.ls64{letter-spacing:-0.855000px;}
.ls93{letter-spacing:-0.810000px;}
.ls6b{letter-spacing:-0.720000px;}
.ls2d{letter-spacing:-0.705600px;}
.ls65{letter-spacing:-0.675000px;}
.ls32{letter-spacing:-0.630000px;}
.ls25{letter-spacing:-0.604800px;}
.lsc{letter-spacing:-0.540000px;}
.ls37{letter-spacing:-0.537600px;}
.ls63{letter-spacing:-0.495000px;}
.ls70{letter-spacing:-0.436800px;}
.ls80{letter-spacing:-0.432000px;}
.ls75{letter-spacing:-0.403200px;}
.ls42{letter-spacing:-0.384000px;}
.ls56{letter-spacing:-0.315000px;}
.ls2a{letter-spacing:-0.288000px;}
.ls83{letter-spacing:-0.270000px;}
.ls35{letter-spacing:-0.235200px;}
.ls43{letter-spacing:-0.201600px;}
.ls39{letter-spacing:-0.192000px;}
.ls55{letter-spacing:-0.180000px;}
.ls6d{letter-spacing:-0.144000px;}
.ls57{letter-spacing:-0.135000px;}
.ls2c{letter-spacing:-0.067200px;}
.ls16{letter-spacing:-0.054000px;}
.ls6e{letter-spacing:-0.048000px;}
.ls8{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.048000px;}
.ls7{letter-spacing:0.054000px;}
.ls76{letter-spacing:0.067200px;}
.ls0{letter-spacing:0.072000px;}
.ls5c{letter-spacing:0.090000px;}
.ls62{letter-spacing:0.135000px;}
.ls51{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.192000px;}
.ls87{letter-spacing:0.225000px;}
.ls48{letter-spacing:0.270000px;}
.ls73{letter-spacing:0.336000px;}
.ls44{letter-spacing:0.360000px;}
.ls95{letter-spacing:0.384000px;}
.ls5a{letter-spacing:0.405000px;}
.ls2{letter-spacing:0.411000px;}
.ls33{letter-spacing:0.420000px;}
.ls94{letter-spacing:0.432000px;}
.ls2f{letter-spacing:0.436800px;}
.ls82{letter-spacing:0.450000px;}
.ls13{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.481800px;}
.ls53{letter-spacing:0.495000px;}
.ls3f{letter-spacing:0.504000px;}
.ls34{letter-spacing:0.528000px;}
.ls15{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.558000px;}
.ls27{letter-spacing:0.571200px;}
.ls1d{letter-spacing:0.576000px;}
.ls66{letter-spacing:0.585000px;}
.ls4{letter-spacing:0.622800px;}
.ls31{letter-spacing:0.624000px;}
.ls58{letter-spacing:0.630000px;}
.ls14{letter-spacing:0.648000px;}
.ls2e{letter-spacing:0.672000px;}
.ls90{letter-spacing:0.675000px;}
.ls10{letter-spacing:0.714000px;}
.ls20{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.756000px;}
.ls61{letter-spacing:0.765000px;}
.ls21{letter-spacing:0.768000px;}
.ls3{letter-spacing:0.778800px;}
.ls72{letter-spacing:0.806400px;}
.ls54{letter-spacing:0.810000px;}
.ls8a{letter-spacing:0.816000px;}
.ls12{letter-spacing:0.840000px;}
.ls47{letter-spacing:0.855000px;}
.lsf{letter-spacing:0.864000px;}
.ls11{letter-spacing:0.882000px;}
.ls5e{letter-spacing:0.900000px;}
.ls1e{letter-spacing:0.912000px;}
.ls23{letter-spacing:0.960000px;}
.ls79{letter-spacing:0.979200px;}
.ls1f{letter-spacing:1.008000px;}
.lsd{letter-spacing:1.058400px;}
.ls7e{letter-spacing:1.142400px;}
.ls7c{letter-spacing:1.152000px;}
.ls38{letter-spacing:1.248000px;}
.lse{letter-spacing:1.260000px;}
.ls3a{letter-spacing:1.296000px;}
.ls92{letter-spacing:1.305000px;}
.ls7b{letter-spacing:1.344000px;}
.ls3e{letter-spacing:1.392000px;}
.ls24{letter-spacing:1.440000px;}
.ls3d{letter-spacing:1.488000px;}
.ls74{letter-spacing:1.536000px;}
.ls41{letter-spacing:1.584000px;}
.ls6a{letter-spacing:2.160000px;}
.ls8b{letter-spacing:2.208000px;}
.ls4c{letter-spacing:2.400000px;}
.ls19{letter-spacing:2.898000px;}
.ls45{letter-spacing:4.416000px;}
.ls26{letter-spacing:4.560000px;}
.ls4b{letter-spacing:4.608000px;}
.ls89{letter-spacing:4.800000px;}
.ls2b{letter-spacing:5.136000px;}
.ls88{letter-spacing:5.424000px;}
.ls8c{letter-spacing:5.904000px;}
.ls1b{letter-spacing:5.940000px;}
.ls1a{letter-spacing:6.000000px;}
.ls46{letter-spacing:6.420000px;}
.ls81{letter-spacing:6.540000px;}
.ls49{letter-spacing:6.720000px;}
.ls4d{letter-spacing:7.200000px;}
.ls4a{letter-spacing:7.488000px;}
.ls18{letter-spacing:8.400000px;}
.lsb{letter-spacing:11.502000px;}
.ls7a{letter-spacing:717.975000px;}
.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;}
}
.ws39{word-spacing:-42.000000px;}
.ws0{word-spacing:-25.704000px;}
.ws8e{word-spacing:-21.120000px;}
.ws3f{word-spacing:-21.000000px;}
.ws23{word-spacing:-20.580000px;}
.ws1b{word-spacing:-20.520000px;}
.wsc{word-spacing:-18.606000px;}
.wsa3{word-spacing:-17.568000px;}
.wsa0{word-spacing:-17.088000px;}
.wsa1{word-spacing:-16.800000px;}
.wsb{word-spacing:-15.060000px;}
.ws3a{word-spacing:-14.580000px;}
.wsa2{word-spacing:-14.496000px;}
.ws3d{word-spacing:-13.680000px;}
.ws3{word-spacing:-13.507200px;}
.ws24{word-spacing:-13.380000px;}
.ws2{word-spacing:-13.305600px;}
.ws1d{word-spacing:-13.200000px;}
.ws20{word-spacing:-13.056000px;}
.ws26{word-spacing:-13.008000px;}
.ws6{word-spacing:-13.003200px;}
.ws71{word-spacing:-12.960000px;}
.wsab{word-spacing:-12.864000px;}
.wsa8{word-spacing:-12.825000px;}
.ws61{word-spacing:-12.780000px;}
.ws1f{word-spacing:-12.768000px;}
.ws40{word-spacing:-12.375000px;}
.ws67{word-spacing:-12.285000px;}
.ws4{word-spacing:-12.247200px;}
.ws64{word-spacing:-12.240000px;}
.ws5e{word-spacing:-12.150000px;}
.ws90{word-spacing:-11.970000px;}
.ws41{word-spacing:-11.790000px;}
.ws99{word-spacing:-11.745000px;}
.ws6b{word-spacing:-11.655000px;}
.ws62{word-spacing:-11.610000px;}
.ws6d{word-spacing:-11.520000px;}
.ws11{word-spacing:-11.502000px;}
.ws9{word-spacing:-11.466000px;}
.ws6f{word-spacing:-11.340000px;}
.wsa6{word-spacing:-11.250000px;}
.ws60{word-spacing:-11.205000px;}
.wsa4{word-spacing:-11.160000px;}
.wsa{word-spacing:-11.088000px;}
.ws69{word-spacing:-11.070000px;}
.wsa7{word-spacing:-10.935000px;}
.ws92{word-spacing:-10.890000px;}
.wsa9{word-spacing:-10.845000px;}
.wse{word-spacing:-10.752000px;}
.wsaa{word-spacing:-10.710000px;}
.ws6a{word-spacing:-10.665000px;}
.ws6e{word-spacing:-10.620000px;}
.ws66{word-spacing:-10.575000px;}
.ws63{word-spacing:-10.440000px;}
.ws84{word-spacing:-10.305000px;}
.wsa5{word-spacing:-10.260000px;}
.ws5f{word-spacing:-10.215000px;}
.ws65{word-spacing:-9.900000px;}
.ws8d{word-spacing:-9.744000px;}
.ws7{word-spacing:-9.612000px;}
.ws7e{word-spacing:-9.408000px;}
.ws6c{word-spacing:-9.405000px;}
.ws70{word-spacing:-9.270000px;}
.ws5d{word-spacing:-9.172800px;}
.ws3e{word-spacing:-9.105600px;}
.ws28{word-spacing:-9.038400px;}
.ws7f{word-spacing:-8.937600px;}
.ws81{word-spacing:-8.668800px;}
.ws1e{word-spacing:-8.601600px;}
.ws25{word-spacing:-8.534400px;}
.ws3b{word-spacing:-8.366400px;}
.ws80{word-spacing:-8.198400px;}
.ws3c{word-spacing:-8.064000px;}
.ws22{word-spacing:-7.996800px;}
.ws27{word-spacing:-7.896000px;}
.ws8{word-spacing:-7.526400px;}
.ws1c{word-spacing:-7.190400px;}
.ws56{word-spacing:-6.720000px;}
.ws21{word-spacing:-6.350400px;}
.ws29{word-spacing:-6.000000px;}
.ws34{word-spacing:-5.136000px;}
.wsac{word-spacing:-4.800000px;}
.ws30{word-spacing:-4.560000px;}
.ws54{word-spacing:-4.416000px;}
.wsb0{word-spacing:-4.050000px;}
.wsb8{word-spacing:-2.295000px;}
.ws50{word-spacing:-1.584000px;}
.ws8c{word-spacing:-1.536000px;}
.ws4e{word-spacing:-1.488000px;}
.ws2f{word-spacing:-1.440000px;}
.ws9a{word-spacing:-1.344000px;}
.ws4b{word-spacing:-1.296000px;}
.ws49{word-spacing:-1.248000px;}
.ws9b{word-spacing:-1.152000px;}
.ws2b{word-spacing:-1.008000px;}
.ws2e{word-spacing:-0.960000px;}
.ws7a{word-spacing:-0.900000px;}
.ws37{word-spacing:-0.864000px;}
.ws76{word-spacing:-0.855000px;}
.ws15{word-spacing:-0.840000px;}
.wsad{word-spacing:-0.816000px;}
.ws72{word-spacing:-0.810000px;}
.ws2d{word-spacing:-0.768000px;}
.ws14{word-spacing:-0.756000px;}
.ws2c{word-spacing:-0.720000px;}
.ws13{word-spacing:-0.714000px;}
.wsb2{word-spacing:-0.675000px;}
.ws36{word-spacing:-0.672000px;}
.ws16{word-spacing:-0.648000px;}
.ws77{word-spacing:-0.630000px;}
.ws45{word-spacing:-0.624000px;}
.ws7d{word-spacing:-0.585000px;}
.ws2a{word-spacing:-0.576000px;}
.ws31{word-spacing:-0.571200px;}
.ws17{word-spacing:-0.540000px;}
.ws44{word-spacing:-0.528000px;}
.ws47{word-spacing:-0.480000px;}
.ws43{word-spacing:-0.420000px;}
.ws78{word-spacing:-0.405000px;}
.wsbe{word-spacing:-0.384000px;}
.ws53{word-spacing:-0.360000px;}
.ws9f{word-spacing:-0.336000px;}
.wsaf{word-spacing:-0.225000px;}
.ws32{word-spacing:-0.192000px;}
.ws5b{word-spacing:-0.144000px;}
.wsb3{word-spacing:-0.090000px;}
.ws12{word-spacing:-0.072000px;}
.ws4f{word-spacing:-0.048000px;}
.ws68{word-spacing:-0.045000px;}
.wsd{word-spacing:0.000000px;}
.ws88{word-spacing:0.048000px;}
.ws18{word-spacing:0.054000px;}
.ws75{word-spacing:0.135000px;}
.ws87{word-spacing:0.144000px;}
.ws73{word-spacing:0.180000px;}
.ws4a{word-spacing:0.192000px;}
.ws52{word-spacing:0.201600px;}
.ws33{word-spacing:0.288000px;}
.ws74{word-spacing:0.315000px;}
.ws51{word-spacing:0.384000px;}
.ws9e{word-spacing:0.432000px;}
.ws8a{word-spacing:0.436800px;}
.ws7b{word-spacing:0.495000px;}
.ws42{word-spacing:0.630000px;}
.ws7c{word-spacing:0.675000px;}
.ws85{word-spacing:0.720000px;}
.ws57{word-spacing:0.864000px;}
.wsbd{word-spacing:0.945000px;}
.ws86{word-spacing:0.960000px;}
.ws19{word-spacing:0.972000px;}
.ws10{word-spacing:1.008000px;}
.ws55{word-spacing:1.035000px;}
.wsf{word-spacing:1.050000px;}
.wsb4{word-spacing:1.080000px;}
.ws4c{word-spacing:1.104000px;}
.wsae{word-spacing:1.125000px;}
.ws4d{word-spacing:1.152000px;}
.ws59{word-spacing:1.248000px;}
.wsb6{word-spacing:1.305000px;}
.ws9c{word-spacing:1.344000px;}
.ws58{word-spacing:1.440000px;}
.ws5c{word-spacing:1.488000px;}
.ws38{word-spacing:1.536000px;}
.wsb7{word-spacing:1.575000px;}
.ws89{word-spacing:1.584000px;}
.ws8b{word-spacing:1.728000px;}
.ws5a{word-spacing:1.824000px;}
.ws9d{word-spacing:1.968000px;}
.ws46{word-spacing:2.016000px;}
.ws48{word-spacing:2.544000px;}
.ws79{word-spacing:3.510000px;}
.wsb5{word-spacing:3.645000px;}
.wsb1{word-spacing:3.735000px;}
.ws35{word-spacing:5.136000px;}
.wsbc{word-spacing:10.575000px;}
.wsba{word-spacing:12.195000px;}
.wsb9{word-spacing:12.240000px;}
.wsbb{word-spacing:13.815000px;}
.ws1{word-spacing:77.679720px;}
.ws5{word-spacing:78.279120px;}
.ws98{word-spacing:522.076500px;}
.ws96{word-spacing:540.517500px;}
.ws97{word-spacing:552.753000px;}
.ws95{word-spacing:569.565000px;}
.ws91{word-spacing:584.950500px;}
.ws8f{word-spacing:630.256500px;}
.ws94{word-spacing:666.886500px;}
.ws93{word-spacing:670.140000px;}
.ws83{word-spacing:716.161500px;}
.ws82{word-spacing:719.415000px;}
.ws1a{word-spacing:2432.963400px;}
._4{margin-left:-766.501800px;}
._67{margin-left:-7.245000px;}
._f{margin-left:-6.200880px;}
._a{margin-left:-4.543920px;}
._9{margin-left:-3.537600px;}
._8{margin-left:-2.479800px;}
._7{margin-left:-1.139400px;}
._6{width:1.016400px;}
._3{width:2.100000px;}
._b{width:3.789600px;}
._d{width:5.686200px;}
._c{width:7.113600px;}
._e{width:8.191800px;}
._5{width:9.450000px;}
._2{width:10.752000px;}
._65{width:12.599100px;}
._10{width:13.958400px;}
._11{width:15.556200px;}
._14{width:17.718000px;}
._15{width:19.150800px;}
._63{width:20.205000px;}
._66{width:21.303600px;}
._64{width:23.490000px;}
._62{width:25.057800px;}
._13{width:28.304400px;}
._12{width:29.806200px;}
._61{width:67.189800px;}
._1b{width:81.298800px;}
._1c{width:94.646400px;}
._19{width:99.684600px;}
._34{width:102.682680px;}
._18{width:114.205200px;}
._36{width:116.128800px;}
._35{width:120.090000px;}
._37{width:126.837000px;}
._1a{width:144.504720px;}
._4e{width:147.621000px;}
._1d{width:152.689200px;}
._42{width:155.820600px;}
._28{width:163.088400px;}
._57{width:168.365040px;}
._23{width:172.086000px;}
._22{width:175.905000px;}
._40{width:177.422520px;}
._25{width:178.794600px;}
._3d{width:180.976800px;}
._3e{width:187.976400px;}
._3c{width:189.208800px;}
._32{width:190.277520px;}
._2a{width:192.118800px;}
._3f{width:195.300600px;}
._24{width:198.222000px;}
._29{width:200.065200px;}
._26{width:201.095520px;}
._43{width:206.103600px;}
._45{width:208.436520px;}
._31{width:225.352200px;}
._3a{width:227.173800px;}
._2c{width:229.404600px;}
._17{width:233.020800px;}
._2b{width:238.383000px;}
._2f{width:249.889800px;}
._20{width:251.460000px;}
._2e{width:252.898920px;}
._30{width:254.291280px;}
._2d{width:257.393400px;}
._1f{width:259.866000px;}
._21{width:265.431600px;}
._39{width:266.699400px;}
._44{width:268.465200px;}
._59{width:283.203600px;}
._55{width:284.220000px;}
._5c{width:285.246900px;}
._1e{width:294.299400px;}
._3b{width:297.516600px;}
._46{width:299.436600px;}
._27{width:302.204400px;}
._53{width:319.654200px;}
._38{width:324.269400px;}
._4c{width:325.362600px;}
._41{width:328.217400px;}
._4a{width:329.448600px;}
._33{width:336.888600px;}
._50{width:339.819600px;}
._47{width:343.330200px;}
._60{width:344.777400px;}
._4b{width:346.694400px;}
._51{width:350.433600px;}
._4d{width:353.728800px;}
._4f{width:375.756000px;}
._48{width:376.923900px;}
._5f{width:398.031600px;}
._56{width:423.698100px;}
._5d{width:425.313300px;}
._58{width:447.787200px;}
._54{width:449.788500px;}
._49{width:460.881600px;}
._5b{width:473.887200px;}
._16{width:495.069600px;}
._5e{width:509.699400px;}
._52{width:557.755800px;}
._5a{width:717.975000px;}
._0{width:958.062000px;}
._1{width:1386.126000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:29.400000px;}
.fse{font-size:31.500000px;}
.fsc{font-size:33.600000px;}
.fs7{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fsa{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fs4{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs1{font-size:69.300000px;}
.fs2{font-size:72.000000px;}
.fsb{font-size:78.120000px;}
.fs3{font-size:78.540000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:45.835950px;}
.y2{bottom:46.660950px;}
.ye6{bottom:66.106050px;}
.y10{bottom:75.862500px;}
.y7f{bottom:75.871800px;}
.y9c{bottom:82.617450px;}
.ye5{bottom:90.856050px;}
.yf{bottom:90.867000px;}
.y7e{bottom:95.371800px;}
.y9b{bottom:98.367450px;}
.ye{bottom:105.871500px;}
.ye4{bottom:111.916050px;}
.y7d{bottom:114.871800px;}
.y9a{bottom:119.427450px;}
.y11{bottom:132.271500px;}
.ye3{bottom:132.976050px;}
.y7c{bottom:134.371800px;}
.y99{bottom:135.177450px;}
.y98{bottom:150.927450px;}
.y7b{bottom:153.871800px;}
.ye2{bottom:154.036050px;}
.y97{bottom:166.677450px;}
.y7a{bottom:173.371800px;}
.ye1{bottom:175.096050px;}
.y35{bottom:177.477450px;}
.y96{bottom:187.737450px;}
.y34{bottom:192.481950px;}
.y79{bottom:192.871800px;}
.y127{bottom:195.871800px;}
.ye0{bottom:196.156050px;}
.y95{bottom:203.487450px;}
.y33{bottom:207.486450px;}
.y126{bottom:211.621800px;}
.y78{bottom:212.371800px;}
.ydf{bottom:217.216050px;}
.y94{bottom:219.237450px;}
.y32{bottom:222.490950px;}
.y125{bottom:227.371800px;}
.y77{bottom:231.871800px;}
.y93{bottom:234.987450px;}
.y15b{bottom:236.493300px;}
.y31{bottom:237.495450px;}
.yde{bottom:238.276050px;}
.y124{bottom:243.121800px;}
.y92{bottom:250.737450px;}
.y76{bottom:251.371800px;}
.y30{bottom:252.499950px;}
.y15a{bottom:255.993300px;}
.y123{bottom:258.871800px;}
.ydd{bottom:259.336050px;}
.y91{bottom:266.487450px;}
.y2f{bottom:267.504450px;}
.y75{bottom:270.871800px;}
.y122{bottom:274.621800px;}
.y159{bottom:275.493300px;}
.ydc{bottom:280.396050px;}
.y90{bottom:282.237450px;}
.y2e{bottom:282.508950px;}
.yca{bottom:287.395800px;}
.y74{bottom:290.371800px;}
.y158{bottom:294.993300px;}
.y2d{bottom:297.513450px;}
.y8f{bottom:297.987450px;}
.ydb{bottom:301.456050px;}
.y49{bottom:304.587450px;}
.y121{bottom:306.121800px;}
.y73{bottom:309.871800px;}
.yc9{bottom:312.145800px;}
.y2c{bottom:312.517950px;}
.y9e{bottom:314.386200px;}
.y157{bottom:314.493300px;}
.y120{bottom:321.871800px;}
.y8e{bottom:322.264950px;}
.yda{bottom:322.516050px;}
.y48{bottom:325.587450px;}
.y2b{bottom:327.522450px;}
.y72{bottom:329.371800px;}
.y9d{bottom:330.886200px;}
.yc8{bottom:333.205800px;}
.y11f{bottom:337.621800px;}
.y2a{bottom:342.526950px;}
.yd9{bottom:343.576050px;}
.y71{bottom:348.871800px;}
.yc7{bottom:348.955800px;}
.y11e{bottom:353.371800px;}
.y29{bottom:357.531450px;}
.y47{bottom:361.365450px;}
.yd8{bottom:364.636050px;}
.y156{bottom:367.743300px;}
.y70{bottom:368.371800px;}
.y11d{bottom:369.121800px;}
.yc6{bottom:370.015800px;}
.y28{bottom:372.535950px;}
.y155{bottom:383.493300px;}
.y46{bottom:383.869950px;}
.y11c{bottom:384.871800px;}
.yd7{bottom:385.696050px;}
.yc5{bottom:385.765800px;}
.y27{bottom:387.540450px;}
.y6f{bottom:387.871800px;}
.y154{bottom:399.243300px;}
.y11b{bottom:400.621800px;}
.y45{bottom:406.374450px;}
.yd6{bottom:406.756050px;}
.yc4{bottom:406.825800px;}
.y6e{bottom:407.371800px;}
.y153{bottom:414.993300px;}
.y11a{bottom:416.371800px;}
.y26{bottom:417.538950px;}
.yc3{bottom:422.575800px;}
.y6d{bottom:426.871800px;}
.yd5{bottom:427.816050px;}
.y44{bottom:428.878950px;}
.y152{bottom:430.743300px;}
.y119{bottom:432.121800px;}
.y25{bottom:432.543450px;}
.yc2{bottom:443.635800px;}
.y6c{bottom:446.371800px;}
.y151{bottom:446.493300px;}
.y24{bottom:447.547950px;}
.y118{bottom:447.871800px;}
.yd4{bottom:448.876050px;}
.y43{bottom:451.383450px;}
.y150{bottom:462.243300px;}
.y23{bottom:462.552450px;}
.y117{bottom:463.621800px;}
.yc1{bottom:464.695800px;}
.y6b{bottom:465.871800px;}
.y108{bottom:466.256550px;}
.yd3{bottom:469.936050px;}
.y42{bottom:473.887950px;}
.y22{bottom:477.556950px;}
.y14f{bottom:477.993300px;}
.y116{bottom:479.371800px;}
.y6a{bottom:485.371800px;}
.yc0{bottom:485.755800px;}
.yd2{bottom:490.996050px;}
.y107{bottom:491.006550px;}
.y14e{bottom:493.743300px;}
.y115{bottom:495.121800px;}
.y41{bottom:496.392450px;}
.ybf{bottom:501.505800px;}
.y69{bottom:504.871800px;}
.y21{bottom:507.555450px;}
.y14d{bottom:509.493300px;}
.y114{bottom:510.871800px;}
.yea{bottom:511.204800px;}
.yd1{bottom:512.056050px;}
.y106{bottom:512.066550px;}
.y40{bottom:518.896950px;}
.ybe{bottom:522.565800px;}
.y68{bottom:524.371800px;}
.y14c{bottom:525.243300px;}
.y113{bottom:526.621800px;}
.y20{bottom:527.284950px;}
.ye9{bottom:527.704800px;}
.y105{bottom:533.126550px;}
.yd0{bottom:536.333550px;}
.y14b{bottom:540.993300px;}
.y3f{bottom:541.401450px;}
.y1f{bottom:542.046450px;}
.y112{bottom:542.371800px;}
.ybd{bottom:543.625800px;}
.y67{bottom:543.871800px;}
.ye8{bottom:544.204800px;}
.ycf{bottom:552.083550px;}
.y104{bottom:554.186550px;}
.y14a{bottom:556.743300px;}
.y1e{bottom:557.050950px;}
.y111{bottom:558.121800px;}
.ye7{bottom:560.704800px;}
.y66{bottom:563.371800px;}
.y3e{bottom:563.905950px;}
.ybc{bottom:564.685800px;}
.y1d{bottom:572.055450px;}
.y149{bottom:572.493300px;}
.y110{bottom:573.871800px;}
.y103{bottom:575.246550px;}
.y65{bottom:582.871800px;}
.ybb{bottom:585.745800px;}
.y3d{bottom:586.410450px;}
.y148{bottom:588.243300px;}
.y10f{bottom:589.621800px;}
.y1c{bottom:591.784950px;}
.y102{bottom:596.306550px;}
.y64{bottom:602.371800px;}
.y147{bottom:603.993300px;}
.y10e{bottom:605.371800px;}
.y1b{bottom:606.555450px;}
.yba{bottom:606.805800px;}
.y3c{bottom:608.914950px;}
.y101{bottom:617.366550px;}
.yce{bottom:618.871800px;}
.y146{bottom:619.743300px;}
.y10d{bottom:621.121800px;}
.y63{bottom:621.871800px;}
.ycd{bottom:622.083300px;}
.y1a{bottom:626.284950px;}
.yb9{bottom:630.712050px;}
.y3b{bottom:631.419450px;}
.y145{bottom:635.493300px;}
.y10c{bottom:636.871800px;}
.y100{bottom:638.426550px;}
.ycc{bottom:638.583300px;}
.y19{bottom:641.050950px;}
.y62{bottom:641.371800px;}
.yb8{bottom:646.462050px;}
.y144{bottom:651.243300px;}
.y10b{bottom:652.621800px;}
.y3a{bottom:653.923950px;}
.ycb{bottom:655.083300px;}
.y18{bottom:656.055450px;}
.yff{bottom:659.486550px;}
.y61{bottom:660.871800px;}
.y143{bottom:666.993300px;}
.y10a{bottom:668.371800px;}
.y17{bottom:675.784950px;}
.y39{bottom:676.428450px;}
.y60{bottom:680.371800px;}
.yfe{bottom:680.546550px;}
.y142{bottom:682.743300px;}
.y109{bottom:684.121800px;}
.y16{bottom:690.555450px;}
.yb7{bottom:693.145800px;}
.y141{bottom:698.493300px;}
.y38{bottom:698.932950px;}
.y5f{bottom:699.871800px;}
.yfd{bottom:701.606550px;}
.y15{bottom:710.284950px;}
.y140{bottom:714.243300px;}
.yb6{bottom:717.895800px;}
.y5e{bottom:719.371800px;}
.y37{bottom:721.437450px;}
.yfc{bottom:722.666550px;}
.y14{bottom:725.050950px;}
.y13f{bottom:729.993300px;}
.yb5{bottom:733.645800px;}
.y5d{bottom:738.871800px;}
.y13{bottom:740.055450px;}
.yfb{bottom:743.726550px;}
.y36{bottom:743.937450px;}
.y13e{bottom:745.743300px;}
.yb4{bottom:754.705800px;}
.y5c{bottom:758.371800px;}
.y12{bottom:759.784950px;}
.y13d{bottom:761.493300px;}
.yfa{bottom:764.786550px;}
.yb3{bottom:770.455800px;}
.y13c{bottom:777.243300px;}
.y5b{bottom:777.871800px;}
.yf9{bottom:785.846550px;}
.yb2{bottom:791.515800px;}
.y13b{bottom:792.993300px;}
.y5a{bottom:797.371800px;}
.yf8{bottom:806.906550px;}
.yd{bottom:807.012300px;}
.yb1{bottom:807.265800px;}
.y13a{bottom:808.743300px;}
.y59{bottom:816.871800px;}
.yb0{bottom:823.015800px;}
.y139{bottom:824.493300px;}
.yf7{bottom:827.966550px;}
.yc{bottom:834.012300px;}
.y58{bottom:836.371800px;}
.y138{bottom:840.243300px;}
.yaf{bottom:844.075800px;}
.yf6{bottom:849.026550px;}
.y57{bottom:855.871800px;}
.y137{bottom:855.993300px;}
.yae{bottom:859.825800px;}
.yb{bottom:861.012300px;}
.yf5{bottom:870.086550px;}
.y136{bottom:871.743300px;}
.y56{bottom:875.371800px;}
.yad{bottom:880.885800px;}
.y89{bottom:883.344300px;}
.y135{bottom:887.493300px;}
.yf4{bottom:891.146550px;}
.y55{bottom:894.871800px;}
.yac{bottom:901.945800px;}
.y88{bottom:902.844300px;}
.y134{bottom:903.243300px;}
.yf3{bottom:906.896550px;}
.y54{bottom:914.371800px;}
.y133{bottom:918.993300px;}
.ya{bottom:919.500300px;}
.y87{bottom:922.344300px;}
.yab{bottom:923.005800px;}
.yf1{bottom:927.956550px;}
.y53{bottom:933.871800px;}
.y132{bottom:934.743300px;}
.yaa{bottom:938.755800px;}
.y86{bottom:941.844300px;}
.yf0{bottom:943.694550px;}
.yf2{bottom:943.706550px;}
.y131{bottom:950.493300px;}
.y52{bottom:953.371800px;}
.y9{bottom:954.006300px;}
.ya9{bottom:959.815800px;}
.y85{bottom:961.344300px;}
.yef{bottom:964.754550px;}
.y130{bottom:966.243300px;}
.y51{bottom:972.871800px;}
.yee{bottom:980.504550px;}
.y84{bottom:980.844300px;}
.ya8{bottom:980.875800px;}
.y12f{bottom:981.993300px;}
.y8{bottom:988.512300px;}
.y50{bottom:992.371800px;}
.y12e{bottom:997.743300px;}
.y83{bottom:1000.344300px;}
.yed{bottom:1001.564550px;}
.ya7{bottom:1001.935800px;}
.y4f{bottom:1011.871800px;}
.y12d{bottom:1013.493300px;}
.y82{bottom:1019.844300px;}
.yec{bottom:1022.624550px;}
.ya6{bottom:1022.995800px;}
.y12c{bottom:1029.243300px;}
.y4e{bottom:1031.371800px;}
.y81{bottom:1039.344300px;}
.ya2{bottom:1042.833300px;}
.yeb{bottom:1043.684550px;}
.ya5{bottom:1044.055800px;}
.y12b{bottom:1044.993300px;}
.y4d{bottom:1050.871800px;}
.y7{bottom:1059.012300px;}
.ya1{bottom:1059.333300px;}
.y12a{bottom:1060.743300px;}
.y80{bottom:1063.344300px;}
.ya4{bottom:1067.962050px;}
.y8d{bottom:1070.371800px;}
.ya0{bottom:1075.833300px;}
.y129{bottom:1076.493300px;}
.ya3{bottom:1083.712050px;}
.y4c{bottom:1089.871800px;}
.y128{bottom:1092.243300px;}
.y9f{bottom:1092.333300px;}
.y6{bottom:1099.573650px;}
.y5{bottom:1118.319150px;}
.y4{bottom:1121.319150px;}
.y4b{bottom:1126.684950px;}
.y8b{bottom:1126.685700px;}
.y8c{bottom:1129.263000px;}
.y4a{bottom:1129.384950px;}
.y8a{bottom:1129.385700px;}
.y3{bottom:1157.521800px;}
.hc{height:22.535100px;}
.hd{height:22.799700px;}
.hb{height:28.260000px;}
.h14{height:30.093000px;}
.h7{height:32.193000px;}
.h5{height:32.571000px;}
.h2{height:32.970000px;}
.h19{height:34.492500px;}
.h16{height:34.897500px;}
.h15{height:35.325000px;}
.h10{height:37.224000px;}
.h17{height:37.680000px;}
.h4{height:38.448000px;}
.hf{height:41.877000px;}
.h8{height:42.390000px;}
.h18{height:44.442750px;}
.he{height:47.100000px;}
.h13{height:47.354400px;}
.h12{height:47.656800px;}
.h3{height:53.118450px;}
.h6{height:60.200910px;}
.h11{height:60.425820px;}
.ha{height:71.964600px;}
.h9{height:84.780000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:67.181100px;}
.x9{left:69.732000px;}
.x21{left:78.732300px;}
.xa{left:86.563350px;}
.xb{left:89.029650px;}
.x2e{left:95.978550px;}
.x4{left:185.088150px;}
.x5{left:187.718250px;}
.x22{left:288.319800px;}
.x8{left:310.665000px;}
.x6{left:312.094350px;}
.x7{left:314.724450px;}
.x1d{left:321.412500px;}
.x12{left:330.431100px;}
.x13{left:336.427350px;}
.x26{left:341.679000px;}
.x23{left:398.063550px;}
.x11{left:458.662350px;}
.xc{left:461.232300px;}
.x17{left:478.182450px;}
.x2f{left:479.253300px;}
.xd{left:480.724500px;}
.xe{left:486.753300px;}
.xf{left:500.997300px;}
.x24{left:502.126500px;}
.x29{left:508.129800px;}
.x18{left:509.625000px;}
.x28{left:511.482300px;}
.x27{left:512.589000px;}
.x1a{left:516.318750px;}
.x1c{left:517.635000px;}
.x1b{left:523.372500px;}
.x1f{left:524.688600px;}
.x20{left:531.022350px;}
.x14{left:586.121100px;}
.x15{left:592.117350px;}
.x16{left:596.976300px;}
.x19{left:634.275000px;}
.x1e{left:645.592350px;}
.x25{left:652.235250px;}
.x2b{left:658.238550px;}
.x2a{left:661.771050px;}
.x2d{left:663.368550px;}
.x10{left:780.071100px;}
.x2c{left:786.162300px;}
.x2{left:803.772150px;}
.x3{left:806.402250px;}
@media print{
.v2{vertical-align:-28.800533pt;}
.v5{vertical-align:-19.200000pt;}
.v3{vertical-align:-16.800000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:18.042667pt;}
.v4{vertical-align:19.200000pt;}
.v1{vertical-align:28.800533pt;}
.ls8f{letter-spacing:-3.320000pt;}
.ls5b{letter-spacing:-3.120000pt;}
.ls85{letter-spacing:-2.960000pt;}
.ls86{letter-spacing:-2.760000pt;}
.ls22{letter-spacing:-2.001067pt;}
.ls69{letter-spacing:-2.000000pt;}
.ls77{letter-spacing:-1.960000pt;}
.ls67{letter-spacing:-1.880000pt;}
.ls36{letter-spacing:-1.792000pt;}
.ls84{letter-spacing:-1.760000pt;}
.ls7f{letter-spacing:-1.749333pt;}
.ls50{letter-spacing:-1.621333pt;}
.ls71{letter-spacing:-1.536000pt;}
.ls5f{letter-spacing:-1.440000pt;}
.ls6f{letter-spacing:-1.408000pt;}
.ls91{letter-spacing:-1.400000pt;}
.ls30{letter-spacing:-1.365333pt;}
.ls52{letter-spacing:-1.322667pt;}
.ls4e{letter-spacing:-1.280000pt;}
.ls1c{letter-spacing:-1.254400pt;}
.ls7d{letter-spacing:-1.194667pt;}
.ls59{letter-spacing:-1.160000pt;}
.ls8d{letter-spacing:-1.120000pt;}
.ls4f{letter-spacing:-1.109333pt;}
.ls78{letter-spacing:-1.080000pt;}
.ls28{letter-spacing:-1.066667pt;}
.ls3c{letter-spacing:-1.024000pt;}
.ls8e{letter-spacing:-1.000000pt;}
.ls3b{letter-spacing:-0.981333pt;}
.ls5d{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.933333pt;}
.lsa{letter-spacing:-0.896000pt;}
.ls17{letter-spacing:-0.864000pt;}
.ls6c{letter-spacing:-0.853333pt;}
.ls60{letter-spacing:-0.840000pt;}
.ls68{letter-spacing:-0.800000pt;}
.ls64{letter-spacing:-0.760000pt;}
.ls93{letter-spacing:-0.720000pt;}
.ls6b{letter-spacing:-0.640000pt;}
.ls2d{letter-spacing:-0.627200pt;}
.ls65{letter-spacing:-0.600000pt;}
.ls32{letter-spacing:-0.560000pt;}
.ls25{letter-spacing:-0.537600pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls37{letter-spacing:-0.477867pt;}
.ls63{letter-spacing:-0.440000pt;}
.ls70{letter-spacing:-0.388267pt;}
.ls80{letter-spacing:-0.384000pt;}
.ls75{letter-spacing:-0.358400pt;}
.ls42{letter-spacing:-0.341333pt;}
.ls56{letter-spacing:-0.280000pt;}
.ls2a{letter-spacing:-0.256000pt;}
.ls83{letter-spacing:-0.240000pt;}
.ls35{letter-spacing:-0.209067pt;}
.ls43{letter-spacing:-0.179200pt;}
.ls39{letter-spacing:-0.170667pt;}
.ls55{letter-spacing:-0.160000pt;}
.ls6d{letter-spacing:-0.128000pt;}
.ls57{letter-spacing:-0.120000pt;}
.ls2c{letter-spacing:-0.059733pt;}
.ls16{letter-spacing:-0.048000pt;}
.ls6e{letter-spacing:-0.042667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.042667pt;}
.ls7{letter-spacing:0.048000pt;}
.ls76{letter-spacing:0.059733pt;}
.ls0{letter-spacing:0.064000pt;}
.ls5c{letter-spacing:0.080000pt;}
.ls62{letter-spacing:0.120000pt;}
.ls51{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.170667pt;}
.ls87{letter-spacing:0.200000pt;}
.ls48{letter-spacing:0.240000pt;}
.ls73{letter-spacing:0.298667pt;}
.ls44{letter-spacing:0.320000pt;}
.ls95{letter-spacing:0.341333pt;}
.ls5a{letter-spacing:0.360000pt;}
.ls2{letter-spacing:0.365333pt;}
.ls33{letter-spacing:0.373333pt;}
.ls94{letter-spacing:0.384000pt;}
.ls2f{letter-spacing:0.388267pt;}
.ls82{letter-spacing:0.400000pt;}
.ls13{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.428267pt;}
.ls53{letter-spacing:0.440000pt;}
.ls3f{letter-spacing:0.448000pt;}
.ls34{letter-spacing:0.469333pt;}
.ls15{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.496000pt;}
.ls27{letter-spacing:0.507733pt;}
.ls1d{letter-spacing:0.512000pt;}
.ls66{letter-spacing:0.520000pt;}
.ls4{letter-spacing:0.553600pt;}
.ls31{letter-spacing:0.554667pt;}
.ls58{letter-spacing:0.560000pt;}
.ls14{letter-spacing:0.576000pt;}
.ls2e{letter-spacing:0.597333pt;}
.ls90{letter-spacing:0.600000pt;}
.ls10{letter-spacing:0.634667pt;}
.ls20{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.672000pt;}
.ls61{letter-spacing:0.680000pt;}
.ls21{letter-spacing:0.682667pt;}
.ls3{letter-spacing:0.692267pt;}
.ls72{letter-spacing:0.716800pt;}
.ls54{letter-spacing:0.720000pt;}
.ls8a{letter-spacing:0.725333pt;}
.ls12{letter-spacing:0.746667pt;}
.ls47{letter-spacing:0.760000pt;}
.lsf{letter-spacing:0.768000pt;}
.ls11{letter-spacing:0.784000pt;}
.ls5e{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:0.810667pt;}
.ls23{letter-spacing:0.853333pt;}
.ls79{letter-spacing:0.870400pt;}
.ls1f{letter-spacing:0.896000pt;}
.lsd{letter-spacing:0.940800pt;}
.ls7e{letter-spacing:1.015467pt;}
.ls7c{letter-spacing:1.024000pt;}
.ls38{letter-spacing:1.109333pt;}
.lse{letter-spacing:1.120000pt;}
.ls3a{letter-spacing:1.152000pt;}
.ls92{letter-spacing:1.160000pt;}
.ls7b{letter-spacing:1.194667pt;}
.ls3e{letter-spacing:1.237333pt;}
.ls24{letter-spacing:1.280000pt;}
.ls3d{letter-spacing:1.322667pt;}
.ls74{letter-spacing:1.365333pt;}
.ls41{letter-spacing:1.408000pt;}
.ls6a{letter-spacing:1.920000pt;}
.ls8b{letter-spacing:1.962667pt;}
.ls4c{letter-spacing:2.133333pt;}
.ls19{letter-spacing:2.576000pt;}
.ls45{letter-spacing:3.925333pt;}
.ls26{letter-spacing:4.053333pt;}
.ls4b{letter-spacing:4.096000pt;}
.ls89{letter-spacing:4.266667pt;}
.ls2b{letter-spacing:4.565333pt;}
.ls88{letter-spacing:4.821333pt;}
.ls8c{letter-spacing:5.248000pt;}
.ls1b{letter-spacing:5.280000pt;}
.ls1a{letter-spacing:5.333333pt;}
.ls46{letter-spacing:5.706667pt;}
.ls81{letter-spacing:5.813333pt;}
.ls49{letter-spacing:5.973333pt;}
.ls4d{letter-spacing:6.400000pt;}
.ls4a{letter-spacing:6.656000pt;}
.ls18{letter-spacing:7.466667pt;}
.lsb{letter-spacing:10.224000pt;}
.ls7a{letter-spacing:638.200000pt;}
.ws39{word-spacing:-37.333333pt;}
.ws0{word-spacing:-22.848000pt;}
.ws8e{word-spacing:-18.773333pt;}
.ws3f{word-spacing:-18.666667pt;}
.ws23{word-spacing:-18.293333pt;}
.ws1b{word-spacing:-18.240000pt;}
.wsc{word-spacing:-16.538667pt;}
.wsa3{word-spacing:-15.616000pt;}
.wsa0{word-spacing:-15.189333pt;}
.wsa1{word-spacing:-14.933333pt;}
.wsb{word-spacing:-13.386667pt;}
.ws3a{word-spacing:-12.960000pt;}
.wsa2{word-spacing:-12.885333pt;}
.ws3d{word-spacing:-12.160000pt;}
.ws3{word-spacing:-12.006400pt;}
.ws24{word-spacing:-11.893333pt;}
.ws2{word-spacing:-11.827200pt;}
.ws1d{word-spacing:-11.733333pt;}
.ws20{word-spacing:-11.605333pt;}
.ws26{word-spacing:-11.562667pt;}
.ws6{word-spacing:-11.558400pt;}
.ws71{word-spacing:-11.520000pt;}
.wsab{word-spacing:-11.434667pt;}
.wsa8{word-spacing:-11.400000pt;}
.ws61{word-spacing:-11.360000pt;}
.ws1f{word-spacing:-11.349333pt;}
.ws40{word-spacing:-11.000000pt;}
.ws67{word-spacing:-10.920000pt;}
.ws4{word-spacing:-10.886400pt;}
.ws64{word-spacing:-10.880000pt;}
.ws5e{word-spacing:-10.800000pt;}
.ws90{word-spacing:-10.640000pt;}
.ws41{word-spacing:-10.480000pt;}
.ws99{word-spacing:-10.440000pt;}
.ws6b{word-spacing:-10.360000pt;}
.ws62{word-spacing:-10.320000pt;}
.ws6d{word-spacing:-10.240000pt;}
.ws11{word-spacing:-10.224000pt;}
.ws9{word-spacing:-10.192000pt;}
.ws6f{word-spacing:-10.080000pt;}
.wsa6{word-spacing:-10.000000pt;}
.ws60{word-spacing:-9.960000pt;}
.wsa4{word-spacing:-9.920000pt;}
.wsa{word-spacing:-9.856000pt;}
.ws69{word-spacing:-9.840000pt;}
.wsa7{word-spacing:-9.720000pt;}
.ws92{word-spacing:-9.680000pt;}
.wsa9{word-spacing:-9.640000pt;}
.wse{word-spacing:-9.557333pt;}
.wsaa{word-spacing:-9.520000pt;}
.ws6a{word-spacing:-9.480000pt;}
.ws6e{word-spacing:-9.440000pt;}
.ws66{word-spacing:-9.400000pt;}
.ws63{word-spacing:-9.280000pt;}
.ws84{word-spacing:-9.160000pt;}
.wsa5{word-spacing:-9.120000pt;}
.ws5f{word-spacing:-9.080000pt;}
.ws65{word-spacing:-8.800000pt;}
.ws8d{word-spacing:-8.661333pt;}
.ws7{word-spacing:-8.544000pt;}
.ws7e{word-spacing:-8.362667pt;}
.ws6c{word-spacing:-8.360000pt;}
.ws70{word-spacing:-8.240000pt;}
.ws5d{word-spacing:-8.153600pt;}
.ws3e{word-spacing:-8.093867pt;}
.ws28{word-spacing:-8.034133pt;}
.ws7f{word-spacing:-7.944533pt;}
.ws81{word-spacing:-7.705600pt;}
.ws1e{word-spacing:-7.645867pt;}
.ws25{word-spacing:-7.586133pt;}
.ws3b{word-spacing:-7.436800pt;}
.ws80{word-spacing:-7.287467pt;}
.ws3c{word-spacing:-7.168000pt;}
.ws22{word-spacing:-7.108267pt;}
.ws27{word-spacing:-7.018667pt;}
.ws8{word-spacing:-6.690133pt;}
.ws1c{word-spacing:-6.391467pt;}
.ws56{word-spacing:-5.973333pt;}
.ws21{word-spacing:-5.644800pt;}
.ws29{word-spacing:-5.333333pt;}
.ws34{word-spacing:-4.565333pt;}
.wsac{word-spacing:-4.266667pt;}
.ws30{word-spacing:-4.053333pt;}
.ws54{word-spacing:-3.925333pt;}
.wsb0{word-spacing:-3.600000pt;}
.wsb8{word-spacing:-2.040000pt;}
.ws50{word-spacing:-1.408000pt;}
.ws8c{word-spacing:-1.365333pt;}
.ws4e{word-spacing:-1.322667pt;}
.ws2f{word-spacing:-1.280000pt;}
.ws9a{word-spacing:-1.194667pt;}
.ws4b{word-spacing:-1.152000pt;}
.ws49{word-spacing:-1.109333pt;}
.ws9b{word-spacing:-1.024000pt;}
.ws2b{word-spacing:-0.896000pt;}
.ws2e{word-spacing:-0.853333pt;}
.ws7a{word-spacing:-0.800000pt;}
.ws37{word-spacing:-0.768000pt;}
.ws76{word-spacing:-0.760000pt;}
.ws15{word-spacing:-0.746667pt;}
.wsad{word-spacing:-0.725333pt;}
.ws72{word-spacing:-0.720000pt;}
.ws2d{word-spacing:-0.682667pt;}
.ws14{word-spacing:-0.672000pt;}
.ws2c{word-spacing:-0.640000pt;}
.ws13{word-spacing:-0.634667pt;}
.wsb2{word-spacing:-0.600000pt;}
.ws36{word-spacing:-0.597333pt;}
.ws16{word-spacing:-0.576000pt;}
.ws77{word-spacing:-0.560000pt;}
.ws45{word-spacing:-0.554667pt;}
.ws7d{word-spacing:-0.520000pt;}
.ws2a{word-spacing:-0.512000pt;}
.ws31{word-spacing:-0.507733pt;}
.ws17{word-spacing:-0.480000pt;}
.ws44{word-spacing:-0.469333pt;}
.ws47{word-spacing:-0.426667pt;}
.ws43{word-spacing:-0.373333pt;}
.ws78{word-spacing:-0.360000pt;}
.wsbe{word-spacing:-0.341333pt;}
.ws53{word-spacing:-0.320000pt;}
.ws9f{word-spacing:-0.298667pt;}
.wsaf{word-spacing:-0.200000pt;}
.ws32{word-spacing:-0.170667pt;}
.ws5b{word-spacing:-0.128000pt;}
.wsb3{word-spacing:-0.080000pt;}
.ws12{word-spacing:-0.064000pt;}
.ws4f{word-spacing:-0.042667pt;}
.ws68{word-spacing:-0.040000pt;}
.wsd{word-spacing:0.000000pt;}
.ws88{word-spacing:0.042667pt;}
.ws18{word-spacing:0.048000pt;}
.ws75{word-spacing:0.120000pt;}
.ws87{word-spacing:0.128000pt;}
.ws73{word-spacing:0.160000pt;}
.ws4a{word-spacing:0.170667pt;}
.ws52{word-spacing:0.179200pt;}
.ws33{word-spacing:0.256000pt;}
.ws74{word-spacing:0.280000pt;}
.ws51{word-spacing:0.341333pt;}
.ws9e{word-spacing:0.384000pt;}
.ws8a{word-spacing:0.388267pt;}
.ws7b{word-spacing:0.440000pt;}
.ws42{word-spacing:0.560000pt;}
.ws7c{word-spacing:0.600000pt;}
.ws85{word-spacing:0.640000pt;}
.ws57{word-spacing:0.768000pt;}
.wsbd{word-spacing:0.840000pt;}
.ws86{word-spacing:0.853333pt;}
.ws19{word-spacing:0.864000pt;}
.ws10{word-spacing:0.896000pt;}
.ws55{word-spacing:0.920000pt;}
.wsf{word-spacing:0.933333pt;}
.wsb4{word-spacing:0.960000pt;}
.ws4c{word-spacing:0.981333pt;}
.wsae{word-spacing:1.000000pt;}
.ws4d{word-spacing:1.024000pt;}
.ws59{word-spacing:1.109333pt;}
.wsb6{word-spacing:1.160000pt;}
.ws9c{word-spacing:1.194667pt;}
.ws58{word-spacing:1.280000pt;}
.ws5c{word-spacing:1.322667pt;}
.ws38{word-spacing:1.365333pt;}
.wsb7{word-spacing:1.400000pt;}
.ws89{word-spacing:1.408000pt;}
.ws8b{word-spacing:1.536000pt;}
.ws5a{word-spacing:1.621333pt;}
.ws9d{word-spacing:1.749333pt;}
.ws46{word-spacing:1.792000pt;}
.ws48{word-spacing:2.261333pt;}
.ws79{word-spacing:3.120000pt;}
.wsb5{word-spacing:3.240000pt;}
.wsb1{word-spacing:3.320000pt;}
.ws35{word-spacing:4.565333pt;}
.wsbc{word-spacing:9.400000pt;}
.wsba{word-spacing:10.840000pt;}
.wsb9{word-spacing:10.880000pt;}
.wsbb{word-spacing:12.280000pt;}
.ws1{word-spacing:69.048640pt;}
.ws5{word-spacing:69.581440pt;}
.ws98{word-spacing:464.068000pt;}
.ws96{word-spacing:480.460000pt;}
.ws97{word-spacing:491.336000pt;}
.ws95{word-spacing:506.280000pt;}
.ws91{word-spacing:519.956000pt;}
.ws8f{word-spacing:560.228000pt;}
.ws94{word-spacing:592.788000pt;}
.ws93{word-spacing:595.680000pt;}
.ws83{word-spacing:636.588000pt;}
.ws82{word-spacing:639.480000pt;}
.ws1a{word-spacing:2162.634133pt;}
._4{margin-left:-681.334933pt;}
._67{margin-left:-6.440000pt;}
._f{margin-left:-5.511893pt;}
._a{margin-left:-4.039040pt;}
._9{margin-left:-3.144533pt;}
._8{margin-left:-2.204267pt;}
._7{margin-left:-1.012800pt;}
._6{width:0.903467pt;}
._3{width:1.866667pt;}
._b{width:3.368533pt;}
._d{width:5.054400pt;}
._c{width:6.323200pt;}
._e{width:7.281600pt;}
._5{width:8.400000pt;}
._2{width:9.557333pt;}
._65{width:11.199200pt;}
._10{width:12.407467pt;}
._11{width:13.827733pt;}
._14{width:15.749333pt;}
._15{width:17.022933pt;}
._63{width:17.960000pt;}
._66{width:18.936533pt;}
._64{width:20.880000pt;}
._62{width:22.273600pt;}
._13{width:25.159467pt;}
._12{width:26.494400pt;}
._61{width:59.724267pt;}
._1b{width:72.265600pt;}
._1c{width:84.130133pt;}
._19{width:88.608533pt;}
._34{width:91.273493pt;}
._18{width:101.515733pt;}
._36{width:103.225600pt;}
._35{width:106.746667pt;}
._37{width:112.744000pt;}
._1a{width:128.448640pt;}
._4e{width:131.218667pt;}
._1d{width:135.723733pt;}
._42{width:138.507200pt;}
._28{width:144.967467pt;}
._57{width:149.657813pt;}
._23{width:152.965333pt;}
._22{width:156.360000pt;}
._40{width:157.708907pt;}
._25{width:158.928533pt;}
._3d{width:160.868267pt;}
._3e{width:167.090133pt;}
._3c{width:168.185600pt;}
._32{width:169.135573pt;}
._2a{width:170.772267pt;}
._3f{width:173.600533pt;}
._24{width:176.197333pt;}
._29{width:177.835733pt;}
._26{width:178.751573pt;}
._43{width:183.203200pt;}
._45{width:185.276907pt;}
._31{width:200.313067pt;}
._3a{width:201.932267pt;}
._2c{width:203.915200pt;}
._17{width:207.129600pt;}
._2b{width:211.896000pt;}
._2f{width:222.124267pt;}
._20{width:223.520000pt;}
._2e{width:224.799040pt;}
._30{width:226.036693pt;}
._2d{width:228.794133pt;}
._1f{width:230.992000pt;}
._21{width:235.939200pt;}
._39{width:237.066133pt;}
._44{width:238.635733pt;}
._59{width:251.736533pt;}
._55{width:252.640000pt;}
._5c{width:253.552800pt;}
._1e{width:261.599467pt;}
._3b{width:264.459200pt;}
._46{width:266.165867pt;}
._27{width:268.626133pt;}
._53{width:284.137067pt;}
._38{width:288.239467pt;}
._4c{width:289.211200pt;}
._41{width:291.748800pt;}
._4a{width:292.843200pt;}
._33{width:299.456533pt;}
._50{width:302.061867pt;}
._47{width:305.182400pt;}
._60{width:306.468800pt;}
._4b{width:308.172800pt;}
._51{width:311.496533pt;}
._4d{width:314.425600pt;}
._4f{width:334.005333pt;}
._48{width:335.043467pt;}
._5f{width:353.805867pt;}
._56{width:376.620533pt;}
._5d{width:378.056267pt;}
._58{width:398.033067pt;}
._54{width:399.812000pt;}
._49{width:409.672533pt;}
._5b{width:421.233067pt;}
._16{width:440.061867pt;}
._5e{width:453.066133pt;}
._52{width:495.782933pt;}
._5a{width:638.200000pt;}
._0{width:851.610667pt;}
._1{width:1232.112000pt;}
.fs8{font-size:26.133333pt;}
.fse{font-size:28.000000pt;}
.fsc{font-size:29.866667pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fsa{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs1{font-size:61.600000pt;}
.fs2{font-size:64.000000pt;}
.fsb{font-size:69.440000pt;}
.fs3{font-size:69.813333pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.743067pt;}
.y2{bottom:41.476400pt;}
.ye6{bottom:58.760933pt;}
.y10{bottom:67.433333pt;}
.y7f{bottom:67.441600pt;}
.y9c{bottom:73.437733pt;}
.ye5{bottom:80.760933pt;}
.yf{bottom:80.770667pt;}
.y7e{bottom:84.774933pt;}
.y9b{bottom:87.437733pt;}
.ye{bottom:94.108000pt;}
.ye4{bottom:99.480933pt;}
.y7d{bottom:102.108267pt;}
.y9a{bottom:106.157733pt;}
.y11{bottom:117.574667pt;}
.ye3{bottom:118.200933pt;}
.y7c{bottom:119.441600pt;}
.y99{bottom:120.157733pt;}
.y98{bottom:134.157733pt;}
.y7b{bottom:136.774933pt;}
.ye2{bottom:136.920933pt;}
.y97{bottom:148.157733pt;}
.y7a{bottom:154.108267pt;}
.ye1{bottom:155.640933pt;}
.y35{bottom:157.757733pt;}
.y96{bottom:166.877733pt;}
.y34{bottom:171.095067pt;}
.y79{bottom:171.441600pt;}
.y127{bottom:174.108267pt;}
.ye0{bottom:174.360933pt;}
.y95{bottom:180.877733pt;}
.y33{bottom:184.432400pt;}
.y126{bottom:188.108267pt;}
.y78{bottom:188.774933pt;}
.ydf{bottom:193.080933pt;}
.y94{bottom:194.877733pt;}
.y32{bottom:197.769733pt;}
.y125{bottom:202.108267pt;}
.y77{bottom:206.108267pt;}
.y93{bottom:208.877733pt;}
.y15b{bottom:210.216267pt;}
.y31{bottom:211.107067pt;}
.yde{bottom:211.800933pt;}
.y124{bottom:216.108267pt;}
.y92{bottom:222.877733pt;}
.y76{bottom:223.441600pt;}
.y30{bottom:224.444400pt;}
.y15a{bottom:227.549600pt;}
.y123{bottom:230.108267pt;}
.ydd{bottom:230.520933pt;}
.y91{bottom:236.877733pt;}
.y2f{bottom:237.781733pt;}
.y75{bottom:240.774933pt;}
.y122{bottom:244.108267pt;}
.y159{bottom:244.882933pt;}
.ydc{bottom:249.240933pt;}
.y90{bottom:250.877733pt;}
.y2e{bottom:251.119067pt;}
.yca{bottom:255.462933pt;}
.y74{bottom:258.108267pt;}
.y158{bottom:262.216267pt;}
.y2d{bottom:264.456400pt;}
.y8f{bottom:264.877733pt;}
.ydb{bottom:267.960933pt;}
.y49{bottom:270.744400pt;}
.y121{bottom:272.108267pt;}
.y73{bottom:275.441600pt;}
.yc9{bottom:277.462933pt;}
.y2c{bottom:277.793733pt;}
.y9e{bottom:279.454400pt;}
.y157{bottom:279.549600pt;}
.y120{bottom:286.108267pt;}
.y8e{bottom:286.457733pt;}
.yda{bottom:286.680933pt;}
.y48{bottom:289.411067pt;}
.y2b{bottom:291.131067pt;}
.y72{bottom:292.774933pt;}
.y9d{bottom:294.121067pt;}
.yc8{bottom:296.182933pt;}
.y11f{bottom:300.108267pt;}
.y2a{bottom:304.468400pt;}
.yd9{bottom:305.400933pt;}
.y71{bottom:310.108267pt;}
.yc7{bottom:310.182933pt;}
.y11e{bottom:314.108267pt;}
.y29{bottom:317.805733pt;}
.y47{bottom:321.213733pt;}
.yd8{bottom:324.120933pt;}
.y156{bottom:326.882933pt;}
.y70{bottom:327.441600pt;}
.y11d{bottom:328.108267pt;}
.yc6{bottom:328.902933pt;}
.y28{bottom:331.143067pt;}
.y155{bottom:340.882933pt;}
.y46{bottom:341.217733pt;}
.y11c{bottom:342.108267pt;}
.yd7{bottom:342.840933pt;}
.yc5{bottom:342.902933pt;}
.y27{bottom:344.480400pt;}
.y6f{bottom:344.774933pt;}
.y154{bottom:354.882933pt;}
.y11b{bottom:356.108267pt;}
.y45{bottom:361.221733pt;}
.yd6{bottom:361.560933pt;}
.yc4{bottom:361.622933pt;}
.y6e{bottom:362.108267pt;}
.y153{bottom:368.882933pt;}
.y11a{bottom:370.108267pt;}
.y26{bottom:371.145733pt;}
.yc3{bottom:375.622933pt;}
.y6d{bottom:379.441600pt;}
.yd5{bottom:380.280933pt;}
.y44{bottom:381.225733pt;}
.y152{bottom:382.882933pt;}
.y119{bottom:384.108267pt;}
.y25{bottom:384.483067pt;}
.yc2{bottom:394.342933pt;}
.y6c{bottom:396.774933pt;}
.y151{bottom:396.882933pt;}
.y24{bottom:397.820400pt;}
.y118{bottom:398.108267pt;}
.yd4{bottom:399.000933pt;}
.y43{bottom:401.229733pt;}
.y150{bottom:410.882933pt;}
.y23{bottom:411.157733pt;}
.y117{bottom:412.108267pt;}
.yc1{bottom:413.062933pt;}
.y6b{bottom:414.108267pt;}
.y108{bottom:414.450267pt;}
.yd3{bottom:417.720933pt;}
.y42{bottom:421.233733pt;}
.y22{bottom:424.495067pt;}
.y14f{bottom:424.882933pt;}
.y116{bottom:426.108267pt;}
.y6a{bottom:431.441600pt;}
.yc0{bottom:431.782933pt;}
.yd2{bottom:436.440933pt;}
.y107{bottom:436.450267pt;}
.y14e{bottom:438.882933pt;}
.y115{bottom:440.108267pt;}
.y41{bottom:441.237733pt;}
.ybf{bottom:445.782933pt;}
.y69{bottom:448.774933pt;}
.y21{bottom:451.160400pt;}
.y14d{bottom:452.882933pt;}
.y114{bottom:454.108267pt;}
.yea{bottom:454.404267pt;}
.yd1{bottom:455.160933pt;}
.y106{bottom:455.170267pt;}
.y40{bottom:461.241733pt;}
.ybe{bottom:464.502933pt;}
.y68{bottom:466.108267pt;}
.y14c{bottom:466.882933pt;}
.y113{bottom:468.108267pt;}
.y20{bottom:468.697733pt;}
.ye9{bottom:469.070933pt;}
.y105{bottom:473.890267pt;}
.yd0{bottom:476.740933pt;}
.y14b{bottom:480.882933pt;}
.y3f{bottom:481.245733pt;}
.y1f{bottom:481.819067pt;}
.y112{bottom:482.108267pt;}
.ybd{bottom:483.222933pt;}
.y67{bottom:483.441600pt;}
.ye8{bottom:483.737600pt;}
.ycf{bottom:490.740933pt;}
.y104{bottom:492.610267pt;}
.y14a{bottom:494.882933pt;}
.y1e{bottom:495.156400pt;}
.y111{bottom:496.108267pt;}
.ye7{bottom:498.404267pt;}
.y66{bottom:500.774933pt;}
.y3e{bottom:501.249733pt;}
.ybc{bottom:501.942933pt;}
.y1d{bottom:508.493733pt;}
.y149{bottom:508.882933pt;}
.y110{bottom:510.108267pt;}
.y103{bottom:511.330267pt;}
.y65{bottom:518.108267pt;}
.ybb{bottom:520.662933pt;}
.y3d{bottom:521.253733pt;}
.y148{bottom:522.882933pt;}
.y10f{bottom:524.108267pt;}
.y1c{bottom:526.031067pt;}
.y102{bottom:530.050267pt;}
.y64{bottom:535.441600pt;}
.y147{bottom:536.882933pt;}
.y10e{bottom:538.108267pt;}
.y1b{bottom:539.160400pt;}
.yba{bottom:539.382933pt;}
.y3c{bottom:541.257733pt;}
.y101{bottom:548.770267pt;}
.yce{bottom:550.108267pt;}
.y146{bottom:550.882933pt;}
.y10d{bottom:552.108267pt;}
.y63{bottom:552.774933pt;}
.ycd{bottom:552.962933pt;}
.y1a{bottom:556.697733pt;}
.yb9{bottom:560.632933pt;}
.y3b{bottom:561.261733pt;}
.y145{bottom:564.882933pt;}
.y10c{bottom:566.108267pt;}
.y100{bottom:567.490267pt;}
.ycc{bottom:567.629600pt;}
.y19{bottom:569.823067pt;}
.y62{bottom:570.108267pt;}
.yb8{bottom:574.632933pt;}
.y144{bottom:578.882933pt;}
.y10b{bottom:580.108267pt;}
.y3a{bottom:581.265733pt;}
.ycb{bottom:582.296267pt;}
.y18{bottom:583.160400pt;}
.yff{bottom:586.210267pt;}
.y61{bottom:587.441600pt;}
.y143{bottom:592.882933pt;}
.y10a{bottom:594.108267pt;}
.y17{bottom:600.697733pt;}
.y39{bottom:601.269733pt;}
.y60{bottom:604.774933pt;}
.yfe{bottom:604.930267pt;}
.y142{bottom:606.882933pt;}
.y109{bottom:608.108267pt;}
.y16{bottom:613.827067pt;}
.yb7{bottom:616.129600pt;}
.y141{bottom:620.882933pt;}
.y38{bottom:621.273733pt;}
.y5f{bottom:622.108267pt;}
.yfd{bottom:623.650267pt;}
.y15{bottom:631.364400pt;}
.y140{bottom:634.882933pt;}
.yb6{bottom:638.129600pt;}
.y5e{bottom:639.441600pt;}
.y37{bottom:641.277733pt;}
.yfc{bottom:642.370267pt;}
.y14{bottom:644.489733pt;}
.y13f{bottom:648.882933pt;}
.yb5{bottom:652.129600pt;}
.y5d{bottom:656.774933pt;}
.y13{bottom:657.827067pt;}
.yfb{bottom:661.090267pt;}
.y36{bottom:661.277733pt;}
.y13e{bottom:662.882933pt;}
.yb4{bottom:670.849600pt;}
.y5c{bottom:674.108267pt;}
.y12{bottom:675.364400pt;}
.y13d{bottom:676.882933pt;}
.yfa{bottom:679.810267pt;}
.yb3{bottom:684.849600pt;}
.y13c{bottom:690.882933pt;}
.y5b{bottom:691.441600pt;}
.yf9{bottom:698.530267pt;}
.yb2{bottom:703.569600pt;}
.y13b{bottom:704.882933pt;}
.y5a{bottom:708.774933pt;}
.yf8{bottom:717.250267pt;}
.yd{bottom:717.344267pt;}
.yb1{bottom:717.569600pt;}
.y13a{bottom:718.882933pt;}
.y59{bottom:726.108267pt;}
.yb0{bottom:731.569600pt;}
.y139{bottom:732.882933pt;}
.yf7{bottom:735.970267pt;}
.yc{bottom:741.344267pt;}
.y58{bottom:743.441600pt;}
.y138{bottom:746.882933pt;}
.yaf{bottom:750.289600pt;}
.yf6{bottom:754.690267pt;}
.y57{bottom:760.774933pt;}
.y137{bottom:760.882933pt;}
.yae{bottom:764.289600pt;}
.yb{bottom:765.344267pt;}
.yf5{bottom:773.410267pt;}
.y136{bottom:774.882933pt;}
.y56{bottom:778.108267pt;}
.yad{bottom:783.009600pt;}
.y89{bottom:785.194933pt;}
.y135{bottom:788.882933pt;}
.yf4{bottom:792.130267pt;}
.y55{bottom:795.441600pt;}
.yac{bottom:801.729600pt;}
.y88{bottom:802.528267pt;}
.y134{bottom:802.882933pt;}
.yf3{bottom:806.130267pt;}
.y54{bottom:812.774933pt;}
.y133{bottom:816.882933pt;}
.ya{bottom:817.333600pt;}
.y87{bottom:819.861600pt;}
.yab{bottom:820.449600pt;}
.yf1{bottom:824.850267pt;}
.y53{bottom:830.108267pt;}
.y132{bottom:830.882933pt;}
.yaa{bottom:834.449600pt;}
.y86{bottom:837.194933pt;}
.yf0{bottom:838.839600pt;}
.yf2{bottom:838.850267pt;}
.y131{bottom:844.882933pt;}
.y52{bottom:847.441600pt;}
.y9{bottom:848.005600pt;}
.ya9{bottom:853.169600pt;}
.y85{bottom:854.528267pt;}
.yef{bottom:857.559600pt;}
.y130{bottom:858.882933pt;}
.y51{bottom:864.774933pt;}
.yee{bottom:871.559600pt;}
.y84{bottom:871.861600pt;}
.ya8{bottom:871.889600pt;}
.y12f{bottom:872.882933pt;}
.y8{bottom:878.677600pt;}
.y50{bottom:882.108267pt;}
.y12e{bottom:886.882933pt;}
.y83{bottom:889.194933pt;}
.yed{bottom:890.279600pt;}
.ya7{bottom:890.609600pt;}
.y4f{bottom:899.441600pt;}
.y12d{bottom:900.882933pt;}
.y82{bottom:906.528267pt;}
.yec{bottom:908.999600pt;}
.ya6{bottom:909.329600pt;}
.y12c{bottom:914.882933pt;}
.y4e{bottom:916.774933pt;}
.y81{bottom:923.861600pt;}
.ya2{bottom:926.962933pt;}
.yeb{bottom:927.719600pt;}
.ya5{bottom:928.049600pt;}
.y12b{bottom:928.882933pt;}
.y4d{bottom:934.108267pt;}
.y7{bottom:941.344267pt;}
.ya1{bottom:941.629600pt;}
.y12a{bottom:942.882933pt;}
.y80{bottom:945.194933pt;}
.ya4{bottom:949.299600pt;}
.y8d{bottom:951.441600pt;}
.ya0{bottom:956.296267pt;}
.y129{bottom:956.882933pt;}
.ya3{bottom:963.299600pt;}
.y4c{bottom:968.774933pt;}
.y128{bottom:970.882933pt;}
.y9f{bottom:970.962933pt;}
.y6{bottom:977.398800pt;}
.y5{bottom:994.061467pt;}
.y4{bottom:996.728133pt;}
.y4b{bottom:1001.497733pt;}
.y8b{bottom:1001.498400pt;}
.y8c{bottom:1003.789333pt;}
.y4a{bottom:1003.897733pt;}
.y8a{bottom:1003.898400pt;}
.y3{bottom:1028.908267pt;}
.hc{height:20.031200pt;}
.hd{height:20.266400pt;}
.hb{height:25.120000pt;}
.h14{height:26.749333pt;}
.h7{height:28.616000pt;}
.h5{height:28.952000pt;}
.h2{height:29.306667pt;}
.h19{height:30.660000pt;}
.h16{height:31.020000pt;}
.h15{height:31.400000pt;}
.h10{height:33.088000pt;}
.h17{height:33.493333pt;}
.h4{height:34.176000pt;}
.hf{height:37.224000pt;}
.h8{height:37.680000pt;}
.h18{height:39.504667pt;}
.he{height:41.866667pt;}
.h13{height:42.092800pt;}
.h12{height:42.361600pt;}
.h3{height:47.216400pt;}
.h6{height:53.511920pt;}
.h11{height:53.711840pt;}
.ha{height:63.968533pt;}
.h9{height:75.360000pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:59.716533pt;}
.x9{left:61.984000pt;}
.x21{left:69.984267pt;}
.xa{left:76.945200pt;}
.xb{left:79.137467pt;}
.x2e{left:85.314267pt;}
.x4{left:164.522800pt;}
.x5{left:166.860667pt;}
.x22{left:256.284267pt;}
.x8{left:276.146667pt;}
.x6{left:277.417200pt;}
.x7{left:279.755067pt;}
.x1d{left:285.700000pt;}
.x12{left:293.716533pt;}
.x13{left:299.046533pt;}
.x26{left:303.714667pt;}
.x23{left:353.834267pt;}
.x11{left:407.699867pt;}
.xc{left:409.984267pt;}
.x17{left:425.051067pt;}
.x2f{left:426.002933pt;}
.xd{left:427.310667pt;}
.xe{left:432.669600pt;}
.xf{left:445.330933pt;}
.x24{left:446.334667pt;}
.x29{left:451.670933pt;}
.x18{left:453.000000pt;}
.x28{left:454.650933pt;}
.x27{left:455.634667pt;}
.x1a{left:458.950000pt;}
.x1c{left:460.120000pt;}
.x1b{left:465.220000pt;}
.x1f{left:466.389867pt;}
.x20{left:472.019867pt;}
.x14{left:520.996533pt;}
.x15{left:526.326533pt;}
.x16{left:530.645600pt;}
.x19{left:563.800000pt;}
.x1e{left:573.859867pt;}
.x25{left:579.764667pt;}
.x2b{left:585.100933pt;}
.x2a{left:588.240933pt;}
.x2d{left:589.660933pt;}
.x10{left:693.396533pt;}
.x2c{left:698.810933pt;}
.x2{left:714.464133pt;}
.x3{left:716.802000pt;}
}




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