
    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_b0968b52fbaa1a9e5db47ead.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_70e8cd284a61f5bc431d3a56.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_882eb86ab70ccd305f5d301a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_6fbf1e7eb95595df2f4875f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729000;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_a183a2021beeb9ac435e8f0d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.137667;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_dc4fd119e2df12e24ff84a8c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.137667;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_a01808e85bbe47558da58c7f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.957000;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_138f53e046d139fce354999e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.953000;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_9cba638e4907632459685639.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.963000;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_ac163e1b54f62927b29adade.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.710000;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_1f252ee8171dbff826e81a50.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.884000;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_1aa0b6907f6733bfbb7505ff.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.884000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7c8fbede3a0a954597530a98.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_abff254cfa3405743240a47d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.884000;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;}
.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);}
.v2{vertical-align:-16.983000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.370000px;}
.ls1{letter-spacing:-8.316864px;}
.ls1a{letter-spacing:-3.384000px;}
.ls17{letter-spacing:-1.638000px;}
.ls16{letter-spacing:-1.323000px;}
.ls14{letter-spacing:-1.260000px;}
.ls1c{letter-spacing:-1.197000px;}
.ls15{letter-spacing:-0.945000px;}
.ls3{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.819000px;}
.ls8{letter-spacing:-0.693000px;}
.lsa{letter-spacing:-0.630000px;}
.ls12{letter-spacing:-0.504000px;}
.ls10{letter-spacing:-0.441000px;}
.lsc{letter-spacing:-0.378000px;}
.lsf{letter-spacing:-0.252000px;}
.lsd{letter-spacing:-0.189000px;}
.ls2{letter-spacing:-0.120000px;}
.ls7{letter-spacing:-0.063000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.126000px;}
.ls9{letter-spacing:0.183681px;}
.lse{letter-spacing:0.189000px;}
.ls4{letter-spacing:0.315000px;}
.lsb{letter-spacing:0.504000px;}
.ls19{letter-spacing:0.567000px;}
.ls13{letter-spacing:0.945000px;}
.ls11{letter-spacing:1.008000px;}
.ls1b{letter-spacing:1.071000px;}
.ls18{letter-spacing:2.079000px;}
.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;}
}
.ws1{word-spacing:-98.554838px;}
.ws0{word-spacing:-96.891466px;}
.ws2{word-spacing:-57.318000px;}
.ws8a{word-spacing:-13.980000px;}
.ws6{word-spacing:-13.005000px;}
.ws35{word-spacing:-12.285000px;}
.ws88{word-spacing:-11.970000px;}
.ws32{word-spacing:-11.529000px;}
.ws89{word-spacing:-11.466000px;}
.ws36{word-spacing:-11.277000px;}
.ws33{word-spacing:-11.088000px;}
.ws8b{word-spacing:-7.581915px;}
.ws81{word-spacing:-1.764000px;}
.ws2b{word-spacing:-1.323000px;}
.wsa1{word-spacing:-1.260000px;}
.ws8e{word-spacing:-1.071000px;}
.ws5f{word-spacing:-0.945000px;}
.ws2a{word-spacing:-0.882000px;}
.ws4e{word-spacing:-0.693000px;}
.ws83{word-spacing:-0.567000px;}
.ws3e{word-spacing:-0.504000px;}
.ws4a{word-spacing:-0.378000px;}
.ws16{word-spacing:-0.315000px;}
.ws40{word-spacing:-0.189000px;}
.ws17{word-spacing:-0.126000px;}
.wsa4{word-spacing:-0.102000px;}
.wsa0{word-spacing:-0.063000px;}
.ws9{word-spacing:-0.051000px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:0.120000px;}
.ws13{word-spacing:0.126000px;}
.ws14{word-spacing:0.189000px;}
.ws82{word-spacing:0.252000px;}
.ws59{word-spacing:0.315000px;}
.ws90{word-spacing:0.441000px;}
.ws5a{word-spacing:0.567000px;}
.ws3c{word-spacing:0.630000px;}
.ws1e{word-spacing:0.693000px;}
.ws7e{word-spacing:0.756000px;}
.ws5b{word-spacing:0.819000px;}
.ws29{word-spacing:0.882000px;}
.ws7f{word-spacing:0.945000px;}
.ws38{word-spacing:1.008000px;}
.ws74{word-spacing:1.134000px;}
.ws91{word-spacing:1.260000px;}
.ws77{word-spacing:1.323000px;}
.ws26{word-spacing:1.449000px;}
.ws12{word-spacing:1.512000px;}
.ws95{word-spacing:1.638000px;}
.ws6c{word-spacing:1.701000px;}
.ws23{word-spacing:2.016000px;}
.ws1f{word-spacing:2.268000px;}
.ws53{word-spacing:2.394000px;}
.ws7a{word-spacing:2.520000px;}
.wsa2{word-spacing:2.709000px;}
.ws60{word-spacing:3.213000px;}
.ws9b{word-spacing:3.276000px;}
.wsa{word-spacing:3.300000px;}
.ws49{word-spacing:3.402000px;}
.ws79{word-spacing:3.591000px;}
.ws80{word-spacing:3.654000px;}
.ws6f{word-spacing:3.717000px;}
.ws66{word-spacing:3.780000px;}
.ws6e{word-spacing:3.906000px;}
.ws28{word-spacing:3.969000px;}
.ws8f{word-spacing:4.095000px;}
.ws3b{word-spacing:4.284000px;}
.ws10{word-spacing:4.473000px;}
.ws11{word-spacing:4.536000px;}
.ws72{word-spacing:4.725000px;}
.ws6d{word-spacing:4.914000px;}
.ws75{word-spacing:4.977000px;}
.ws4d{word-spacing:5.103000px;}
.ws58{word-spacing:5.166000px;}
.ws9d{word-spacing:5.229000px;}
.ws24{word-spacing:5.292000px;}
.ws1a{word-spacing:5.355000px;}
.ws8c{word-spacing:5.607000px;}
.ws56{word-spacing:5.670000px;}
.ws37{word-spacing:5.733000px;}
.ws62{word-spacing:5.796000px;}
.ws6b{word-spacing:5.985000px;}
.ws99{word-spacing:6.111000px;}
.ws52{word-spacing:6.300000px;}
.ws41{word-spacing:6.426000px;}
.ws22{word-spacing:6.615000px;}
.wse{word-spacing:6.867000px;}
.ws68{word-spacing:6.993000px;}
.wsf{word-spacing:7.308000px;}
.ws5e{word-spacing:7.497000px;}
.wsb{word-spacing:7.800000px;}
.ws96{word-spacing:7.812000px;}
.ws69{word-spacing:7.875000px;}
.ws73{word-spacing:7.938000px;}
.ws48{word-spacing:8.190000px;}
.ws1c{word-spacing:8.253000px;}
.ws47{word-spacing:8.316000px;}
.ws67{word-spacing:8.379000px;}
.ws2c{word-spacing:8.442000px;}
.wsa3{word-spacing:8.505000px;}
.ws61{word-spacing:8.631000px;}
.ws3d{word-spacing:8.694000px;}
.ws18{word-spacing:9.135000px;}
.ws19{word-spacing:9.261000px;}
.ws7b{word-spacing:9.576000px;}
.ws6a{word-spacing:9.702000px;}
.ws1b{word-spacing:9.765000px;}
.ws27{word-spacing:9.828000px;}
.ws9a{word-spacing:10.332000px;}
.ws70{word-spacing:10.458000px;}
.ws76{word-spacing:10.710000px;}
.ws51{word-spacing:10.899000px;}
.ws30{word-spacing:11.151000px;}
.ws57{word-spacing:11.340000px;}
.ws4b{word-spacing:11.718000px;}
.ws71{word-spacing:11.781000px;}
.ws39{word-spacing:11.844000px;}
.ws97{word-spacing:12.096000px;}
.ws55{word-spacing:12.159000px;}
.ws5c{word-spacing:12.348000px;}
.ws84{word-spacing:12.663000px;}
.ws9c{word-spacing:12.726000px;}
.ws5d{word-spacing:12.978000px;}
.ws3f{word-spacing:13.860000px;}
.ws65{word-spacing:14.175000px;}
.ws2d{word-spacing:14.301000px;}
.wsc{word-spacing:14.490000px;}
.ws4f{word-spacing:15.057000px;}
.ws2e{word-spacing:15.183000px;}
.ws93{word-spacing:15.309000px;}
.ws9e{word-spacing:15.435000px;}
.ws7d{word-spacing:15.876000px;}
.ws25{word-spacing:16.191000px;}
.ws85{word-spacing:16.317000px;}
.ws9f{word-spacing:16.632000px;}
.ws78{word-spacing:16.821000px;}
.ws2f{word-spacing:16.884000px;}
.ws4c{word-spacing:17.010000px;}
.wsd{word-spacing:17.577000px;}
.ws15{word-spacing:18.396000px;}
.ws54{word-spacing:19.026000px;}
.ws42{word-spacing:19.467000px;}
.ws21{word-spacing:20.223000px;}
.ws94{word-spacing:20.853000px;}
.ws1d{word-spacing:20.916000px;}
.ws20{word-spacing:21.546000px;}
.ws45{word-spacing:22.050000px;}
.ws92{word-spacing:22.743000px;}
.ws64{word-spacing:23.877000px;}
.ws44{word-spacing:24.129000px;}
.ws43{word-spacing:24.381000px;}
.ws86{word-spacing:25.578000px;}
.ws50{word-spacing:25.641000px;}
.ws8d{word-spacing:26.523000px;}
.ws46{word-spacing:27.027000px;}
.ws98{word-spacing:27.531000px;}
.ws7c{word-spacing:29.169000px;}
.ws3a{word-spacing:29.610000px;}
.ws63{word-spacing:31.311000px;}
.ws34{word-spacing:1418.208600px;}
.ws8{word-spacing:1418.209200px;}
.ws7{word-spacing:1989.592200px;}
.ws31{word-spacing:6177.456000px;}
.ws5{word-spacing:6186.456000px;}
.ws87{word-spacing:6190.632000px;}
._23{margin-left:-32.387414px;}
._8{margin-left:-19.270790px;}
._17{margin-left:-15.921000px;}
._5{margin-left:-13.566000px;}
._6{margin-left:-12.320100px;}
._9{margin-left:-8.256000px;}
._3{margin-left:-5.546098px;}
._1{margin-left:-4.320000px;}
._2{margin-left:-3.200098px;}
._0{margin-left:-2.079902px;}
._4{margin-left:-1.071000px;}
._d{width:1.395902px;}
._e{width:2.399395px;}
._c{width:3.570000px;}
._a{width:4.836000px;}
._b{width:6.396000px;}
._13{width:8.366400px;}
._14{width:9.514793px;}
._1b{width:11.389507px;}
._18{width:13.875893px;}
._16{width:15.001202px;}
._15{width:16.490686px;}
._10{width:17.506795px;}
._11{width:18.723612px;}
._22{width:20.891710px;}
._12{width:22.251600px;}
._1a{width:24.144295px;}
._1d{width:26.006400px;}
._1c{width:27.205205px;}
._f{width:28.431898px;}
._19{width:29.518210px;}
._24{width:31.056300px;}
._20{width:33.813002px;}
._21{width:34.909202px;}
._1f{width:39.163498px;}
._1e{width:40.238100px;}
._7{width:677.988605px;}
.fc6{color:transparent;}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(112,111,111);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(99,185,233);}
.fc0{color:rgb(79,76,77);}
.fsa{font-size:29.733000px;}
.fs9{font-size:36.729000px;}
.fs5{font-size:51.000000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:246.000000px;}
.fs0{font-size:415.843200px;}
.fs3{font-size:960.000000px;}
.y0{bottom:0.000000px;}
.y95{bottom:32.834700px;}
.ya{bottom:41.220000px;}
.y94{bottom:47.834700px;}
.y130{bottom:95.839950px;}
.y93{bottom:95.845200px;}
.y146{bottom:95.866200px;}
.ybe{bottom:95.881950px;}
.y108{bottom:95.892300px;}
.y77{bottom:95.944950px;}
.ye0{bottom:96.070950px;}
.y12f{bottom:116.834700px;}
.y92{bottom:116.839950px;}
.y16a{bottom:116.848950px;}
.y145{bottom:116.860950px;}
.ybd{bottom:116.876700px;}
.y107{bottom:116.887050px;}
.y76{bottom:116.939700px;}
.ydf{bottom:117.065700px;}
.y169{bottom:137.848200px;}
.y144{bottom:137.855700px;}
.ybc{bottom:137.871450px;}
.y106{bottom:137.881800px;}
.yde{bottom:138.060450px;}
.y12e{bottom:158.839950px;}
.y91{bottom:158.845200px;}
.y168{bottom:158.847450px;}
.y143{bottom:158.850450px;}
.ybb{bottom:158.866200px;}
.y2f{bottom:158.867700px;}
.y105{bottom:158.876550px;}
.y75{bottom:158.944950px;}
.ydd{bottom:159.055200px;}
.y12d{bottom:179.834700px;}
.y90{bottom:179.839950px;}
.y142{bottom:179.845200px;}
.y167{bottom:179.846700px;}
.yba{bottom:179.860950px;}
.y2e{bottom:179.866950px;}
.y104{bottom:179.871300px;}
.y74{bottom:179.939700px;}
.ydc{bottom:180.049950px;}
.y8f{bottom:200.834700px;}
.y141{bottom:200.839950px;}
.y166{bottom:200.845950px;}
.yb9{bottom:200.855700px;}
.y103{bottom:200.866050px;}
.y2d{bottom:200.866200px;}
.y73{bottom:200.934450px;}
.y12c{bottom:221.834700px;}
.y165{bottom:221.845200px;}
.yb8{bottom:221.850450px;}
.y72{bottom:221.929200px;}
.ydb{bottom:222.055200px;}
.y8e{bottom:242.834700px;}
.yb7{bottom:242.845200px;}
.y2c{bottom:242.864700px;}
.y102{bottom:242.871300px;}
.y71{bottom:242.923950px;}
.yda{bottom:243.049950px;}
.y140{bottom:263.834700px;}
.yb6{bottom:263.839950px;}
.y164{bottom:263.843700px;}
.y2b{bottom:263.863950px;}
.y101{bottom:263.866050px;}
.y70{bottom:263.918700px;}
.yd9{bottom:264.044700px;}
.yb5{bottom:284.834700px;}
.y163{bottom:284.842950px;}
.y100{bottom:284.860800px;}
.y16e{bottom:284.863200px;}
.y6f{bottom:284.913450px;}
.yd8{bottom:285.039450px;}
.y162{bottom:305.842200px;}
.yff{bottom:305.855550px;}
.y2a{bottom:305.862450px;}
.y12b{bottom:305.892300px;}
.y4e{bottom:305.900700px;}
.y6e{bottom:305.908200px;}
.y8d{bottom:306.034200px;}
.yb4{bottom:326.834700px;}
.y161{bottom:326.841450px;}
.yfe{bottom:326.850300px;}
.y29{bottom:326.861700px;}
.y12a{bottom:326.887050px;}
.y4d{bottom:326.899950px;}
.y6d{bottom:326.902950px;}
.y8c{bottom:327.028950px;}
.yb3{bottom:347.834700px;}
.y160{bottom:347.840700px;}
.yfd{bottom:347.845050px;}
.y16d{bottom:347.860950px;}
.y129{bottom:347.881800px;}
.y13f{bottom:347.939700px;}
.y8b{bottom:348.023700px;}
.y7{bottom:352.018200px;}
.yb2{bottom:368.834700px;}
.yfc{bottom:368.839800px;}
.y15f{bottom:368.839950px;}
.y28{bottom:368.860200px;}
.y128{bottom:368.876550px;}
.y4c{bottom:368.898450px;}
.y6c{bottom:368.908200px;}
.y13e{bottom:368.934450px;}
.y8a{bottom:369.018450px;}
.y9{bottom:381.914100px;}
.yfb{bottom:389.834550px;}
.y27{bottom:389.859450px;}
.y4b{bottom:389.897700px;}
.y6b{bottom:389.902950px;}
.y13d{bottom:389.929200px;}
.y89{bottom:390.013200px;}
.yd7{bottom:390.028950px;}
.y15e{bottom:410.838450px;}
.y26{bottom:410.858700px;}
.y127{bottom:410.881800px;}
.y4a{bottom:410.896950px;}
.y6a{bottom:410.897700px;}
.y13c{bottom:410.923950px;}
.y88{bottom:411.007950px;}
.yd6{bottom:411.023700px;}
.yfa{bottom:431.834550px;}
.y15d{bottom:431.837700px;}
.y25{bottom:431.857950px;}
.y126{bottom:431.876550px;}
.y69{bottom:431.892450px;}
.y49{bottom:431.896200px;}
.y13b{bottom:431.918700px;}
.yb1{bottom:431.950200px;}
.yd5{bottom:432.018450px;}
.y6{bottom:445.018200px;}
.yf9{bottom:452.834550px;}
.y24{bottom:452.857200px;}
.y125{bottom:452.871300px;}
.y68{bottom:452.887200px;}
.y48{bottom:452.895450px;}
.y13a{bottom:452.913450px;}
.yb0{bottom:452.944950px;}
.y87{bottom:453.013200px;}
.y15c{bottom:473.836200px;}
.y124{bottom:473.866050px;}
.y67{bottom:473.881950px;}
.y139{bottom:473.908200px;}
.yaf{bottom:473.939700px;}
.y86{bottom:474.007950px;}
.y15b{bottom:494.835450px;}
.y23{bottom:494.855700px;}
.y123{bottom:494.860800px;}
.y66{bottom:494.876700px;}
.y47{bottom:494.893950px;}
.yae{bottom:494.934450px;}
.y85{bottom:495.002700px;}
.y15a{bottom:515.834700px;}
.y22{bottom:515.854950px;}
.y122{bottom:515.855550px;}
.y46{bottom:515.893200px;}
.y138{bottom:515.913450px;}
.yad{bottom:515.929200px;}
.yf8{bottom:515.944950px;}
.y84{bottom:515.997450px;}
.y121{bottom:536.850300px;}
.y21{bottom:536.854200px;}
.y65{bottom:536.881950px;}
.y45{bottom:536.892450px;}
.y137{bottom:536.908200px;}
.yac{bottom:536.923950px;}
.yf7{bottom:536.939700px;}
.y83{bottom:536.992200px;}
.y5{bottom:538.018200px;}
.y8{bottom:551.414100px;}
.y159{bottom:557.834700px;}
.y120{bottom:557.845050px;}
.y20{bottom:557.853450px;}
.y64{bottom:557.876700px;}
.y44{bottom:557.891700px;}
.y136{bottom:557.902950px;}
.yab{bottom:557.918700px;}
.yf6{bottom:557.934450px;}
.y82{bottom:557.986950px;}
.y11f{bottom:578.839800px;}
.y1f{bottom:578.852700px;}
.y63{bottom:578.871450px;}
.y135{bottom:578.897700px;}
.yaa{bottom:578.913450px;}
.yf5{bottom:578.929200px;}
.yd4{bottom:578.981700px;}
.y1e{bottom:599.851950px;}
.y62{bottom:599.866200px;}
.y43{bottom:599.890200px;}
.y134{bottom:599.892450px;}
.ya9{bottom:599.908200px;}
.yf4{bottom:599.923950px;}
.yd3{bottom:599.976450px;}
.y11e{bottom:599.986800px;}
.y81{bottom:599.992200px;}
.y1d{bottom:620.851200px;}
.y61{bottom:620.860950px;}
.y42{bottom:620.889450px;}
.ya8{bottom:620.902950px;}
.yf3{bottom:620.918700px;}
.y158{bottom:620.955450px;}
.yd2{bottom:620.971200px;}
.y11d{bottom:620.981550px;}
.y80{bottom:620.986950px;}
.y4{bottom:631.018200px;}
.y1c{bottom:641.850450px;}
.y60{bottom:641.855700px;}
.y41{bottom:641.888700px;}
.ya7{bottom:641.897700px;}
.yf2{bottom:641.913450px;}
.y157{bottom:641.950200px;}
.yd1{bottom:641.965950px;}
.y11c{bottom:641.976300px;}
.y7f{bottom:641.981700px;}
.y1b{bottom:662.849700px;}
.y5f{bottom:662.850450px;}
.y40{bottom:662.887950px;}
.ya6{bottom:662.892450px;}
.y156{bottom:662.944950px;}
.yd0{bottom:662.960700px;}
.y11b{bottom:662.971050px;}
.y7e{bottom:662.976450px;}
.y5e{bottom:683.845200px;}
.y16c{bottom:683.848950px;}
.ya5{bottom:683.887200px;}
.yf1{bottom:683.918700px;}
.y155{bottom:683.939700px;}
.ycf{bottom:683.955450px;}
.y11a{bottom:683.965800px;}
.y7d{bottom:683.971200px;}
.y5d{bottom:704.839950px;}
.y1a{bottom:704.848200px;}
.y133{bottom:704.881950px;}
.y3f{bottom:704.886450px;}
.yf0{bottom:704.913450px;}
.y154{bottom:704.934450px;}
.yce{bottom:704.950200px;}
.y119{bottom:704.960550px;}
.y7c{bottom:704.965950px;}
.y5c{bottom:725.834700px;}
.y17d{bottom:725.839200px;}
.y19{bottom:725.847450px;}
.y132{bottom:725.876700px;}
.y3e{bottom:725.885700px;}
.ya4{bottom:725.892450px;}
.yef{bottom:725.908200px;}
.y153{bottom:725.929200px;}
.ycd{bottom:725.944950px;}
.y118{bottom:725.955300px;}
.y7b{bottom:725.960700px;}
.y17c{bottom:746.838450px;}
.y18{bottom:746.846700px;}
.y3d{bottom:746.884950px;}
.ya3{bottom:746.887200px;}
.yee{bottom:746.902950px;}
.ycc{bottom:746.939700px;}
.y117{bottom:746.950050px;}
.y7a{bottom:746.955450px;}
.y3{bottom:751.738650px;}
.y5b{bottom:767.834700px;}
.y17b{bottom:767.837700px;}
.y17{bottom:767.845950px;}
.ya2{bottom:767.881950px;}
.yed{bottom:767.897700px;}
.y152{bottom:767.934450px;}
.y79{bottom:767.950200px;}
.y5a{bottom:788.834700px;}
.y17a{bottom:788.836950px;}
.ya1{bottom:788.876700px;}
.y3c{bottom:788.883450px;}
.yec{bottom:788.892450px;}
.y151{bottom:788.929200px;}
.y78{bottom:788.944950px;}
.y116{bottom:788.955300px;}
.y2{bottom:791.931000px;}
.y179{bottom:809.836200px;}
.y16{bottom:809.844450px;}
.ya0{bottom:809.871450px;}
.y3b{bottom:809.882700px;}
.yeb{bottom:809.887200px;}
.y150{bottom:809.923950px;}
.ycb{bottom:809.939700px;}
.y115{bottom:809.950050px;}
.y178{bottom:830.835450px;}
.y15{bottom:830.843700px;}
.y9f{bottom:830.866200px;}
.y3a{bottom:830.881950px;}
.y14f{bottom:830.918700px;}
.yca{bottom:830.934450px;}
.y114{bottom:830.944800px;}
.y14{bottom:851.842950px;}
.yea{bottom:851.876700px;}
.y39{bottom:851.881200px;}
.y14e{bottom:851.913450px;}
.yc9{bottom:851.929200px;}
.y113{bottom:851.939550px;}
.y177{bottom:856.080450px;}
.y1{bottom:859.112850px;}
.y59{bottom:872.834700px;}
.y13{bottom:872.842200px;}
.y9e{bottom:872.871450px;}
.y14d{bottom:872.908200px;}
.yc8{bottom:872.923950px;}
.y112{bottom:872.934300px;}
.y58{bottom:893.834700px;}
.y176{bottom:893.839950px;}
.y12{bottom:893.841450px;}
.y9d{bottom:893.866200px;}
.y38{bottom:893.879700px;}
.ye9{bottom:893.881950px;}
.yc7{bottom:893.918700px;}
.y57{bottom:914.834700px;}
.y175{bottom:914.839200px;}
.y11{bottom:914.840700px;}
.y9c{bottom:914.860950px;}
.ye8{bottom:914.876700px;}
.y37{bottom:914.878950px;}
.yc6{bottom:914.913450px;}
.y111{bottom:914.939550px;}
.y56{bottom:935.834700px;}
.y174{bottom:935.838450px;}
.y9b{bottom:935.855700px;}
.ye7{bottom:935.871450px;}
.y36{bottom:935.878200px;}
.yc5{bottom:935.908200px;}
.y110{bottom:935.934300px;}
.y55{bottom:956.834700px;}
.y173{bottom:956.837700px;}
.y10{bottom:956.839200px;}
.y9a{bottom:956.850450px;}
.ye6{bottom:956.866200px;}
.yc4{bottom:956.902950px;}
.y10f{bottom:956.929050px;}
.y54{bottom:977.834700px;}
.y172{bottom:977.836950px;}
.yf{bottom:977.838450px;}
.y99{bottom:977.845200px;}
.ye5{bottom:977.860950px;}
.y35{bottom:977.876700px;}
.y14c{bottom:977.897700px;}
.y10e{bottom:977.923800px;}
.y53{bottom:998.834700px;}
.y171{bottom:998.836200px;}
.ye{bottom:998.837700px;}
.y98{bottom:998.839950px;}
.ye4{bottom:998.855700px;}
.y34{bottom:998.875950px;}
.y14b{bottom:998.892450px;}
.yc3{bottom:998.908200px;}
.y10d{bottom:998.918550px;}
.y97{bottom:1019.834700px;}
.y170{bottom:1019.835450px;}
.ye3{bottom:1019.850450px;}
.y33{bottom:1019.875200px;}
.y14a{bottom:1019.887200px;}
.yc2{bottom:1019.902950px;}
.y10c{bottom:1019.913300px;}
.y52{bottom:1034.834700px;}
.yd{bottom:1040.836200px;}
.ye2{bottom:1040.845200px;}
.y32{bottom:1040.874450px;}
.y149{bottom:1040.881950px;}
.yc1{bottom:1040.897700px;}
.y10b{bottom:1040.908050px;}
.y16f{bottom:1045.080450px;}
.y51{bottom:1061.834700px;}
.yc{bottom:1061.835450px;}
.y96{bottom:1061.839950px;}
.y31{bottom:1061.873700px;}
.y148{bottom:1061.876700px;}
.yc0{bottom:1061.892450px;}
.y10a{bottom:1061.902800px;}
.yb{bottom:1082.834700px;}
.y147{bottom:1082.871450px;}
.y30{bottom:1082.872950px;}
.ybf{bottom:1082.887200px;}
.y109{bottom:1082.897550px;}
.y50{bottom:1091.633550px;}
.ye1{bottom:1186.388550px;}
.y16b{bottom:1187.362200px;}
.y4f{bottom:1187.834700px;}
.y17e{bottom:1189.658250px;}
.y131{bottom:1189.659150px;}
.h12{height:29.631000px;}
.ha{height:44.040000px;}
.hd{height:44.400000px;}
.hf{height:45.171000px;}
.he{height:45.234000px;}
.h8{height:46.614000px;}
.h11{height:46.704693px;}
.h7{height:51.768000px;}
.hc{height:54.840000px;}
.hb{height:70.080000px;}
.h10{height:70.464000px;}
.h9{height:71.350200px;}
.h4{height:87.600000px;}
.h3{height:88.800000px;}
.h5{height:182.040000px;}
.h2{height:307.723968px;}
.h6{height:681.600000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x1{left:62.185050px;}
.x3{left:63.297600px;}
.x4{left:85.039350px;}
.x2{left:223.228350px;}
.x5{left:467.717850px;}
.xa{left:484.727100px;}
.x6{left:977.952750px;}
.x8{left:987.247500px;}
.x9{left:999.487500px;}
.x7{left:1360.630500px;}
.xb{left:1377.624750px;}
@media print{
.v2{vertical-align:-15.096000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.106667pt;}
.ls1{letter-spacing:-7.392768pt;}
.ls1a{letter-spacing:-3.008000pt;}
.ls17{letter-spacing:-1.456000pt;}
.ls16{letter-spacing:-1.176000pt;}
.ls14{letter-spacing:-1.120000pt;}
.ls1c{letter-spacing:-1.064000pt;}
.ls15{letter-spacing:-0.840000pt;}
.ls3{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.728000pt;}
.ls8{letter-spacing:-0.616000pt;}
.lsa{letter-spacing:-0.560000pt;}
.ls12{letter-spacing:-0.448000pt;}
.ls10{letter-spacing:-0.392000pt;}
.lsc{letter-spacing:-0.336000pt;}
.lsf{letter-spacing:-0.224000pt;}
.lsd{letter-spacing:-0.168000pt;}
.ls2{letter-spacing:-0.106667pt;}
.ls7{letter-spacing:-0.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.112000pt;}
.ls9{letter-spacing:0.163272pt;}
.lse{letter-spacing:0.168000pt;}
.ls4{letter-spacing:0.280000pt;}
.lsb{letter-spacing:0.448000pt;}
.ls19{letter-spacing:0.504000pt;}
.ls13{letter-spacing:0.840000pt;}
.ls11{letter-spacing:0.896000pt;}
.ls1b{letter-spacing:0.952000pt;}
.ls18{letter-spacing:1.848000pt;}
.ws1{word-spacing:-87.604301pt;}
.ws0{word-spacing:-86.125747pt;}
.ws2{word-spacing:-50.949333pt;}
.ws8a{word-spacing:-12.426667pt;}
.ws6{word-spacing:-11.560000pt;}
.ws35{word-spacing:-10.920000pt;}
.ws88{word-spacing:-10.640000pt;}
.ws32{word-spacing:-10.248000pt;}
.ws89{word-spacing:-10.192000pt;}
.ws36{word-spacing:-10.024000pt;}
.ws33{word-spacing:-9.856000pt;}
.ws8b{word-spacing:-6.739480pt;}
.ws81{word-spacing:-1.568000pt;}
.ws2b{word-spacing:-1.176000pt;}
.wsa1{word-spacing:-1.120000pt;}
.ws8e{word-spacing:-0.952000pt;}
.ws5f{word-spacing:-0.840000pt;}
.ws2a{word-spacing:-0.784000pt;}
.ws4e{word-spacing:-0.616000pt;}
.ws83{word-spacing:-0.504000pt;}
.ws3e{word-spacing:-0.448000pt;}
.ws4a{word-spacing:-0.336000pt;}
.ws16{word-spacing:-0.280000pt;}
.ws40{word-spacing:-0.168000pt;}
.ws17{word-spacing:-0.112000pt;}
.wsa4{word-spacing:-0.090667pt;}
.wsa0{word-spacing:-0.056000pt;}
.ws9{word-spacing:-0.045333pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:0.106667pt;}
.ws13{word-spacing:0.112000pt;}
.ws14{word-spacing:0.168000pt;}
.ws82{word-spacing:0.224000pt;}
.ws59{word-spacing:0.280000pt;}
.ws90{word-spacing:0.392000pt;}
.ws5a{word-spacing:0.504000pt;}
.ws3c{word-spacing:0.560000pt;}
.ws1e{word-spacing:0.616000pt;}
.ws7e{word-spacing:0.672000pt;}
.ws5b{word-spacing:0.728000pt;}
.ws29{word-spacing:0.784000pt;}
.ws7f{word-spacing:0.840000pt;}
.ws38{word-spacing:0.896000pt;}
.ws74{word-spacing:1.008000pt;}
.ws91{word-spacing:1.120000pt;}
.ws77{word-spacing:1.176000pt;}
.ws26{word-spacing:1.288000pt;}
.ws12{word-spacing:1.344000pt;}
.ws95{word-spacing:1.456000pt;}
.ws6c{word-spacing:1.512000pt;}
.ws23{word-spacing:1.792000pt;}
.ws1f{word-spacing:2.016000pt;}
.ws53{word-spacing:2.128000pt;}
.ws7a{word-spacing:2.240000pt;}
.wsa2{word-spacing:2.408000pt;}
.ws60{word-spacing:2.856000pt;}
.ws9b{word-spacing:2.912000pt;}
.wsa{word-spacing:2.933333pt;}
.ws49{word-spacing:3.024000pt;}
.ws79{word-spacing:3.192000pt;}
.ws80{word-spacing:3.248000pt;}
.ws6f{word-spacing:3.304000pt;}
.ws66{word-spacing:3.360000pt;}
.ws6e{word-spacing:3.472000pt;}
.ws28{word-spacing:3.528000pt;}
.ws8f{word-spacing:3.640000pt;}
.ws3b{word-spacing:3.808000pt;}
.ws10{word-spacing:3.976000pt;}
.ws11{word-spacing:4.032000pt;}
.ws72{word-spacing:4.200000pt;}
.ws6d{word-spacing:4.368000pt;}
.ws75{word-spacing:4.424000pt;}
.ws4d{word-spacing:4.536000pt;}
.ws58{word-spacing:4.592000pt;}
.ws9d{word-spacing:4.648000pt;}
.ws24{word-spacing:4.704000pt;}
.ws1a{word-spacing:4.760000pt;}
.ws8c{word-spacing:4.984000pt;}
.ws56{word-spacing:5.040000pt;}
.ws37{word-spacing:5.096000pt;}
.ws62{word-spacing:5.152000pt;}
.ws6b{word-spacing:5.320000pt;}
.ws99{word-spacing:5.432000pt;}
.ws52{word-spacing:5.600000pt;}
.ws41{word-spacing:5.712000pt;}
.ws22{word-spacing:5.880000pt;}
.wse{word-spacing:6.104000pt;}
.ws68{word-spacing:6.216000pt;}
.wsf{word-spacing:6.496000pt;}
.ws5e{word-spacing:6.664000pt;}
.wsb{word-spacing:6.933333pt;}
.ws96{word-spacing:6.944000pt;}
.ws69{word-spacing:7.000000pt;}
.ws73{word-spacing:7.056000pt;}
.ws48{word-spacing:7.280000pt;}
.ws1c{word-spacing:7.336000pt;}
.ws47{word-spacing:7.392000pt;}
.ws67{word-spacing:7.448000pt;}
.ws2c{word-spacing:7.504000pt;}
.wsa3{word-spacing:7.560000pt;}
.ws61{word-spacing:7.672000pt;}
.ws3d{word-spacing:7.728000pt;}
.ws18{word-spacing:8.120000pt;}
.ws19{word-spacing:8.232000pt;}
.ws7b{word-spacing:8.512000pt;}
.ws6a{word-spacing:8.624000pt;}
.ws1b{word-spacing:8.680000pt;}
.ws27{word-spacing:8.736000pt;}
.ws9a{word-spacing:9.184000pt;}
.ws70{word-spacing:9.296000pt;}
.ws76{word-spacing:9.520000pt;}
.ws51{word-spacing:9.688000pt;}
.ws30{word-spacing:9.912000pt;}
.ws57{word-spacing:10.080000pt;}
.ws4b{word-spacing:10.416000pt;}
.ws71{word-spacing:10.472000pt;}
.ws39{word-spacing:10.528000pt;}
.ws97{word-spacing:10.752000pt;}
.ws55{word-spacing:10.808000pt;}
.ws5c{word-spacing:10.976000pt;}
.ws84{word-spacing:11.256000pt;}
.ws9c{word-spacing:11.312000pt;}
.ws5d{word-spacing:11.536000pt;}
.ws3f{word-spacing:12.320000pt;}
.ws65{word-spacing:12.600000pt;}
.ws2d{word-spacing:12.712000pt;}
.wsc{word-spacing:12.880000pt;}
.ws4f{word-spacing:13.384000pt;}
.ws2e{word-spacing:13.496000pt;}
.ws93{word-spacing:13.608000pt;}
.ws9e{word-spacing:13.720000pt;}
.ws7d{word-spacing:14.112000pt;}
.ws25{word-spacing:14.392000pt;}
.ws85{word-spacing:14.504000pt;}
.ws9f{word-spacing:14.784000pt;}
.ws78{word-spacing:14.952000pt;}
.ws2f{word-spacing:15.008000pt;}
.ws4c{word-spacing:15.120000pt;}
.wsd{word-spacing:15.624000pt;}
.ws15{word-spacing:16.352000pt;}
.ws54{word-spacing:16.912000pt;}
.ws42{word-spacing:17.304000pt;}
.ws21{word-spacing:17.976000pt;}
.ws94{word-spacing:18.536000pt;}
.ws1d{word-spacing:18.592000pt;}
.ws20{word-spacing:19.152000pt;}
.ws45{word-spacing:19.600000pt;}
.ws92{word-spacing:20.216000pt;}
.ws64{word-spacing:21.224000pt;}
.ws44{word-spacing:21.448000pt;}
.ws43{word-spacing:21.672000pt;}
.ws86{word-spacing:22.736000pt;}
.ws50{word-spacing:22.792000pt;}
.ws8d{word-spacing:23.576000pt;}
.ws46{word-spacing:24.024000pt;}
.ws98{word-spacing:24.472000pt;}
.ws7c{word-spacing:25.928000pt;}
.ws3a{word-spacing:26.320000pt;}
.ws63{word-spacing:27.832000pt;}
.ws34{word-spacing:1260.629867pt;}
.ws8{word-spacing:1260.630400pt;}
.ws7{word-spacing:1768.526400pt;}
.ws31{word-spacing:5491.072000pt;}
.ws5{word-spacing:5499.072000pt;}
.ws87{word-spacing:5502.784000pt;}
._23{margin-left:-28.788813pt;}
._8{margin-left:-17.129591pt;}
._17{margin-left:-14.152000pt;}
._5{margin-left:-12.058667pt;}
._6{margin-left:-10.951200pt;}
._9{margin-left:-7.338667pt;}
._3{margin-left:-4.929865pt;}
._1{margin-left:-3.840000pt;}
._2{margin-left:-2.844531pt;}
._0{margin-left:-1.848802pt;}
._4{margin-left:-0.952000pt;}
._d{width:1.240802pt;}
._e{width:2.132796pt;}
._c{width:3.173333pt;}
._a{width:4.298667pt;}
._b{width:5.685333pt;}
._13{width:7.436800pt;}
._14{width:8.457594pt;}
._1b{width:10.124006pt;}
._18{width:12.334127pt;}
._16{width:13.334402pt;}
._15{width:14.658387pt;}
._10{width:15.561596pt;}
._11{width:16.643211pt;}
._22{width:18.570409pt;}
._12{width:19.779200pt;}
._1a{width:21.461596pt;}
._1d{width:23.116800pt;}
._1c{width:24.182404pt;}
._f{width:25.272798pt;}
._19{width:26.238409pt;}
._24{width:27.605600pt;}
._20{width:30.056002pt;}
._21{width:31.030402pt;}
._1f{width:34.811998pt;}
._1e{width:35.767200pt;}
._7{width:602.656538pt;}
.fsa{font-size:26.429333pt;}
.fs9{font-size:32.648000pt;}
.fs5{font-size:45.333333pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:218.666667pt;}
.fs0{font-size:369.638400pt;}
.fs3{font-size:853.333333pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:29.186400pt;}
.ya{bottom:36.640000pt;}
.y94{bottom:42.519733pt;}
.y130{bottom:85.191067pt;}
.y93{bottom:85.195733pt;}
.y146{bottom:85.214400pt;}
.ybe{bottom:85.228400pt;}
.y108{bottom:85.237600pt;}
.y77{bottom:85.284400pt;}
.ye0{bottom:85.396400pt;}
.y12f{bottom:103.853067pt;}
.y92{bottom:103.857733pt;}
.y16a{bottom:103.865733pt;}
.y145{bottom:103.876400pt;}
.ybd{bottom:103.890400pt;}
.y107{bottom:103.899600pt;}
.y76{bottom:103.946400pt;}
.ydf{bottom:104.058400pt;}
.y169{bottom:122.531733pt;}
.y144{bottom:122.538400pt;}
.ybc{bottom:122.552400pt;}
.y106{bottom:122.561600pt;}
.yde{bottom:122.720400pt;}
.y12e{bottom:141.191067pt;}
.y91{bottom:141.195733pt;}
.y168{bottom:141.197733pt;}
.y143{bottom:141.200400pt;}
.ybb{bottom:141.214400pt;}
.y2f{bottom:141.215733pt;}
.y105{bottom:141.223600pt;}
.y75{bottom:141.284400pt;}
.ydd{bottom:141.382400pt;}
.y12d{bottom:159.853067pt;}
.y90{bottom:159.857733pt;}
.y142{bottom:159.862400pt;}
.y167{bottom:159.863733pt;}
.yba{bottom:159.876400pt;}
.y2e{bottom:159.881733pt;}
.y104{bottom:159.885600pt;}
.y74{bottom:159.946400pt;}
.ydc{bottom:160.044400pt;}
.y8f{bottom:178.519733pt;}
.y141{bottom:178.524400pt;}
.y166{bottom:178.529733pt;}
.yb9{bottom:178.538400pt;}
.y103{bottom:178.547600pt;}
.y2d{bottom:178.547733pt;}
.y73{bottom:178.608400pt;}
.y12c{bottom:197.186400pt;}
.y165{bottom:197.195733pt;}
.yb8{bottom:197.200400pt;}
.y72{bottom:197.270400pt;}
.ydb{bottom:197.382400pt;}
.y8e{bottom:215.853067pt;}
.yb7{bottom:215.862400pt;}
.y2c{bottom:215.879733pt;}
.y102{bottom:215.885600pt;}
.y71{bottom:215.932400pt;}
.yda{bottom:216.044400pt;}
.y140{bottom:234.519733pt;}
.yb6{bottom:234.524400pt;}
.y164{bottom:234.527733pt;}
.y2b{bottom:234.545733pt;}
.y101{bottom:234.547600pt;}
.y70{bottom:234.594400pt;}
.yd9{bottom:234.706400pt;}
.yb5{bottom:253.186400pt;}
.y163{bottom:253.193733pt;}
.y100{bottom:253.209600pt;}
.y16e{bottom:253.211733pt;}
.y6f{bottom:253.256400pt;}
.yd8{bottom:253.368400pt;}
.y162{bottom:271.859733pt;}
.yff{bottom:271.871600pt;}
.y2a{bottom:271.877733pt;}
.y12b{bottom:271.904267pt;}
.y4e{bottom:271.911733pt;}
.y6e{bottom:271.918400pt;}
.y8d{bottom:272.030400pt;}
.yb4{bottom:290.519733pt;}
.y161{bottom:290.525733pt;}
.yfe{bottom:290.533600pt;}
.y29{bottom:290.543733pt;}
.y12a{bottom:290.566267pt;}
.y4d{bottom:290.577733pt;}
.y6d{bottom:290.580400pt;}
.y8c{bottom:290.692400pt;}
.yb3{bottom:309.186400pt;}
.y160{bottom:309.191733pt;}
.yfd{bottom:309.195600pt;}
.y16d{bottom:309.209733pt;}
.y129{bottom:309.228267pt;}
.y13f{bottom:309.279733pt;}
.y8b{bottom:309.354400pt;}
.y7{bottom:312.905067pt;}
.yb2{bottom:327.853067pt;}
.yfc{bottom:327.857600pt;}
.y15f{bottom:327.857733pt;}
.y28{bottom:327.875733pt;}
.y128{bottom:327.890267pt;}
.y4c{bottom:327.909733pt;}
.y6c{bottom:327.918400pt;}
.y13e{bottom:327.941733pt;}
.y8a{bottom:328.016400pt;}
.y9{bottom:339.479200pt;}
.yfb{bottom:346.519600pt;}
.y27{bottom:346.541733pt;}
.y4b{bottom:346.575733pt;}
.y6b{bottom:346.580400pt;}
.y13d{bottom:346.603733pt;}
.y89{bottom:346.678400pt;}
.yd7{bottom:346.692400pt;}
.y15e{bottom:365.189733pt;}
.y26{bottom:365.207733pt;}
.y127{bottom:365.228267pt;}
.y4a{bottom:365.241733pt;}
.y6a{bottom:365.242400pt;}
.y13c{bottom:365.265733pt;}
.y88{bottom:365.340400pt;}
.yd6{bottom:365.354400pt;}
.yfa{bottom:383.852933pt;}
.y15d{bottom:383.855733pt;}
.y25{bottom:383.873733pt;}
.y126{bottom:383.890267pt;}
.y69{bottom:383.904400pt;}
.y49{bottom:383.907733pt;}
.y13b{bottom:383.927733pt;}
.yb1{bottom:383.955733pt;}
.yd5{bottom:384.016400pt;}
.y6{bottom:395.571733pt;}
.yf9{bottom:402.519600pt;}
.y24{bottom:402.539733pt;}
.y125{bottom:402.552267pt;}
.y68{bottom:402.566400pt;}
.y48{bottom:402.573733pt;}
.y13a{bottom:402.589733pt;}
.yb0{bottom:402.617733pt;}
.y87{bottom:402.678400pt;}
.y15c{bottom:421.187733pt;}
.y124{bottom:421.214267pt;}
.y67{bottom:421.228400pt;}
.y139{bottom:421.251733pt;}
.yaf{bottom:421.279733pt;}
.y86{bottom:421.340400pt;}
.y15b{bottom:439.853733pt;}
.y23{bottom:439.871733pt;}
.y123{bottom:439.876267pt;}
.y66{bottom:439.890400pt;}
.y47{bottom:439.905733pt;}
.yae{bottom:439.941733pt;}
.y85{bottom:440.002400pt;}
.y15a{bottom:458.519733pt;}
.y22{bottom:458.537733pt;}
.y122{bottom:458.538267pt;}
.y46{bottom:458.571733pt;}
.y138{bottom:458.589733pt;}
.yad{bottom:458.603733pt;}
.yf8{bottom:458.617733pt;}
.y84{bottom:458.664400pt;}
.y121{bottom:477.200267pt;}
.y21{bottom:477.203733pt;}
.y65{bottom:477.228400pt;}
.y45{bottom:477.237733pt;}
.y137{bottom:477.251733pt;}
.yac{bottom:477.265733pt;}
.yf7{bottom:477.279733pt;}
.y83{bottom:477.326400pt;}
.y5{bottom:478.238400pt;}
.y8{bottom:490.145867pt;}
.y159{bottom:495.853067pt;}
.y120{bottom:495.862267pt;}
.y20{bottom:495.869733pt;}
.y64{bottom:495.890400pt;}
.y44{bottom:495.903733pt;}
.y136{bottom:495.913733pt;}
.yab{bottom:495.927733pt;}
.yf6{bottom:495.941733pt;}
.y82{bottom:495.988400pt;}
.y11f{bottom:514.524267pt;}
.y1f{bottom:514.535733pt;}
.y63{bottom:514.552400pt;}
.y135{bottom:514.575733pt;}
.yaa{bottom:514.589733pt;}
.yf5{bottom:514.603733pt;}
.yd4{bottom:514.650400pt;}
.y1e{bottom:533.201733pt;}
.y62{bottom:533.214400pt;}
.y43{bottom:533.235733pt;}
.y134{bottom:533.237733pt;}
.ya9{bottom:533.251733pt;}
.yf4{bottom:533.265733pt;}
.yd3{bottom:533.312400pt;}
.y11e{bottom:533.321600pt;}
.y81{bottom:533.326400pt;}
.y1d{bottom:551.867733pt;}
.y61{bottom:551.876400pt;}
.y42{bottom:551.901733pt;}
.ya8{bottom:551.913733pt;}
.yf3{bottom:551.927733pt;}
.y158{bottom:551.960400pt;}
.yd2{bottom:551.974400pt;}
.y11d{bottom:551.983600pt;}
.y80{bottom:551.988400pt;}
.y4{bottom:560.905067pt;}
.y1c{bottom:570.533733pt;}
.y60{bottom:570.538400pt;}
.y41{bottom:570.567733pt;}
.ya7{bottom:570.575733pt;}
.yf2{bottom:570.589733pt;}
.y157{bottom:570.622400pt;}
.yd1{bottom:570.636400pt;}
.y11c{bottom:570.645600pt;}
.y7f{bottom:570.650400pt;}
.y1b{bottom:589.199733pt;}
.y5f{bottom:589.200400pt;}
.y40{bottom:589.233733pt;}
.ya6{bottom:589.237733pt;}
.y156{bottom:589.284400pt;}
.yd0{bottom:589.298400pt;}
.y11b{bottom:589.307600pt;}
.y7e{bottom:589.312400pt;}
.y5e{bottom:607.862400pt;}
.y16c{bottom:607.865733pt;}
.ya5{bottom:607.899733pt;}
.yf1{bottom:607.927733pt;}
.y155{bottom:607.946400pt;}
.ycf{bottom:607.960400pt;}
.y11a{bottom:607.969600pt;}
.y7d{bottom:607.974400pt;}
.y5d{bottom:626.524400pt;}
.y1a{bottom:626.531733pt;}
.y133{bottom:626.561733pt;}
.y3f{bottom:626.565733pt;}
.yf0{bottom:626.589733pt;}
.y154{bottom:626.608400pt;}
.yce{bottom:626.622400pt;}
.y119{bottom:626.631600pt;}
.y7c{bottom:626.636400pt;}
.y5c{bottom:645.186400pt;}
.y17d{bottom:645.190400pt;}
.y19{bottom:645.197733pt;}
.y132{bottom:645.223733pt;}
.y3e{bottom:645.231733pt;}
.ya4{bottom:645.237733pt;}
.yef{bottom:645.251733pt;}
.y153{bottom:645.270400pt;}
.ycd{bottom:645.284400pt;}
.y118{bottom:645.293600pt;}
.y7b{bottom:645.298400pt;}
.y17c{bottom:663.856400pt;}
.y18{bottom:663.863733pt;}
.y3d{bottom:663.897733pt;}
.ya3{bottom:663.899733pt;}
.yee{bottom:663.913733pt;}
.ycc{bottom:663.946400pt;}
.y117{bottom:663.955600pt;}
.y7a{bottom:663.960400pt;}
.y3{bottom:668.212133pt;}
.y5b{bottom:682.519733pt;}
.y17b{bottom:682.522400pt;}
.y17{bottom:682.529733pt;}
.ya2{bottom:682.561733pt;}
.yed{bottom:682.575733pt;}
.y152{bottom:682.608400pt;}
.y79{bottom:682.622400pt;}
.y5a{bottom:701.186400pt;}
.y17a{bottom:701.188400pt;}
.ya1{bottom:701.223733pt;}
.y3c{bottom:701.229733pt;}
.yec{bottom:701.237733pt;}
.y151{bottom:701.270400pt;}
.y78{bottom:701.284400pt;}
.y116{bottom:701.293600pt;}
.y2{bottom:703.938667pt;}
.y179{bottom:719.854400pt;}
.y16{bottom:719.861733pt;}
.ya0{bottom:719.885733pt;}
.y3b{bottom:719.895733pt;}
.yeb{bottom:719.899733pt;}
.y150{bottom:719.932400pt;}
.ycb{bottom:719.946400pt;}
.y115{bottom:719.955600pt;}
.y178{bottom:738.520400pt;}
.y15{bottom:738.527733pt;}
.y9f{bottom:738.547733pt;}
.y3a{bottom:738.561733pt;}
.y14f{bottom:738.594400pt;}
.yca{bottom:738.608400pt;}
.y114{bottom:738.617600pt;}
.y14{bottom:757.193733pt;}
.yea{bottom:757.223733pt;}
.y39{bottom:757.227733pt;}
.y14e{bottom:757.256400pt;}
.yc9{bottom:757.270400pt;}
.y113{bottom:757.279600pt;}
.y177{bottom:760.960400pt;}
.y1{bottom:763.655867pt;}
.y59{bottom:775.853067pt;}
.y13{bottom:775.859733pt;}
.y9e{bottom:775.885733pt;}
.y14d{bottom:775.918400pt;}
.yc8{bottom:775.932400pt;}
.y112{bottom:775.941600pt;}
.y58{bottom:794.519733pt;}
.y176{bottom:794.524400pt;}
.y12{bottom:794.525733pt;}
.y9d{bottom:794.547733pt;}
.y38{bottom:794.559733pt;}
.ye9{bottom:794.561733pt;}
.yc7{bottom:794.594400pt;}
.y57{bottom:813.186400pt;}
.y175{bottom:813.190400pt;}
.y11{bottom:813.191733pt;}
.y9c{bottom:813.209733pt;}
.ye8{bottom:813.223733pt;}
.y37{bottom:813.225733pt;}
.yc6{bottom:813.256400pt;}
.y111{bottom:813.279600pt;}
.y56{bottom:831.853067pt;}
.y174{bottom:831.856400pt;}
.y9b{bottom:831.871733pt;}
.ye7{bottom:831.885733pt;}
.y36{bottom:831.891733pt;}
.yc5{bottom:831.918400pt;}
.y110{bottom:831.941600pt;}
.y55{bottom:850.519733pt;}
.y173{bottom:850.522400pt;}
.y10{bottom:850.523733pt;}
.y9a{bottom:850.533733pt;}
.ye6{bottom:850.547733pt;}
.yc4{bottom:850.580400pt;}
.y10f{bottom:850.603600pt;}
.y54{bottom:869.186400pt;}
.y172{bottom:869.188400pt;}
.yf{bottom:869.189733pt;}
.y99{bottom:869.195733pt;}
.ye5{bottom:869.209733pt;}
.y35{bottom:869.223733pt;}
.y14c{bottom:869.242400pt;}
.y10e{bottom:869.265600pt;}
.y53{bottom:887.853067pt;}
.y171{bottom:887.854400pt;}
.ye{bottom:887.855733pt;}
.y98{bottom:887.857733pt;}
.ye4{bottom:887.871733pt;}
.y34{bottom:887.889733pt;}
.y14b{bottom:887.904400pt;}
.yc3{bottom:887.918400pt;}
.y10d{bottom:887.927600pt;}
.y97{bottom:906.519733pt;}
.y170{bottom:906.520400pt;}
.ye3{bottom:906.533733pt;}
.y33{bottom:906.555733pt;}
.y14a{bottom:906.566400pt;}
.yc2{bottom:906.580400pt;}
.y10c{bottom:906.589600pt;}
.y52{bottom:919.853067pt;}
.yd{bottom:925.187733pt;}
.ye2{bottom:925.195733pt;}
.y32{bottom:925.221733pt;}
.y149{bottom:925.228400pt;}
.yc1{bottom:925.242400pt;}
.y10b{bottom:925.251600pt;}
.y16f{bottom:928.960400pt;}
.y51{bottom:943.853067pt;}
.yc{bottom:943.853733pt;}
.y96{bottom:943.857733pt;}
.y31{bottom:943.887733pt;}
.y148{bottom:943.890400pt;}
.yc0{bottom:943.904400pt;}
.y10a{bottom:943.913600pt;}
.yb{bottom:962.519733pt;}
.y147{bottom:962.552400pt;}
.y30{bottom:962.553733pt;}
.ybf{bottom:962.566400pt;}
.y109{bottom:962.575600pt;}
.y50{bottom:970.340933pt;}
.ye1{bottom:1054.567600pt;}
.y16b{bottom:1055.433067pt;}
.y4f{bottom:1055.853067pt;}
.y17e{bottom:1057.474000pt;}
.y131{bottom:1057.474800pt;}
.h12{height:26.338667pt;}
.ha{height:39.146667pt;}
.hd{height:39.466667pt;}
.hf{height:40.152000pt;}
.he{height:40.208000pt;}
.h8{height:41.434667pt;}
.h11{height:41.515283pt;}
.h7{height:46.016000pt;}
.hc{height:48.746667pt;}
.hb{height:62.293333pt;}
.h10{height:62.634667pt;}
.h9{height:63.422400pt;}
.h4{height:77.866667pt;}
.h3{height:78.933333pt;}
.h5{height:161.813333pt;}
.h2{height:273.532416pt;}
.h6{height:605.866667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x1{left:55.275600pt;}
.x3{left:56.264533pt;}
.x4{left:75.590533pt;}
.x2{left:198.425200pt;}
.x5{left:415.749200pt;}
.xa{left:430.868533pt;}
.x6{left:869.291333pt;}
.x8{left:877.553333pt;}
.x9{left:888.433333pt;}
.x7{left:1209.449333pt;}
.xb{left:1224.555333pt;}
}




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