
    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_6f1970107c8b7b54b9a81aa9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.870000;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_7ce028145ba77f0e2c6da5d8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_d8fab49fa6dda046790bbc5d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_b4f3e70a5212c6222067f7ad.woff')format("woff");}.ff4{font-family:ff4;line-height:0.678000;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_9b055496aca3779a2029ee0a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.504000;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_cd8561c187850d3118f7bd46.woff')format("woff");}.ff6{font-family:ff6;line-height:0.648000;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_24f9712c068f2c2de8630060.woff')format("woff");}.ff7{font-family:ff7;line-height:0.729000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a6eccf36483045ff3729191a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.662000;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_94c85c6e8bd3f1b04d62b056.woff')format("woff");}.ff9{font-family:ff9;line-height:0.525000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-14.268000px;}
.v4{vertical-align:-8.970000px;}
.v1{vertical-align:-7.470000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.358000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.001037px;}
.lsc{letter-spacing:0.001142px;}
.ls13{letter-spacing:0.001478px;}
.ls18{letter-spacing:0.001829px;}
.lsb{letter-spacing:0.002850px;}
.ls5{letter-spacing:0.003943px;}
.ls14{letter-spacing:0.004718px;}
.lsf{letter-spacing:2.985857px;}
.lsd{letter-spacing:2.991857px;}
.ls10{letter-spacing:5.062457px;}
.ls0{letter-spacing:12.258391px;}
.ls12{letter-spacing:12.628942px;}
.ls4{letter-spacing:13.032587px;}
.ls8{letter-spacing:13.284098px;}
.ls9{letter-spacing:15.621857px;}
.ls19{letter-spacing:15.784718px;}
.ls17{letter-spacing:15.785214px;}
.lsa{letter-spacing:15.786322px;}
.ls15{letter-spacing:15.786786px;}
.ls11{letter-spacing:15.787069px;}
.ls1b{letter-spacing:15.790718px;}
.ls1a{letter-spacing:15.791214px;}
.ls7{letter-spacing:19.259381px;}
.ls2{letter-spacing:32.724098px;}
.ls3{letter-spacing:32.730098px;}
.ls1c{letter-spacing:32.731478px;}
.lse{letter-spacing:41.039214px;}
.ls16{letter-spacing:41.044718px;}
.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;}
}
.wse{word-spacing:-57.623678px;}
.ws9{word-spacing:-34.574438px;}
.wsa{word-spacing:-31.589165px;}
.wsb{word-spacing:-31.583165px;}
.ws3{word-spacing:-22.129075px;}
.ws17{word-spacing:-15.786786px;}
.ws6{word-spacing:-12.629429px;}
.ws7{word-spacing:-9.472072px;}
.ws2{word-spacing:-4.318822px;}
.ws19{word-spacing:-0.056787px;}
.ws5{word-spacing:-0.045430px;}
.ws1f{word-spacing:-0.004431px;}
.wsf{word-spacing:-0.003984px;}
.ws11{word-spacing:-0.003075px;}
.ws4{word-spacing:-0.002788px;}
.ws10{word-spacing:-0.002343px;}
.ws1e{word-spacing:-0.002190px;}
.ws15{word-spacing:-0.001482px;}
.ws0{word-spacing:0.000000px;}
.ws13{word-spacing:0.000498px;}
.ws14{word-spacing:3.154171px;}
.ws12{word-spacing:3.156000px;}
.ws16{word-spacing:3.747942px;}
.ws8{word-spacing:6.147642px;}
.ws1d{word-spacing:12.580106px;}
.ws1b{word-spacing:12.580570px;}
.ws1c{word-spacing:12.581362px;}
.wsd{word-spacing:12.583999px;}
.ws1a{word-spacing:12.586164px;}
.wsc{word-spacing:15.724878px;}
.ws1{word-spacing:15.729999px;}
.ws18{word-spacing:25.213428px;}
._6{margin-left:-5.394765px;}
._0{margin-left:-3.180072px;}
._2{margin-left:-1.635456px;}
._1{width:1.226592px;}
._3{width:2.771208px;}
._4{width:4.154683px;}
._9{width:5.335694px;}
._7{width:7.268946px;}
._5{width:10.744091px;}
._8{width:15.900350px;}
._a{width:19.534728px;}
._c{width:28.129843px;}
._b{width:41.020591px;}
._d{width:48.534924px;}
.fc7{color:rgb(229,178,0);}
.fc6{color:rgb(0,206,0);}
.fc5{color:rgb(206,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(51,51,178);}
.fc1{color:rgb(0,0,206);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:17.627844px;}
.fs0{font-size:22.714800px;}
.fs8{font-size:28.393200px;}
.fs4{font-size:34.072200px;}
.fs7{font-size:35.865600px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:56.787000px;}
.fs9{font-size:59.775600px;}
.fs1{font-size:81.772800px;}
.y0{bottom:0.000000px;}
.yb{bottom:1.535654px;}
.ya{bottom:5.316000px;}
.yc{bottom:7.204662px;}
.y99{bottom:20.610000px;}
.y5c{bottom:22.834500px;}
.y80{bottom:27.954000px;}
.y56{bottom:28.192500px;}
.y7a{bottom:30.219000px;}
.y49{bottom:31.647000px;}
.y9d{bottom:37.369500px;}
.y5b{bottom:44.776500px;}
.y98{bottom:45.642000px;}
.y79{bottom:48.153000px;}
.y70{bottom:48.967500px;}
.y9{bottom:49.480500px;}
.y2f{bottom:50.955000px;}
.y7f{bottom:52.986000px;}
.y48{bottom:53.292000px;}
.y55{bottom:55.090500px;}
.y11{bottom:55.495500px;}
.y9c{bottom:57.169500px;}
.y36{bottom:59.412000px;}
.y8{bottom:63.702000px;}
.y2e{bottom:65.175000px;}
.y97{bottom:65.442000px;}
.y58{bottom:66.718500px;}
.yb0{bottom:67.324500px;}
.y6f{bottom:68.769000px;}
.y7e{bottom:72.786000px;}
.y47{bottom:73.092000px;}
.y78{bottom:73.150500px;}
.y8b{bottom:74.320500px;}
.y10{bottom:75.295500px;}
.y35{bottom:77.344500px;}
.y7{bottom:81.634500px;}
.y54{bottom:81.990000px;}
.y9b{bottom:82.200000px;}
.yaf{bottom:87.124500px;}
.y57{bottom:88.662000px;}
.y96{bottom:90.474000px;}
.y6{bottom:93.627000px;}
.y6e{bottom:93.799500px;}
.y9a{bottom:102.001500px;}
.yf{bottom:102.195000px;}
.y34{bottom:102.702000px;}
.y53{bottom:108.889500px;}
.y95{bottom:110.274000px;}
.y77{bottom:113.031000px;}
.y6d{bottom:113.601000px;}
.y5{bottom:117.499500px;}
.y89{bottom:118.461000px;}
.yae{bottom:119.581500px;}
.y33{bottom:122.502000px;}
.y1e{bottom:129.580500px;}
.y76{bottom:130.963500px;}
.y52{bottom:133.920000px;}
.yad{bottom:137.514000px;}
.y88{bottom:138.261000px;}
.y6c{bottom:138.631500px;}
.y4{bottom:141.372000px;}
.y32{bottom:147.534000px;}
.y1d{bottom:149.382000px;}
.y46{bottom:152.980500px;}
.yac{bottom:160.644000px;}
.y31{bottom:167.334000px;}
.y87{bottom:168.489000px;}
.y6b{bottom:172.956000px;}
.y3{bottom:175.278000px;}
.y1c{bottom:176.280000px;}
.y45{bottom:176.493000px;}
.yab{bottom:178.576500px;}
.y86{bottom:188.290500px;}
.y30{bottom:192.366000px;}
.y6a{bottom:192.756000px;}
.y4c{bottom:195.217500px;}
.y4a{bottom:195.219000px;}
.yaa{bottom:198.376500px;}
.y2{bottom:198.853500px;}
.y1b{bottom:201.312000px;}
.y44{bottom:201.523500px;}
.y4b{bottom:202.794000px;}
.y85{bottom:218.518500px;}
.y69{bottom:219.655500px;}
.y20{bottom:219.963000px;}
.y1a{bottom:221.112000px;}
.y43{bottom:221.325000px;}
.ya2{bottom:225.649500px;}
.y1{bottom:232.209000px;}
.y1f{bottom:234.183000px;}
.y26{bottom:237.826500px;}
.y84{bottom:238.320000px;}
.ya1{bottom:243.582000px;}
.y68{bottom:244.687500px;}
.y3b{bottom:246.355500px;}
.y25{bottom:257.628000px;}
.ya0{bottom:261.516000px;}
.y3a{bottom:266.157000px;}
.y83{bottom:268.548000px;}
.y5e{bottom:280.879500px;}
.y9f{bottom:282.451500px;}
.y24{bottom:282.658500px;}
.y82{bottom:288.349500px;}
.y39{bottom:291.187500px;}
.y23{bottom:302.460000px;}
.y5d{bottom:305.910000px;}
.y38{bottom:309.120000px;}
.y9e{bottom:309.676500px;}
.y81{bottom:318.577500px;}
.y37{bottom:328.921500px;}
.ye{bottom:366.811500px;}
.yd{bottom:398.166000px;}
.y90{bottom:3020.648685px;}
.y5a{bottom:3022.873185px;}
.y7d{bottom:3027.992685px;}
.y51{bottom:3028.231185px;}
.y75{bottom:3030.257685px;}
.y42{bottom:3031.685685px;}
.y94{bottom:3037.408185px;}
.y59{bottom:3044.815185px;}
.y8f{bottom:3045.680685px;}
.y74{bottom:3048.191685px;}
.y67{bottom:3049.006185px;}
.y22{bottom:3050.993685px;}
.y7c{bottom:3053.024685px;}
.y41{bottom:3053.330685px;}
.y50{bottom:3055.129185px;}
.y19{bottom:3055.534185px;}
.y93{bottom:3057.208185px;}
.y2d{bottom:3059.450685px;}
.y21{bottom:3065.213685px;}
.y8e{bottom:3065.480685px;}
.ya9{bottom:3067.363185px;}
.y66{bottom:3068.807685px;}
.y7b{bottom:3072.824685px;}
.y40{bottom:3073.130685px;}
.y73{bottom:3073.189185px;}
.y8a{bottom:3074.359185px;}
.y18{bottom:3075.334185px;}
.y2c{bottom:3077.383185px;}
.y4f{bottom:3082.028685px;}
.y92{bottom:3082.238685px;}
.ya8{bottom:3087.163185px;}
.y8d{bottom:3090.512685px;}
.y65{bottom:3093.838185px;}
.y91{bottom:3102.040185px;}
.y17{bottom:3102.233685px;}
.y2b{bottom:3102.740685px;}
.y4e{bottom:3108.928185px;}
.y8c{bottom:3110.312685px;}
.y72{bottom:3113.069685px;}
.y64{bottom:3113.639685px;}
.ya7{bottom:3119.620185px;}
.y2a{bottom:3122.540685px;}
.y16{bottom:3129.619185px;}
.y71{bottom:3131.002185px;}
.y4d{bottom:3133.958685px;}
.ya6{bottom:3137.552685px;}
.y63{bottom:3138.670185px;}
.y29{bottom:3147.572685px;}
.y15{bottom:3149.420685px;}
.y3f{bottom:3153.019185px;}
.ya5{bottom:3160.682685px;}
.y28{bottom:3167.372685px;}
.y62{bottom:3172.994685px;}
.y14{bottom:3176.318685px;}
.y3e{bottom:3176.531685px;}
.ya4{bottom:3178.615185px;}
.y27{bottom:3192.404685px;}
.y61{bottom:3192.794685px;}
.ya3{bottom:3198.415185px;}
.y13{bottom:3201.350685px;}
.y3d{bottom:3201.562185px;}
.y60{bottom:3219.694185px;}
.y12{bottom:3221.150685px;}
.y3c{bottom:3221.363685px;}
.y5f{bottom:3244.726185px;}
.h9{height:11.740144px;}
.h2{height:16.831667px;}
.h7{height:25.247500px;}
.hf{height:33.109167px;}
.h10{height:33.115167px;}
.h6{height:33.663334px;}
.hd{height:33.999334px;}
.h5{height:34.005334px;}
.hb{height:34.603167px;}
.ha{height:34.609167px;}
.he{height:35.135500px;}
.h4{height:42.079167px;}
.hc{height:42.605500px;}
.h8{height:57.561600px;}
.h3{height:60.593645px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w2{width:40.922700px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.xb{left:1.009541px;}
.xa{left:13.005000px;}
.x2b{left:16.363500px;}
.xe{left:33.306000px;}
.x20{left:41.440500px;}
.x17{left:43.165500px;}
.xf{left:49.090500px;}
.x21{left:53.178000px;}
.x24{left:57.585000px;}
.x40{left:67.933500px;}
.x3e{left:70.975500px;}
.x2{left:75.871500px;}
.x16{left:82.546500px;}
.xd{left:93.279000px;}
.x37{left:124.270500px;}
.x2c{left:138.733500px;}
.x3b{left:140.748000px;}
.x27{left:141.882000px;}
.x26{left:153.691500px;}
.x4{left:164.851500px;}
.x3c{left:167.263500px;}
.x6{left:173.361000px;}
.x7{left:186.853500px;}
.x3d{left:189.036000px;}
.x22{left:208.131000px;}
.x3{left:209.389500px;}
.x3f{left:216.459000px;}
.x1a{left:225.073500px;}
.x8{left:228.519000px;}
.x28{left:231.049500px;}
.x9{left:237.315000px;}
.x1b{left:240.858000px;}
.x2d{left:262.557000px;}
.x5{left:267.499500px;}
.x2e{left:279.499500px;}
.x14{left:289.284000px;}
.x32{left:295.284000px;}
.x15{left:305.070000px;}
.x39{left:338.095500px;}
.x35{left:373.263000px;}
.x36{left:392.334000px;}
.x23{left:411.400500px;}
.x29{left:478.746000px;}
.x3a{left:509.295000px;}
.xc{left:514.030500px;}
.x1{left:522.670500px;}
.x2a{left:3016.402185px;}
.x12{left:3033.344685px;}
.x18{left:3041.479185px;}
.x13{left:3049.129185px;}
.x19{left:3053.216685px;}
.x25{left:3153.730185px;}
.x1c{left:3208.169685px;}
.x1d{left:3225.112185px;}
.x1e{left:3240.896685px;}
.x2f{left:3262.595685px;}
.x30{left:3279.538185px;}
.x10{left:3289.322685px;}
.x31{left:3295.322685px;}
.x11{left:3305.108685px;}
.x38{left:3338.134185px;}
.x33{left:3373.301685px;}
.x34{left:3392.372685px;}
.x1f{left:3411.439185px;}
@media print{
.v2{vertical-align:-12.682667pt;}
.v4{vertical-align:-7.973333pt;}
.v1{vertical-align:-6.640000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.429333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000922pt;}
.lsc{letter-spacing:0.001015pt;}
.ls13{letter-spacing:0.001314pt;}
.ls18{letter-spacing:0.001626pt;}
.lsb{letter-spacing:0.002533pt;}
.ls5{letter-spacing:0.003505pt;}
.ls14{letter-spacing:0.004194pt;}
.lsf{letter-spacing:2.654095pt;}
.lsd{letter-spacing:2.659428pt;}
.ls10{letter-spacing:4.499962pt;}
.ls0{letter-spacing:10.896348pt;}
.ls12{letter-spacing:11.225726pt;}
.ls4{letter-spacing:11.584522pt;}
.ls8{letter-spacing:11.808087pt;}
.ls9{letter-spacing:13.886095pt;}
.ls19{letter-spacing:14.030861pt;}
.ls17{letter-spacing:14.031301pt;}
.lsa{letter-spacing:14.032286pt;}
.ls15{letter-spacing:14.032699pt;}
.ls11{letter-spacing:14.032950pt;}
.ls1b{letter-spacing:14.036194pt;}
.ls1a{letter-spacing:14.036635pt;}
.ls7{letter-spacing:17.119450pt;}
.ls2{letter-spacing:29.088087pt;}
.ls3{letter-spacing:29.093421pt;}
.ls1c{letter-spacing:29.094647pt;}
.lse{letter-spacing:36.479301pt;}
.ls16{letter-spacing:36.484194pt;}
.wse{word-spacing:-51.221047pt;}
.ws9{word-spacing:-30.732834pt;}
.wsa{word-spacing:-28.079258pt;}
.wsb{word-spacing:-28.073924pt;}
.ws3{word-spacing:-19.670289pt;}
.ws17{word-spacing:-14.032699pt;}
.ws6{word-spacing:-11.226159pt;}
.ws7{word-spacing:-8.419619pt;}
.ws2{word-spacing:-3.838953pt;}
.ws19{word-spacing:-0.050477pt;}
.ws5{word-spacing:-0.040382pt;}
.ws1f{word-spacing:-0.003939pt;}
.wsf{word-spacing:-0.003541pt;}
.ws11{word-spacing:-0.002733pt;}
.ws4{word-spacing:-0.002478pt;}
.ws10{word-spacing:-0.002083pt;}
.ws1e{word-spacing:-0.001947pt;}
.ws15{word-spacing:-0.001317pt;}
.ws0{word-spacing:0.000000pt;}
.ws13{word-spacing:0.000443pt;}
.ws14{word-spacing:2.803708pt;}
.ws12{word-spacing:2.805333pt;}
.ws16{word-spacing:3.331504pt;}
.ws8{word-spacing:5.464571pt;}
.ws1d{word-spacing:11.182317pt;}
.ws1b{word-spacing:11.182729pt;}
.ws1c{word-spacing:11.183433pt;}
.wsd{word-spacing:11.185777pt;}
.ws1a{word-spacing:11.187701pt;}
.wsc{word-spacing:13.977669pt;}
.ws1{word-spacing:13.982221pt;}
.ws18{word-spacing:22.411936pt;}
._6{margin-left:-4.795347pt;}
._0{margin-left:-2.826731pt;}
._2{margin-left:-1.453739pt;}
._1{width:1.090304pt;}
._3{width:2.463296pt;}
._4{width:3.693052pt;}
._9{width:4.742839pt;}
._7{width:6.461285pt;}
._5{width:9.550303pt;}
._8{width:14.133645pt;}
._a{width:17.364203pt;}
._c{width:25.004305pt;}
._b{width:36.462748pt;}
._d{width:43.142155pt;}
.fs5{font-size:15.669195pt;}
.fs0{font-size:20.190933pt;}
.fs8{font-size:25.238400pt;}
.fs4{font-size:30.286400pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:50.477333pt;}
.fs9{font-size:53.133867pt;}
.fs1{font-size:72.686933pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:1.365025pt;}
.ya{bottom:4.725333pt;}
.yc{bottom:6.404144pt;}
.y99{bottom:18.320000pt;}
.y5c{bottom:20.297333pt;}
.y80{bottom:24.848000pt;}
.y56{bottom:25.060000pt;}
.y7a{bottom:26.861333pt;}
.y49{bottom:28.130667pt;}
.y9d{bottom:33.217333pt;}
.y5b{bottom:39.801333pt;}
.y98{bottom:40.570667pt;}
.y79{bottom:42.802667pt;}
.y70{bottom:43.526667pt;}
.y9{bottom:43.982667pt;}
.y2f{bottom:45.293333pt;}
.y7f{bottom:47.098667pt;}
.y48{bottom:47.370667pt;}
.y55{bottom:48.969333pt;}
.y11{bottom:49.329333pt;}
.y9c{bottom:50.817333pt;}
.y36{bottom:52.810667pt;}
.y8{bottom:56.624000pt;}
.y2e{bottom:57.933333pt;}
.y97{bottom:58.170667pt;}
.y58{bottom:59.305333pt;}
.yb0{bottom:59.844000pt;}
.y6f{bottom:61.128000pt;}
.y7e{bottom:64.698667pt;}
.y47{bottom:64.970667pt;}
.y78{bottom:65.022667pt;}
.y8b{bottom:66.062667pt;}
.y10{bottom:66.929333pt;}
.y35{bottom:68.750667pt;}
.y7{bottom:72.564000pt;}
.y54{bottom:72.880000pt;}
.y9b{bottom:73.066667pt;}
.yaf{bottom:77.444000pt;}
.y57{bottom:78.810667pt;}
.y96{bottom:80.421333pt;}
.y6{bottom:83.224000pt;}
.y6e{bottom:83.377333pt;}
.y9a{bottom:90.668000pt;}
.yf{bottom:90.840000pt;}
.y34{bottom:91.290667pt;}
.y53{bottom:96.790667pt;}
.y95{bottom:98.021333pt;}
.y77{bottom:100.472000pt;}
.y6d{bottom:100.978667pt;}
.y5{bottom:104.444000pt;}
.y89{bottom:105.298667pt;}
.yae{bottom:106.294667pt;}
.y33{bottom:108.890667pt;}
.y1e{bottom:115.182667pt;}
.y76{bottom:116.412000pt;}
.y52{bottom:119.040000pt;}
.yad{bottom:122.234667pt;}
.y88{bottom:122.898667pt;}
.y6c{bottom:123.228000pt;}
.y4{bottom:125.664000pt;}
.y32{bottom:131.141333pt;}
.y1d{bottom:132.784000pt;}
.y46{bottom:135.982667pt;}
.yac{bottom:142.794667pt;}
.y31{bottom:148.741333pt;}
.y87{bottom:149.768000pt;}
.y6b{bottom:153.738667pt;}
.y3{bottom:155.802667pt;}
.y1c{bottom:156.693333pt;}
.y45{bottom:156.882667pt;}
.yab{bottom:158.734667pt;}
.y86{bottom:167.369333pt;}
.y30{bottom:170.992000pt;}
.y6a{bottom:171.338667pt;}
.y4c{bottom:173.526667pt;}
.y4a{bottom:173.528000pt;}
.yaa{bottom:176.334667pt;}
.y2{bottom:176.758667pt;}
.y1b{bottom:178.944000pt;}
.y44{bottom:179.132000pt;}
.y4b{bottom:180.261333pt;}
.y85{bottom:194.238667pt;}
.y69{bottom:195.249333pt;}
.y20{bottom:195.522667pt;}
.y1a{bottom:196.544000pt;}
.y43{bottom:196.733333pt;}
.ya2{bottom:200.577333pt;}
.y1{bottom:206.408000pt;}
.y1f{bottom:208.162667pt;}
.y26{bottom:211.401333pt;}
.y84{bottom:211.840000pt;}
.ya1{bottom:216.517333pt;}
.y68{bottom:217.500000pt;}
.y3b{bottom:218.982667pt;}
.y25{bottom:229.002667pt;}
.ya0{bottom:232.458667pt;}
.y3a{bottom:236.584000pt;}
.y83{bottom:238.709333pt;}
.y5e{bottom:249.670667pt;}
.y9f{bottom:251.068000pt;}
.y24{bottom:251.252000pt;}
.y82{bottom:256.310667pt;}
.y39{bottom:258.833333pt;}
.y23{bottom:268.853333pt;}
.y5d{bottom:271.920000pt;}
.y38{bottom:274.773333pt;}
.y9e{bottom:275.268000pt;}
.y81{bottom:283.180000pt;}
.y37{bottom:292.374667pt;}
.ye{bottom:326.054667pt;}
.yd{bottom:353.925333pt;}
.y90{bottom:2685.021053pt;}
.y5a{bottom:2686.998387pt;}
.y7d{bottom:2691.549053pt;}
.y51{bottom:2691.761053pt;}
.y75{bottom:2693.562387pt;}
.y42{bottom:2694.831720pt;}
.y94{bottom:2699.918387pt;}
.y59{bottom:2706.502387pt;}
.y8f{bottom:2707.271720pt;}
.y74{bottom:2709.503720pt;}
.y67{bottom:2710.227720pt;}
.y22{bottom:2711.994387pt;}
.y7c{bottom:2713.799720pt;}
.y41{bottom:2714.071720pt;}
.y50{bottom:2715.670387pt;}
.y19{bottom:2716.030387pt;}
.y93{bottom:2717.518387pt;}
.y2d{bottom:2719.511720pt;}
.y21{bottom:2724.634387pt;}
.y8e{bottom:2724.871720pt;}
.ya9{bottom:2726.545053pt;}
.y66{bottom:2727.829053pt;}
.y7b{bottom:2731.399720pt;}
.y40{bottom:2731.671720pt;}
.y73{bottom:2731.723720pt;}
.y8a{bottom:2732.763720pt;}
.y18{bottom:2733.630387pt;}
.y2c{bottom:2735.451720pt;}
.y4f{bottom:2739.581053pt;}
.y92{bottom:2739.767720pt;}
.ya8{bottom:2744.145053pt;}
.y8d{bottom:2747.122387pt;}
.y65{bottom:2750.078387pt;}
.y91{bottom:2757.369053pt;}
.y17{bottom:2757.541053pt;}
.y2b{bottom:2757.991720pt;}
.y4e{bottom:2763.491720pt;}
.y8c{bottom:2764.722387pt;}
.y72{bottom:2767.173053pt;}
.y64{bottom:2767.679720pt;}
.ya7{bottom:2772.995720pt;}
.y2a{bottom:2775.591720pt;}
.y16{bottom:2781.883720pt;}
.y71{bottom:2783.113053pt;}
.y4d{bottom:2785.741053pt;}
.ya6{bottom:2788.935720pt;}
.y63{bottom:2789.929053pt;}
.y29{bottom:2797.842387pt;}
.y15{bottom:2799.485053pt;}
.y3f{bottom:2802.683720pt;}
.ya5{bottom:2809.495720pt;}
.y28{bottom:2815.442387pt;}
.y62{bottom:2820.439720pt;}
.y14{bottom:2823.394387pt;}
.y3e{bottom:2823.583720pt;}
.ya4{bottom:2825.435720pt;}
.y27{bottom:2837.693053pt;}
.y61{bottom:2838.039720pt;}
.ya3{bottom:2843.035720pt;}
.y13{bottom:2845.645053pt;}
.y3d{bottom:2845.833053pt;}
.y60{bottom:2861.950387pt;}
.y12{bottom:2863.245053pt;}
.y3c{bottom:2863.434387pt;}
.y5f{bottom:2884.201053pt;}
.h9{height:10.435684pt;}
.h2{height:14.961482pt;}
.h7{height:22.442222pt;}
.hf{height:29.430371pt;}
.h10{height:29.435704pt;}
.h6{height:29.922963pt;}
.hd{height:30.221630pt;}
.h5{height:30.226963pt;}
.hb{height:30.758371pt;}
.ha{height:30.763704pt;}
.he{height:31.231556pt;}
.h4{height:37.403704pt;}
.hc{height:37.871556pt;}
.h8{height:51.165867pt;}
.h3{height:53.861018pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w2{width:36.375733pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.xb{left:0.897369pt;}
.xa{left:11.560000pt;}
.x2b{left:14.545333pt;}
.xe{left:29.605333pt;}
.x20{left:36.836000pt;}
.x17{left:38.369333pt;}
.xf{left:43.636000pt;}
.x21{left:47.269333pt;}
.x24{left:51.186667pt;}
.x40{left:60.385333pt;}
.x3e{left:63.089333pt;}
.x2{left:67.441333pt;}
.x16{left:73.374667pt;}
.xd{left:82.914667pt;}
.x37{left:110.462667pt;}
.x2c{left:123.318667pt;}
.x3b{left:125.109333pt;}
.x27{left:126.117333pt;}
.x26{left:136.614667pt;}
.x4{left:146.534667pt;}
.x3c{left:148.678667pt;}
.x6{left:154.098667pt;}
.x7{left:166.092000pt;}
.x3d{left:168.032000pt;}
.x22{left:185.005333pt;}
.x3{left:186.124000pt;}
.x3f{left:192.408000pt;}
.x1a{left:200.065333pt;}
.x8{left:203.128000pt;}
.x28{left:205.377333pt;}
.x9{left:210.946667pt;}
.x1b{left:214.096000pt;}
.x2d{left:233.384000pt;}
.x5{left:237.777333pt;}
.x2e{left:248.444000pt;}
.x14{left:257.141333pt;}
.x32{left:262.474667pt;}
.x15{left:271.173333pt;}
.x39{left:300.529333pt;}
.x35{left:331.789333pt;}
.x36{left:348.741333pt;}
.x23{left:365.689333pt;}
.x29{left:425.552000pt;}
.x3a{left:452.706667pt;}
.xc{left:456.916000pt;}
.x1{left:464.596000pt;}
.x2a{left:2681.246387pt;}
.x12{left:2696.306387pt;}
.x18{left:2703.537053pt;}
.x13{left:2710.337053pt;}
.x19{left:2713.970387pt;}
.x25{left:2803.315720pt;}
.x1c{left:2851.706387pt;}
.x1d{left:2866.766387pt;}
.x1e{left:2880.797053pt;}
.x2f{left:2900.085053pt;}
.x30{left:2915.145053pt;}
.x10{left:2923.842387pt;}
.x31{left:2929.175720pt;}
.x11{left:2937.874387pt;}
.x38{left:2967.230387pt;}
.x33{left:2998.490387pt;}
.x34{left:3015.442387pt;}
.x1f{left:3032.390387pt;}
}




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