
    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_eb0a879ed465b53498cd35f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_8334e45793dabbf833a18faa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_983fb13f1df6f577697c3ef9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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;}
.ls23{letter-spacing:-4.752000px;}
.ls4{letter-spacing:-1.365120px;}
.ls5{letter-spacing:-0.568800px;}
.ls21{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.384480px;}
.ls20{letter-spacing:-0.360720px;}
.ls1f{letter-spacing:-0.336960px;}
.ls2{letter-spacing:-0.324000px;}
.lsc{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.192240px;}
.lsd{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.119520px;}
.ls1e{letter-spacing:-0.084240px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.113760px;}
.ls1d{letter-spacing:0.120240px;}
.ls10{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.252000px;}
.ls0{letter-spacing:0.288000px;}
.ls24{letter-spacing:0.312480px;}
.ls11{letter-spacing:0.324000px;}
.ls27{letter-spacing:0.335520px;}
.ls1c{letter-spacing:0.336960px;}
.ls1a{letter-spacing:0.529200px;}
.ls13{letter-spacing:0.648000px;}
.ls16{letter-spacing:1.188000px;}
.ls17{letter-spacing:1.371600px;}
.ls19{letter-spacing:1.404000px;}
.ls18{letter-spacing:1.512000px;}
.ls14{letter-spacing:1.728000px;}
.ls22{letter-spacing:29.916000px;}
.lsf{letter-spacing:30.240000px;}
.ls26{letter-spacing:49.572000px;}
.ls25{letter-spacing:49.608000px;}
.lse{letter-spacing:97.524000px;}
.ls15{letter-spacing:178.200000px;}
.lsa{letter-spacing:192.960000px;}
.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;}
}
.ws18{word-spacing:-70.308000px;}
.ws33{word-spacing:-70.056000px;}
.ws2{word-spacing:-53.250480px;}
.ws49{word-spacing:-43.747200px;}
.wsf{word-spacing:-40.320000px;}
.ws14{word-spacing:-39.888000px;}
.ws38{word-spacing:-33.546960px;}
.ws37{word-spacing:-33.426720px;}
.ws0{word-spacing:-31.625280px;}
.ws26{word-spacing:-31.212000px;}
.ws1{word-spacing:-31.056480px;}
.ws2f{word-spacing:-30.240000px;}
.ws44{word-spacing:-30.024000px;}
.ws30{word-spacing:-29.700000px;}
.ws31{word-spacing:-26.621280px;}
.ws35{word-spacing:-23.755680px;}
.ws36{word-spacing:-23.334480px;}
.ws34{word-spacing:-23.081760px;}
.ws3f{word-spacing:-20.016000px;}
.ws39{word-spacing:-19.584000px;}
.ws3{word-spacing:-16.493760px;}
.ws1e{word-spacing:-10.152000px;}
.ws1c{word-spacing:-2.520000px;}
.ws2b{word-spacing:-2.376000px;}
.wsc{word-spacing:-1.922400px;}
.ws32{word-spacing:-1.764000px;}
.ws3c{word-spacing:-1.684800px;}
.ws28{word-spacing:-1.620000px;}
.ws6{word-spacing:-1.584000px;}
.ws27{word-spacing:-1.512000px;}
.ws4b{word-spacing:-1.249920px;}
.ws2c{word-spacing:-1.188000px;}
.ws3b{word-spacing:-1.082160px;}
.ws2d{word-spacing:-1.008000px;}
.ws29{word-spacing:-0.972000px;}
.ws46{word-spacing:-0.928800px;}
.ws4{word-spacing:-0.864000px;}
.ws24{word-spacing:-0.792000px;}
.ws20{word-spacing:-0.756000px;}
.ws22{word-spacing:-0.504000px;}
.ws4a{word-spacing:-0.468720px;}
.ws12{word-spacing:-0.288000px;}
.ws40{word-spacing:-0.252000px;}
.ws1d{word-spacing:-0.219600px;}
.ws2a{word-spacing:-0.216000px;}
.ws25{word-spacing:-0.144000px;}
.ws7{word-spacing:-0.108000px;}
.ws23{word-spacing:-0.072000px;}
.ws8{word-spacing:0.000000px;}
.ws10{word-spacing:0.144000px;}
.wsb{word-spacing:0.192240px;}
.ws41{word-spacing:0.216000px;}
.ws19{word-spacing:0.288000px;}
.ws21{word-spacing:0.324000px;}
.ws5{word-spacing:0.360000px;}
.ws3d{word-spacing:0.360720px;}
.ws3e{word-spacing:0.421200px;}
.wse{word-spacing:0.432000px;}
.ws4c{word-spacing:0.503280px;}
.ws1f{word-spacing:0.540000px;}
.wsa{word-spacing:0.568800px;}
.wsd{word-spacing:0.682560px;}
.ws17{word-spacing:0.720000px;}
.ws11{word-spacing:0.864000px;}
.ws45{word-spacing:0.939600px;}
.ws43{word-spacing:0.961200px;}
.ws1b{word-spacing:1.152000px;}
.ws16{word-spacing:1.296000px;}
.ws13{word-spacing:1.440000px;}
.ws42{word-spacing:1.695600px;}
.ws15{word-spacing:1.728000px;}
.ws2e{word-spacing:1.771200px;}
.ws48{word-spacing:2.052000px;}
.ws3a{word-spacing:2.202480px;}
.ws1a{word-spacing:2.656800px;}
.ws9{word-spacing:2.844000px;}
.ws47{word-spacing:4.752000px;}
._6{margin-left:-10.443168px;}
._5{margin-left:-9.089424px;}
._2{margin-left:-7.560000px;}
._9{margin-left:-5.464800px;}
._1{margin-left:-3.312000px;}
._0{margin-left:-1.872000px;}
._3{width:1.296000px;}
._4{width:2.322000px;}
._a{width:3.535200px;}
._c{width:31.784400px;}
._d{width:34.221600px;}
._7{width:41.184000px;}
._8{width:192.960000px;}
._b{width:1101.708000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(228,0,60);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:113.760000px;}
.fsa{font-size:120.240000px;}
.fs6{font-size:144.000000px;}
.fsc{font-size:156.240000px;}
.fsd{font-size:167.760000px;}
.fs3{font-size:192.240000px;}
.fs7{font-size:252.000000px;}
.fs4{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:20.463150px;}
.y1{bottom:20.611050px;}
.y5{bottom:20.675100px;}
.y3{bottom:20.769150px;}
.yc{bottom:21.083100px;}
.y64{bottom:104.852550px;}
.y28{bottom:129.288150px;}
.y54{bottom:154.975500px;}
.y27{bottom:161.688150px;}
.y5e{bottom:166.194900px;}
.y63{bottom:169.652550px;}
.y32{bottom:176.097300px;}
.y1c{bottom:180.314700px;}
.y44{bottom:187.803900px;}
.y1b{bottom:191.114700px;}
.y26{bottom:194.088150px;}
.y5d{bottom:198.594900px;}
.y1a{bottom:204.493800px;}
.y3b{bottom:207.045900px;}
.y31{bottom:208.497300px;}
.y25{bottom:226.488150px;}
.y55{bottom:231.372600px;}
.y62{bottom:234.452550px;}
.y19{bottom:236.893800px;}
.y3a{bottom:239.445900px;}
.y43{bottom:243.603900px;}
.y10{bottom:249.300000px;}
.y5c{bottom:255.105900px;}
.y30{bottom:265.008300px;}
.y24{bottom:267.879150px;}
.y18{bottom:269.293800px;}
.y5b{bottom:287.505900px;}
.y42{bottom:289.503900px;}
.y39{bottom:295.794900px;}
.y2f{bottom:297.408300px;}
.y57{bottom:301.619250px;}
.y53{bottom:303.274800px;}
.y23{bottom:318.288150px;}
.y38{bottom:328.194900px;}
.y4f{bottom:331.828680px;}
.y17{bottom:334.093800px;}
.y41{bottom:337.743900px;}
.y5a{bottom:343.854900px;}
.y22{bottom:350.688150px;}
.y2e{bottom:353.748300px;}
.y4e{bottom:360.638760px;}
.yf{bottom:365.760000px;}
.y6{bottom:366.958200px;}
.y5f{bottom:377.031900px;}
.y40{bottom:383.814900px;}
.y37{bottom:384.705900px;}
.y2d{bottom:386.148300px;}
.y4d{bottom:388.859160px;}
.y16{bottom:398.893800px;}
.y59{bottom:400.203900px;}
.y4c{bottom:418.848600px;}
.yb{bottom:423.802350px;}
.y60{bottom:429.762900px;}
.y3f{bottom:432.603900px;}
.y4{bottom:433.281450px;}
.y21{bottom:439.599150px;}
.y36{bottom:441.054900px;}
.y2c{bottom:442.488150px;}
.y4b{bottom:457.219920px;}
.y15{bottom:463.693800px;}
.y58{bottom:465.003900px;}
.y2b{bottom:474.888150px;}
.y9{bottom:478.670520px;}
.y20{bottom:480.990150px;}
.ye{bottom:482.220000px;}
.y3e{bottom:489.114900px;}
.y51{bottom:490.068300px;}
.y4a{bottom:494.117040px;}
.y14{bottom:496.093800px;}
.y35{bottom:497.403900px;}
.y1f{bottom:513.390150px;}
.y3d{bottom:521.514900px;}
.y13{bottom:528.493800px;}
.y49{bottom:529.055580px;}
.y8{bottom:530.527260px;}
.y2a{bottom:531.408150px;}
.y52{bottom:536.926800px;}
.y65{bottom:538.795050px;}
.y61{bottom:540.301950px;}
.y34{bottom:553.914900px;}
.y48{bottom:561.635400px;}
.y1e{bottom:563.799150px;}
.y29{bottom:563.808150px;}
.y3c{bottom:577.863900px;}
.y7{bottom:582.384000px;}
.y47{bottom:591.931500px;}
.y50{bottom:591.974400px;}
.y12{bottom:593.293800px;}
.yd{bottom:598.500000px;}
.y33{bottom:610.263900px;}
.y56{bottom:610.900650px;}
.y1d{bottom:620.148150px;}
.y45{bottom:685.500000px;}
.ya{bottom:708.675000px;}
.y11{bottom:711.375000px;}
.y46{bottom:767.657100px;}
.hb{height:26.244141px;}
.h7{height:43.565273px;}
.h1{height:52.488281px;}
.he{height:61.411289px;}
.hc{height:69.809414px;}
.h2{height:78.626953px;}
.ha{height:78.732422px;}
.h6{height:82.820391px;}
.h3{height:82.931484px;}
.hd{height:87.655430px;}
.h8{height:104.976562px;}
.h10{height:113.746992px;}
.hf{height:113.899570px;}
.h11{height:122.133867px;}
.h4{height:140.143711px;}
.h9{height:183.708984px;}
.h5{height:192.631992px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x1a{left:126.929550px;}
.x1d{left:128.189550px;}
.xc{left:136.320000px;}
.x4{left:137.933850px;}
.x5{left:140.276400px;}
.x1e{left:170.151000px;}
.x7{left:174.107550px;}
.x1b{left:175.253550px;}
.xd{left:190.320000px;}
.xb{left:191.400000px;}
.x16{left:197.557800px;}
.xe{left:217.140000px;}
.x3{left:234.380550px;}
.x2{left:337.934550px;}
.x1{left:459.288300px;}
.x18{left:479.492250px;}
.x19{left:490.189050px;}
.x1c{left:623.315850px;}
.x8{left:743.766600px;}
.x9{left:805.309800px;}
.xa{left:859.309800px;}
.x10{left:923.025750px;}
.x11{left:927.839100px;}
.x12{left:998.916600px;}
.x13{left:1020.629460px;}
.x14{left:1028.779680px;}
.x6{left:1051.995300px;}
.x17{left:1062.116250px;}
.x15{left:1063.591860px;}
.xf{left:1151.305800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls23{letter-spacing:-4.224000pt;}
.ls4{letter-spacing:-1.213440pt;}
.ls5{letter-spacing:-0.505600pt;}
.ls21{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.341760pt;}
.ls20{letter-spacing:-0.320640pt;}
.ls1f{letter-spacing:-0.299520pt;}
.ls2{letter-spacing:-0.288000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.170880pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.106240pt;}
.ls1e{letter-spacing:-0.074880pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.101120pt;}
.ls1d{letter-spacing:0.106880pt;}
.ls10{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.224000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls24{letter-spacing:0.277760pt;}
.ls11{letter-spacing:0.288000pt;}
.ls27{letter-spacing:0.298240pt;}
.ls1c{letter-spacing:0.299520pt;}
.ls1a{letter-spacing:0.470400pt;}
.ls13{letter-spacing:0.576000pt;}
.ls16{letter-spacing:1.056000pt;}
.ls17{letter-spacing:1.219200pt;}
.ls19{letter-spacing:1.248000pt;}
.ls18{letter-spacing:1.344000pt;}
.ls14{letter-spacing:1.536000pt;}
.ls22{letter-spacing:26.592000pt;}
.lsf{letter-spacing:26.880000pt;}
.ls26{letter-spacing:44.064000pt;}
.ls25{letter-spacing:44.096000pt;}
.lse{letter-spacing:86.688000pt;}
.ls15{letter-spacing:158.400000pt;}
.lsa{letter-spacing:171.520000pt;}
.ws18{word-spacing:-62.496000pt;}
.ws33{word-spacing:-62.272000pt;}
.ws2{word-spacing:-47.333760pt;}
.ws49{word-spacing:-38.886400pt;}
.wsf{word-spacing:-35.840000pt;}
.ws14{word-spacing:-35.456000pt;}
.ws38{word-spacing:-29.819520pt;}
.ws37{word-spacing:-29.712640pt;}
.ws0{word-spacing:-28.111360pt;}
.ws26{word-spacing:-27.744000pt;}
.ws1{word-spacing:-27.605760pt;}
.ws2f{word-spacing:-26.880000pt;}
.ws44{word-spacing:-26.688000pt;}
.ws30{word-spacing:-26.400000pt;}
.ws31{word-spacing:-23.663360pt;}
.ws35{word-spacing:-21.116160pt;}
.ws36{word-spacing:-20.741760pt;}
.ws34{word-spacing:-20.517120pt;}
.ws3f{word-spacing:-17.792000pt;}
.ws39{word-spacing:-17.408000pt;}
.ws3{word-spacing:-14.661120pt;}
.ws1e{word-spacing:-9.024000pt;}
.ws1c{word-spacing:-2.240000pt;}
.ws2b{word-spacing:-2.112000pt;}
.wsc{word-spacing:-1.708800pt;}
.ws32{word-spacing:-1.568000pt;}
.ws3c{word-spacing:-1.497600pt;}
.ws28{word-spacing:-1.440000pt;}
.ws6{word-spacing:-1.408000pt;}
.ws27{word-spacing:-1.344000pt;}
.ws4b{word-spacing:-1.111040pt;}
.ws2c{word-spacing:-1.056000pt;}
.ws3b{word-spacing:-0.961920pt;}
.ws2d{word-spacing:-0.896000pt;}
.ws29{word-spacing:-0.864000pt;}
.ws46{word-spacing:-0.825600pt;}
.ws4{word-spacing:-0.768000pt;}
.ws24{word-spacing:-0.704000pt;}
.ws20{word-spacing:-0.672000pt;}
.ws22{word-spacing:-0.448000pt;}
.ws4a{word-spacing:-0.416640pt;}
.ws12{word-spacing:-0.256000pt;}
.ws40{word-spacing:-0.224000pt;}
.ws1d{word-spacing:-0.195200pt;}
.ws2a{word-spacing:-0.192000pt;}
.ws25{word-spacing:-0.128000pt;}
.ws7{word-spacing:-0.096000pt;}
.ws23{word-spacing:-0.064000pt;}
.ws8{word-spacing:0.000000pt;}
.ws10{word-spacing:0.128000pt;}
.wsb{word-spacing:0.170880pt;}
.ws41{word-spacing:0.192000pt;}
.ws19{word-spacing:0.256000pt;}
.ws21{word-spacing:0.288000pt;}
.ws5{word-spacing:0.320000pt;}
.ws3d{word-spacing:0.320640pt;}
.ws3e{word-spacing:0.374400pt;}
.wse{word-spacing:0.384000pt;}
.ws4c{word-spacing:0.447360pt;}
.ws1f{word-spacing:0.480000pt;}
.wsa{word-spacing:0.505600pt;}
.wsd{word-spacing:0.606720pt;}
.ws17{word-spacing:0.640000pt;}
.ws11{word-spacing:0.768000pt;}
.ws45{word-spacing:0.835200pt;}
.ws43{word-spacing:0.854400pt;}
.ws1b{word-spacing:1.024000pt;}
.ws16{word-spacing:1.152000pt;}
.ws13{word-spacing:1.280000pt;}
.ws42{word-spacing:1.507200pt;}
.ws15{word-spacing:1.536000pt;}
.ws2e{word-spacing:1.574400pt;}
.ws48{word-spacing:1.824000pt;}
.ws3a{word-spacing:1.957760pt;}
.ws1a{word-spacing:2.361600pt;}
.ws9{word-spacing:2.528000pt;}
.ws47{word-spacing:4.224000pt;}
._6{margin-left:-9.282816pt;}
._5{margin-left:-8.079488pt;}
._2{margin-left:-6.720000pt;}
._9{margin-left:-4.857600pt;}
._1{margin-left:-2.944000pt;}
._0{margin-left:-1.664000pt;}
._3{width:1.152000pt;}
._4{width:2.064000pt;}
._a{width:3.142400pt;}
._c{width:28.252800pt;}
._d{width:30.419200pt;}
._7{width:36.608000pt;}
._8{width:171.520000pt;}
._b{width:979.296000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:101.120000pt;}
.fsa{font-size:106.880000pt;}
.fs6{font-size:128.000000pt;}
.fsc{font-size:138.880000pt;}
.fsd{font-size:149.120000pt;}
.fs3{font-size:170.880000pt;}
.fs7{font-size:224.000000pt;}
.fs4{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:18.189467pt;}
.y1{bottom:18.320933pt;}
.y5{bottom:18.377867pt;}
.y3{bottom:18.461467pt;}
.yc{bottom:18.740533pt;}
.y64{bottom:93.202267pt;}
.y28{bottom:114.922800pt;}
.y54{bottom:137.756000pt;}
.y27{bottom:143.722800pt;}
.y5e{bottom:147.728800pt;}
.y63{bottom:150.802267pt;}
.y32{bottom:156.530933pt;}
.y1c{bottom:160.279733pt;}
.y44{bottom:166.936800pt;}
.y1b{bottom:169.879733pt;}
.y26{bottom:172.522800pt;}
.y5d{bottom:176.528800pt;}
.y1a{bottom:181.772267pt;}
.y3b{bottom:184.040800pt;}
.y31{bottom:185.330933pt;}
.y25{bottom:201.322800pt;}
.y55{bottom:205.664533pt;}
.y62{bottom:208.402267pt;}
.y19{bottom:210.572267pt;}
.y3a{bottom:212.840800pt;}
.y43{bottom:216.536800pt;}
.y10{bottom:221.600000pt;}
.y5c{bottom:226.760800pt;}
.y30{bottom:235.562933pt;}
.y24{bottom:238.114800pt;}
.y18{bottom:239.372267pt;}
.y5b{bottom:255.560800pt;}
.y42{bottom:257.336800pt;}
.y39{bottom:262.928800pt;}
.y2f{bottom:264.362933pt;}
.y57{bottom:268.106000pt;}
.y53{bottom:269.577600pt;}
.y23{bottom:282.922800pt;}
.y38{bottom:291.728800pt;}
.y4f{bottom:294.958827pt;}
.y17{bottom:296.972267pt;}
.y41{bottom:300.216800pt;}
.y5a{bottom:305.648800pt;}
.y22{bottom:311.722800pt;}
.y2e{bottom:314.442933pt;}
.y4e{bottom:320.567787pt;}
.yf{bottom:325.120000pt;}
.y6{bottom:326.185067pt;}
.y5f{bottom:335.139467pt;}
.y40{bottom:341.168800pt;}
.y37{bottom:341.960800pt;}
.y2d{bottom:343.242933pt;}
.y4d{bottom:345.652587pt;}
.y16{bottom:354.572267pt;}
.y59{bottom:355.736800pt;}
.y4c{bottom:372.309867pt;}
.yb{bottom:376.713200pt;}
.y60{bottom:382.011467pt;}
.y3f{bottom:384.536800pt;}
.y4{bottom:385.139067pt;}
.y21{bottom:390.754800pt;}
.y36{bottom:392.048800pt;}
.y2c{bottom:393.322800pt;}
.y4b{bottom:406.417707pt;}
.y15{bottom:412.172267pt;}
.y58{bottom:413.336800pt;}
.y2b{bottom:422.122800pt;}
.y9{bottom:425.484907pt;}
.y20{bottom:427.546800pt;}
.ye{bottom:428.640000pt;}
.y3e{bottom:434.768800pt;}
.y51{bottom:435.616267pt;}
.y4a{bottom:439.215147pt;}
.y14{bottom:440.972267pt;}
.y35{bottom:442.136800pt;}
.y1f{bottom:456.346800pt;}
.y3d{bottom:463.568800pt;}
.y13{bottom:469.772267pt;}
.y49{bottom:470.271627pt;}
.y8{bottom:471.579787pt;}
.y2a{bottom:472.362800pt;}
.y52{bottom:477.268267pt;}
.y65{bottom:478.928933pt;}
.y61{bottom:480.268400pt;}
.y34{bottom:492.368800pt;}
.y48{bottom:499.231467pt;}
.y1e{bottom:501.154800pt;}
.y29{bottom:501.162800pt;}
.y3c{bottom:513.656800pt;}
.y7{bottom:517.674667pt;}
.y47{bottom:526.161333pt;}
.y50{bottom:526.199467pt;}
.y12{bottom:527.372267pt;}
.yd{bottom:532.000000pt;}
.y33{bottom:542.456800pt;}
.y56{bottom:543.022800pt;}
.y1d{bottom:551.242800pt;}
.y45{bottom:609.333333pt;}
.ya{bottom:629.933333pt;}
.y11{bottom:632.333333pt;}
.y46{bottom:682.361867pt;}
.hb{height:23.328125pt;}
.h7{height:38.724688pt;}
.h1{height:46.656250pt;}
.he{height:54.587812pt;}
.hc{height:62.052813pt;}
.h2{height:69.890625pt;}
.ha{height:69.984375pt;}
.h6{height:73.618125pt;}
.h3{height:73.716875pt;}
.hd{height:77.915937pt;}
.h8{height:93.312500pt;}
.h10{height:101.108438pt;}
.hf{height:101.244062pt;}
.h11{height:108.563437pt;}
.h4{height:124.572187pt;}
.h9{height:163.296875pt;}
.h5{height:171.228437pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:112.826267pt;}
.x1d{left:113.946267pt;}
.xc{left:121.173333pt;}
.x4{left:122.607867pt;}
.x5{left:124.690133pt;}
.x1e{left:151.245333pt;}
.x7{left:154.762267pt;}
.x1b{left:155.780933pt;}
.xd{left:169.173333pt;}
.xb{left:170.133333pt;}
.x16{left:175.606933pt;}
.xe{left:193.013333pt;}
.x3{left:208.338267pt;}
.x2{left:300.386267pt;}
.x1{left:408.256267pt;}
.x18{left:426.215333pt;}
.x19{left:435.723600pt;}
.x1c{left:554.058533pt;}
.x8{left:661.125867pt;}
.x9{left:715.830933pt;}
.xa{left:763.830933pt;}
.x10{left:820.467333pt;}
.x11{left:824.745867pt;}
.x12{left:887.925867pt;}
.x13{left:907.226187pt;}
.x14{left:914.470827pt;}
.x6{left:935.106933pt;}
.x17{left:944.103333pt;}
.x15{left:945.414987pt;}
.xf{left:1023.382933pt;}
}




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