
    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_2971454e652c9737bc924a12.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936523;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_3a98b9488838ea383ac0e700.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_72c6611e51dac0f1a59c5dcf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_ea81ef8334650ab8705f9984.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_eec48a9fe03e7ceb0e22db6a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_08fab944a1ffe12d1c77c539.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.768555;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_5eaa2b5ffd7ac380297c6cf8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.097168;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_bd0f917a3b3f52e300330d68.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_bcd9c0902aaa7e1e3fd1129d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.620000px;}
.ls14{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.684000px;}
.ls1a{letter-spacing:-0.272400px;}
.ls7{letter-spacing:-0.012960px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.043200px;}
.lse{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.291600px;}
.ls2d{letter-spacing:0.341400px;}
.ls17{letter-spacing:0.466800px;}
.ls21{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.612000px;}
.ls19{letter-spacing:0.702000px;}
.ls0{letter-spacing:1.080000px;}
.ls4{letter-spacing:1.200000px;}
.lsc{letter-spacing:2.160000px;}
.ls1{letter-spacing:2.188080px;}
.ls23{letter-spacing:2.700000px;}
.ls22{letter-spacing:2.880000px;}
.ls15{letter-spacing:6.480000px;}
.ls2c{letter-spacing:7.020000px;}
.ls13{letter-spacing:8.640000px;}
.ls20{letter-spacing:9.180000px;}
.lsd{letter-spacing:10.800000px;}
.lsa{letter-spacing:12.960000px;}
.ls9{letter-spacing:15.120000px;}
.ls10{letter-spacing:15.660000px;}
.ls11{letter-spacing:15.840000px;}
.ls2a{letter-spacing:17.820000px;}
.ls29{letter-spacing:19.980000px;}
.ls2b{letter-spacing:20.160000px;}
.ls18{letter-spacing:21.600000px;}
.ls3{letter-spacing:22.140000px;}
.ls26{letter-spacing:24.300000px;}
.ls27{letter-spacing:24.480000px;}
.ls25{letter-spacing:26.460000px;}
.ls1f{letter-spacing:30.780000px;}
.ls1b{letter-spacing:30.900000px;}
.ls1d{letter-spacing:30.960000px;}
.ls1e{letter-spacing:32.940000px;}
.ls1c{letter-spacing:33.060000px;}
.ls28{letter-spacing:33.120000px;}
.ls8{letter-spacing:127.961280px;}
.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;}
}
.ws0{word-spacing:-27.000000px;}
.ws5{word-spacing:-22.140000px;}
.ws9{word-spacing:-21.401400px;}
.ws1{word-spacing:-21.060000px;}
.ws3{word-spacing:-20.376000px;}
.ws7{word-spacing:-15.744960px;}
.ws8{word-spacing:-15.586800px;}
.ws4{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.184000px;}
.ws2{word-spacing:0.000000px;}
._35{margin-left:-28.900560px;}
._34{margin-left:-16.652640px;}
._2f{margin-left:-15.552960px;}
._4{margin-left:-4.440000px;}
._3{margin-left:-3.348000px;}
._0{margin-left:-1.728000px;}
._1{width:1.620000px;}
._2{width:2.820000px;}
._5{width:4.212000px;}
._e{width:5.419440px;}
._9{width:6.719280px;}
._26{width:7.801200px;}
._13{width:8.912160px;}
._14{width:9.940800px;}
._d{width:11.035440px;}
._10{width:12.918720px;}
._1c{width:14.361600px;}
._c{width:15.608160px;}
._31{width:16.831200px;}
._b{width:18.008880px;}
._a{width:19.418400px;}
._1b{width:22.630560px;}
._8{width:23.663040px;}
._7{width:25.521600px;}
._6{width:27.055920px;}
._12{width:28.882320px;}
._11{width:30.665520px;}
._2e{width:32.287680px;}
._24{width:33.666720px;}
._19{width:35.292240px;}
._1a{width:37.240560px;}
._18{width:38.752560px;}
._1d{width:39.875760px;}
._17{width:41.850000px;}
._1f{width:43.158960px;}
._29{width:44.858880px;}
._1e{width:45.912960px;}
._f{width:50.611920px;}
._25{width:52.336800px;}
._22{width:56.170800px;}
._23{width:57.317520px;}
._30{width:58.698000px;}
._16{width:60.421680px;}
._15{width:61.626960px;}
._2a{width:63.163920px;}
._27{width:64.383120px;}
._28{width:65.516880px;}
._20{width:67.584240px;}
._21{width:69.165360px;}
._2d{width:71.527440px;}
._2c{width:73.818000px;}
._2b{width:75.528720px;}
._33{width:125.351280px;}
._32{width:126.699120px;}
.fc5{color:rgb(0,0,255);}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(0,176,240);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:60.480000px;}
.fs0{font-size:66.960000px;}
.fs3{font-size:71.280000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:4.860000px;}
.y8{bottom:27.540000px;}
.y7{bottom:54.570000px;}
.y10{bottom:75.096000px;}
.y6{bottom:85.350000px;}
.yf{bottom:113.436000px;}
.y5{bottom:116.175000px;}
.ye{bottom:133.452000px;}
.y4{bottom:146.955000px;}
.yd{bottom:154.515000px;}
.y3{bottom:178.275000px;}
.y4c{bottom:184.755000px;}
.y47{bottom:185.295000px;}
.y2{bottom:187.455000px;}
.y46{bottom:190.695000px;}
.y83{bottom:191.235000px;}
.y81{bottom:202.035000px;}
.y4b{bottom:202.575000px;}
.y79{bottom:203.655000px;}
.y45{bottom:206.895000px;}
.y4a{bottom:207.975000px;}
.y78{bottom:209.055000px;}
.y3a{bottom:215.025000px;}
.y80{bottom:219.885000px;}
.y62{bottom:220.425000px;}
.y77{bottom:221.505000px;}
.y49{bottom:224.205000px;}
.y7f{bottom:225.285000px;}
.y26{bottom:236.625000px;}
.y61{bottom:237.705000px;}
.y76{bottom:239.325000px;}
.y7e{bottom:241.485000px;}
.y60{bottom:243.105000px;}
.y75{bottom:244.725000px;}
.y44{bottom:249.585000px;}
.y39{bottom:251.205000px;}
.y74{bottom:257.685000px;}
.y5f{bottom:258.765000px;}
.y73{bottom:263.085000px;}
.y82{bottom:263.625000px;}
.y25{bottom:272.805000px;}
.y72{bottom:279.285000px;}
.y43{bottom:285.765000px;}
.y38{bottom:287.385000px;}
.y24{bottom:309.030000px;}
.y42{bottom:321.990000px;}
.y37{bottom:323.610000px;}
.y23{bottom:345.210000px;}
.y70{bottom:354.390000px;}
.y5e{bottom:357.090000px;}
.y41{bottom:358.710000px;}
.y36{bottom:359.790000px;}
.y71{bottom:361.950000px;}
.y48{bottom:366.270000px;}
.y91{bottom:370.590000px;}
.y22{bottom:381.390000px;}
.y6f{bottom:391.680000px;}
.y5d{bottom:393.300000px;}
.y40{bottom:394.920000px;}
.y35{bottom:396.000000px;}
.y90{bottom:412.200000px;}
.y21{bottom:417.600000px;}
.y6e{bottom:427.860000px;}
.y5c{bottom:429.480000px;}
.y3f{bottom:431.100000px;}
.y34{bottom:432.180000px;}
.y8f{bottom:444.600000px;}
.y20{bottom:453.780000px;}
.y6d{bottom:464.040000px;}
.y5b{bottom:465.660000px;}
.y3e{bottom:467.310000px;}
.y7a{bottom:467.850000px;}
.y33{bottom:468.930000px;}
.y7b{bottom:475.410000px;}
.y1f{bottom:490.530000px;}
.y8e{bottom:493.230000px;}
.y6b{bottom:500.790000px;}
.y5a{bottom:501.870000px;}
.y3d{bottom:503.490000px;}
.y32{bottom:505.110000px;}
.y6c{bottom:508.350000px;}
.y8d{bottom:516.990000px;}
.y1e{bottom:526.710000px;}
.y59{bottom:538.050000px;}
.y7d{bottom:539.670000px;}
.y3b{bottom:540.210000px;}
.y31{bottom:541.290000px;}
.y3c{bottom:547.770000px;}
.y1d{bottom:562.935000px;}
.y8c{bottom:565.635000px;}
.y58{bottom:574.275000px;}
.y69{bottom:574.815000px;}
.y7c{bottom:575.895000px;}
.y30{bottom:577.515000px;}
.y6a{bottom:582.375000px;}
.y8b{bottom:589.395000px;}
.y1c{bottom:599.115000px;}
.y57{bottom:610.455000px;}
.y68{bottom:612.075000px;}
.y2f{bottom:613.695000px;}
.y1b{bottom:635.325000px;}
.y8a{bottom:638.025000px;}
.y56{bottom:646.665000px;}
.y67{bottom:648.285000px;}
.y2e{bottom:649.905000px;}
.y89{bottom:662.325000px;}
.y1a{bottom:671.505000px;}
.y55{bottom:682.845000px;}
.y66{bottom:684.465000px;}
.y2d{bottom:686.085000px;}
.y88{bottom:710.385000px;}
.y19{bottom:714.705000px;}
.y54{bottom:719.610000px;}
.y65{bottom:720.690000px;}
.y2c{bottom:722.310000px;}
.y87{bottom:734.730000px;}
.y18{bottom:738.510000px;}
.y52{bottom:755.790000px;}
.y64{bottom:756.870000px;}
.y2b{bottom:758.490000px;}
.y17{bottom:762.810000px;}
.y53{bottom:763.350000px;}
.y86{bottom:782.790000px;}
.y16{bottom:787.110000px;}
.y51{bottom:793.050000px;}
.y2a{bottom:794.670000px;}
.y85{bottom:807.120000px;}
.y15{bottom:810.900000px;}
.y50{bottom:829.800000px;}
.y29{bottom:830.880000px;}
.y84{bottom:831.420000px;}
.y14{bottom:834.660000px;}
.y13{bottom:855.180000px;}
.y4f{bottom:865.980000px;}
.y28{bottom:867.060000px;}
.y63{bottom:873.540000px;}
.y12{bottom:879.480000px;}
.y4d{bottom:902.190000px;}
.y27{bottom:903.270000px;}
.y11{bottom:903.810000px;}
.y4e{bottom:909.750000px;}
.yc{bottom:945.390000px;}
.yb{bottom:983.775000px;}
.ya{bottom:1003.755000px;}
.y1{bottom:1023.735000px;}
.h8{height:20.520000px;}
.hd{height:29.482734px;}
.h10{height:38.158594px;}
.hc{height:40.948242px;}
.h3{height:50.775820px;}
.h7{height:54.190898px;}
.he{height:59.357813px;}
.h6{height:64.331719px;}
.hb{height:74.244727px;}
.ha{height:82.676953px;}
.h9{height:84.898125px;}
.hf{height:86.585445px;}
.h5{height:105.996094px;}
.h4{height:108.843750px;}
.h2{height:203.145000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:19.476000px;}
.w6{width:72.396000px;}
.w3{width:611.640000px;}
.w5{width:647.310000px;}
.w7{width:893.159973px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x1{left:84.816000px;}
.x3{left:104.292000px;}
.x5{left:118.872000px;}
.x4{left:127.511987px;}
.x14{left:132.371987px;}
.x27{left:139.931987px;}
.x8{left:143.171987px;}
.x1d{left:174.524973px;}
.x10{left:180.464987px;}
.x1e{left:181.544987px;}
.x9{left:184.784987px;}
.xd{left:223.709987px;}
.xa{left:268.559987px;}
.x1b{left:270.719973px;}
.x1f{left:272.879973px;}
.x1c{left:277.739987px;}
.xe{left:278.819987px;}
.x20{left:279.899987px;}
.xf{left:289.619987px;}
.xc{left:325.829987px;}
.x13{left:343.649987px;}
.x11{left:423.074973px;}
.x12{left:430.094987px;}
.xb{left:478.184987px;}
.x28{left:504.689987px;}
.x6{left:524.658000px;}
.x23{left:632.189973px;}
.x24{left:639.209987px;}
.x19{left:646.769973px;}
.x1a{left:662.429987px;}
.x15{left:678.629973px;}
.x16{left:687.854987px;}
.x17{left:691.094973px;}
.x25{left:694.334973px;}
.x18{left:698.114987px;}
.x26{left:708.374987px;}
.x21{left:716.474973px;}
.x22{left:723.494987px;}
.x7{left:766.185000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.440000pt;}
.ls14{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.608000pt;}
.ls1a{letter-spacing:-0.242133pt;}
.ls7{letter-spacing:-0.011520pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.038400pt;}
.lse{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.259200pt;}
.ls2d{letter-spacing:0.303467pt;}
.ls17{letter-spacing:0.414933pt;}
.ls21{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.544000pt;}
.ls19{letter-spacing:0.624000pt;}
.ls0{letter-spacing:0.960000pt;}
.ls4{letter-spacing:1.066667pt;}
.lsc{letter-spacing:1.920000pt;}
.ls1{letter-spacing:1.944960pt;}
.ls23{letter-spacing:2.400000pt;}
.ls22{letter-spacing:2.560000pt;}
.ls15{letter-spacing:5.760000pt;}
.ls2c{letter-spacing:6.240000pt;}
.ls13{letter-spacing:7.680000pt;}
.ls20{letter-spacing:8.160000pt;}
.lsd{letter-spacing:9.600000pt;}
.lsa{letter-spacing:11.520000pt;}
.ls9{letter-spacing:13.440000pt;}
.ls10{letter-spacing:13.920000pt;}
.ls11{letter-spacing:14.080000pt;}
.ls2a{letter-spacing:15.840000pt;}
.ls29{letter-spacing:17.760000pt;}
.ls2b{letter-spacing:17.920000pt;}
.ls18{letter-spacing:19.200000pt;}
.ls3{letter-spacing:19.680000pt;}
.ls26{letter-spacing:21.600000pt;}
.ls27{letter-spacing:21.760000pt;}
.ls25{letter-spacing:23.520000pt;}
.ls1f{letter-spacing:27.360000pt;}
.ls1b{letter-spacing:27.466667pt;}
.ls1d{letter-spacing:27.520000pt;}
.ls1e{letter-spacing:29.280000pt;}
.ls1c{letter-spacing:29.386667pt;}
.ls28{letter-spacing:29.440000pt;}
.ls8{letter-spacing:113.743360pt;}
.ws0{word-spacing:-24.000000pt;}
.ws5{word-spacing:-19.680000pt;}
.ws9{word-spacing:-19.023467pt;}
.ws1{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.112000pt;}
.ws7{word-spacing:-13.995520pt;}
.ws8{word-spacing:-13.854933pt;}
.ws4{word-spacing:-13.440000pt;}
.ws6{word-spacing:-12.608000pt;}
.ws2{word-spacing:0.000000pt;}
._35{margin-left:-25.689387pt;}
._34{margin-left:-14.802347pt;}
._2f{margin-left:-13.824853pt;}
._4{margin-left:-3.946667pt;}
._3{margin-left:-2.976000pt;}
._0{margin-left:-1.536000pt;}
._1{width:1.440000pt;}
._2{width:2.506667pt;}
._5{width:3.744000pt;}
._e{width:4.817280pt;}
._9{width:5.972693pt;}
._26{width:6.934400pt;}
._13{width:7.921920pt;}
._14{width:8.836267pt;}
._d{width:9.809280pt;}
._10{width:11.483307pt;}
._1c{width:12.765867pt;}
._c{width:13.873920pt;}
._31{width:14.961067pt;}
._b{width:16.007893pt;}
._a{width:17.260800pt;}
._1b{width:20.116053pt;}
._8{width:21.033813pt;}
._7{width:22.685867pt;}
._6{width:24.049707pt;}
._12{width:25.673173pt;}
._11{width:27.258240pt;}
._2e{width:28.700160pt;}
._24{width:29.925973pt;}
._19{width:31.370880pt;}
._1a{width:33.102720pt;}
._18{width:34.446720pt;}
._1d{width:35.445120pt;}
._17{width:37.200000pt;}
._1f{width:38.363520pt;}
._29{width:39.874560pt;}
._1e{width:40.811520pt;}
._f{width:44.988373pt;}
._25{width:46.521600pt;}
._22{width:49.929600pt;}
._23{width:50.948907pt;}
._30{width:52.176000pt;}
._16{width:53.708160pt;}
._15{width:54.779520pt;}
._2a{width:56.145707pt;}
._27{width:57.229440pt;}
._28{width:58.237227pt;}
._20{width:60.074880pt;}
._21{width:61.480320pt;}
._2d{width:63.579947pt;}
._2c{width:65.616000pt;}
._2b{width:67.136640pt;}
._33{width:111.423360pt;}
._32{width:112.621440pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.760000pt;}
.fs0{font-size:59.520000pt;}
.fs3{font-size:63.360000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:4.320000pt;}
.y8{bottom:24.480000pt;}
.y7{bottom:48.506667pt;}
.y10{bottom:66.752000pt;}
.y6{bottom:75.866667pt;}
.yf{bottom:100.832000pt;}
.y5{bottom:103.266667pt;}
.ye{bottom:118.624000pt;}
.y4{bottom:130.626667pt;}
.yd{bottom:137.346667pt;}
.y3{bottom:158.466667pt;}
.y4c{bottom:164.226667pt;}
.y47{bottom:164.706667pt;}
.y2{bottom:166.626667pt;}
.y46{bottom:169.506667pt;}
.y83{bottom:169.986667pt;}
.y81{bottom:179.586667pt;}
.y4b{bottom:180.066667pt;}
.y79{bottom:181.026667pt;}
.y45{bottom:183.906667pt;}
.y4a{bottom:184.866667pt;}
.y78{bottom:185.826667pt;}
.y3a{bottom:191.133333pt;}
.y80{bottom:195.453333pt;}
.y62{bottom:195.933333pt;}
.y77{bottom:196.893333pt;}
.y49{bottom:199.293333pt;}
.y7f{bottom:200.253333pt;}
.y26{bottom:210.333333pt;}
.y61{bottom:211.293333pt;}
.y76{bottom:212.733333pt;}
.y7e{bottom:214.653333pt;}
.y60{bottom:216.093333pt;}
.y75{bottom:217.533333pt;}
.y44{bottom:221.853333pt;}
.y39{bottom:223.293333pt;}
.y74{bottom:229.053333pt;}
.y5f{bottom:230.013333pt;}
.y73{bottom:233.853333pt;}
.y82{bottom:234.333333pt;}
.y25{bottom:242.493333pt;}
.y72{bottom:248.253333pt;}
.y43{bottom:254.013333pt;}
.y38{bottom:255.453333pt;}
.y24{bottom:274.693333pt;}
.y42{bottom:286.213333pt;}
.y37{bottom:287.653333pt;}
.y23{bottom:306.853333pt;}
.y70{bottom:315.013333pt;}
.y5e{bottom:317.413333pt;}
.y41{bottom:318.853333pt;}
.y36{bottom:319.813333pt;}
.y71{bottom:321.733333pt;}
.y48{bottom:325.573333pt;}
.y91{bottom:329.413333pt;}
.y22{bottom:339.013333pt;}
.y6f{bottom:348.160000pt;}
.y5d{bottom:349.600000pt;}
.y40{bottom:351.040000pt;}
.y35{bottom:352.000000pt;}
.y90{bottom:366.400000pt;}
.y21{bottom:371.200000pt;}
.y6e{bottom:380.320000pt;}
.y5c{bottom:381.760000pt;}
.y3f{bottom:383.200000pt;}
.y34{bottom:384.160000pt;}
.y8f{bottom:395.200000pt;}
.y20{bottom:403.360000pt;}
.y6d{bottom:412.480000pt;}
.y5b{bottom:413.920000pt;}
.y3e{bottom:415.386667pt;}
.y7a{bottom:415.866667pt;}
.y33{bottom:416.826667pt;}
.y7b{bottom:422.586667pt;}
.y1f{bottom:436.026667pt;}
.y8e{bottom:438.426667pt;}
.y6b{bottom:445.146667pt;}
.y5a{bottom:446.106667pt;}
.y3d{bottom:447.546667pt;}
.y32{bottom:448.986667pt;}
.y6c{bottom:451.866667pt;}
.y8d{bottom:459.546667pt;}
.y1e{bottom:468.186667pt;}
.y59{bottom:478.266667pt;}
.y7d{bottom:479.706667pt;}
.y3b{bottom:480.186667pt;}
.y31{bottom:481.146667pt;}
.y3c{bottom:486.906667pt;}
.y1d{bottom:500.386667pt;}
.y8c{bottom:502.786667pt;}
.y58{bottom:510.466667pt;}
.y69{bottom:510.946667pt;}
.y7c{bottom:511.906667pt;}
.y30{bottom:513.346667pt;}
.y6a{bottom:517.666667pt;}
.y8b{bottom:523.906667pt;}
.y1c{bottom:532.546667pt;}
.y57{bottom:542.626667pt;}
.y68{bottom:544.066667pt;}
.y2f{bottom:545.506667pt;}
.y1b{bottom:564.733333pt;}
.y8a{bottom:567.133333pt;}
.y56{bottom:574.813333pt;}
.y67{bottom:576.253333pt;}
.y2e{bottom:577.693333pt;}
.y89{bottom:588.733333pt;}
.y1a{bottom:596.893333pt;}
.y55{bottom:606.973333pt;}
.y66{bottom:608.413333pt;}
.y2d{bottom:609.853333pt;}
.y88{bottom:631.453333pt;}
.y19{bottom:635.293333pt;}
.y54{bottom:639.653333pt;}
.y65{bottom:640.613333pt;}
.y2c{bottom:642.053333pt;}
.y87{bottom:653.093333pt;}
.y18{bottom:656.453333pt;}
.y52{bottom:671.813333pt;}
.y64{bottom:672.773333pt;}
.y2b{bottom:674.213333pt;}
.y17{bottom:678.053333pt;}
.y53{bottom:678.533333pt;}
.y86{bottom:695.813333pt;}
.y16{bottom:699.653333pt;}
.y51{bottom:704.933333pt;}
.y2a{bottom:706.373333pt;}
.y85{bottom:717.440000pt;}
.y15{bottom:720.800000pt;}
.y50{bottom:737.600000pt;}
.y29{bottom:738.560000pt;}
.y84{bottom:739.040000pt;}
.y14{bottom:741.920000pt;}
.y13{bottom:760.160000pt;}
.y4f{bottom:769.760000pt;}
.y28{bottom:770.720000pt;}
.y63{bottom:776.480000pt;}
.y12{bottom:781.760000pt;}
.y4d{bottom:801.946667pt;}
.y27{bottom:802.906667pt;}
.y11{bottom:803.386667pt;}
.y4e{bottom:808.666667pt;}
.yc{bottom:840.346667pt;}
.yb{bottom:874.466667pt;}
.ya{bottom:892.226667pt;}
.y1{bottom:909.986667pt;}
.h8{height:18.240000pt;}
.hd{height:26.206875pt;}
.h10{height:33.918750pt;}
.hc{height:36.398438pt;}
.h3{height:45.134063pt;}
.h7{height:48.169688pt;}
.he{height:52.762500pt;}
.h6{height:57.183750pt;}
.hb{height:65.995312pt;}
.ha{height:73.490625pt;}
.h9{height:75.465000pt;}
.hf{height:76.964840pt;}
.h5{height:94.218750pt;}
.h4{height:96.750000pt;}
.h2{height:180.573333pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:17.312000pt;}
.w6{width:64.352000pt;}
.w3{width:543.680000pt;}
.w5{width:575.386667pt;}
.w7{width:793.919976pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x1{left:75.392000pt;}
.x3{left:92.704000pt;}
.x5{left:105.664000pt;}
.x4{left:113.343988pt;}
.x14{left:117.663988pt;}
.x27{left:124.383988pt;}
.x8{left:127.263988pt;}
.x1d{left:155.133310pt;}
.x10{left:160.413322pt;}
.x1e{left:161.373322pt;}
.x9{left:164.253322pt;}
.xd{left:198.853322pt;}
.xa{left:238.719988pt;}
.x1b{left:240.639976pt;}
.x1f{left:242.559976pt;}
.x1c{left:246.879988pt;}
.xe{left:247.839988pt;}
.x20{left:248.799988pt;}
.xf{left:257.439988pt;}
.xc{left:289.626655pt;}
.x13{left:305.466655pt;}
.x11{left:376.066643pt;}
.x12{left:382.306655pt;}
.xb{left:425.053322pt;}
.x28{left:448.613322pt;}
.x6{left:466.362667pt;}
.x23{left:561.946643pt;}
.x24{left:568.186655pt;}
.x19{left:574.906643pt;}
.x1a{left:588.826655pt;}
.x15{left:603.226643pt;}
.x16{left:611.426655pt;}
.x17{left:614.306643pt;}
.x25{left:617.186643pt;}
.x18{left:620.546655pt;}
.x26{left:629.666655pt;}
.x21{left:636.866643pt;}
.x22{left:643.106655pt;}
.x7{left:681.053333pt;}
}




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