
    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_b3a34bbb239d77d1ce7523fb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_350702f041b589541f476bb0.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8760731b699b4734b0660a40.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2596e59cb0b32a701c275786.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bc1292fe3964c3cc799fa9fc.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f40d4786879471aa2ceeac21.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_d1b5b8967323a74d5f77b59b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b703e40c98e758b4a8052d3f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_88d4aa1eb9fb53da8ccca848.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v1{vertical-align:-36.000000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.612000px;}
.ls18{letter-spacing:-0.460200px;}
.lsa{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.262200px;}
.ls11{letter-spacing:-0.152400px;}
.lse{letter-spacing:-0.109200px;}
.ls9{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls7{letter-spacing:0.025920px;}
.lsc{letter-spacing:0.152400px;}
.lsd{letter-spacing:0.152640px;}
.ls3{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.262200px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.666000px;}
.ls17{letter-spacing:16.506720px;}
.ls13{letter-spacing:25.505280px;}
.ls10{letter-spacing:29.105280px;}
.lsf{letter-spacing:32.849280px;}
.ls16{letter-spacing:46.026720px;}
.ls4{letter-spacing:89.585280px;}
.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;}
}
.ws8{word-spacing:-16.822200px;}
.ws6{word-spacing:-16.712400px;}
.ws5{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.450800px;}
.wsa{word-spacing:-16.407600px;}
.wsb{word-spacing:-16.297800px;}
.wsc{word-spacing:-16.254600px;}
.wsd{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.wse{word-spacing:-14.479800px;}
.ws0{word-spacing:-13.500000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._11{margin-left:-2.421600px;}
._0{margin-left:-1.061280px;}
._1{width:1.526880px;}
._2{width:2.563200px;}
._3{width:3.733920px;}
._6{width:4.852800px;}
._a{width:6.379680px;}
._9{width:7.950240px;}
._b{width:9.062880px;}
._c{width:11.062080px;}
._f{width:12.585600px;}
._e{width:13.645440px;}
._d{width:14.906880px;}
._13{width:18.017280px;}
._10{width:19.275840px;}
._15{width:20.292960px;}
._5{width:21.798720px;}
._4{width:23.117760px;}
._14{width:24.376320px;}
._12{width:26.714160px;}
._1c{width:28.054320px;}
._1b{width:29.342160px;}
._7{width:30.536640px;}
._8{width:31.860000px;}
._16{width:33.009600px;}
._18{width:150.323280px;}
._17{width:152.328240px;}
._19{width:177.812880px;}
._1a{width:179.127600px;}
.fc8{color:rgb(17,85,204);}
.fc7{color:rgb(0,0,255);}
.fc6{color:rgb(79,98,40);}
.fc4{color:rgb(112,48,160);}
.fc3{color:rgb(118,146,60);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc5{color:rgb(148,54,52);}
.fc0{color:rgb(5,99,193);}
.fs8{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:51.120000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:77.760000px;}
.fs4{font-size:126.000000px;}
.fs3{font-size:149.760000px;}
.fs9{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:56.736000px;}
.y94{bottom:116.136000px;}
.y56{bottom:118.836000px;}
.y6b{bottom:121.176000px;}
.y7a{bottom:122.976000px;}
.y2f{bottom:123.516000px;}
.yb4{bottom:130.356000px;}
.y93{bottom:138.096000px;}
.y55{bottom:140.976000px;}
.y6a{bottom:142.956000px;}
.y79{bottom:144.936000px;}
.y2e{bottom:145.296000px;}
.yb3{bottom:151.410000px;}
.y92{bottom:159.870000px;}
.y54{bottom:162.750000px;}
.y69{bottom:164.730000px;}
.y78{bottom:166.710000px;}
.y2d{bottom:167.070000px;}
.yb2{bottom:171.210000px;}
.y91{bottom:181.650000px;}
.y53{bottom:184.530000px;}
.y68{bottom:186.510000px;}
.y77{bottom:188.490000px;}
.y2c{bottom:188.850000px;}
.yb1{bottom:191.190000px;}
.y90{bottom:203.430000px;}
.y52{bottom:206.490000px;}
.y67{bottom:208.470000px;}
.y76{bottom:210.270000px;}
.y2b{bottom:210.810000px;}
.yb0{bottom:210.990000px;}
.y8f{bottom:225.210000px;}
.y51{bottom:228.270000px;}
.y66{bottom:230.250000px;}
.yaf{bottom:230.790000px;}
.y75{bottom:232.230000px;}
.y2a{bottom:232.590000px;}
.y8e{bottom:247.170000px;}
.y50{bottom:250.050000px;}
.yae{bottom:250.590000px;}
.y65{bottom:252.030000px;}
.y74{bottom:254.010000px;}
.y29{bottom:254.370000px;}
.y8d{bottom:268.950000px;}
.yad{bottom:270.390000px;}
.y4f{bottom:271.470000px;}
.y64{bottom:273.810000px;}
.y28{bottom:275.790000px;}
.yac{bottom:290.370000px;}
.y8c{bottom:290.730000px;}
.y4e{bottom:293.250000px;}
.y7d{bottom:293.610000px;}
.y63{bottom:295.590000px;}
.y73{bottom:297.570000px;}
.y27{bottom:297.930000px;}
.yab{bottom:310.215000px;}
.y8b{bottom:312.555000px;}
.y4d{bottom:315.255000px;}
.y7c{bottom:315.615000px;}
.y26{bottom:316.695000px;}
.y62{bottom:317.595000px;}
.y72{bottom:319.395000px;}
.yaa{bottom:330.015000px;}
.y8a{bottom:334.335000px;}
.y25{bottom:335.415000px;}
.y4c{bottom:337.035000px;}
.y7b{bottom:337.395000px;}
.y61{bottom:339.375000px;}
.y71{bottom:341.355000px;}
.ya9{bottom:349.815000px;}
.y24{bottom:352.875000px;}
.y89{bottom:356.295000px;}
.y4b{bottom:359.175000px;}
.y60{bottom:361.155000px;}
.y70{bottom:363.135000px;}
.ya8{bottom:369.615000px;}
.y23{bottom:371.775000px;}
.y88{bottom:377.715000px;}
.y4a{bottom:380.955000px;}
.y5f{bottom:382.935000px;}
.y6f{bottom:384.195000px;}
.ya7{bottom:389.595000px;}
.y22{bottom:390.855000px;}
.y87{bottom:399.855000px;}
.y49{bottom:402.735000px;}
.y6e{bottom:404.715000px;}
.y5e{bottom:404.895000px;}
.ya6{bottom:409.395000px;}
.y21{bottom:409.755000px;}
.y86{bottom:421.635000px;}
.y48{bottom:424.695000px;}
.y5d{bottom:426.675000px;}
.y20{bottom:428.835000px;}
.ya5{bottom:429.195000px;}
.y85{bottom:443.595000px;}
.y6d{bottom:444.495000px;}
.y47{bottom:446.475000px;}
.y1f{bottom:447.735000px;}
.y5c{bottom:448.455000px;}
.ya4{bottom:448.995000px;}
.y84{bottom:465.375000px;}
.y1e{bottom:466.635000px;}
.y46{bottom:468.255000px;}
.ya3{bottom:468.795000px;}
.y5b{bottom:470.235000px;}
.y1d{bottom:485.715000px;}
.y83{bottom:487.155000px;}
.ya2{bottom:488.775000px;}
.y45{bottom:490.035000px;}
.y5a{bottom:492.015000px;}
.y1c{bottom:504.615000px;}
.ya1{bottom:508.575000px;}
.y82{bottom:508.935000px;}
.y44{bottom:511.995000px;}
.y59{bottom:512.895000px;}
.y1b{bottom:523.695000px;}
.y81{bottom:526.755000px;}
.ya0{bottom:528.375000px;}
.y43{bottom:533.775000px;}
.y1a{bottom:542.595000px;}
.y9f{bottom:548.175000px;}
.y42{bottom:555.555000px;}
.y19{bottom:562.065000px;}
.y9e{bottom:568.005000px;}
.y41{bottom:577.005000px;}
.y58{bottom:577.365000px;}
.y18{bottom:580.965000px;}
.y9d{bottom:587.985000px;}
.y40{bottom:598.785000px;}
.y57{bottom:599.145000px;}
.y17{bottom:599.325000px;}
.y9c{bottom:607.785000px;}
.y16{bottom:617.145000px;}
.y3f{bottom:621.105000px;}
.y9b{bottom:627.585000px;}
.y15{bottom:635.865000px;}
.y3e{bottom:642.885000px;}
.y9a{bottom:647.385000px;}
.y14{bottom:653.145000px;}
.y3d{bottom:664.665000px;}
.y99{bottom:667.185000px;}
.y13{bottom:670.425000px;}
.y3c{bottom:686.445000px;}
.y98{bottom:687.165000px;}
.y12{bottom:694.365000px;}
.y97{bottom:706.965000px;}
.y3b{bottom:708.405000px;}
.y11{bottom:711.645000px;}
.y10{bottom:722.085000px;}
.y96{bottom:726.765000px;}
.y80{bottom:728.745000px;}
.y3a{bottom:730.185000px;}
.yf{bottom:739.365000px;}
.y95{bottom:749.445000px;}
.y7f{bottom:750.525000px;}
.y39{bottom:751.965000px;}
.ye{bottom:766.005000px;}
.y7e{bottom:768.345000px;}
.y38{bottom:773.745000px;}
.yd{bottom:788.505000px;}
.y37{bottom:795.525000px;}
.yc{bottom:804.705000px;}
.y36{bottom:817.530000px;}
.y35{bottom:839.310000px;}
.yb{bottom:842.190000px;}
.y34{bottom:861.090000px;}
.y33{bottom:882.870000px;}
.ya{bottom:885.210000px;}
.y32{bottom:904.830000px;}
.y31{bottom:926.610000px;}
.y9{bottom:928.410000px;}
.y6c{bottom:948.030000px;}
.y30{bottom:948.390000px;}
.y7{bottom:966.930000px;}
.y6{bottom:990.150000px;}
.y5{bottom:1007.970000px;}
.y4{bottom:1025.970000px;}
.y3{bottom:1043.250000px;}
.y2{bottom:1059.270000px;}
.y1{bottom:1075.860000px;}
.hb{height:38.158594px;}
.h14{height:41.522695px;}
.h2{height:47.344922px;}
.h3{height:48.616875px;}
.h9{height:51.519375px;}
.h1{height:52.998047px;}
.h4{height:54.421875px;}
.h11{height:58.621992px;}
.ha{height:58.651172px;}
.he{height:60.226875px;}
.h13{height:62.211094px;}
.hc{height:64.978594px;}
.h6{height:65.010937px;}
.h10{height:66.078281px;}
.hd{height:66.757500px;}
.h5{height:68.084282px;}
.hf{height:68.956875px;}
.h8{height:123.662109px;}
.h7{height:150.930000px;}
.h12{height:169.070625px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:81.000000px;}
.x7{left:108.036000px;}
.xc{left:115.596000px;}
.x9{left:116.676000px;}
.x8{left:119.916000px;}
.x1e{left:135.036000px;}
.x18{left:145.296000px;}
.x1a{left:155.010000px;}
.x19{left:162.030000px;}
.x1b{left:163.830000px;}
.x12{left:176.250000px;}
.xd{left:178.050000px;}
.x2{left:194.610000px;}
.x13{left:217.470000px;}
.x3{left:255.450000px;}
.xe{left:282.270000px;}
.x14{left:294.015000px;}
.xb{left:297.975000px;}
.xf{left:325.515000px;}
.x11{left:346.755000px;}
.x17{left:347.835000px;}
.x1c{left:353.595000px;}
.x10{left:355.395000px;}
.x1d{left:366.375000px;}
.x1{left:432.255000px;}
.xa{left:459.075000px;}
.x6{left:588.705000px;}
.x16{left:621.105000px;}
.x5{left:689.010000px;}
.x4{left:713.670000px;}
@media print{
.v1{vertical-align:-32.000000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.544000pt;}
.ls18{letter-spacing:-0.409067pt;}
.lsa{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.233067pt;}
.ls11{letter-spacing:-0.135467pt;}
.lse{letter-spacing:-0.097067pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls7{letter-spacing:0.023040pt;}
.lsc{letter-spacing:0.135467pt;}
.lsd{letter-spacing:0.135680pt;}
.ls3{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.233067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.592000pt;}
.ls17{letter-spacing:14.672640pt;}
.ls13{letter-spacing:22.671360pt;}
.ls10{letter-spacing:25.871360pt;}
.lsf{letter-spacing:29.199360pt;}
.ls16{letter-spacing:40.912640pt;}
.ls4{letter-spacing:79.631360pt;}
.ws8{word-spacing:-14.953067pt;}
.ws6{word-spacing:-14.855467pt;}
.ws5{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.622933pt;}
.wsa{word-spacing:-14.584533pt;}
.wsb{word-spacing:-14.486933pt;}
.wsc{word-spacing:-14.448533pt;}
.wsd{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.wse{word-spacing:-12.870933pt;}
.ws0{word-spacing:-12.000000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._11{margin-left:-2.152533pt;}
._0{margin-left:-0.943360pt;}
._1{width:1.357227pt;}
._2{width:2.278400pt;}
._3{width:3.319040pt;}
._6{width:4.313600pt;}
._a{width:5.670827pt;}
._9{width:7.066880pt;}
._b{width:8.055893pt;}
._c{width:9.832960pt;}
._f{width:11.187200pt;}
._e{width:12.129280pt;}
._d{width:13.250560pt;}
._13{width:16.015360pt;}
._10{width:17.134080pt;}
._15{width:18.038187pt;}
._5{width:19.376640pt;}
._4{width:20.549120pt;}
._14{width:21.667840pt;}
._12{width:23.745920pt;}
._1c{width:24.937173pt;}
._1b{width:26.081920pt;}
._7{width:27.143680pt;}
._8{width:28.320000pt;}
._16{width:29.341867pt;}
._18{width:133.620693pt;}
._17{width:135.402880pt;}
._19{width:158.055893pt;}
._1a{width:159.224533pt;}
.fs8{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:45.440000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:69.120000pt;}
.fs4{font-size:112.000000pt;}
.fs3{font-size:133.120000pt;}
.fs9{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:50.432000pt;}
.y94{bottom:103.232000pt;}
.y56{bottom:105.632000pt;}
.y6b{bottom:107.712000pt;}
.y7a{bottom:109.312000pt;}
.y2f{bottom:109.792000pt;}
.yb4{bottom:115.872000pt;}
.y93{bottom:122.752000pt;}
.y55{bottom:125.312000pt;}
.y6a{bottom:127.072000pt;}
.y79{bottom:128.832000pt;}
.y2e{bottom:129.152000pt;}
.yb3{bottom:134.586667pt;}
.y92{bottom:142.106667pt;}
.y54{bottom:144.666667pt;}
.y69{bottom:146.426667pt;}
.y78{bottom:148.186667pt;}
.y2d{bottom:148.506667pt;}
.yb2{bottom:152.186667pt;}
.y91{bottom:161.466667pt;}
.y53{bottom:164.026667pt;}
.y68{bottom:165.786667pt;}
.y77{bottom:167.546667pt;}
.y2c{bottom:167.866667pt;}
.yb1{bottom:169.946667pt;}
.y90{bottom:180.826667pt;}
.y52{bottom:183.546667pt;}
.y67{bottom:185.306667pt;}
.y76{bottom:186.906667pt;}
.y2b{bottom:187.386667pt;}
.yb0{bottom:187.546667pt;}
.y8f{bottom:200.186667pt;}
.y51{bottom:202.906667pt;}
.y66{bottom:204.666667pt;}
.yaf{bottom:205.146667pt;}
.y75{bottom:206.426667pt;}
.y2a{bottom:206.746667pt;}
.y8e{bottom:219.706667pt;}
.y50{bottom:222.266667pt;}
.yae{bottom:222.746667pt;}
.y65{bottom:224.026667pt;}
.y74{bottom:225.786667pt;}
.y29{bottom:226.106667pt;}
.y8d{bottom:239.066667pt;}
.yad{bottom:240.346667pt;}
.y4f{bottom:241.306667pt;}
.y64{bottom:243.386667pt;}
.y28{bottom:245.146667pt;}
.yac{bottom:258.106667pt;}
.y8c{bottom:258.426667pt;}
.y4e{bottom:260.666667pt;}
.y7d{bottom:260.986667pt;}
.y63{bottom:262.746667pt;}
.y73{bottom:264.506667pt;}
.y27{bottom:264.826667pt;}
.yab{bottom:275.746667pt;}
.y8b{bottom:277.826667pt;}
.y4d{bottom:280.226667pt;}
.y7c{bottom:280.546667pt;}
.y26{bottom:281.506667pt;}
.y62{bottom:282.306667pt;}
.y72{bottom:283.906667pt;}
.yaa{bottom:293.346667pt;}
.y8a{bottom:297.186667pt;}
.y25{bottom:298.146667pt;}
.y4c{bottom:299.586667pt;}
.y7b{bottom:299.906667pt;}
.y61{bottom:301.666667pt;}
.y71{bottom:303.426667pt;}
.ya9{bottom:310.946667pt;}
.y24{bottom:313.666667pt;}
.y89{bottom:316.706667pt;}
.y4b{bottom:319.266667pt;}
.y60{bottom:321.026667pt;}
.y70{bottom:322.786667pt;}
.ya8{bottom:328.546667pt;}
.y23{bottom:330.466667pt;}
.y88{bottom:335.746667pt;}
.y4a{bottom:338.626667pt;}
.y5f{bottom:340.386667pt;}
.y6f{bottom:341.506667pt;}
.ya7{bottom:346.306667pt;}
.y22{bottom:347.426667pt;}
.y87{bottom:355.426667pt;}
.y49{bottom:357.986667pt;}
.y6e{bottom:359.746667pt;}
.y5e{bottom:359.906667pt;}
.ya6{bottom:363.906667pt;}
.y21{bottom:364.226667pt;}
.y86{bottom:374.786667pt;}
.y48{bottom:377.506667pt;}
.y5d{bottom:379.266667pt;}
.y20{bottom:381.186667pt;}
.ya5{bottom:381.506667pt;}
.y85{bottom:394.306667pt;}
.y6d{bottom:395.106667pt;}
.y47{bottom:396.866667pt;}
.y1f{bottom:397.986667pt;}
.y5c{bottom:398.626667pt;}
.ya4{bottom:399.106667pt;}
.y84{bottom:413.666667pt;}
.y1e{bottom:414.786667pt;}
.y46{bottom:416.226667pt;}
.ya3{bottom:416.706667pt;}
.y5b{bottom:417.986667pt;}
.y1d{bottom:431.746667pt;}
.y83{bottom:433.026667pt;}
.ya2{bottom:434.466667pt;}
.y45{bottom:435.586667pt;}
.y5a{bottom:437.346667pt;}
.y1c{bottom:448.546667pt;}
.ya1{bottom:452.066667pt;}
.y82{bottom:452.386667pt;}
.y44{bottom:455.106667pt;}
.y59{bottom:455.906667pt;}
.y1b{bottom:465.506667pt;}
.y81{bottom:468.226667pt;}
.ya0{bottom:469.666667pt;}
.y43{bottom:474.466667pt;}
.y1a{bottom:482.306667pt;}
.y9f{bottom:487.266667pt;}
.y42{bottom:493.826667pt;}
.y19{bottom:499.613333pt;}
.y9e{bottom:504.893333pt;}
.y41{bottom:512.893333pt;}
.y58{bottom:513.213333pt;}
.y18{bottom:516.413333pt;}
.y9d{bottom:522.653333pt;}
.y40{bottom:532.253333pt;}
.y57{bottom:532.573333pt;}
.y17{bottom:532.733333pt;}
.y9c{bottom:540.253333pt;}
.y16{bottom:548.573333pt;}
.y3f{bottom:552.093333pt;}
.y9b{bottom:557.853333pt;}
.y15{bottom:565.213333pt;}
.y3e{bottom:571.453333pt;}
.y9a{bottom:575.453333pt;}
.y14{bottom:580.573333pt;}
.y3d{bottom:590.813333pt;}
.y99{bottom:593.053333pt;}
.y13{bottom:595.933333pt;}
.y3c{bottom:610.173333pt;}
.y98{bottom:610.813333pt;}
.y12{bottom:617.213333pt;}
.y97{bottom:628.413333pt;}
.y3b{bottom:629.693333pt;}
.y11{bottom:632.573333pt;}
.y10{bottom:641.853333pt;}
.y96{bottom:646.013333pt;}
.y80{bottom:647.773333pt;}
.y3a{bottom:649.053333pt;}
.yf{bottom:657.213333pt;}
.y95{bottom:666.173333pt;}
.y7f{bottom:667.133333pt;}
.y39{bottom:668.413333pt;}
.ye{bottom:680.893333pt;}
.y7e{bottom:682.973333pt;}
.y38{bottom:687.773333pt;}
.yd{bottom:700.893333pt;}
.y37{bottom:707.133333pt;}
.yc{bottom:715.293333pt;}
.y36{bottom:726.693333pt;}
.y35{bottom:746.053333pt;}
.yb{bottom:748.613333pt;}
.y34{bottom:765.413333pt;}
.y33{bottom:784.773333pt;}
.ya{bottom:786.853333pt;}
.y32{bottom:804.293333pt;}
.y31{bottom:823.653333pt;}
.y9{bottom:825.253333pt;}
.y6c{bottom:842.693333pt;}
.y30{bottom:843.013333pt;}
.y7{bottom:859.493333pt;}
.y6{bottom:880.133333pt;}
.y5{bottom:895.973333pt;}
.y4{bottom:911.973333pt;}
.y3{bottom:927.333333pt;}
.y2{bottom:941.573333pt;}
.y1{bottom:956.320000pt;}
.hb{height:33.918750pt;}
.h14{height:36.909063pt;}
.h2{height:42.084375pt;}
.h3{height:43.215000pt;}
.h9{height:45.795000pt;}
.h1{height:47.109375pt;}
.h4{height:48.375000pt;}
.h11{height:52.108438pt;}
.ha{height:52.134375pt;}
.he{height:53.535000pt;}
.h13{height:55.298750pt;}
.hc{height:57.758750pt;}
.h6{height:57.787500pt;}
.h10{height:58.736250pt;}
.hd{height:59.340000pt;}
.h5{height:60.519362pt;}
.hf{height:61.295000pt;}
.h8{height:109.921875pt;}
.h7{height:134.160000pt;}
.h12{height:150.285000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:72.000000pt;}
.x7{left:96.032000pt;}
.xc{left:102.752000pt;}
.x9{left:103.712000pt;}
.x8{left:106.592000pt;}
.x1e{left:120.032000pt;}
.x18{left:129.152000pt;}
.x1a{left:137.786667pt;}
.x19{left:144.026667pt;}
.x1b{left:145.626667pt;}
.x12{left:156.666667pt;}
.xd{left:158.266667pt;}
.x2{left:172.986667pt;}
.x13{left:193.306667pt;}
.x3{left:227.066667pt;}
.xe{left:250.906667pt;}
.x14{left:261.346667pt;}
.xb{left:264.866667pt;}
.xf{left:289.346667pt;}
.x11{left:308.226667pt;}
.x17{left:309.186667pt;}
.x1c{left:314.306667pt;}
.x10{left:315.906667pt;}
.x1d{left:325.666667pt;}
.x1{left:384.226667pt;}
.xa{left:408.066667pt;}
.x6{left:523.293333pt;}
.x16{left:552.093333pt;}
.x5{left:612.453333pt;}
.x4{left:634.373333pt;}
}




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