
    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_2dfe5929fe4e3c2d2b093fc5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f4139a46d4398812ad98ef05.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9fedfb2659d1dce397d3005a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2119840b7275425a85c972f9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.727000;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_6727f2dd98c8cbec75eb5939.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_902351dc2420a26ebb27729a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6f49d6341a26b0427dee2e70.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf45e08a3aaac6cf70e3b109.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.920000;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_dbb7b10e43dd5514ffbef960.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c3d6145e1529312da8a98ed3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.773000;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_26e695a9d192f18152441de4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.850000;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_2f911d10819d9b59deae28fb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_32350a685ff7464b1eaf2a22.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.693000;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_c912d821696b58874a69dd80.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.918000;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);}
.v1{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:6.972000px;}
.v3{vertical-align:10.758000px;}
.v9{vertical-align:17.730000px;}
.v8{vertical-align:39.654000px;}
.vb{vertical-align:43.764000px;}
.vc{vertical-align:47.820000px;}
.v4{vertical-align:49.200000px;}
.v6{vertical-align:52.800000px;}
.v7{vertical-align:58.584000px;}
.v2{vertical-align:69.342000px;}
.v5{vertical-align:125.526000px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.001114px;}
.ls2b{letter-spacing:0.001289px;}
.ls8{letter-spacing:0.001473px;}
.ls1e{letter-spacing:0.002012px;}
.ls3{letter-spacing:0.002759px;}
.ls30{letter-spacing:0.002877px;}
.lsc{letter-spacing:0.003471px;}
.lsa{letter-spacing:0.003744px;}
.ls6{letter-spacing:0.003848px;}
.ls9{letter-spacing:0.003962px;}
.ls19{letter-spacing:0.409114px;}
.ls11{letter-spacing:0.415114px;}
.ls16{letter-spacing:1.946534px;}
.ls18{letter-spacing:1.952534px;}
.ls10{letter-spacing:2.569240px;}
.ls2d{letter-spacing:2.573587px;}
.ls32{letter-spacing:2.579587px;}
.ls1a{letter-spacing:3.899724px;}
.ls14{letter-spacing:3.905724px;}
.ls2{letter-spacing:4.173471px;}
.ls27{letter-spacing:4.179471px;}
.ls2a{letter-spacing:5.011059px;}
.lsf{letter-spacing:7.493566px;}
.ls15{letter-spacing:11.954759px;}
.ls2f{letter-spacing:14.521240px;}
.ls1d{letter-spacing:14.942915px;}
.ls2c{letter-spacing:14.947289px;}
.ls38{letter-spacing:15.602759px;}
.lse{letter-spacing:15.935518px;}
.ls20{letter-spacing:15.937473px;}
.ls1f{letter-spacing:15.938759px;}
.ls31{letter-spacing:18.930499px;}
.ls22{letter-spacing:19.921473px;}
.ls1c{letter-spacing:19.922759px;}
.lsd{letter-spacing:19.925518px;}
.ls35{letter-spacing:19.927473px;}
.ls39{letter-spacing:23.407139px;}
.ls28{letter-spacing:23.408759px;}
.ls34{letter-spacing:23.414759px;}
.ls3b{letter-spacing:23.708759px;}
.ls29{letter-spacing:25.462477px;}
.ls37{letter-spacing:27.115240px;}
.lsb{letter-spacing:27.260759px;}
.ls3a{letter-spacing:27.614759px;}
.ls7{letter-spacing:29.912759px;}
.ls4{letter-spacing:30.992759px;}
.ls5{letter-spacing:30.997473px;}
.ls26{letter-spacing:31.218000px;}
.ls36{letter-spacing:32.033566px;}
.ls33{letter-spacing:33.774499px;}
.ls25{letter-spacing:34.391566px;}
.ls0{letter-spacing:35.117518px;}
.ls12{letter-spacing:35.863114px;}
.ls13{letter-spacing:35.863473px;}
.ls24{letter-spacing:37.152000px;}
.ls23{letter-spacing:37.799566px;}
.ls2e{letter-spacing:38.749059px;}
.ls21{letter-spacing:70.231114px;}
.ls1b{letter-spacing:551.863114px;}
.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;}
}
.ws4f{word-spacing:-47.324343px;}
.ws2c{word-spacing:-45.664082px;}
.ws1c{word-spacing:-35.119596px;}
.ws3a{word-spacing:-33.756703px;}
.ws36{word-spacing:-33.684972px;}
.ws3d{word-spacing:-25.722808px;}
.ws0{word-spacing:-23.245313px;}
.ws35{word-spacing:-22.207094px;}
.ws8a{word-spacing:-21.985613px;}
.ws5a{word-spacing:-19.553925px;}
.ws5b{word-spacing:-19.509754px;}
.ws9f{word-spacing:-19.482194px;}
.ws27{word-spacing:-19.367325px;}
.ws8b{word-spacing:-19.123538px;}
.ws16{word-spacing:-19.051807px;}
.wsa0{word-spacing:-17.861069px;}
.ws8f{word-spacing:-17.760645px;}
.wsaa{word-spacing:-17.115064px;}
.wsa7{word-spacing:-16.971602px;}
.wsa9{word-spacing:-16.899871px;}
.ws7e{word-spacing:-16.756408px;}
.ws2{word-spacing:-16.756378px;}
.ws90{word-spacing:-16.282982px;}
.ws1{word-spacing:-16.139475px;}
.wsb{word-spacing:-15.905468px;}
.wsab{word-spacing:-15.709133px;}
.wsf{word-spacing:-15.608709px;}
.wsa8{word-spacing:-15.565670px;}
.ws25{word-spacing:-15.458074px;}
.ws47{word-spacing:-15.250053px;}
.ws56{word-spacing:-14.819666px;}
.ws9{word-spacing:-14.465467px;}
.ws76{word-spacing:-14.389279px;}
.ws3e{word-spacing:-14.102354px;}
.ws62{word-spacing:-13.958892px;}
.ws14{word-spacing:-13.887160px;}
.ws9e{word-spacing:-13.628928px;}
.ws26{word-spacing:-13.456773px;}
.ws21{word-spacing:-13.449600px;}
.ws44{word-spacing:-13.448623px;}
.ws39{word-spacing:-13.139069px;}
.ws8e{word-spacing:-12.882924px;}
.ws6{word-spacing:-12.829102px;}
.ws79{word-spacing:-12.804019px;}
.ws7c{word-spacing:-12.739461px;}
.ws6d{word-spacing:-12.660557px;}
.wsc{word-spacing:-12.501829px;}
.ws88{word-spacing:-12.445363px;}
.ws17{word-spacing:-12.380805px;}
.ws1d{word-spacing:-12.237343px;}
.ws84{word-spacing:-12.014976px;}
.ws5f{word-spacing:-11.743223px;}
.ws12{word-spacing:-11.735224px;}
.ws45{word-spacing:-11.712315px;}
.ws3c{word-spacing:-11.706457px;}
.ws53{word-spacing:-11.677753px;}
.ws22{word-spacing:-11.663493px;}
.ws1b{word-spacing:-11.591762px;}
.ws72{word-spacing:-11.448300px;}
.ws73{word-spacing:-11.424315px;}
.ws67{word-spacing:-11.376568px;}
.ws97{word-spacing:-11.233106px;}
.ws7a{word-spacing:-11.161375px;}
.ws80{word-spacing:-11.082470px;}
.ws8{word-spacing:-11.061827px;}
.ws6e{word-spacing:-11.017912px;}
.ws3f{word-spacing:-10.946181px;}
.wsd{word-spacing:-10.930918px;}
.ws89{word-spacing:-10.874450px;}
.ws38{word-spacing:-10.802719px;}
.ws91{word-spacing:-10.759680px;}
.ws54{word-spacing:-10.589835px;}
.ws55{word-spacing:-10.587525px;}
.ws85{word-spacing:-10.515794px;}
.ws28{word-spacing:-10.372332px;}
.ws98{word-spacing:-10.329293px;}
.ws7b{word-spacing:-10.300600px;}
.ws37{word-spacing:-10.085407px;}
.ws41{word-spacing:-10.038593px;}
.ws42{word-spacing:-10.019990px;}
.ws94{word-spacing:-9.970637px;}
.ws6a{word-spacing:-9.798482px;}
.ws81{word-spacing:-9.726751px;}
.ws7{word-spacing:-9.687281px;}
.ws69{word-spacing:-9.511557px;}
.ws70{word-spacing:-9.360922px;}
.wsa{word-spacing:-9.294553px;}
.ws74{word-spacing:-9.289190px;}
.ws61{word-spacing:-9.224632px;}
.wsac{word-spacing:-9.081170px;}
.ws11{word-spacing:-9.009439px;}
.ws43{word-spacing:-8.722514px;}
.ws6b{word-spacing:-8.643610px;}
.ws10{word-spacing:-8.435589px;}
.wsad{word-spacing:-8.320819px;}
.ws59{word-spacing:-8.220396px;}
.ws71{word-spacing:-8.148664px;}
.ws75{word-spacing:-8.076933px;}
.ws77{word-spacing:-7.998029px;}
.ws31{word-spacing:-7.865750px;}
.ws32{word-spacing:-7.861740px;}
.ws6c{word-spacing:-7.507415px;}
.ws1a{word-spacing:-7.503084px;}
.ws57{word-spacing:-7.287890px;}
.ws5d{word-spacing:-7.216159px;}
.ws7d{word-spacing:-7.144428px;}
.ws78{word-spacing:-7.000965px;}
.ws99{word-spacing:-6.857503px;}
.ws9a{word-spacing:-6.312346px;}
.ws23{word-spacing:-6.133018px;}
.ws4a{word-spacing:-5.853266px;}
.ws15{word-spacing:-5.781535px;}
.wsa1{word-spacing:-5.566341px;}
.ws82{word-spacing:-5.415706px;}
.ws24{word-spacing:-5.351148px;}
.ws2d{word-spacing:-5.228087px;}
.ws2b{word-spacing:-5.207685px;}
.ws9b{word-spacing:-5.135954px;}
.wsa2{word-spacing:-5.092915px;}
.ws9d{word-spacing:-5.064223px;}
.wsae{word-spacing:-4.920760px;}
.ws68{word-spacing:-4.783413px;}
.ws83{word-spacing:-4.777298px;}
.ws9c{word-spacing:-4.662528px;}
.ws5c{word-spacing:-4.633836px;}
.wsaf{word-spacing:-4.519066px;}
.ws2a{word-spacing:-4.346911px;}
.wsa5{word-spacing:-4.275180px;}
.ws92{word-spacing:-4.131717px;}
.ws60{word-spacing:-4.123413px;}
.ws18{word-spacing:-3.988255px;}
.wsa6{word-spacing:-3.945216px;}
.ws93{word-spacing:-3.730022px;}
.ws13{word-spacing:-3.701330px;}
.ws86{word-spacing:-3.263770px;}
.ws29{word-spacing:-3.199212px;}
.ws95{word-spacing:-2.912287px;}
.ws87{word-spacing:-2.840556px;}
.ws96{word-spacing:-2.654054px;}
.ws49{word-spacing:-2.410168px;}
.ws5e{word-spacing:-2.338437px;}
.ws66{word-spacing:-2.051512px;}
.ws1f{word-spacing:-1.972608px;}
.ws20{word-spacing:-1.764588px;}
.ws58{word-spacing:-1.047276px;}
.ws64{word-spacing:-0.903813px;}
.ws1e{word-spacing:-0.688620px;}
.ws2e{word-spacing:-0.071731px;}
.ws4{word-spacing:-0.065455px;}
.ws5{word-spacing:-0.047821px;}
.ws7f{word-spacing:-0.002077px;}
.ws19{word-spacing:0.000000px;}
.ws48{word-spacing:0.530811px;}
.ws3{word-spacing:1.047274px;}
.ws65{word-spacing:1.750241px;}
.ws8d{word-spacing:2.682747px;}
.ws8c{word-spacing:3.120307px;}
.ws30{word-spacing:11.907379px;}
.ws63{word-spacing:12.442587px;}
.wsa4{word-spacing:14.274509px;}
.ws52{word-spacing:14.892151px;}
.ws50{word-spacing:14.898151px;}
.wsa3{word-spacing:15.522632px;}
.ws4c{word-spacing:18.864579px;}
.ws4b{word-spacing:18.885942px;}
.ws2f{word-spacing:19.829272px;}
.ws3b{word-spacing:19.835272px;}
.ws4e{word-spacing:22.842579px;}
.ws51{word-spacing:22.843146px;}
.ws4d{word-spacing:22.869942px;}
.ws34{word-spacing:22.871451px;}
.ws33{word-spacing:26.351451px;}
.ws46{word-spacing:26.357451px;}
.ws40{word-spacing:26.358403px;}
.ws6f{word-spacing:48.418425px;}
.wse{word-spacing:58.101975px;}
._1{margin-left:-11.653650px;}
._17{margin-left:-9.709486px;}
._2{margin-left:-8.091257px;}
._1d{margin-left:-6.742733px;}
._b{margin-left:-5.528677px;}
._0{margin-left:-3.843225px;}
._3{margin-left:-2.668393px;}
._5{margin-left:-1.093010px;}
._4{width:1.832729px;}
._7{width:3.000656px;}
._19{width:4.373075px;}
._23{width:5.574699px;}
._18{width:13.224840px;}
._1b{width:18.108571px;}
._a{width:19.882953px;}
._22{width:21.553283px;}
._9{width:24.202957px;}
._1c{width:26.690277px;}
._8{width:29.242961px;}
._15{width:30.314049px;}
._e{width:31.698892px;}
._6{width:32.742545px;}
._c{width:33.905483px;}
._10{width:35.148288px;}
._12{width:36.875212px;}
._11{width:37.905454px;}
._d{width:39.758798px;}
._1e{width:41.451001px;}
._14{width:43.938993px;}
._1f{width:45.482950px;}
._20{width:49.391313px;}
._13{width:51.214583px;}
._24{width:57.925786px;}
._1a{width:58.986359px;}
._21{width:60.043891px;}
._f{width:96.836850px;}
._16{width:116.203950px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs6{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y21{bottom:61.467000px;}
.y81{bottom:106.299000px;}
.ya0{bottom:113.622000px;}
.y41{bottom:118.602000px;}
.ybd{bottom:125.638500px;}
.y80{bottom:127.968000px;}
.y20{bottom:128.307000px;}
.y9f{bottom:135.289500px;}
.ybc{bottom:147.307500px;}
.y7f{bottom:149.637000px;}
.y1f{bottom:149.974500px;}
.y40{bottom:155.215500px;}
.y9e{bottom:156.958500px;}
.yde{bottom:166.672500px;}
.ybb{bottom:168.976500px;}
.y1e{bottom:183.225000px;}
.ydd{bottom:188.341500px;}
.y7e{bottom:189.064500px;}
.yba{bottom:190.645500px;}
.y9d{bottom:193.572000px;}
.y3f{bottom:194.817000px;}
.y9c{bottom:215.241000px;}
.yb9{bottom:223.896000px;}
.ydc{bottom:224.953500px;}
.y5e{bottom:230.608500px;}
.y3e{bottom:234.418500px;}
.y1d{bottom:235.218000px;}
.y9b{bottom:236.908500px;}
.ydb{bottom:246.622500px;}
.y7d{bottom:248.272500px;}
.y5d{bottom:252.277500px;}
.y3d{bottom:256.087500px;}
.y1c{bottom:256.887000px;}
.y7c{bottom:269.941500px;}
.y9a{bottom:270.159000px;}
.y5c{bottom:273.946500px;}
.yb8{bottom:275.887500px;}
.y1b{bottom:278.556000px;}
.yda{bottom:283.236000px;}
.yb7{bottom:297.556500px;}
.y3c{bottom:297.930000px;}
.yd9{bottom:304.903500px;}
.y7b{bottom:305.215500px;}
.y5b{bottom:313.372500px;}
.y1a{bottom:315.168000px;}
.y99{bottom:322.152000px;}
.y7a{bottom:326.883000px;}
.yb6{bottom:334.170000px;}
.y19{bottom:336.837000px;}
.y3b{bottom:337.531500px;}
.yd8{bottom:341.517000px;}
.y98{bottom:343.821000px;}
.yb5{bottom:355.837500px;}
.y3a{bottom:359.200500px;}
.y79{bottom:359.479500px;}
.y97{bottom:365.490000px;}
.y5a{bottom:373.273500px;}
.y18{bottom:373.449000px;}
.yd7{bottom:378.129000px;}
.y39{bottom:380.869500px;}
.y78{bottom:392.074500px;}
.yb4{bottom:392.451000px;}
.y59{bottom:394.942500px;}
.y17{bottom:395.118000px;}
.yd6{bottom:399.798000px;}
.y96{bottom:402.102000px;}
.y38{bottom:414.120000px;}
.y95{bottom:423.771000px;}
.y77{bottom:427.348500px;}
.y58{bottom:431.554500px;}
.y16{bottom:431.731500px;}
.yd5{bottom:436.411500px;}
.y76{bottom:449.017500px;}
.yb3{bottom:450.732000px;}
.y15{bottom:453.400500px;}
.y94{bottom:457.021500px;}
.yd4{bottom:458.079000px;}
.y37{bottom:466.111500px;}
.y57{bottom:468.168000px;}
.yb2{bottom:472.401000px;}
.y75{bottom:481.612500px;}
.y36{bottom:487.780500px;}
.y56{bottom:489.837000px;}
.y14{bottom:490.012500px;}
.yd3{bottom:494.692500px;}
.y74{bottom:503.281500px;}
.yb1{bottom:505.651500px;}
.y93{bottom:509.013000px;}
.y35{bottom:509.449500px;}
.y13{bottom:511.681500px;}
.yd2{bottom:516.361500px;}
.y73{bottom:524.950500px;}
.y55{bottom:526.449000px;}
.y92{bottom:530.682000px;}
.y34{bottom:531.118500px;}
.y12{bottom:533.350500px;}
.y72{bottom:546.619500px;}
.y54{bottom:548.118000px;}
.yd1{bottom:552.973500px;}
.y11{bottom:555.018000px;}
.yb0{bottom:557.643000px;}
.y91{bottom:570.109500px;}
.y33{bottom:570.546000px;}
.yd0{bottom:574.642500px;}
.yaf{bottom:579.312000px;}
.y71{bottom:579.870000px;}
.y53{bottom:581.368500px;}
.y10{bottom:594.445500px;}
.ycf{bottom:611.256000px;}
.yae{bottom:615.925500px;}
.y90{bottom:630.010500px;}
.y32{bottom:630.445500px;}
.y70{bottom:631.170000px;}
.yce{bottom:632.923500px;}
.y52{bottom:633.360000px;}
.yad{bottom:637.594500px;}
.y8f{bottom:651.678000px;}
.y6f{bottom:652.839000px;}
.yf{bottom:654.346500px;}
.y51{bottom:655.029000px;}
.y31{bottom:667.059000px;}
.ycd{bottom:669.537000px;}
.y8e{bottom:673.347000px;}
.yac{bottom:674.206500px;}
.ye{bottom:674.670000px;}
.y6e{bottom:688.113000px;}
.y30{bottom:688.728000px;}
.ycc{bottom:691.206000px;}
.yd{bottom:694.993500px;}
.y8d{bottom:695.016000px;}
.yab{bottom:695.875500px;}
.y50{bottom:703.489500px;}
.y4e{bottom:707.731500px;}
.y6d{bottom:709.780500px;}
.yc{bottom:715.317000px;}
.y4c{bottom:716.698500px;}
.y2f{bottom:725.340000px;}
.ycb{bottom:727.818000px;}
.y8c{bottom:728.266500px;}
.y4f{bottom:729.637500px;}
.yaa{bottom:732.487500px;}
.y4d{bottom:734.631000px;}
.yb{bottom:735.642000px;}
.y6c{bottom:742.377000px;}
.yca{bottom:749.487000px;}
.ya9{bottom:754.156500px;}
.ya{bottom:755.965500px;}
.y2e{bottom:761.952000px;}
.y4b{bottom:771.991500px;}
.y6b{bottom:774.972000px;}
.y9{bottom:776.289000px;}
.y8b{bottom:780.259500px;}
.yc9{bottom:786.099000px;}
.ya8{bottom:787.407000px;}
.y8{bottom:796.612500px;}
.y2d{bottom:798.565500px;}
.y8a{bottom:801.927000px;}
.yc8{bottom:807.768000px;}
.y4a{bottom:808.603500px;}
.y6a{bottom:810.246000px;}
.y7{bottom:816.936000px;}
.y2c{bottom:820.234500px;}
.y89{bottom:823.596000px;}
.y6{bottom:837.261000px;}
.ya7{bottom:839.400000px;}
.yc7{bottom:844.381500px;}
.y49{bottom:845.217000px;}
.y88{bottom:845.265000px;}
.y69{bottom:845.520000px;}
.y2b{bottom:856.846500px;}
.ya6{bottom:861.069000px;}
.yc6{bottom:866.050500px;}
.y87{bottom:866.934000px;}
.y5{bottom:867.603000px;}
.y48{bottom:876.997500px;}
.y68{bottom:878.115000px;}
.ya5{bottom:882.736500px;}
.y2a{bottom:890.097000px;}
.y86{bottom:900.184500px;}
.y47{bottom:901.429500px;}
.yc5{bottom:902.662500px;}
.ya4{bottom:904.405500px;}
.y67{bottom:906.277500px;}
.y66{bottom:910.711500px;}
.yc4{bottom:924.331500px;}
.y4{bottom:933.691500px;}
.y46{bottom:936.796500px;}
.y65{bottom:941.551500px;}
.y29{bottom:942.090000px;}
.ya3{bottom:943.833000px;}
.y64{bottom:945.984000px;}
.y85{bottom:952.177500px;}
.yc3{bottom:960.943500px;}
.y28{bottom:963.759000px;}
.y45{bottom:970.047000px;}
.y84{bottom:973.845000px;}
.y3{bottom:975.528000px;}
.y63{bottom:981.258000px;}
.yc2{bottom:982.612500px;}
.y27{bottom:1000.371000px;}
.ya2{bottom:1003.734000px;}
.y83{bottom:1010.458500px;}
.y62{bottom:1013.854500px;}
.yc1{bottom:1019.226000px;}
.y26{bottom:1022.040000px;}
.ya1{bottom:1025.401500px;}
.y2{bottom:1028.764500px;}
.yc0{bottom:1040.893500px;}
.y44{bottom:1043.709000px;}
.y82{bottom:1047.070500px;}
.y61{bottom:1048.768500px;}
.y25{bottom:1058.652000px;}
.y43{bottom:1065.378000px;}
.y1{bottom:1066.125000px;}
.ybf{bottom:1077.507000px;}
.y24{bottom:1080.321000px;}
.y60{bottom:1083.684000px;}
.ybe{bottom:1099.176000px;}
.y42{bottom:1101.990000px;}
.y5f{bottom:1105.353000px;}
.y23{bottom:1116.934500px;}
.y22{bottom:1138.602000px;}
.hc{height:2.391024px;}
.h4{height:45.687311px;}
.h5{height:49.090950px;}
.h9{height:50.570496px;}
.h7{height:53.798400px;}
.h11{height:61.551470px;}
.he{height:61.557470px;}
.h3{height:64.557900px;}
.h10{height:71.528400px;}
.h12{height:71.534400px;}
.h8{height:71.733024px;}
.h6{height:77.469300px;}
.hf{height:79.629450px;}
.hd{height:85.461470px;}
.h2{height:92.981250px;}
.ha{height:102.998400px;}
.hb{height:127.917024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:106.299000px;}
.x18{left:115.078500px;}
.x1{left:125.301000px;}
.x9{left:127.759500px;}
.xa{left:132.637500px;}
.x19{left:142.393500px;}
.x7{left:150.196500px;}
.x6{left:174.742500px;}
.x14{left:223.939500px;}
.x16{left:232.099500px;}
.x15{left:277.206000px;}
.xf{left:304.537500px;}
.x17{left:306.166500px;}
.xc{left:334.030500px;}
.xd{left:342.813000px;}
.xe{left:344.170500px;}
.x13{left:354.195000px;}
.x4{left:356.245500px;}
.x10{left:358.239000px;}
.x3{left:366.693000px;}
.x11{left:371.521500px;}
.x2{left:382.470000px;}
.x5{left:410.457000px;}
.xb{left:442.066500px;}
.x12{left:500.709000px;}
@media print{
.v1{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:6.197333pt;}
.v3{vertical-align:9.562667pt;}
.v9{vertical-align:15.760000pt;}
.v8{vertical-align:35.248000pt;}
.vb{vertical-align:38.901333pt;}
.vc{vertical-align:42.506667pt;}
.v4{vertical-align:43.733333pt;}
.v6{vertical-align:46.933333pt;}
.v7{vertical-align:52.074667pt;}
.v2{vertical-align:61.637333pt;}
.v5{vertical-align:111.578667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000990pt;}
.ls2b{letter-spacing:0.001146pt;}
.ls8{letter-spacing:0.001309pt;}
.ls1e{letter-spacing:0.001788pt;}
.ls3{letter-spacing:0.002452pt;}
.ls30{letter-spacing:0.002557pt;}
.lsc{letter-spacing:0.003086pt;}
.lsa{letter-spacing:0.003328pt;}
.ls6{letter-spacing:0.003420pt;}
.ls9{letter-spacing:0.003521pt;}
.ls19{letter-spacing:0.363657pt;}
.ls11{letter-spacing:0.368990pt;}
.ls16{letter-spacing:1.730253pt;}
.ls18{letter-spacing:1.735586pt;}
.ls10{letter-spacing:2.283769pt;}
.ls2d{letter-spacing:2.287633pt;}
.ls32{letter-spacing:2.292966pt;}
.ls1a{letter-spacing:3.466421pt;}
.ls14{letter-spacing:3.471754pt;}
.ls2{letter-spacing:3.709752pt;}
.ls27{letter-spacing:3.715086pt;}
.ls2a{letter-spacing:4.454275pt;}
.lsf{letter-spacing:6.660948pt;}
.ls15{letter-spacing:10.626452pt;}
.ls2f{letter-spacing:12.907769pt;}
.ls1d{letter-spacing:13.282591pt;}
.ls2c{letter-spacing:13.286479pt;}
.ls38{letter-spacing:13.869119pt;}
.lse{letter-spacing:14.164905pt;}
.ls20{letter-spacing:14.166642pt;}
.ls1f{letter-spacing:14.167786pt;}
.ls31{letter-spacing:16.827110pt;}
.ls22{letter-spacing:17.707976pt;}
.ls1c{letter-spacing:17.709119pt;}
.lsd{letter-spacing:17.711572pt;}
.ls35{letter-spacing:17.713309pt;}
.ls39{letter-spacing:20.806345pt;}
.ls28{letter-spacing:20.807786pt;}
.ls34{letter-spacing:20.813119pt;}
.ls3b{letter-spacing:21.074452pt;}
.ls29{letter-spacing:22.633313pt;}
.ls37{letter-spacing:24.102436pt;}
.lsb{letter-spacing:24.231786pt;}
.ls3a{letter-spacing:24.546452pt;}
.ls7{letter-spacing:26.589119pt;}
.ls4{letter-spacing:27.549119pt;}
.ls5{letter-spacing:27.553309pt;}
.ls26{letter-spacing:27.749333pt;}
.ls36{letter-spacing:28.474281pt;}
.ls33{letter-spacing:30.021777pt;}
.ls25{letter-spacing:30.570281pt;}
.ls0{letter-spacing:31.215572pt;}
.ls12{letter-spacing:31.878323pt;}
.ls13{letter-spacing:31.878642pt;}
.ls24{letter-spacing:33.024000pt;}
.ls23{letter-spacing:33.599614pt;}
.ls2e{letter-spacing:34.443608pt;}
.ls21{letter-spacing:62.427657pt;}
.ls1b{letter-spacing:490.544990pt;}
.ws4f{word-spacing:-42.066082pt;}
.ws2c{word-spacing:-40.590295pt;}
.ws1c{word-spacing:-31.217418pt;}
.ws3a{word-spacing:-30.005958pt;}
.ws36{word-spacing:-29.942197pt;}
.ws3d{word-spacing:-22.864719pt;}
.ws0{word-spacing:-20.662500pt;}
.ws35{word-spacing:-19.739639pt;}
.ws8a{word-spacing:-19.542767pt;}
.ws5a{word-spacing:-17.381267pt;}
.ws5b{word-spacing:-17.342003pt;}
.ws9f{word-spacing:-17.317506pt;}
.ws27{word-spacing:-17.215400pt;}
.ws8b{word-spacing:-16.998700pt;}
.ws16{word-spacing:-16.934939pt;}
.wsa0{word-spacing:-15.876506pt;}
.ws8f{word-spacing:-15.787240pt;}
.wsaa{word-spacing:-15.213391pt;}
.wsa7{word-spacing:-15.085868pt;}
.wsa9{word-spacing:-15.022107pt;}
.ws7e{word-spacing:-14.894585pt;}
.ws2{word-spacing:-14.894558pt;}
.ws90{word-spacing:-14.473762pt;}
.ws1{word-spacing:-14.346200pt;}
.wsb{word-spacing:-14.138194pt;}
.wsab{word-spacing:-13.963674pt;}
.wsf{word-spacing:-13.874408pt;}
.wsa8{word-spacing:-13.836151pt;}
.ws25{word-spacing:-13.740510pt;}
.ws47{word-spacing:-13.555603pt;}
.ws56{word-spacing:-13.173036pt;}
.ws9{word-spacing:-12.858193pt;}
.ws76{word-spacing:-12.790470pt;}
.ws3e{word-spacing:-12.535426pt;}
.ws62{word-spacing:-12.407904pt;}
.ws14{word-spacing:-12.344143pt;}
.ws9e{word-spacing:-12.114603pt;}
.ws26{word-spacing:-11.961576pt;}
.ws21{word-spacing:-11.955200pt;}
.ws44{word-spacing:-11.954331pt;}
.ws39{word-spacing:-11.679172pt;}
.ws8e{word-spacing:-11.451488pt;}
.ws6{word-spacing:-11.403646pt;}
.ws79{word-spacing:-11.381350pt;}
.ws7c{word-spacing:-11.323965pt;}
.ws6d{word-spacing:-11.253828pt;}
.wsc{word-spacing:-11.112737pt;}
.ws88{word-spacing:-11.062545pt;}
.ws17{word-spacing:-11.005160pt;}
.ws1d{word-spacing:-10.877638pt;}
.ws84{word-spacing:-10.679979pt;}
.ws5f{word-spacing:-10.438420pt;}
.ws12{word-spacing:-10.431311pt;}
.ws45{word-spacing:-10.410947pt;}
.ws3c{word-spacing:-10.405740pt;}
.ws53{word-spacing:-10.380225pt;}
.ws22{word-spacing:-10.367549pt;}
.ws1b{word-spacing:-10.303788pt;}
.ws72{word-spacing:-10.176266pt;}
.ws73{word-spacing:-10.154947pt;}
.ws67{word-spacing:-10.112505pt;}
.ws97{word-spacing:-9.984983pt;}
.ws7a{word-spacing:-9.921222pt;}
.ws80{word-spacing:-9.851085pt;}
.ws8{word-spacing:-9.832735pt;}
.ws6e{word-spacing:-9.793700pt;}
.ws3f{word-spacing:-9.729939pt;}
.wsd{word-spacing:-9.716372pt;}
.ws89{word-spacing:-9.666178pt;}
.ws38{word-spacing:-9.602417pt;}
.ws91{word-spacing:-9.564160pt;}
.ws54{word-spacing:-9.413187pt;}
.ws55{word-spacing:-9.411133pt;}
.ws85{word-spacing:-9.347372pt;}
.ws28{word-spacing:-9.219850pt;}
.ws98{word-spacing:-9.181594pt;}
.ws7b{word-spacing:-9.156089pt;}
.ws37{word-spacing:-8.964806pt;}
.ws41{word-spacing:-8.923194pt;}
.ws42{word-spacing:-8.906658pt;}
.ws94{word-spacing:-8.862788pt;}
.ws6a{word-spacing:-8.709762pt;}
.ws81{word-spacing:-8.646001pt;}
.ws7{word-spacing:-8.610916pt;}
.ws69{word-spacing:-8.454717pt;}
.ws70{word-spacing:-8.320819pt;}
.wsa{word-spacing:-8.261825pt;}
.ws74{word-spacing:-8.257058pt;}
.ws61{word-spacing:-8.199673pt;}
.wsac{word-spacing:-8.072151pt;}
.ws11{word-spacing:-8.008390pt;}
.ws43{word-spacing:-7.753346pt;}
.ws6b{word-spacing:-7.683209pt;}
.ws10{word-spacing:-7.498301pt;}
.wsad{word-spacing:-7.396284pt;}
.ws59{word-spacing:-7.307018pt;}
.ws71{word-spacing:-7.243257pt;}
.ws75{word-spacing:-7.179496pt;}
.ws77{word-spacing:-7.109359pt;}
.ws31{word-spacing:-6.991778pt;}
.ws32{word-spacing:-6.988213pt;}
.ws6c{word-spacing:-6.673258pt;}
.ws1a{word-spacing:-6.669408pt;}
.ws57{word-spacing:-6.478124pt;}
.ws5d{word-spacing:-6.414363pt;}
.ws7d{word-spacing:-6.350602pt;}
.ws78{word-spacing:-6.223080pt;}
.ws99{word-spacing:-6.095558pt;}
.ws9a{word-spacing:-5.610974pt;}
.ws23{word-spacing:-5.451571pt;}
.ws4a{word-spacing:-5.202903pt;}
.ws15{word-spacing:-5.139142pt;}
.wsa1{word-spacing:-4.947859pt;}
.ws82{word-spacing:-4.813961pt;}
.ws24{word-spacing:-4.756576pt;}
.ws2d{word-spacing:-4.647188pt;}
.ws2b{word-spacing:-4.629053pt;}
.ws9b{word-spacing:-4.565292pt;}
.wsa2{word-spacing:-4.527036pt;}
.ws9d{word-spacing:-4.501531pt;}
.wsae{word-spacing:-4.374009pt;}
.ws68{word-spacing:-4.251923pt;}
.ws83{word-spacing:-4.246487pt;}
.ws9c{word-spacing:-4.144469pt;}
.ws5c{word-spacing:-4.118965pt;}
.wsaf{word-spacing:-4.016947pt;}
.ws2a{word-spacing:-3.863921pt;}
.wsa5{word-spacing:-3.800160pt;}
.ws92{word-spacing:-3.672637pt;}
.ws60{word-spacing:-3.665256pt;}
.ws18{word-spacing:-3.545115pt;}
.wsa6{word-spacing:-3.506859pt;}
.ws93{word-spacing:-3.315575pt;}
.ws13{word-spacing:-3.290071pt;}
.ws86{word-spacing:-2.901129pt;}
.ws29{word-spacing:-2.843744pt;}
.ws95{word-spacing:-2.588699pt;}
.ws87{word-spacing:-2.524938pt;}
.ws96{word-spacing:-2.359159pt;}
.ws49{word-spacing:-2.142372pt;}
.ws5e{word-spacing:-2.078611pt;}
.ws66{word-spacing:-1.823567pt;}
.ws1f{word-spacing:-1.753429pt;}
.ws20{word-spacing:-1.568522pt;}
.ws58{word-spacing:-0.930912pt;}
.ws64{word-spacing:-0.803389pt;}
.ws1e{word-spacing:-0.612106pt;}
.ws2e{word-spacing:-0.063761pt;}
.ws4{word-spacing:-0.058182pt;}
.ws5{word-spacing:-0.042507pt;}
.ws7f{word-spacing:-0.001847pt;}
.ws19{word-spacing:0.000000pt;}
.ws48{word-spacing:0.471832pt;}
.ws3{word-spacing:0.930910pt;}
.ws65{word-spacing:1.555770pt;}
.ws8d{word-spacing:2.384664pt;}
.ws8c{word-spacing:2.773606pt;}
.ws30{word-spacing:10.584337pt;}
.ws63{word-spacing:11.060077pt;}
.wsa4{word-spacing:12.688452pt;}
.ws52{word-spacing:13.237467pt;}
.ws50{word-spacing:13.242801pt;}
.wsa3{word-spacing:13.797895pt;}
.ws4c{word-spacing:16.768515pt;}
.ws4b{word-spacing:16.787504pt;}
.ws2f{word-spacing:17.626020pt;}
.ws3b{word-spacing:17.631353pt;}
.ws4e{word-spacing:20.304515pt;}
.ws51{word-spacing:20.305018pt;}
.ws4d{word-spacing:20.328837pt;}
.ws34{word-spacing:20.330178pt;}
.ws33{word-spacing:23.423512pt;}
.ws46{word-spacing:23.428845pt;}
.ws40{word-spacing:23.429692pt;}
.ws6f{word-spacing:43.038600pt;}
.wse{word-spacing:51.646200pt;}
._1{margin-left:-10.358800pt;}
._17{margin-left:-8.630654pt;}
._2{margin-left:-7.192228pt;}
._1d{margin-left:-5.993540pt;}
._b{margin-left:-4.914380pt;}
._0{margin-left:-3.416200pt;}
._3{margin-left:-2.371905pt;}
._5{margin-left:-0.971564pt;}
._4{width:1.629092pt;}
._7{width:2.667250pt;}
._19{width:3.887177pt;}
._23{width:4.955288pt;}
._18{width:11.755413pt;}
._1b{width:16.096508pt;}
._a{width:17.673736pt;}
._22{width:19.158474pt;}
._9{width:21.513739pt;}
._1c{width:23.724691pt;}
._8{width:25.993743pt;}
._15{width:26.945821pt;}
._e{width:28.176793pt;}
._6{width:29.104485pt;}
._c{width:30.138207pt;}
._10{width:31.242923pt;}
._12{width:32.777966pt;}
._11{width:33.693737pt;}
._d{width:35.341154pt;}
._1e{width:36.845334pt;}
._14{width:39.056882pt;}
._1f{width:40.429289pt;}
._20{width:43.903389pt;}
._13{width:45.524074pt;}
._24{width:51.489588pt;}
._1a{width:52.432319pt;}
._21{width:53.372348pt;}
._f{width:86.077200pt;}
._16{width:103.292400pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:54.637333pt;}
.y81{bottom:94.488000pt;}
.ya0{bottom:100.997333pt;}
.y41{bottom:105.424000pt;}
.ybd{bottom:111.678667pt;}
.y80{bottom:113.749333pt;}
.y20{bottom:114.050667pt;}
.y9f{bottom:120.257333pt;}
.ybc{bottom:130.940000pt;}
.y7f{bottom:133.010667pt;}
.y1f{bottom:133.310667pt;}
.y40{bottom:137.969333pt;}
.y9e{bottom:139.518667pt;}
.yde{bottom:148.153333pt;}
.ybb{bottom:150.201333pt;}
.y1e{bottom:162.866667pt;}
.ydd{bottom:167.414667pt;}
.y7e{bottom:168.057333pt;}
.yba{bottom:169.462667pt;}
.y9d{bottom:172.064000pt;}
.y3f{bottom:173.170667pt;}
.y9c{bottom:191.325333pt;}
.yb9{bottom:199.018667pt;}
.ydc{bottom:199.958667pt;}
.y5e{bottom:204.985333pt;}
.y3e{bottom:208.372000pt;}
.y1d{bottom:209.082667pt;}
.y9b{bottom:210.585333pt;}
.ydb{bottom:219.220000pt;}
.y7d{bottom:220.686667pt;}
.y5d{bottom:224.246667pt;}
.y3d{bottom:227.633333pt;}
.y1c{bottom:228.344000pt;}
.y7c{bottom:239.948000pt;}
.y9a{bottom:240.141333pt;}
.y5c{bottom:243.508000pt;}
.yb8{bottom:245.233333pt;}
.y1b{bottom:247.605333pt;}
.yda{bottom:251.765333pt;}
.yb7{bottom:264.494667pt;}
.y3c{bottom:264.826667pt;}
.yd9{bottom:271.025333pt;}
.y7b{bottom:271.302667pt;}
.y5b{bottom:278.553333pt;}
.y1a{bottom:280.149333pt;}
.y99{bottom:286.357333pt;}
.y7a{bottom:290.562667pt;}
.yb6{bottom:297.040000pt;}
.y19{bottom:299.410667pt;}
.y3b{bottom:300.028000pt;}
.yd8{bottom:303.570667pt;}
.y98{bottom:305.618667pt;}
.yb5{bottom:316.300000pt;}
.y3a{bottom:319.289333pt;}
.y79{bottom:319.537333pt;}
.y97{bottom:324.880000pt;}
.y5a{bottom:331.798667pt;}
.y18{bottom:331.954667pt;}
.yd7{bottom:336.114667pt;}
.y39{bottom:338.550667pt;}
.y78{bottom:348.510667pt;}
.yb4{bottom:348.845333pt;}
.y59{bottom:351.060000pt;}
.y17{bottom:351.216000pt;}
.yd6{bottom:355.376000pt;}
.y96{bottom:357.424000pt;}
.y38{bottom:368.106667pt;}
.y95{bottom:376.685333pt;}
.y77{bottom:379.865333pt;}
.y58{bottom:383.604000pt;}
.y16{bottom:383.761333pt;}
.yd5{bottom:387.921333pt;}
.y76{bottom:399.126667pt;}
.yb3{bottom:400.650667pt;}
.y15{bottom:403.022667pt;}
.y94{bottom:406.241333pt;}
.yd4{bottom:407.181333pt;}
.y37{bottom:414.321333pt;}
.y57{bottom:416.149333pt;}
.yb2{bottom:419.912000pt;}
.y75{bottom:428.100000pt;}
.y36{bottom:433.582667pt;}
.y56{bottom:435.410667pt;}
.y14{bottom:435.566667pt;}
.yd3{bottom:439.726667pt;}
.y74{bottom:447.361333pt;}
.yb1{bottom:449.468000pt;}
.y93{bottom:452.456000pt;}
.y35{bottom:452.844000pt;}
.y13{bottom:454.828000pt;}
.yd2{bottom:458.988000pt;}
.y73{bottom:466.622667pt;}
.y55{bottom:467.954667pt;}
.y92{bottom:471.717333pt;}
.y34{bottom:472.105333pt;}
.y12{bottom:474.089333pt;}
.y72{bottom:485.884000pt;}
.y54{bottom:487.216000pt;}
.yd1{bottom:491.532000pt;}
.y11{bottom:493.349333pt;}
.yb0{bottom:495.682667pt;}
.y91{bottom:506.764000pt;}
.y33{bottom:507.152000pt;}
.yd0{bottom:510.793333pt;}
.yaf{bottom:514.944000pt;}
.y71{bottom:515.440000pt;}
.y53{bottom:516.772000pt;}
.y10{bottom:528.396000pt;}
.ycf{bottom:543.338667pt;}
.yae{bottom:547.489333pt;}
.y90{bottom:560.009333pt;}
.y32{bottom:560.396000pt;}
.y70{bottom:561.040000pt;}
.yce{bottom:562.598667pt;}
.y52{bottom:562.986667pt;}
.yad{bottom:566.750667pt;}
.y8f{bottom:579.269333pt;}
.y6f{bottom:580.301333pt;}
.yf{bottom:581.641333pt;}
.y51{bottom:582.248000pt;}
.y31{bottom:592.941333pt;}
.ycd{bottom:595.144000pt;}
.y8e{bottom:598.530667pt;}
.yac{bottom:599.294667pt;}
.ye{bottom:599.706667pt;}
.y6e{bottom:611.656000pt;}
.y30{bottom:612.202667pt;}
.ycc{bottom:614.405333pt;}
.yd{bottom:617.772000pt;}
.y8d{bottom:617.792000pt;}
.yab{bottom:618.556000pt;}
.y50{bottom:625.324000pt;}
.y4e{bottom:629.094667pt;}
.y6d{bottom:630.916000pt;}
.yc{bottom:635.837333pt;}
.y4c{bottom:637.065333pt;}
.y2f{bottom:644.746667pt;}
.ycb{bottom:646.949333pt;}
.y8c{bottom:647.348000pt;}
.y4f{bottom:648.566667pt;}
.yaa{bottom:651.100000pt;}
.y4d{bottom:653.005333pt;}
.yb{bottom:653.904000pt;}
.y6c{bottom:659.890667pt;}
.yca{bottom:666.210667pt;}
.ya9{bottom:670.361333pt;}
.ya{bottom:671.969333pt;}
.y2e{bottom:677.290667pt;}
.y4b{bottom:686.214667pt;}
.y6b{bottom:688.864000pt;}
.y9{bottom:690.034667pt;}
.y8b{bottom:693.564000pt;}
.yc9{bottom:698.754667pt;}
.ya8{bottom:699.917333pt;}
.y8{bottom:708.100000pt;}
.y2d{bottom:709.836000pt;}
.y8a{bottom:712.824000pt;}
.yc8{bottom:718.016000pt;}
.y4a{bottom:718.758667pt;}
.y6a{bottom:720.218667pt;}
.y7{bottom:726.165333pt;}
.y2c{bottom:729.097333pt;}
.y89{bottom:732.085333pt;}
.y6{bottom:744.232000pt;}
.ya7{bottom:746.133333pt;}
.yc7{bottom:750.561333pt;}
.y49{bottom:751.304000pt;}
.y88{bottom:751.346667pt;}
.y69{bottom:751.573333pt;}
.y2b{bottom:761.641333pt;}
.ya6{bottom:765.394667pt;}
.yc6{bottom:769.822667pt;}
.y87{bottom:770.608000pt;}
.y5{bottom:771.202667pt;}
.y48{bottom:779.553333pt;}
.y68{bottom:780.546667pt;}
.ya5{bottom:784.654667pt;}
.y2a{bottom:791.197333pt;}
.y86{bottom:800.164000pt;}
.y47{bottom:801.270667pt;}
.yc5{bottom:802.366667pt;}
.ya4{bottom:803.916000pt;}
.y67{bottom:805.580000pt;}
.y66{bottom:809.521333pt;}
.yc4{bottom:821.628000pt;}
.y4{bottom:829.948000pt;}
.y46{bottom:832.708000pt;}
.y65{bottom:836.934667pt;}
.y29{bottom:837.413333pt;}
.ya3{bottom:838.962667pt;}
.y64{bottom:840.874667pt;}
.y85{bottom:846.380000pt;}
.yc3{bottom:854.172000pt;}
.y28{bottom:856.674667pt;}
.y45{bottom:862.264000pt;}
.y84{bottom:865.640000pt;}
.y3{bottom:867.136000pt;}
.y63{bottom:872.229333pt;}
.yc2{bottom:873.433333pt;}
.y27{bottom:889.218667pt;}
.ya2{bottom:892.208000pt;}
.y83{bottom:898.185333pt;}
.y62{bottom:901.204000pt;}
.yc1{bottom:905.978667pt;}
.y26{bottom:908.480000pt;}
.ya1{bottom:911.468000pt;}
.y2{bottom:914.457333pt;}
.yc0{bottom:925.238667pt;}
.y44{bottom:927.741333pt;}
.y82{bottom:930.729333pt;}
.y61{bottom:932.238667pt;}
.y25{bottom:941.024000pt;}
.y43{bottom:947.002667pt;}
.y1{bottom:947.666667pt;}
.ybf{bottom:957.784000pt;}
.y24{bottom:960.285333pt;}
.y60{bottom:963.274667pt;}
.ybe{bottom:977.045333pt;}
.y42{bottom:979.546667pt;}
.y5f{bottom:982.536000pt;}
.y23{bottom:992.830667pt;}
.y22{bottom:1012.090667pt;}
.hc{height:2.125355pt;}
.h4{height:40.610943pt;}
.h5{height:43.636400pt;}
.h9{height:44.951552pt;}
.h7{height:47.820800pt;}
.h11{height:54.712418pt;}
.he{height:54.717751pt;}
.h3{height:57.384800pt;}
.h10{height:63.580800pt;}
.h12{height:63.586133pt;}
.h8{height:63.762688pt;}
.h6{height:68.861600pt;}
.hf{height:70.781733pt;}
.hd{height:75.965751pt;}
.h2{height:82.650000pt;}
.ha{height:91.554133pt;}
.hb{height:113.704021pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:94.488000pt;}
.x18{left:102.292000pt;}
.x1{left:111.378667pt;}
.x9{left:113.564000pt;}
.xa{left:117.900000pt;}
.x19{left:126.572000pt;}
.x7{left:133.508000pt;}
.x6{left:155.326667pt;}
.x14{left:199.057333pt;}
.x16{left:206.310667pt;}
.x15{left:246.405333pt;}
.xf{left:270.700000pt;}
.x17{left:272.148000pt;}
.xc{left:296.916000pt;}
.xd{left:304.722667pt;}
.xe{left:305.929333pt;}
.x13{left:314.840000pt;}
.x4{left:316.662667pt;}
.x10{left:318.434667pt;}
.x3{left:325.949333pt;}
.x11{left:330.241333pt;}
.x2{left:339.973333pt;}
.x5{left:364.850667pt;}
.xb{left:392.948000pt;}
.x12{left:445.074667pt;}
}




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