
    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_dbf399bc2fb276ed7b2a7e61.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_c42f1d7dec00b52cdae1bfb9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049805;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_bcedefe1457428ee21809f3a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_65fca96061176522702d0e17.woff')format("woff");}.ff4{font-family:ff4;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_00d6000dd4a81bf7e9c23859.woff')format("woff");}.ff5{font-family:ff5;line-height:0.304000;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_62e891669a54cf7b439b575b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_288c4c777380eba6a96bae62.woff')format("woff");}.ff7{font-family:ff7;line-height:0.930000;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_0a8caf9b81fb8938c7512720.woff')format("woff");}.ff8{font-family:ff8;line-height:0.716000;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_9261fa4e5df8c056ad198740.woff')format("woff");}.ff9{font-family:ff9;line-height:0.699000;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_1ee3601a97117ffb49e3ce9d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.049000;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_8103c93154330a5ff89fc86d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.704200;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_45dc09364f2ad9042f9af567.woff')format("woff");}.ffc{font-family:ffc;line-height:0.688000;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_d0e04a945205ca0be0a4c1d1.woff')format("woff");}.ffd{font-family:ffd;line-height:0.482000;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_ee02f6e48543247e78824a47.woff')format("woff");}.ffe{font-family:ffe;line-height:0.684000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a2862da008c286ba52baa28a.woff')format("woff");}.fff{font-family:fff;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-22.854000px;}
.v3{vertical-align:-19.464000px;}
.v9{vertical-align:-15.402000px;}
.v8{vertical-align:-8.964000px;}
.v5{vertical-align:-2.280000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.v2{vertical-align:26.028000px;}
.v6{vertical-align:29.808000px;}
.v7{vertical-align:45.870000px;}
.lsd{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.000528px;}
.ls6{letter-spacing:0.000540px;}
.ls8{letter-spacing:0.002052px;}
.lsb{letter-spacing:0.004200px;}
.ls16{letter-spacing:0.004560px;}
.ls17{letter-spacing:0.004800px;}
.ls2a{letter-spacing:0.009008px;}
.ls26{letter-spacing:0.021169px;}
.ls23{letter-spacing:0.022916px;}
.ls28{letter-spacing:0.032688px;}
.ls21{letter-spacing:0.038346px;}
.ls31{letter-spacing:0.044159px;}
.ls30{letter-spacing:0.048359px;}
.lsc{letter-spacing:2.991300px;}
.ls3{letter-spacing:2.998923px;}
.ls1{letter-spacing:2.999261px;}
.ls0{letter-spacing:3.005261px;}
.ls22{letter-spacing:7.208222px;}
.ls1d{letter-spacing:11.280540px;}
.ls2f{letter-spacing:11.664540px;}
.lsf{letter-spacing:11.822725px;}
.ls11{letter-spacing:12.072540px;}
.ls18{letter-spacing:12.100560px;}
.ls35{letter-spacing:12.101424px;}
.ls19{letter-spacing:13.142725px;}
.ls36{letter-spacing:13.282560px;}
.ls25{letter-spacing:13.332359px;}
.ls14{letter-spacing:13.530540px;}
.ls1a{letter-spacing:13.668540px;}
.ls1b{letter-spacing:13.674540px;}
.ls2d{letter-spacing:13.936560px;}
.ls2e{letter-spacing:13.942560px;}
.ls1e{letter-spacing:14.214540px;}
.ls5{letter-spacing:14.272560px;}
.lsa{letter-spacing:14.286540px;}
.ls2c{letter-spacing:14.365133px;}
.ls2b{letter-spacing:14.452560px;}
.ls13{letter-spacing:15.402540px;}
.ls12{letter-spacing:15.956725px;}
.ls10{letter-spacing:16.362540px;}
.ls4{letter-spacing:16.444118px;}
.ls20{letter-spacing:16.650359px;}
.ls33{letter-spacing:16.797634px;}
.ls1f{letter-spacing:17.084320px;}
.ls9{letter-spacing:17.738052px;}
.ls15{letter-spacing:17.802540px;}
.ls29{letter-spacing:17.951447px;}
.ls7{letter-spacing:18.042540px;}
.lse{letter-spacing:18.396540px;}
.ls1c{letter-spacing:19.242540px;}
.ls2{letter-spacing:20.933261px;}
.ls34{letter-spacing:29.886528px;}
.ls24{letter-spacing:42.220296px;}
.ls32{letter-spacing:280.970052px;}
.ls27{letter-spacing:976.612296px;}
.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;}
}
.ws35{word-spacing:-59.775600px;}
.wsa{word-spacing:-53.798400px;}
.ws52{word-spacing:-47.774082px;}
.ws27{word-spacing:-47.085594px;}
.ws21{word-spacing:-45.753594px;}
.ws49{word-spacing:-44.750082px;}
.ws76{word-spacing:-43.670082px;}
.ws9e{word-spacing:-43.522906px;}
.ws72{word-spacing:-42.764082px;}
.ws53{word-spacing:-42.446082px;}
.ws9f{word-spacing:-42.177946px;}
.ws26{word-spacing:-42.159594px;}
.ws92{word-spacing:-41.843100px;}
.ws94{word-spacing:-41.693760px;}
.wsaf{word-spacing:-41.692416px;}
.ws40{word-spacing:-40.808082px;}
.ws18{word-spacing:-40.186416px;}
.wse{word-spacing:-40.024416px;}
.ws56{word-spacing:-37.928082px;}
.ws47{word-spacing:-32.852082px;}
.ws2{word-spacing:-29.887800px;}
.wsb{word-spacing:-26.899200px;}
.ws5a{word-spacing:-20.921550px;}
.ws1{word-spacing:-20.921400px;}
.ws4{word-spacing:-20.174400px;}
.ws85{word-spacing:-19.905275px;}
.ws74{word-spacing:-19.128192px;}
.ws8c{word-spacing:-19.068416px;}
.ws8d{word-spacing:-18.769538px;}
.ws4b{word-spacing:-18.709763px;}
.ws59{word-spacing:-18.530436px;}
.ws3c{word-spacing:-18.410885px;}
.ws63{word-spacing:-18.291334px;}
.ws64{word-spacing:-18.112007px;}
.ws73{word-spacing:-18.052231px;}
.ws6{word-spacing:-18.004531px;}
.ws5{word-spacing:-17.932800px;}
.ws77{word-spacing:-17.753353px;}
.ws4c{word-spacing:-17.693578px;}
.ws7b{word-spacing:-17.574026px;}
.ws58{word-spacing:-17.394700px;}
.ws99{word-spacing:-17.376883px;}
.ws79{word-spacing:-17.334924px;}
.ws6f{word-spacing:-17.275148px;}
.ws24{word-spacing:-17.036046px;}
.ws51{word-spacing:-16.976270px;}
.ws83{word-spacing:-16.916495px;}
.ws46{word-spacing:-16.856719px;}
.ws82{word-spacing:-16.677392px;}
.ws2a{word-spacing:-16.617617px;}
.ws2f{word-spacing:-16.557841px;}
.ws43{word-spacing:-16.498066px;}
.wsb1{word-spacing:-16.367222px;}
.wsb2{word-spacing:-16.354714px;}
.ws29{word-spacing:-16.318739px;}
.ws5f{word-spacing:-16.258963px;}
.ws4f{word-spacing:-16.199188px;}
.ws22{word-spacing:-16.079636px;}
.ws25{word-spacing:-16.019861px;}
.wsb7{word-spacing:-15.978125px;}
.ws2b{word-spacing:-15.900310px;}
.ws19{word-spacing:-15.709133px;}
.ws5c{word-spacing:-15.601432px;}
.ws3e{word-spacing:-15.541656px;}
.ws9d{word-spacing:-15.440141px;}
.ws32{word-spacing:-15.422105px;}
.ws50{word-spacing:-15.362329px;}
.ws14{word-spacing:-15.332544px;}
.ws91{word-spacing:-15.302554px;}
.ws75{word-spacing:-15.242778px;}
.wsb5{word-spacing:-15.171149px;}
.wsad{word-spacing:-15.063552px;}
.ws2c{word-spacing:-15.003676px;}
.ws7c{word-spacing:-14.951591px;}
.ws0{word-spacing:-14.943900px;}
.ws2e{word-spacing:-14.884124px;}
.ws6c{word-spacing:-14.824349px;}
.ws70{word-spacing:-14.704798px;}
.ws67{word-spacing:-14.645022px;}
.ws61{word-spacing:-14.525471px;}
.ws20{word-spacing:-14.465695px;}
.ws4d{word-spacing:-14.405920px;}
.wsb3{word-spacing:-14.364173px;}
.ws69{word-spacing:-14.286368px;}
.wsa4{word-spacing:-14.202778px;}
.ws7a{word-spacing:-14.107042px;}
.ws34{word-spacing:-14.047266px;}
.ws1b{word-spacing:-13.987584px;}
.wsa0{word-spacing:-13.933786px;}
.ws62{word-spacing:-13.927715px;}
.wsae{word-spacing:-13.879987px;}
.ws28{word-spacing:-13.808164px;}
.ws68{word-spacing:-13.748388px;}
.ws93{word-spacing:-13.610995px;}
.ws4a{word-spacing:-13.569061px;}
.ws55{word-spacing:-13.509286px;}
.ws1e{word-spacing:-13.503398px;}
.ws7{word-spacing:-13.449600px;}
.ws6e{word-spacing:-13.444378px;}
.ws57{word-spacing:-13.329959px;}
.ws54{word-spacing:-13.270183px;}
.ws13{word-spacing:-13.234406px;}
.ws16{word-spacing:-13.126810px;}
.ws36{word-spacing:-12.971305px;}
.ws5d{word-spacing:-12.851754px;}
.wsa1{word-spacing:-12.804019px;}
.ws65{word-spacing:-12.791978px;}
.wsb0{word-spacing:-12.750221px;}
.ws5e{word-spacing:-12.732203px;}
.wsaa{word-spacing:-12.696422px;}
.ws5b{word-spacing:-12.612652px;}
.ws60{word-spacing:-12.552876px;}
.ws66{word-spacing:-12.433325px;}
.ws17{word-spacing:-12.158438px;}
.ws81{word-spacing:-12.134447px;}
.ws15{word-spacing:-12.104640px;}
.ws3d{word-spacing:-12.074671px;}
.ws38{word-spacing:-12.002971px;}
.wsd{word-spacing:-11.997043px;}
.ws8b{word-spacing:-11.955150px;}
.ws9a{word-spacing:-11.943245px;}
.ws8e{word-spacing:-11.835569px;}
.ws6b{word-spacing:-11.775793px;}
.ws41{word-spacing:-11.716018px;}
.ws48{word-spacing:-11.596466px;}
.ws8f{word-spacing:-11.536691px;}
.wsf{word-spacing:-11.459059px;}
.ws45{word-spacing:-11.417140px;}
.ws7f{word-spacing:-11.405261px;}
.ws4e{word-spacing:-11.297588px;}
.wsc{word-spacing:-11.082470px;}
.ws33{word-spacing:-11.058486px;}
.ws9{word-spacing:-11.028672px;}
.wsb4{word-spacing:-10.974874px;}
.ws7e{word-spacing:-10.921075px;}
.ws7d{word-spacing:-10.867277px;}
.ws71{word-spacing:-10.400954px;}
.ws1a{word-spacing:-10.383091px;}
.ws2d{word-spacing:-10.281403px;}
.ws9b{word-spacing:-10.167898px;}
.ws31{word-spacing:-10.161852px;}
.ws6d{word-spacing:-10.102076px;}
.ws3a{word-spacing:-10.042301px;}
.ws9c{word-spacing:-9.952704px;}
.ws23{word-spacing:-9.862974px;}
.ws37{word-spacing:-9.683647px;}
.wsab{word-spacing:-9.629914px;}
.ws3f{word-spacing:-9.623872px;}
.ws11{word-spacing:-9.522317px;}
.wsa2{word-spacing:-9.468518px;}
.ws3b{word-spacing:-9.444545px;}
.ws12{word-spacing:-9.414720px;}
.wsa8{word-spacing:-9.360922px;}
.wsa7{word-spacing:-9.337267px;}
.ws30{word-spacing:-9.026116px;}
.wsb6{word-spacing:-8.991600px;}
.ws44{word-spacing:-8.727238px;}
.ws84{word-spacing:-8.547911px;}
.ws78{word-spacing:-8.488135px;}
.ws42{word-spacing:-8.249033px;}
.wsa9{word-spacing:-8.177357px;}
.ws10{word-spacing:-8.123558px;}
.ws8a{word-spacing:-7.983673px;}
.wsa5{word-spacing:-7.854566px;}
.wsa3{word-spacing:-7.800768px;}
.ws90{word-spacing:-7.591501px;}
.ws1c{word-spacing:-7.208986px;}
.wsa6{word-spacing:-6.509606px;}
.ws95{word-spacing:-6.402010px;}
.ws97{word-spacing:-5.864026px;}
.ws96{word-spacing:-5.810227px;}
.ws1d{word-spacing:-5.595034px;}
.ws98{word-spacing:-4.519066px;}
.ws3{word-spacing:-2.988452px;}
.ws6a{word-spacing:-2.391024px;}
.ws86{word-spacing:-0.059776px;}
.ws39{word-spacing:0.000000px;}
.wsac{word-spacing:0.430387px;}
.ws8{word-spacing:2.995354px;}
.ws80{word-spacing:29.887800px;}
.ws1f{word-spacing:41.843100px;}
.ws87{word-spacing:114.368114px;}
.ws88{word-spacing:133.120261px;}
.ws89{word-spacing:151.690800px;}
._3{margin-left:-10.329293px;}
._b{margin-left:-7.693171px;}
._1{margin-left:-6.575316px;}
._4{margin-left:-5.448626px;}
._a{margin-left:-3.712090px;}
._0{margin-left:-2.211697px;}
._5{margin-left:-1.104870px;}
._14{width:1.376798px;}
._2{width:2.932752px;}
._25{width:10.172742px;}
._19{width:11.178037px;}
._11{width:12.796416px;}
._c{width:14.701951px;}
._13{width:15.972080px;}
._e{width:17.161690px;}
._8{width:18.399053px;}
._7{width:20.066803px;}
._10{width:21.100787px;}
._d{width:22.164941px;}
._6{width:24.155482px;}
._23{width:25.494970px;}
._f{width:27.114394px;}
._9{width:29.158733px;}
._18{width:30.909988px;}
._24{width:32.219770px;}
._26{width:34.199291px;}
._12{width:35.865360px;}
._15{width:38.615038px;}
._22{width:46.026883px;}
._17{width:59.775600px;}
._27{width:69.995318px;}
._16{width:83.686200px;}
._1b{width:93.010834px;}
._1e{width:144.255914px;}
._20{width:159.297085px;}
._1d{width:162.948286px;}
._1c{width:230.843939px;}
._21{width:237.889942px;}
._1a{width:349.019843px;}
._1f{width:403.697176px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fs1{font-size:41.842800px;}
.fs9{font-size:46.625400px;}
.fs4{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:62.167200px;}
.fs3{font-size:71.731200px;}
.fs2{font-size:80.697600px;}
.fs8{font-size:83.686200px;}
.y0{bottom:0.000000px;}
.y2e{bottom:109.515000px;}
.ycc{bottom:154.347000px;}
.y87{bottom:154.551000px;}
.y2d{bottom:154.917000px;}
.y9e{bottom:156.927000px;}
.y57{bottom:157.249500px;}
.ycb{bottom:170.785500px;}
.y86{bottom:172.483500px;}
.y9d{bottom:179.383500px;}
.y2c{bottom:182.596500px;}
.yca{bottom:187.224000px;}
.y9c{bottom:197.316000px;}
.y2b{bottom:200.529000px;}
.yc9{bottom:211.195500px;}
.y9b{bottom:215.250000px;}
.y2a{bottom:218.461500px;}
.yc8{bottom:227.634000px;}
.y9a{bottom:233.182500px;}
.y29{bottom:236.803500px;}
.yc7{bottom:244.072500px;}
.y99{bottom:251.712000px;}
.y28{bottom:254.737500px;}
.yc6{bottom:260.511000px;}
.y27{bottom:272.670000px;}
.yc5{bottom:276.949500px;}
.y98{bottom:284.178000px;}
.y26{bottom:290.602500px;}
.yc4{bottom:300.922500px;}
.y25{bottom:308.535000px;}
.yc3{bottom:317.359500px;}
.y24{bottom:326.467500px;}
.yc2{bottom:333.798000px;}
.y23{bottom:344.400000px;}
.y56{bottom:349.506000px;}
.yc1{bottom:350.236500px;}
.y97{bottom:352.450500px;}
.y22{bottom:362.742000px;}
.y55{bottom:367.878000px;}
.y96{bottom:370.384500px;}
.yc0{bottom:374.209500px;}
.y21{bottom:380.676000px;}
.y6f{bottom:385.719000px;}
.y54{bottom:385.810500px;}
.y95{bottom:388.317000px;}
.ybf{bottom:390.648000px;}
.y20{bottom:398.608500px;}
.y6e{bottom:403.651500px;}
.y53{bottom:403.744500px;}
.y94{bottom:406.249500px;}
.ybe{bottom:407.086500px;}
.y85{bottom:412.239000px;}
.y1f{bottom:416.541000px;}
.y6d{bottom:421.584000px;}
.y93{bottom:424.182000px;}
.ybd{bottom:431.058000px;}
.y1e{bottom:434.473500px;}
.y52{bottom:437.881500px;}
.y6c{bottom:440.073000px;}
.y83{bottom:440.901000px;}
.y92{bottom:442.114500px;}
.y84{bottom:444.751500px;}
.ybc{bottom:447.496500px;}
.y1d{bottom:452.406000px;}
.y6b{bottom:458.007000px;}
.y91{bottom:460.047000px;}
.y82{bottom:460.156500px;}
.ybb{bottom:463.935000px;}
.y1c{bottom:470.338500px;}
.y6a{bottom:475.939500px;}
.y81{bottom:478.089000px;}
.yba{bottom:480.373500px;}
.y1b{bottom:488.272500px;}
.y51{bottom:490.578000px;}
.y90{bottom:490.891500px;}
.y69{bottom:493.872000px;}
.y80{bottom:496.023000px;}
.yb9{bottom:504.346500px;}
.y1a{bottom:506.205000px;}
.y50{bottom:508.510500px;}
.y8f{bottom:508.824000px;}
.y68{bottom:511.804500px;}
.y7f{bottom:513.955500px;}
.yb8{bottom:520.785000px;}
.y19{bottom:524.137500px;}
.y4f{bottom:526.443000px;}
.y8e{bottom:526.756500px;}
.y67{bottom:529.737000px;}
.y7e{bottom:531.888000px;}
.yb7{bottom:537.223500px;}
.y4e{bottom:544.377000px;}
.y8d{bottom:544.689000px;}
.y66{bottom:547.669500px;}
.y7d{bottom:550.261500px;}
.ye9{bottom:553.605000px;}
.y18{bottom:558.219000px;}
.yb6{bottom:561.195000px;}
.y4d{bottom:562.309500px;}
.y8c{bottom:562.621500px;}
.y65{bottom:566.160000px;}
.y7c{bottom:568.194000px;}
.ye8{bottom:576.021000px;}
.yb5{bottom:577.633500px;}
.y8b{bottom:580.555500px;}
.y4c{bottom:580.681500px;}
.y64{bottom:584.092500px;}
.y7b{bottom:586.126500px;}
.ye7{bottom:592.459500px;}
.y4b{bottom:598.614000px;}
.y17{bottom:601.213500px;}
.y63{bottom:602.025000px;}
.y7a{bottom:604.059000px;}
.yb4{bottom:612.454500px;}
.ye6{bottom:614.875500px;}
.y4a{bottom:616.546500px;}
.y16{bottom:617.652000px;}
.y62{bottom:619.957500px;}
.y79{bottom:622.434000px;}
.ye5{bottom:631.314000px;}
.y8a{bottom:632.973000px;}
.y49{bottom:634.479000px;}
.y61{bottom:637.891500px;}
.y78{bottom:640.366500px;}
.y15{bottom:645.789000px;}
.ye4{bottom:647.752500px;}
.y48{bottom:652.411500px;}
.y77{bottom:658.299000px;}
.y14{bottom:662.227500px;}
.y60{bottom:666.904500px;}
.yb3{bottom:669.574500px;}
.ye3{bottom:670.168500px;}
.y47{bottom:670.345500px;}
.y76{bottom:676.231500px;}
.y13{bottom:678.666000px;}
.ye2{bottom:686.607000px;}
.yb2{bottom:687.507000px;}
.y46{bottom:688.278000px;}
.y75{bottom:694.164000px;}
.y12{bottom:695.104500px;}
.ye1{bottom:703.044000px;}
.yb1{bottom:705.439500px;}
.y89{bottom:706.503000px;}
.y45{bottom:706.650000px;}
.y5f{bottom:709.606500px;}
.y11{bottom:711.541500px;}
.y74{bottom:722.958000px;}
.y88{bottom:724.435500px;}
.y44{bottom:724.582500px;}
.ye0{bottom:725.460000px;}
.y5e{bottom:727.540500px;}
.y10{bottom:727.980000px;}
.yb0{bottom:734.872500px;}
.ydf{bottom:741.898500px;}
.y43{bottom:742.515000px;}
.yf{bottom:744.418500px;}
.y5d{bottom:745.473000px;}
.yde{bottom:758.337000px;}
.y42{bottom:760.447500px;}
.ye{bottom:760.857000px;}
.y5c{bottom:763.962000px;}
.y73{bottom:765.025500px;}
.yd{bottom:777.295500px;}
.yaf{bottom:778.788000px;}
.y41{bottom:778.819500px;}
.ydd{bottom:780.753000px;}
.y5b{bottom:781.894500px;}
.y72{bottom:782.959500px;}
.yc{bottom:793.734000px;}
.yae{bottom:796.720500px;}
.y40{bottom:796.752000px;}
.ydc{bottom:797.191500px;}
.y5a{bottom:799.827000px;}
.y71{bottom:800.892000px;}
.yb{bottom:810.172500px;}
.yad{bottom:814.653000px;}
.y3f{bottom:814.686000px;}
.y59{bottom:817.761000px;}
.ydb{bottom:819.607500px;}
.ya{bottom:826.611000px;}
.yac{bottom:832.585500px;}
.y3e{bottom:832.618500px;}
.yda{bottom:836.046000px;}
.y9{bottom:843.049500px;}
.y70{bottom:849.508500px;}
.yab{bottom:850.519500px;}
.y3d{bottom:850.551000px;}
.yd9{bottom:858.462000px;}
.y8{bottom:859.488000px;}
.y58{bottom:866.608500px;}
.yaa{bottom:868.452000px;}
.y3c{bottom:868.483500px;}
.yd8{bottom:874.900500px;}
.y7{bottom:875.926500px;}
.y3b{bottom:886.416000px;}
.ya9{bottom:887.163000px;}
.yd7{bottom:897.316500px;}
.y3a{bottom:904.348500px;}
.ya8{bottom:905.095500px;}
.yd6{bottom:913.755000px;}
.y39{bottom:922.282500px;}
.ya7{bottom:923.028000px;}
.yd5{bottom:936.171000px;}
.y38{bottom:940.215000px;}
.ya6{bottom:940.960500px;}
.y6{bottom:945.303000px;}
.yd4{bottom:952.609500px;}
.y37{bottom:958.147500px;}
.ya5{bottom:958.893000px;}
.yd3{bottom:969.046500px;}
.y5{bottom:974.206500px;}
.y36{bottom:976.080000px;}
.ya4{bottom:977.604000px;}
.yd2{bottom:991.462500px;}
.y35{bottom:994.012500px;}
.ya3{bottom:995.538000px;}
.yd1{bottom:1007.901000px;}
.y34{bottom:1011.945000px;}
.ya2{bottom:1013.470500px;}
.y4{bottom:1017.952500px;}
.y33{bottom:1029.879000px;}
.yd0{bottom:1030.317000px;}
.ya1{bottom:1031.403000px;}
.y3{bottom:1044.852000px;}
.ycf{bottom:1046.755500px;}
.y32{bottom:1048.249500px;}
.ya0{bottom:1049.335500px;}
.y31{bottom:1066.183500px;}
.y9f{bottom:1067.268000px;}
.yce{bottom:1069.171500px;}
.y30{bottom:1084.116000px;}
.ycd{bottom:1085.610000px;}
.y2f{bottom:1102.048500px;}
.y2{bottom:1118.487000px;}
.y1{bottom:1154.352000px;}
.h6{height:23.850624px;}
.h10{height:34.449916px;}
.h9{height:37.354163px;}
.hc{height:38.884855px;}
.h11{height:39.881633px;}
.hd{height:40.511979px;}
.h2{height:41.504347px;}
.h12{height:41.908954px;}
.h7{height:44.861025px;}
.h8{height:44.867025px;}
.h13{height:44.873025px;}
.hb{height:49.851916px;}
.h4{height:54.691537px;}
.hf{height:55.393958px;}
.h3{height:56.586241px;}
.ha{height:56.717014px;}
.h5{height:59.822700px;}
.he{height:70.795958px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.558500px;}
.x3{left:134.956500px;}
.x8{left:142.503000px;}
.x2{left:145.402500px;}
.x7{left:149.974500px;}
.x11{left:155.194500px;}
.x14{left:157.357500px;}
.x6{left:170.079000px;}
.x13{left:196.087500px;}
.x4{left:202.687500px;}
.x5{left:218.877000px;}
.xd{left:222.273000px;}
.x12{left:255.973500px;}
.xb{left:291.315000px;}
.xa{left:301.674000px;}
.xc{left:350.784000px;}
.xe{left:382.168500px;}
.xf{left:435.591000px;}
.x9{left:443.094000px;}
.x10{left:493.975500px;}
@media print{
.v4{vertical-align:-20.314667pt;}
.v3{vertical-align:-17.301333pt;}
.v9{vertical-align:-13.690667pt;}
.v8{vertical-align:-7.968000pt;}
.v5{vertical-align:-2.026667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.v2{vertical-align:23.136000pt;}
.v6{vertical-align:26.496000pt;}
.v7{vertical-align:40.773333pt;}
.lsd{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.000469pt;}
.ls6{letter-spacing:0.000480pt;}
.ls8{letter-spacing:0.001824pt;}
.lsb{letter-spacing:0.003733pt;}
.ls16{letter-spacing:0.004053pt;}
.ls17{letter-spacing:0.004267pt;}
.ls2a{letter-spacing:0.008007pt;}
.ls26{letter-spacing:0.018817pt;}
.ls23{letter-spacing:0.020370pt;}
.ls28{letter-spacing:0.029056pt;}
.ls21{letter-spacing:0.034085pt;}
.ls31{letter-spacing:0.039252pt;}
.ls30{letter-spacing:0.042986pt;}
.lsc{letter-spacing:2.658933pt;}
.ls3{letter-spacing:2.665709pt;}
.ls1{letter-spacing:2.666010pt;}
.ls0{letter-spacing:2.671343pt;}
.ls22{letter-spacing:6.407309pt;}
.ls1d{letter-spacing:10.027147pt;}
.ls2f{letter-spacing:10.368480pt;}
.lsf{letter-spacing:10.509089pt;}
.ls11{letter-spacing:10.731147pt;}
.ls18{letter-spacing:10.756053pt;}
.ls35{letter-spacing:10.756821pt;}
.ls19{letter-spacing:11.682422pt;}
.ls36{letter-spacing:11.806720pt;}
.ls25{letter-spacing:11.850986pt;}
.ls14{letter-spacing:12.027147pt;}
.ls1a{letter-spacing:12.149813pt;}
.ls1b{letter-spacing:12.155147pt;}
.ls2d{letter-spacing:12.388053pt;}
.ls2e{letter-spacing:12.393387pt;}
.ls1e{letter-spacing:12.635147pt;}
.ls5{letter-spacing:12.686720pt;}
.lsa{letter-spacing:12.699147pt;}
.ls2c{letter-spacing:12.769007pt;}
.ls2b{letter-spacing:12.846720pt;}
.ls13{letter-spacing:13.691147pt;}
.ls12{letter-spacing:14.183756pt;}
.ls10{letter-spacing:14.544480pt;}
.ls4{letter-spacing:14.616994pt;}
.ls20{letter-spacing:14.800319pt;}
.ls33{letter-spacing:14.931230pt;}
.ls1f{letter-spacing:15.186062pt;}
.ls9{letter-spacing:15.767157pt;}
.ls15{letter-spacing:15.824480pt;}
.ls29{letter-spacing:15.956842pt;}
.ls7{letter-spacing:16.037813pt;}
.lse{letter-spacing:16.352480pt;}
.ls1c{letter-spacing:17.104480pt;}
.ls2{letter-spacing:18.607343pt;}
.ls34{letter-spacing:26.565803pt;}
.ls24{letter-spacing:37.529152pt;}
.ls32{letter-spacing:249.751157pt;}
.ls27{letter-spacing:868.099819pt;}
.ws35{word-spacing:-53.133867pt;}
.wsa{word-spacing:-47.820800pt;}
.ws52{word-spacing:-42.465851pt;}
.ws27{word-spacing:-41.853861pt;}
.ws21{word-spacing:-40.669861pt;}
.ws49{word-spacing:-39.777851pt;}
.ws76{word-spacing:-38.817851pt;}
.ws9e{word-spacing:-38.687027pt;}
.ws72{word-spacing:-38.012517pt;}
.ws53{word-spacing:-37.729851pt;}
.ws9f{word-spacing:-37.491507pt;}
.ws26{word-spacing:-37.475195pt;}
.ws92{word-spacing:-37.193867pt;}
.ws94{word-spacing:-37.061120pt;}
.wsaf{word-spacing:-37.059925pt;}
.ws40{word-spacing:-36.273851pt;}
.ws18{word-spacing:-35.721259pt;}
.wse{word-spacing:-35.577259pt;}
.ws56{word-spacing:-33.713851pt;}
.ws47{word-spacing:-29.201851pt;}
.ws2{word-spacing:-26.566933pt;}
.wsb{word-spacing:-23.910400pt;}
.ws5a{word-spacing:-18.596933pt;}
.ws1{word-spacing:-18.596800pt;}
.ws4{word-spacing:-17.932800pt;}
.ws85{word-spacing:-17.693578pt;}
.ws74{word-spacing:-17.002837pt;}
.ws8c{word-spacing:-16.949703pt;}
.ws8d{word-spacing:-16.684034pt;}
.ws4b{word-spacing:-16.630900pt;}
.ws59{word-spacing:-16.471499pt;}
.ws3c{word-spacing:-16.365231pt;}
.ws63{word-spacing:-16.258963pt;}
.ws64{word-spacing:-16.099562pt;}
.ws73{word-spacing:-16.046428pt;}
.ws6{word-spacing:-16.004028pt;}
.ws5{word-spacing:-15.940267pt;}
.ws77{word-spacing:-15.780758pt;}
.ws4c{word-spacing:-15.727625pt;}
.ws7b{word-spacing:-15.621357pt;}
.ws58{word-spacing:-15.461955pt;}
.ws99{word-spacing:-15.446118pt;}
.ws79{word-spacing:-15.408821pt;}
.ws6f{word-spacing:-15.355687pt;}
.ws24{word-spacing:-15.143152pt;}
.ws51{word-spacing:-15.090018pt;}
.ws83{word-spacing:-15.036884pt;}
.ws46{word-spacing:-14.983750pt;}
.ws82{word-spacing:-14.824349pt;}
.ws2a{word-spacing:-14.771215pt;}
.ws2f{word-spacing:-14.718081pt;}
.ws43{word-spacing:-14.664947pt;}
.wsb1{word-spacing:-14.548642pt;}
.wsb2{word-spacing:-14.537523pt;}
.ws29{word-spacing:-14.505546pt;}
.ws5f{word-spacing:-14.452412pt;}
.ws4f{word-spacing:-14.399278pt;}
.ws22{word-spacing:-14.293010pt;}
.ws25{word-spacing:-14.239876pt;}
.wsb7{word-spacing:-14.202778pt;}
.ws2b{word-spacing:-14.133609pt;}
.ws19{word-spacing:-13.963674pt;}
.ws5c{word-spacing:-13.867939pt;}
.ws3e{word-spacing:-13.814805pt;}
.ws9d{word-spacing:-13.724570pt;}
.ws32{word-spacing:-13.708538pt;}
.ws50{word-spacing:-13.655404pt;}
.ws14{word-spacing:-13.628928pt;}
.ws91{word-spacing:-13.602270pt;}
.ws75{word-spacing:-13.549136pt;}
.wsb5{word-spacing:-13.485466pt;}
.wsad{word-spacing:-13.389824pt;}
.ws2c{word-spacing:-13.336601pt;}
.ws7c{word-spacing:-13.290303pt;}
.ws0{word-spacing:-13.283467pt;}
.ws2e{word-spacing:-13.230333pt;}
.ws6c{word-spacing:-13.177199pt;}
.ws70{word-spacing:-13.070931pt;}
.ws67{word-spacing:-13.017797pt;}
.ws61{word-spacing:-12.911530pt;}
.ws20{word-spacing:-12.858396pt;}
.ws4d{word-spacing:-12.805262pt;}
.wsb3{word-spacing:-12.768154pt;}
.ws69{word-spacing:-12.698994pt;}
.wsa4{word-spacing:-12.624691pt;}
.ws7a{word-spacing:-12.539593pt;}
.ws34{word-spacing:-12.486459pt;}
.ws1b{word-spacing:-12.433408pt;}
.wsa0{word-spacing:-12.385587pt;}
.ws62{word-spacing:-12.380191pt;}
.wsae{word-spacing:-12.337766pt;}
.ws28{word-spacing:-12.273923pt;}
.ws68{word-spacing:-12.220789pt;}
.ws93{word-spacing:-12.098662pt;}
.ws4a{word-spacing:-12.061388pt;}
.ws55{word-spacing:-12.008254pt;}
.ws1e{word-spacing:-12.003021pt;}
.ws7{word-spacing:-11.955200pt;}
.ws6e{word-spacing:-11.950558pt;}
.ws57{word-spacing:-11.848852pt;}
.ws54{word-spacing:-11.795718pt;}
.ws13{word-spacing:-11.763917pt;}
.ws16{word-spacing:-11.668275pt;}
.ws36{word-spacing:-11.530049pt;}
.ws5d{word-spacing:-11.423781pt;}
.wsa1{word-spacing:-11.381350pt;}
.ws65{word-spacing:-11.370647pt;}
.wsb0{word-spacing:-11.333530pt;}
.ws5e{word-spacing:-11.317514pt;}
.wsaa{word-spacing:-11.285709pt;}
.ws5b{word-spacing:-11.211246pt;}
.ws60{word-spacing:-11.158112pt;}
.ws66{word-spacing:-11.051844pt;}
.ws17{word-spacing:-10.807501pt;}
.ws81{word-spacing:-10.786175pt;}
.ws15{word-spacing:-10.759680pt;}
.ws3d{word-spacing:-10.733041pt;}
.ws38{word-spacing:-10.669307pt;}
.wsd{word-spacing:-10.664038pt;}
.ws8b{word-spacing:-10.626800pt;}
.ws9a{word-spacing:-10.616218pt;}
.ws8e{word-spacing:-10.520506pt;}
.ws6b{word-spacing:-10.467372pt;}
.ws41{word-spacing:-10.414238pt;}
.ws48{word-spacing:-10.307970pt;}
.ws8f{word-spacing:-10.254836pt;}
.wsf{word-spacing:-10.185830pt;}
.ws45{word-spacing:-10.148569pt;}
.ws7f{word-spacing:-10.138010pt;}
.ws4e{word-spacing:-10.042301pt;}
.wsc{word-spacing:-9.851085pt;}
.ws33{word-spacing:-9.829765pt;}
.ws9{word-spacing:-9.803264pt;}
.wsb4{word-spacing:-9.755443pt;}
.ws7e{word-spacing:-9.707622pt;}
.ws7d{word-spacing:-9.659802pt;}
.ws71{word-spacing:-9.245293pt;}
.ws1a{word-spacing:-9.229414pt;}
.ws2d{word-spacing:-9.139025pt;}
.ws9b{word-spacing:-9.038131pt;}
.ws31{word-spacing:-9.032757pt;}
.ws6d{word-spacing:-8.979623pt;}
.ws3a{word-spacing:-8.926490pt;}
.ws9c{word-spacing:-8.846848pt;}
.ws23{word-spacing:-8.767088pt;}
.ws37{word-spacing:-8.607686pt;}
.wsab{word-spacing:-8.559923pt;}
.ws3f{word-spacing:-8.554553pt;}
.ws11{word-spacing:-8.464282pt;}
.wsa2{word-spacing:-8.416461pt;}
.ws3b{word-spacing:-8.395151pt;}
.ws12{word-spacing:-8.368640pt;}
.wsa8{word-spacing:-8.320819pt;}
.wsa7{word-spacing:-8.299793pt;}
.ws30{word-spacing:-8.023214pt;}
.wsb6{word-spacing:-7.992533pt;}
.ws44{word-spacing:-7.757545pt;}
.ws84{word-spacing:-7.598143pt;}
.ws78{word-spacing:-7.545009pt;}
.ws42{word-spacing:-7.332474pt;}
.wsa9{word-spacing:-7.268762pt;}
.ws10{word-spacing:-7.220941pt;}
.ws8a{word-spacing:-7.096598pt;}
.wsa5{word-spacing:-6.981837pt;}
.wsa3{word-spacing:-6.934016pt;}
.ws90{word-spacing:-6.748001pt;}
.ws1c{word-spacing:-6.407987pt;}
.wsa6{word-spacing:-5.786317pt;}
.ws95{word-spacing:-5.690675pt;}
.ws97{word-spacing:-5.212467pt;}
.ws96{word-spacing:-5.164646pt;}
.ws1d{word-spacing:-4.973363pt;}
.ws98{word-spacing:-4.016947pt;}
.ws3{word-spacing:-2.656402pt;}
.ws6a{word-spacing:-2.125355pt;}
.ws86{word-spacing:-0.053134pt;}
.ws39{word-spacing:0.000000pt;}
.wsac{word-spacing:0.382566pt;}
.ws8{word-spacing:2.662537pt;}
.ws80{word-spacing:26.566933pt;}
.ws1f{word-spacing:37.193867pt;}
.ws87{word-spacing:101.660546pt;}
.ws88{word-spacing:118.329121pt;}
.ws89{word-spacing:134.836267pt;}
._3{margin-left:-9.181594pt;}
._b{margin-left:-6.838374pt;}
._1{margin-left:-5.844725pt;}
._4{margin-left:-4.843223pt;}
._a{margin-left:-3.299635pt;}
._0{margin-left:-1.965953pt;}
._5{margin-left:-0.982107pt;}
._14{width:1.223821pt;}
._2{width:2.606891pt;}
._25{width:9.042437pt;}
._19{width:9.936033pt;}
._11{width:11.374592pt;}
._c{width:13.068401pt;}
._13{width:14.197405pt;}
._e{width:15.254835pt;}
._8{width:16.354714pt;}
._7{width:17.837158pt;}
._10{width:18.756255pt;}
._d{width:19.702170pt;}
._6{width:21.471539pt;}
._23{width:22.662195pt;}
._f{width:24.101683pt;}
._9{width:25.918874pt;}
._18{width:27.475545pt;}
._24{width:28.639795pt;}
._26{width:30.399370pt;}
._12{width:31.880320pt;}
._15{width:34.324478pt;}
._22{width:40.912785pt;}
._17{width:53.133867pt;}
._27{width:62.218061pt;}
._16{width:74.387733pt;}
._1b{width:82.676297pt;}
._1e{width:128.227479pt;}
._20{width:141.597409pt;}
._1d{width:144.842921pt;}
._1c{width:205.194612pt;}
._21{width:211.457726pt;}
._1a{width:310.239860pt;}
._1f{width:358.841934pt;}
.fsa{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fs1{font-size:37.193600pt;}
.fs9{font-size:41.444800pt;}
.fs4{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:55.259733pt;}
.fs3{font-size:63.761067pt;}
.fs2{font-size:71.731200pt;}
.fs8{font-size:74.387733pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:97.346667pt;}
.ycc{bottom:137.197333pt;}
.y87{bottom:137.378667pt;}
.y2d{bottom:137.704000pt;}
.y9e{bottom:139.490667pt;}
.y57{bottom:139.777333pt;}
.ycb{bottom:151.809333pt;}
.y86{bottom:153.318667pt;}
.y9d{bottom:159.452000pt;}
.y2c{bottom:162.308000pt;}
.yca{bottom:166.421333pt;}
.y9c{bottom:175.392000pt;}
.y2b{bottom:178.248000pt;}
.yc9{bottom:187.729333pt;}
.y9b{bottom:191.333333pt;}
.y2a{bottom:194.188000pt;}
.yc8{bottom:202.341333pt;}
.y9a{bottom:207.273333pt;}
.y29{bottom:210.492000pt;}
.yc7{bottom:216.953333pt;}
.y99{bottom:223.744000pt;}
.y28{bottom:226.433333pt;}
.yc6{bottom:231.565333pt;}
.y27{bottom:242.373333pt;}
.yc5{bottom:246.177333pt;}
.y98{bottom:252.602667pt;}
.y26{bottom:258.313333pt;}
.yc4{bottom:267.486667pt;}
.y25{bottom:274.253333pt;}
.yc3{bottom:282.097333pt;}
.y24{bottom:290.193333pt;}
.yc2{bottom:296.709333pt;}
.y23{bottom:306.133333pt;}
.y56{bottom:310.672000pt;}
.yc1{bottom:311.321333pt;}
.y97{bottom:313.289333pt;}
.y22{bottom:322.437333pt;}
.y55{bottom:327.002667pt;}
.y96{bottom:329.230667pt;}
.yc0{bottom:332.630667pt;}
.y21{bottom:338.378667pt;}
.y6f{bottom:342.861333pt;}
.y54{bottom:342.942667pt;}
.y95{bottom:345.170667pt;}
.ybf{bottom:347.242667pt;}
.y20{bottom:354.318667pt;}
.y6e{bottom:358.801333pt;}
.y53{bottom:358.884000pt;}
.y94{bottom:361.110667pt;}
.ybe{bottom:361.854667pt;}
.y85{bottom:366.434667pt;}
.y1f{bottom:370.258667pt;}
.y6d{bottom:374.741333pt;}
.y93{bottom:377.050667pt;}
.ybd{bottom:383.162667pt;}
.y1e{bottom:386.198667pt;}
.y52{bottom:389.228000pt;}
.y6c{bottom:391.176000pt;}
.y83{bottom:391.912000pt;}
.y92{bottom:392.990667pt;}
.y84{bottom:395.334667pt;}
.ybc{bottom:397.774667pt;}
.y1d{bottom:402.138667pt;}
.y6b{bottom:407.117333pt;}
.y91{bottom:408.930667pt;}
.y82{bottom:409.028000pt;}
.ybb{bottom:412.386667pt;}
.y1c{bottom:418.078667pt;}
.y6a{bottom:423.057333pt;}
.y81{bottom:424.968000pt;}
.yba{bottom:426.998667pt;}
.y1b{bottom:434.020000pt;}
.y51{bottom:436.069333pt;}
.y90{bottom:436.348000pt;}
.y69{bottom:438.997333pt;}
.y80{bottom:440.909333pt;}
.yb9{bottom:448.308000pt;}
.y1a{bottom:449.960000pt;}
.y50{bottom:452.009333pt;}
.y8f{bottom:452.288000pt;}
.y68{bottom:454.937333pt;}
.y7f{bottom:456.849333pt;}
.yb8{bottom:462.920000pt;}
.y19{bottom:465.900000pt;}
.y4f{bottom:467.949333pt;}
.y8e{bottom:468.228000pt;}
.y67{bottom:470.877333pt;}
.y7e{bottom:472.789333pt;}
.yb7{bottom:477.532000pt;}
.y4e{bottom:483.890667pt;}
.y8d{bottom:484.168000pt;}
.y66{bottom:486.817333pt;}
.y7d{bottom:489.121333pt;}
.ye9{bottom:492.093333pt;}
.y18{bottom:496.194667pt;}
.yb6{bottom:498.840000pt;}
.y4d{bottom:499.830667pt;}
.y8c{bottom:500.108000pt;}
.y65{bottom:503.253333pt;}
.y7c{bottom:505.061333pt;}
.ye8{bottom:512.018667pt;}
.yb5{bottom:513.452000pt;}
.y8b{bottom:516.049333pt;}
.y4c{bottom:516.161333pt;}
.y64{bottom:519.193333pt;}
.y7b{bottom:521.001333pt;}
.ye7{bottom:526.630667pt;}
.y4b{bottom:532.101333pt;}
.y17{bottom:534.412000pt;}
.y63{bottom:535.133333pt;}
.y7a{bottom:536.941333pt;}
.yb4{bottom:544.404000pt;}
.ye6{bottom:546.556000pt;}
.y4a{bottom:548.041333pt;}
.y16{bottom:549.024000pt;}
.y62{bottom:551.073333pt;}
.y79{bottom:553.274667pt;}
.ye5{bottom:561.168000pt;}
.y8a{bottom:562.642667pt;}
.y49{bottom:563.981333pt;}
.y61{bottom:567.014667pt;}
.y78{bottom:569.214667pt;}
.y15{bottom:574.034667pt;}
.ye4{bottom:575.780000pt;}
.y48{bottom:579.921333pt;}
.y77{bottom:585.154667pt;}
.y14{bottom:588.646667pt;}
.y60{bottom:592.804000pt;}
.yb3{bottom:595.177333pt;}
.ye3{bottom:595.705333pt;}
.y47{bottom:595.862667pt;}
.y76{bottom:601.094667pt;}
.y13{bottom:603.258667pt;}
.ye2{bottom:610.317333pt;}
.yb2{bottom:611.117333pt;}
.y46{bottom:611.802667pt;}
.y75{bottom:617.034667pt;}
.y12{bottom:617.870667pt;}
.ye1{bottom:624.928000pt;}
.yb1{bottom:627.057333pt;}
.y89{bottom:628.002667pt;}
.y45{bottom:628.133333pt;}
.y5f{bottom:630.761333pt;}
.y11{bottom:632.481333pt;}
.y74{bottom:642.629333pt;}
.y88{bottom:643.942667pt;}
.y44{bottom:644.073333pt;}
.ye0{bottom:644.853333pt;}
.y5e{bottom:646.702667pt;}
.y10{bottom:647.093333pt;}
.yb0{bottom:653.220000pt;}
.ydf{bottom:659.465333pt;}
.y43{bottom:660.013333pt;}
.yf{bottom:661.705333pt;}
.y5d{bottom:662.642667pt;}
.yde{bottom:674.077333pt;}
.y42{bottom:675.953333pt;}
.ye{bottom:676.317333pt;}
.y5c{bottom:679.077333pt;}
.y73{bottom:680.022667pt;}
.yd{bottom:690.929333pt;}
.yaf{bottom:692.256000pt;}
.y41{bottom:692.284000pt;}
.ydd{bottom:694.002667pt;}
.y5b{bottom:695.017333pt;}
.y72{bottom:695.964000pt;}
.yc{bottom:705.541333pt;}
.yae{bottom:708.196000pt;}
.y40{bottom:708.224000pt;}
.ydc{bottom:708.614667pt;}
.y5a{bottom:710.957333pt;}
.y71{bottom:711.904000pt;}
.yb{bottom:720.153333pt;}
.yad{bottom:724.136000pt;}
.y3f{bottom:724.165333pt;}
.y59{bottom:726.898667pt;}
.ydb{bottom:728.540000pt;}
.ya{bottom:734.765333pt;}
.yac{bottom:740.076000pt;}
.y3e{bottom:740.105333pt;}
.yda{bottom:743.152000pt;}
.y9{bottom:749.377333pt;}
.y70{bottom:755.118667pt;}
.yab{bottom:756.017333pt;}
.y3d{bottom:756.045333pt;}
.yd9{bottom:763.077333pt;}
.y8{bottom:763.989333pt;}
.y58{bottom:770.318667pt;}
.yaa{bottom:771.957333pt;}
.y3c{bottom:771.985333pt;}
.yd8{bottom:777.689333pt;}
.y7{bottom:778.601333pt;}
.y3b{bottom:787.925333pt;}
.ya9{bottom:788.589333pt;}
.yd7{bottom:797.614667pt;}
.y3a{bottom:803.865333pt;}
.ya8{bottom:804.529333pt;}
.yd6{bottom:812.226667pt;}
.y39{bottom:819.806667pt;}
.ya7{bottom:820.469333pt;}
.yd5{bottom:832.152000pt;}
.y38{bottom:835.746667pt;}
.ya6{bottom:836.409333pt;}
.y6{bottom:840.269333pt;}
.yd4{bottom:846.764000pt;}
.y37{bottom:851.686667pt;}
.ya5{bottom:852.349333pt;}
.yd3{bottom:861.374667pt;}
.y5{bottom:865.961333pt;}
.y36{bottom:867.626667pt;}
.ya4{bottom:868.981333pt;}
.yd2{bottom:881.300000pt;}
.y35{bottom:883.566667pt;}
.ya3{bottom:884.922667pt;}
.yd1{bottom:895.912000pt;}
.y34{bottom:899.506667pt;}
.ya2{bottom:900.862667pt;}
.y4{bottom:904.846667pt;}
.y33{bottom:915.448000pt;}
.yd0{bottom:915.837333pt;}
.ya1{bottom:916.802667pt;}
.y3{bottom:928.757333pt;}
.ycf{bottom:930.449333pt;}
.y32{bottom:931.777333pt;}
.ya0{bottom:932.742667pt;}
.y31{bottom:947.718667pt;}
.y9f{bottom:948.682667pt;}
.yce{bottom:950.374667pt;}
.y30{bottom:963.658667pt;}
.ycd{bottom:964.986667pt;}
.y2f{bottom:979.598667pt;}
.y2{bottom:994.210667pt;}
.y1{bottom:1026.090667pt;}
.h6{height:21.200555pt;}
.h10{height:30.622148pt;}
.h9{height:33.203700pt;}
.hc{height:34.564316pt;}
.h11{height:35.450341pt;}
.hd{height:36.010648pt;}
.h2{height:36.892753pt;}
.h12{height:37.252403pt;}
.h7{height:39.876467pt;}
.h8{height:39.881800pt;}
.h13{height:39.887133pt;}
.hb{height:44.312815pt;}
.h4{height:48.614700pt;}
.hf{height:49.239074pt;}
.h3{height:50.298881pt;}
.ha{height:50.415124pt;}
.h5{height:53.175733pt;}
.he{height:62.929741pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.385333pt;}
.x3{left:119.961333pt;}
.x8{left:126.669333pt;}
.x2{left:129.246667pt;}
.x7{left:133.310667pt;}
.x11{left:137.950667pt;}
.x14{left:139.873333pt;}
.x6{left:151.181333pt;}
.x13{left:174.300000pt;}
.x4{left:180.166667pt;}
.x5{left:194.557333pt;}
.xd{left:197.576000pt;}
.x12{left:227.532000pt;}
.xb{left:258.946667pt;}
.xa{left:268.154667pt;}
.xc{left:311.808000pt;}
.xe{left:339.705333pt;}
.xf{left:387.192000pt;}
.x9{left:393.861333pt;}
.x10{left:439.089333pt;}
}




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