
    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_21306420ad34a0318851fa50.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0513a36ce4d41dc58e029a31.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_7526309c6f59d0c2dbb2f35c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws29{word-spacing:-55.944000px;}
.ws3{word-spacing:-39.083400px;}
.ws51{word-spacing:-38.864100px;}
.ws90{word-spacing:-38.661300px;}
.ws3f{word-spacing:-38.660400px;}
.ws30{word-spacing:-38.658600px;}
.ws1b{word-spacing:-38.656800px;}
.ws6f{word-spacing:-38.655600px;}
.ws5{word-spacing:-38.650500px;}
.ws6e{word-spacing:-38.584800px;}
.ws87{word-spacing:-38.583000px;}
.ws8b{word-spacing:-38.578500px;}
.ws74{word-spacing:-38.572200px;}
.ws6d{word-spacing:-38.570400px;}
.ws1a{word-spacing:-38.432100px;}
.ws39{word-spacing:-38.373300px;}
.ws25{word-spacing:-38.166000px;}
.ws85{word-spacing:-38.164200px;}
.ws2f{word-spacing:-38.162400px;}
.ws2e{word-spacing:-38.160600px;}
.ws41{word-spacing:-38.156400px;}
.ws3d{word-spacing:-38.154600px;}
.ws6{word-spacing:-38.154300px;}
.ws21{word-spacing:-38.152800px;}
.ws1e{word-spacing:-38.151000px;}
.ws69{word-spacing:-38.150400px;}
.ws4{word-spacing:-38.148300px;}
.ws23{word-spacing:-38.147400px;}
.ws48{word-spacing:-38.147100px;}
.ws13{word-spacing:-38.139600px;}
.ws82{word-spacing:-38.132400px;}
.ws7{word-spacing:-38.086200px;}
.ws91{word-spacing:-38.083500px;}
.ws2{word-spacing:-38.081700px;}
.ws2b{word-spacing:-37.948200px;}
.ws18{word-spacing:-37.946400px;}
.ws46{word-spacing:-37.944600px;}
.ws0{word-spacing:-37.944000px;}
.ws2c{word-spacing:-37.942200px;}
.ws36{word-spacing:-37.940400px;}
.ws89{word-spacing:-37.936200px;}
.ws96{word-spacing:-37.935000px;}
.ws98{word-spacing:-37.932900px;}
.ws9d{word-spacing:-37.931400px;}
.ws8f{word-spacing:-37.930500px;}
.ws5e{word-spacing:-37.929600px;}
.ws75{word-spacing:-37.927800px;}
.ws27{word-spacing:-37.927200px;}
.ws4a{word-spacing:-37.926000px;}
.ws8e{word-spacing:-37.919100px;}
.ws1f{word-spacing:-37.726800px;}
.ws32{word-spacing:-37.722600px;}
.ws80{word-spacing:-37.720500px;}
.ws86{word-spacing:-37.710900px;}
.ws4d{word-spacing:-37.440000px;}
.ws8d{word-spacing:-37.433700px;}
.ws4c{word-spacing:-37.431000px;}
.ws83{word-spacing:-37.405200px;}
.ws59{word-spacing:-37.224600px;}
.ws38{word-spacing:-37.222200px;}
.ws4e{word-spacing:-37.213200px;}
.ws9a{word-spacing:-37.210500px;}
.wsf{word-spacing:-37.207800px;}
.ws50{word-spacing:-37.195200px;}
.ws6b{word-spacing:-36.977400px;}
.ws5b{word-spacing:-36.702600px;}
.ws26{word-spacing:-36.490500px;}
.ws40{word-spacing:-36.421200px;}
.wsc{word-spacing:-36.006000px;}
.ws43{word-spacing:-35.998800px;}
.ws9{word-spacing:-35.987400px;}
.ws8a{word-spacing:-35.786400px;}
.ws24{word-spacing:-35.782200px;}
.ws55{word-spacing:-35.780400px;}
.ws5a{word-spacing:-35.568000px;}
.ws3b{word-spacing:-35.056500px;}
.ws8{word-spacing:-34.560000px;}
.ws56{word-spacing:-34.346400px;}
.ws72{word-spacing:-34.344000px;}
.ws3e{word-spacing:-33.620400px;}
.ws63{word-spacing:-33.618600px;}
.ws92{word-spacing:-33.616800px;}
.ws45{word-spacing:-33.526200px;}
.ws1d{word-spacing:-32.900400px;}
.ws7b{word-spacing:-32.882700px;}
.ws88{word-spacing:-32.396400px;}
.ws31{word-spacing:-32.392800px;}
.ws17{word-spacing:-32.174400px;}
.ws9c{word-spacing:-32.165100px;}
.ws53{word-spacing:-31.673700px;}
.ws4f{word-spacing:-30.733200px;}
.ws68{word-spacing:-30.513600px;}
.ws37{word-spacing:-30.218400px;}
.ws19{word-spacing:-30.024600px;}
.ws14{word-spacing:-30.016800px;}
.ws16{word-spacing:-30.000600px;}
.ws20{word-spacing:-29.520000px;}
.ws81{word-spacing:-29.304000px;}
.ws84{word-spacing:-29.300400px;}
.wse{word-spacing:-29.291400px;}
.ws6a{word-spacing:-28.800000px;}
.ws9b{word-spacing:-28.583100px;}
.ws66{word-spacing:-28.506600px;}
.ws35{word-spacing:-28.077300px;}
.ws95{word-spacing:-27.870000px;}
.ws76{word-spacing:-27.860400px;}
.ws5d{word-spacing:-27.842400px;}
.ws1c{word-spacing:-27.342000px;}
.ws71{word-spacing:-27.140400px;}
.wsd{word-spacing:-26.636400px;}
.ws70{word-spacing:-26.424000px;}
.ws64{word-spacing:-26.420400px;}
.ws65{word-spacing:-26.414400px;}
.ws79{word-spacing:-24.970500px;}
.ws33{word-spacing:-24.476400px;}
.ws52{word-spacing:-24.474000px;}
.ws99{word-spacing:-24.262200px;}
.ws78{word-spacing:-23.756400px;}
.ws5c{word-spacing:-23.749200px;}
.ws47{word-spacing:-23.544000px;}
.ws4b{word-spacing:-23.538600px;}
.ws73{word-spacing:-23.038800px;}
.ws58{word-spacing:-23.037000px;}
.wsa{word-spacing:-22.806000px;}
.ws97{word-spacing:-22.312500px;}
.ws8c{word-spacing:-22.091400px;}
.ws7e{word-spacing:-20.664000px;}
.ws22{word-spacing:-20.160000px;}
.ws15{word-spacing:-20.152800px;}
.ws77{word-spacing:-19.922400px;}
.ws61{word-spacing:-19.143000px;}
.ws7c{word-spacing:-18.495000px;}
.ws49{word-spacing:-17.061900px;}
.ws93{word-spacing:-16.341300px;}
.ws3c{word-spacing:-16.332900px;}
.ws57{word-spacing:-16.326000px;}
.ws42{word-spacing:-15.620400px;}
.ws28{word-spacing:-14.910000px;}
.ws6c{word-spacing:-12.024600px;}
.ws7f{word-spacing:-12.010500px;}
.ws2a{word-spacing:-11.995800px;}
.ws34{word-spacing:-11.520000px;}
.ws7a{word-spacing:-9.864000px;}
.ws2d{word-spacing:-9.144000px;}
.ws5f{word-spacing:-7.617600px;}
.ws60{word-spacing:-6.984000px;}
.ws67{word-spacing:-6.970800px;}
.ws3a{word-spacing:-6.903000px;}
.wsb{word-spacing:-5.738400px;}
.ws12{word-spacing:-4.813200px;}
.ws10{word-spacing:5.764800px;}
.ws11{word-spacing:5.772600px;}
.ws7d{word-spacing:8.150400px;}
.ws54{word-spacing:43.221600px;}
.ws94{word-spacing:130.547700px;}
.ws44{word-spacing:251.290800px;}
.ws62{word-spacing:562.539600px;}
.ws1{word-spacing:1037.484900px;}
._5{margin-left:-2.223000px;}
._3{margin-left:-1.013400px;}
._0{width:1.076400px;}
._d{width:17.937900px;}
._1{width:18.968400px;}
._14{width:20.592000px;}
._2{width:21.947400px;}
._12{width:23.022000px;}
._c{width:24.235200px;}
._a{width:25.318800px;}
._8{width:27.338400px;}
._1d{width:28.649100px;}
._b{width:29.718000px;}
._6{width:30.884400px;}
._11{width:32.468400px;}
._16{width:33.552000px;}
._18{width:34.845000px;}
._9{width:36.846000px;}
._1a{width:37.926000px;}
._13{width:41.093400px;}
._e{width:42.264000px;}
._f{width:45.144000px;}
._10{width:47.808000px;}
._19{width:49.609200px;}
._4{width:52.106400px;}
._7{width:63.058200px;}
._1c{width:65.239200px;}
._17{width:100.263600px;}
._15{width:308.559600px;}
._1b{width:620.280000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y99{bottom:118.336500px;}
.y69{bottom:120.496500px;}
.y40{bottom:139.575000px;}
.y5a{bottom:140.475000px;}
.y25{bottom:140.836500px;}
.y98{bottom:160.096500px;}
.y3f{bottom:160.275000px;}
.y59{bottom:161.175000px;}
.y68{bottom:162.075000px;}
.y3e{bottom:180.975000px;}
.y24{bottom:182.415000px;}
.y67{bottom:182.775000px;}
.y82{bottom:183.136500px;}
.y97{bottom:201.675000px;}
.y58{bottom:202.936500px;}
.y66{bottom:203.475000px;}
.y81{bottom:203.836500px;}
.y3d{bottom:222.736500px;}
.y57{bottom:223.636500px;}
.y23{bottom:224.175000px;}
.y80{bottom:224.536500px;}
.y96{bottom:243.436500px;}
.y22{bottom:244.875000px;}
.y7f{bottom:245.236500px;}
.y95{bottom:264.136500px;}
.y3c{bottom:264.496500px;}
.y56{bottom:265.396500px;}
.y21{bottom:265.575000px;}
.y7e{bottom:265.936500px;}
.y3b{bottom:285.196500px;}
.y65{bottom:286.275000px;}
.y7d{bottom:286.636500px;}
.y94{bottom:305.896500px;}
.y55{bottom:306.975000px;}
.y20{bottom:307.336500px;}
.y3a{bottom:326.775000px;}
.y54{bottom:327.675000px;}
.y7c{bottom:328.396500px;}
.y39{bottom:347.475000px;}
.y1f{bottom:348.915000px;}
.y7b{bottom:349.096500px;}
.y53{bottom:369.075000px;}
.y64{bottom:369.436500px;}
.y1e{bottom:369.615000px;}
.y7a{bottom:369.795000px;}
.y38{bottom:389.236500px;}
.y52{bottom:389.775000px;}
.y63{bottom:390.136500px;}
.y1d{bottom:390.315000px;}
.y79{bottom:390.496500px;}
.y62{bottom:410.836500px;}
.y78{bottom:411.196500px;}
.y37{bottom:430.996500px;}
.y51{bottom:431.536500px;}
.y77{bottom:431.896500px;}
.y1c{bottom:432.075000px;}
.y93{bottom:451.696500px;}
.y50{bottom:452.236500px;}
.y61{bottom:452.596500px;}
.y36{bottom:472.575000px;}
.y60{bottom:473.295000px;}
.y76{bottom:473.475000px;}
.y1b{bottom:473.836500px;}
.y92{bottom:493.275000px;}
.y4f{bottom:493.996500px;}
.y1a{bottom:494.536500px;}
.y35{bottom:514.336500px;}
.y19{bottom:515.236500px;}
.y91{bottom:535.036500px;}
.y4e{bottom:535.575000px;}
.y18{bottom:535.936500px;}
.y90{bottom:555.736500px;}
.y34{bottom:556.096500px;}
.y4d{bottom:556.275000px;}
.y17{bottom:556.636500px;}
.y8f{bottom:576.436500px;}
.y33{bottom:576.795000px;}
.y16{bottom:577.336500px;}
.y75{bottom:577.695000px;}
.y4c{bottom:598.036500px;}
.y74{bottom:598.396500px;}
.y8e{bottom:618.195000px;}
.y32{bottom:618.375000px;}
.y15{bottom:618.915000px;}
.y5f{bottom:619.096500px;}
.y4b{bottom:639.795000px;}
.y73{bottom:639.975000px;}
.y8d{bottom:659.775000px;}
.y31{bottom:660.136500px;}
.y4a{bottom:660.496500px;}
.y72{bottom:660.675000px;}
.y8c{bottom:680.475000px;}
.y5e{bottom:681.195000px;}
.y30{bottom:701.896500px;}
.y49{bottom:702.075000px;}
.y14{bottom:702.436500px;}
.y8b{bottom:722.236500px;}
.y2f{bottom:722.596500px;}
.y48{bottom:722.775000px;}
.y13{bottom:723.136500px;}
.y12{bottom:743.836500px;}
.y8a{bottom:763.996500px;}
.y2e{bottom:764.175000px;}
.y47{bottom:764.536500px;}
.y2d{bottom:784.875000px;}
.y5d{bottom:785.236500px;}
.y11{bottom:785.415000px;}
.y9c{bottom:785.596500px;}
.y89{bottom:805.575000px;}
.y5c{bottom:805.936500px;}
.y10{bottom:806.115000px;}
.y46{bottom:806.295000px;}
.y2c{bottom:826.636500px;}
.yf{bottom:826.815000px;}
.y45{bottom:826.996500px;}
.y88{bottom:847.336500px;}
.ye{bottom:847.515000px;}
.y44{bottom:847.695000px;}
.y71{bottom:847.875000px;}
.y87{bottom:868.036500px;}
.yd{bottom:868.215000px;}
.y2b{bottom:868.395000px;}
.y9b{bottom:868.575000px;}
.yc{bottom:888.915000px;}
.y5b{bottom:889.095000px;}
.y43{bottom:889.275000px;}
.y70{bottom:889.636500px;}
.yb{bottom:909.615000px;}
.y86{bottom:909.795000px;}
.y2a{bottom:909.975000px;}
.y6f{bottom:910.336500px;}
.y42{bottom:930.675000px;}
.y6e{bottom:931.036500px;}
.ya{bottom:951.375000px;}
.y29{bottom:951.736500px;}
.y9{bottom:972.075000px;}
.y28{bottom:972.436500px;}
.y6d{bottom:972.795000px;}
.y85{bottom:993.136500px;}
.y6c{bottom:993.495000px;}
.y84{bottom:1013.836500px;}
.y27{bottom:1014.195000px;}
.y26{bottom:1034.895000px;}
.y9a{bottom:1035.075000px;}
.y83{bottom:1055.595000px;}
.y6b{bottom:1055.775000px;}
.y8{bottom:1076.475000px;}
.y7{bottom:1097.175000px;}
.y41{bottom:1117.875000px;}
.y6a{bottom:1118.236500px;}
.y6{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x9{left:143.638500px;}
.x2{left:160.560000px;}
.xa{left:247.860000px;}
.x8{left:272.700000px;}
.x6{left:299.880000px;}
.x5{left:351.720000px;}
.x7{left:353.338500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws29{word-spacing:-49.728000pt;}
.ws3{word-spacing:-34.740800pt;}
.ws51{word-spacing:-34.545867pt;}
.ws90{word-spacing:-34.365600pt;}
.ws3f{word-spacing:-34.364800pt;}
.ws30{word-spacing:-34.363200pt;}
.ws1b{word-spacing:-34.361600pt;}
.ws6f{word-spacing:-34.360533pt;}
.ws5{word-spacing:-34.356000pt;}
.ws6e{word-spacing:-34.297600pt;}
.ws87{word-spacing:-34.296000pt;}
.ws8b{word-spacing:-34.292000pt;}
.ws74{word-spacing:-34.286400pt;}
.ws6d{word-spacing:-34.284800pt;}
.ws1a{word-spacing:-34.161867pt;}
.ws39{word-spacing:-34.109600pt;}
.ws25{word-spacing:-33.925333pt;}
.ws85{word-spacing:-33.923733pt;}
.ws2f{word-spacing:-33.922133pt;}
.ws2e{word-spacing:-33.920533pt;}
.ws41{word-spacing:-33.916800pt;}
.ws3d{word-spacing:-33.915200pt;}
.ws6{word-spacing:-33.914933pt;}
.ws21{word-spacing:-33.913600pt;}
.ws1e{word-spacing:-33.912000pt;}
.ws69{word-spacing:-33.911467pt;}
.ws4{word-spacing:-33.909600pt;}
.ws23{word-spacing:-33.908800pt;}
.ws48{word-spacing:-33.908533pt;}
.ws13{word-spacing:-33.901867pt;}
.ws82{word-spacing:-33.895467pt;}
.ws7{word-spacing:-33.854400pt;}
.ws91{word-spacing:-33.852000pt;}
.ws2{word-spacing:-33.850400pt;}
.ws2b{word-spacing:-33.731733pt;}
.ws18{word-spacing:-33.730133pt;}
.ws46{word-spacing:-33.728533pt;}
.ws0{word-spacing:-33.728000pt;}
.ws2c{word-spacing:-33.726400pt;}
.ws36{word-spacing:-33.724800pt;}
.ws89{word-spacing:-33.721067pt;}
.ws96{word-spacing:-33.720000pt;}
.ws98{word-spacing:-33.718133pt;}
.ws9d{word-spacing:-33.716800pt;}
.ws8f{word-spacing:-33.716000pt;}
.ws5e{word-spacing:-33.715200pt;}
.ws75{word-spacing:-33.713600pt;}
.ws27{word-spacing:-33.713067pt;}
.ws4a{word-spacing:-33.712000pt;}
.ws8e{word-spacing:-33.705867pt;}
.ws1f{word-spacing:-33.534933pt;}
.ws32{word-spacing:-33.531200pt;}
.ws80{word-spacing:-33.529333pt;}
.ws86{word-spacing:-33.520800pt;}
.ws4d{word-spacing:-33.280000pt;}
.ws8d{word-spacing:-33.274400pt;}
.ws4c{word-spacing:-33.272000pt;}
.ws83{word-spacing:-33.249067pt;}
.ws59{word-spacing:-33.088533pt;}
.ws38{word-spacing:-33.086400pt;}
.ws4e{word-spacing:-33.078400pt;}
.ws9a{word-spacing:-33.076000pt;}
.wsf{word-spacing:-33.073600pt;}
.ws50{word-spacing:-33.062400pt;}
.ws6b{word-spacing:-32.868800pt;}
.ws5b{word-spacing:-32.624533pt;}
.ws26{word-spacing:-32.436000pt;}
.ws40{word-spacing:-32.374400pt;}
.wsc{word-spacing:-32.005333pt;}
.ws43{word-spacing:-31.998933pt;}
.ws9{word-spacing:-31.988800pt;}
.ws8a{word-spacing:-31.810133pt;}
.ws24{word-spacing:-31.806400pt;}
.ws55{word-spacing:-31.804800pt;}
.ws5a{word-spacing:-31.616000pt;}
.ws3b{word-spacing:-31.161333pt;}
.ws8{word-spacing:-30.720000pt;}
.ws56{word-spacing:-30.530133pt;}
.ws72{word-spacing:-30.528000pt;}
.ws3e{word-spacing:-29.884800pt;}
.ws63{word-spacing:-29.883200pt;}
.ws92{word-spacing:-29.881600pt;}
.ws45{word-spacing:-29.801067pt;}
.ws1d{word-spacing:-29.244800pt;}
.ws7b{word-spacing:-29.229067pt;}
.ws88{word-spacing:-28.796800pt;}
.ws31{word-spacing:-28.793600pt;}
.ws17{word-spacing:-28.599467pt;}
.ws9c{word-spacing:-28.591200pt;}
.ws53{word-spacing:-28.154400pt;}
.ws4f{word-spacing:-27.318400pt;}
.ws68{word-spacing:-27.123200pt;}
.ws37{word-spacing:-26.860800pt;}
.ws19{word-spacing:-26.688533pt;}
.ws14{word-spacing:-26.681600pt;}
.ws16{word-spacing:-26.667200pt;}
.ws20{word-spacing:-26.240000pt;}
.ws81{word-spacing:-26.048000pt;}
.ws84{word-spacing:-26.044800pt;}
.wse{word-spacing:-26.036800pt;}
.ws6a{word-spacing:-25.600000pt;}
.ws9b{word-spacing:-25.407200pt;}
.ws66{word-spacing:-25.339200pt;}
.ws35{word-spacing:-24.957600pt;}
.ws95{word-spacing:-24.773333pt;}
.ws76{word-spacing:-24.764800pt;}
.ws5d{word-spacing:-24.748800pt;}
.ws1c{word-spacing:-24.304000pt;}
.ws71{word-spacing:-24.124800pt;}
.wsd{word-spacing:-23.676800pt;}
.ws70{word-spacing:-23.488000pt;}
.ws64{word-spacing:-23.484800pt;}
.ws65{word-spacing:-23.479467pt;}
.ws79{word-spacing:-22.196000pt;}
.ws33{word-spacing:-21.756800pt;}
.ws52{word-spacing:-21.754667pt;}
.ws99{word-spacing:-21.566400pt;}
.ws78{word-spacing:-21.116800pt;}
.ws5c{word-spacing:-21.110400pt;}
.ws47{word-spacing:-20.928000pt;}
.ws4b{word-spacing:-20.923200pt;}
.ws73{word-spacing:-20.478933pt;}
.ws58{word-spacing:-20.477333pt;}
.wsa{word-spacing:-20.272000pt;}
.ws97{word-spacing:-19.833333pt;}
.ws8c{word-spacing:-19.636800pt;}
.ws7e{word-spacing:-18.368000pt;}
.ws22{word-spacing:-17.920000pt;}
.ws15{word-spacing:-17.913600pt;}
.ws77{word-spacing:-17.708800pt;}
.ws61{word-spacing:-17.016000pt;}
.ws7c{word-spacing:-16.440000pt;}
.ws49{word-spacing:-15.166133pt;}
.ws93{word-spacing:-14.525600pt;}
.ws3c{word-spacing:-14.518133pt;}
.ws57{word-spacing:-14.512000pt;}
.ws42{word-spacing:-13.884800pt;}
.ws28{word-spacing:-13.253333pt;}
.ws6c{word-spacing:-10.688533pt;}
.ws7f{word-spacing:-10.676000pt;}
.ws2a{word-spacing:-10.662933pt;}
.ws34{word-spacing:-10.240000pt;}
.ws7a{word-spacing:-8.768000pt;}
.ws2d{word-spacing:-8.128000pt;}
.ws5f{word-spacing:-6.771200pt;}
.ws60{word-spacing:-6.208000pt;}
.ws67{word-spacing:-6.196267pt;}
.ws3a{word-spacing:-6.136000pt;}
.wsb{word-spacing:-5.100800pt;}
.ws12{word-spacing:-4.278400pt;}
.ws10{word-spacing:5.124267pt;}
.ws11{word-spacing:5.131200pt;}
.ws7d{word-spacing:7.244800pt;}
.ws54{word-spacing:38.419200pt;}
.ws94{word-spacing:116.042400pt;}
.ws44{word-spacing:223.369600pt;}
.ws62{word-spacing:500.035200pt;}
.ws1{word-spacing:922.208800pt;}
._5{margin-left:-1.976000pt;}
._3{margin-left:-0.900800pt;}
._0{width:0.956800pt;}
._d{width:15.944800pt;}
._1{width:16.860800pt;}
._14{width:18.304000pt;}
._2{width:19.508800pt;}
._12{width:20.464000pt;}
._c{width:21.542400pt;}
._a{width:22.505600pt;}
._8{width:24.300800pt;}
._1d{width:25.465867pt;}
._b{width:26.416000pt;}
._6{width:27.452800pt;}
._11{width:28.860800pt;}
._16{width:29.824000pt;}
._18{width:30.973333pt;}
._9{width:32.752000pt;}
._1a{width:33.712000pt;}
._13{width:36.527467pt;}
._e{width:37.568000pt;}
._f{width:40.128000pt;}
._10{width:42.496000pt;}
._19{width:44.097067pt;}
._4{width:46.316800pt;}
._7{width:56.051733pt;}
._1c{width:57.990400pt;}
._17{width:89.123200pt;}
._15{width:274.275200pt;}
._1b{width:551.360000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y99{bottom:105.188000pt;}
.y69{bottom:107.108000pt;}
.y40{bottom:124.066667pt;}
.y5a{bottom:124.866667pt;}
.y25{bottom:125.188000pt;}
.y98{bottom:142.308000pt;}
.y3f{bottom:142.466667pt;}
.y59{bottom:143.266667pt;}
.y68{bottom:144.066667pt;}
.y3e{bottom:160.866667pt;}
.y24{bottom:162.146667pt;}
.y67{bottom:162.466667pt;}
.y82{bottom:162.788000pt;}
.y97{bottom:179.266667pt;}
.y58{bottom:180.388000pt;}
.y66{bottom:180.866667pt;}
.y81{bottom:181.188000pt;}
.y3d{bottom:197.988000pt;}
.y57{bottom:198.788000pt;}
.y23{bottom:199.266667pt;}
.y80{bottom:199.588000pt;}
.y96{bottom:216.388000pt;}
.y22{bottom:217.666667pt;}
.y7f{bottom:217.988000pt;}
.y95{bottom:234.788000pt;}
.y3c{bottom:235.108000pt;}
.y56{bottom:235.908000pt;}
.y21{bottom:236.066667pt;}
.y7e{bottom:236.388000pt;}
.y3b{bottom:253.508000pt;}
.y65{bottom:254.466667pt;}
.y7d{bottom:254.788000pt;}
.y94{bottom:271.908000pt;}
.y55{bottom:272.866667pt;}
.y20{bottom:273.188000pt;}
.y3a{bottom:290.466667pt;}
.y54{bottom:291.266667pt;}
.y7c{bottom:291.908000pt;}
.y39{bottom:308.866667pt;}
.y1f{bottom:310.146667pt;}
.y7b{bottom:310.308000pt;}
.y53{bottom:328.066667pt;}
.y64{bottom:328.388000pt;}
.y1e{bottom:328.546667pt;}
.y7a{bottom:328.706667pt;}
.y38{bottom:345.988000pt;}
.y52{bottom:346.466667pt;}
.y63{bottom:346.788000pt;}
.y1d{bottom:346.946667pt;}
.y79{bottom:347.108000pt;}
.y62{bottom:365.188000pt;}
.y78{bottom:365.508000pt;}
.y37{bottom:383.108000pt;}
.y51{bottom:383.588000pt;}
.y77{bottom:383.908000pt;}
.y1c{bottom:384.066667pt;}
.y93{bottom:401.508000pt;}
.y50{bottom:401.988000pt;}
.y61{bottom:402.308000pt;}
.y36{bottom:420.066667pt;}
.y60{bottom:420.706667pt;}
.y76{bottom:420.866667pt;}
.y1b{bottom:421.188000pt;}
.y92{bottom:438.466667pt;}
.y4f{bottom:439.108000pt;}
.y1a{bottom:439.588000pt;}
.y35{bottom:457.188000pt;}
.y19{bottom:457.988000pt;}
.y91{bottom:475.588000pt;}
.y4e{bottom:476.066667pt;}
.y18{bottom:476.388000pt;}
.y90{bottom:493.988000pt;}
.y34{bottom:494.308000pt;}
.y4d{bottom:494.466667pt;}
.y17{bottom:494.788000pt;}
.y8f{bottom:512.388000pt;}
.y33{bottom:512.706667pt;}
.y16{bottom:513.188000pt;}
.y75{bottom:513.506667pt;}
.y4c{bottom:531.588000pt;}
.y74{bottom:531.908000pt;}
.y8e{bottom:549.506667pt;}
.y32{bottom:549.666667pt;}
.y15{bottom:550.146667pt;}
.y5f{bottom:550.308000pt;}
.y4b{bottom:568.706667pt;}
.y73{bottom:568.866667pt;}
.y8d{bottom:586.466667pt;}
.y31{bottom:586.788000pt;}
.y4a{bottom:587.108000pt;}
.y72{bottom:587.266667pt;}
.y8c{bottom:604.866667pt;}
.y5e{bottom:605.506667pt;}
.y30{bottom:623.908000pt;}
.y49{bottom:624.066667pt;}
.y14{bottom:624.388000pt;}
.y8b{bottom:641.988000pt;}
.y2f{bottom:642.308000pt;}
.y48{bottom:642.466667pt;}
.y13{bottom:642.788000pt;}
.y12{bottom:661.188000pt;}
.y8a{bottom:679.108000pt;}
.y2e{bottom:679.266667pt;}
.y47{bottom:679.588000pt;}
.y2d{bottom:697.666667pt;}
.y5d{bottom:697.988000pt;}
.y11{bottom:698.146667pt;}
.y9c{bottom:698.308000pt;}
.y89{bottom:716.066667pt;}
.y5c{bottom:716.388000pt;}
.y10{bottom:716.546667pt;}
.y46{bottom:716.706667pt;}
.y2c{bottom:734.788000pt;}
.yf{bottom:734.946667pt;}
.y45{bottom:735.108000pt;}
.y88{bottom:753.188000pt;}
.ye{bottom:753.346667pt;}
.y44{bottom:753.506667pt;}
.y71{bottom:753.666667pt;}
.y87{bottom:771.588000pt;}
.yd{bottom:771.746667pt;}
.y2b{bottom:771.906667pt;}
.y9b{bottom:772.066667pt;}
.yc{bottom:790.146667pt;}
.y5b{bottom:790.306667pt;}
.y43{bottom:790.466667pt;}
.y70{bottom:790.788000pt;}
.yb{bottom:808.546667pt;}
.y86{bottom:808.706667pt;}
.y2a{bottom:808.866667pt;}
.y6f{bottom:809.188000pt;}
.y42{bottom:827.266667pt;}
.y6e{bottom:827.588000pt;}
.ya{bottom:845.666667pt;}
.y29{bottom:845.988000pt;}
.y9{bottom:864.066667pt;}
.y28{bottom:864.388000pt;}
.y6d{bottom:864.706667pt;}
.y85{bottom:882.788000pt;}
.y6c{bottom:883.106667pt;}
.y84{bottom:901.188000pt;}
.y27{bottom:901.506667pt;}
.y26{bottom:919.906667pt;}
.y9a{bottom:920.066667pt;}
.y83{bottom:938.306667pt;}
.y6b{bottom:938.466667pt;}
.y8{bottom:956.866667pt;}
.y7{bottom:975.266667pt;}
.y41{bottom:993.666667pt;}
.y6a{bottom:993.988000pt;}
.y6{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x9{left:127.678667pt;}
.x2{left:142.720000pt;}
.xa{left:220.320000pt;}
.x8{left:242.400000pt;}
.x6{left:266.560000pt;}
.x5{left:312.640000pt;}
.x7{left:314.078667pt;}
}




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