
    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_ed78d56c5b41e4ebc897657b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_14f03b179defea9f3836a4ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.937012;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_1c12b1311f7ddfc9ae3db44d.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_a5f2093a1a25ce8ee235c511.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3735c7a44f7c89873d631f0d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_76298ab40e7a8d9ce2071597.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3a63f9fafefbc7b25267f016.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_19bd3b52b65514f964f70af8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.044922;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_4fbfc8d0deda6c1a900de860.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls7{letter-spacing:-0.463800px;}
.ls5{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.684000px;}
.ls9{letter-spacing:0.720000px;}
.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;}
}
.ws1{word-spacing:-21.041280px;}
.ws4{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.506440px;}
.ws0{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.192320px;}
._1{width:1.031040px;}
.fc3{color:rgb(0,100,209);}
.fc2{color:rgb(8,8,9);}
.fc4{color:rgb(0,0,255);}
.fc1{color:rgb(31,56,100);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.320000px;}
.y1{bottom:78.516000px;}
.y9e{bottom:112.356000px;}
.y8c{bottom:122.436000px;}
.yb4{bottom:125.676000px;}
.y5d{bottom:131.616000px;}
.y9d{bottom:133.056000px;}
.y2f{bottom:138.636000px;}
.y61{bottom:139.896000px;}
.y8b{bottom:143.136000px;}
.yb3{bottom:146.376000px;}
.y79{bottom:149.796000px;}
.y5c{bottom:152.310000px;}
.y9c{bottom:153.750000px;}
.ybd{bottom:156.810000px;}
.y60{bottom:157.170000px;}
.y2e{bottom:159.330000px;}
.y8a{bottom:163.830000px;}
.yb2{bottom:167.070000px;}
.y78{bottom:170.490000px;}
.y5b{bottom:173.010000px;}
.y9b{bottom:174.450000px;}
.y5f{bottom:174.990000px;}
.ybc{bottom:177.510000px;}
.y2d{bottom:180.030000px;}
.y89{bottom:184.530000px;}
.yb1{bottom:187.770000px;}
.y77{bottom:191.190000px;}
.y5e{bottom:191.730000px;}
.y5a{bottom:193.710000px;}
.y9a{bottom:195.150000px;}
.ybb{bottom:197.490000px;}
.y2c{bottom:200.730000px;}
.y88{bottom:205.230000px;}
.yb0{bottom:208.470000px;}
.y76{bottom:211.890000px;}
.y59{bottom:214.410000px;}
.yba{bottom:214.770000px;}
.y99{bottom:215.850000px;}
.y2b{bottom:221.430000px;}
.y87{bottom:225.930000px;}
.yaf{bottom:229.170000px;}
.yb9{bottom:231.870000px;}
.y75{bottom:232.590000px;}
.y58{bottom:235.110000px;}
.y98{bottom:236.550000px;}
.y2a{bottom:242.130000px;}
.y86{bottom:246.630000px;}
.yb8{bottom:249.150000px;}
.yae{bottom:249.870000px;}
.y74{bottom:253.290000px;}
.y57{bottom:255.810000px;}
.y97{bottom:257.250000px;}
.y29{bottom:262.830000px;}
.yb7{bottom:266.430000px;}
.y85{bottom:267.330000px;}
.yad{bottom:270.570000px;}
.y73{bottom:273.990000px;}
.y56{bottom:276.510000px;}
.y96{bottom:277.950000px;}
.y28{bottom:283.530000px;}
.yb6{bottom:284.430000px;}
.y84{bottom:288.030000px;}
.yac{bottom:291.270000px;}
.y72{bottom:294.690000px;}
.y55{bottom:297.210000px;}
.y95{bottom:298.650000px;}
.yb5{bottom:301.170000px;}
.y27{bottom:304.230000px;}
.y83{bottom:308.730000px;}
.yab{bottom:311.970000px;}
.y71{bottom:315.390000px;}
.y54{bottom:317.955000px;}
.y94{bottom:319.395000px;}
.y26{bottom:324.975000px;}
.y82{bottom:329.475000px;}
.yaa{bottom:332.715000px;}
.y70{bottom:336.135000px;}
.y53{bottom:338.655000px;}
.y93{bottom:340.095000px;}
.y25{bottom:345.675000px;}
.y81{bottom:350.175000px;}
.ya9{bottom:353.415000px;}
.y6f{bottom:356.835000px;}
.y52{bottom:359.355000px;}
.y92{bottom:360.795000px;}
.y24{bottom:366.375000px;}
.y80{bottom:370.875000px;}
.ya8{bottom:374.115000px;}
.y6e{bottom:377.535000px;}
.y51{bottom:380.055000px;}
.y91{bottom:380.775000px;}
.y23{bottom:387.075000px;}
.y7f{bottom:391.575000px;}
.ya7{bottom:394.815000px;}
.y90{bottom:397.875000px;}
.y6d{bottom:398.235000px;}
.y50{bottom:400.755000px;}
.y22{bottom:407.775000px;}
.y7e{bottom:411.555000px;}
.y8f{bottom:415.155000px;}
.ya6{bottom:415.515000px;}
.y6c{bottom:418.935000px;}
.y4f{bottom:421.455000px;}
.y21{bottom:428.475000px;}
.y7d{bottom:428.835000px;}
.y8e{bottom:433.155000px;}
.ya5{bottom:436.215000px;}
.y6b{bottom:439.635000px;}
.y4e{bottom:442.155000px;}
.y7c{bottom:445.935000px;}
.y20{bottom:449.175000px;}
.y8d{bottom:449.895000px;}
.ya4{bottom:456.915000px;}
.y6a{bottom:460.335000px;}
.y4d{bottom:462.855000px;}
.y7b{bottom:463.935000px;}
.y1f{bottom:469.875000px;}
.ya3{bottom:476.895000px;}
.y7a{bottom:480.675000px;}
.y69{bottom:481.035000px;}
.y4c{bottom:483.555000px;}
.y1e{bottom:490.575000px;}
.ya2{bottom:494.175000px;}
.y68{bottom:501.735000px;}
.y4b{bottom:504.255000px;}
.y1d{bottom:511.275000px;}
.ya1{bottom:511.455000px;}
.y67{bottom:522.435000px;}
.y4a{bottom:524.955000px;}
.ya0{bottom:529.455000px;}
.y1c{bottom:531.975000px;}
.y66{bottom:542.415000px;}
.y49{bottom:545.655000px;}
.y9f{bottom:546.195000px;}
.y1b{bottom:552.675000px;}
.y65{bottom:559.695000px;}
.y48{bottom:566.355000px;}
.y1a{bottom:573.405000px;}
.y64{bottom:577.005000px;}
.y47{bottom:587.085000px;}
.y19{bottom:594.105000px;}
.y63{bottom:595.005000px;}
.y46{bottom:607.785000px;}
.y62{bottom:611.745000px;}
.y18{bottom:614.805000px;}
.y45{bottom:628.485000px;}
.y17{bottom:635.505000px;}
.y44{bottom:649.185000px;}
.y16{bottom:656.205000px;}
.y43{bottom:669.885000px;}
.y15{bottom:676.905000px;}
.y42{bottom:690.585000px;}
.y14{bottom:697.605000px;}
.y41{bottom:711.285000px;}
.y13{bottom:718.305000px;}
.y40{bottom:731.985000px;}
.y12{bottom:738.825000px;}
.y3f{bottom:752.685000px;}
.y11{bottom:759.525000px;}
.y3e{bottom:773.385000px;}
.y10{bottom:780.225000px;}
.y3d{bottom:794.085000px;}
.yf{bottom:800.925000px;}
.y3c{bottom:814.785000px;}
.ye{bottom:821.670000px;}
.y3b{bottom:835.530000px;}
.yd{bottom:842.370000px;}
.y3a{bottom:856.230000px;}
.yc{bottom:863.070000px;}
.y39{bottom:876.930000px;}
.yb{bottom:883.770000px;}
.y38{bottom:897.630000px;}
.ya{bottom:904.470000px;}
.y37{bottom:918.330000px;}
.y9{bottom:925.170000px;}
.y36{bottom:939.030000px;}
.y8{bottom:946.590000px;}
.y35{bottom:959.730000px;}
.y7{bottom:970.710000px;}
.y34{bottom:980.430000px;}
.y6{bottom:994.290000px;}
.y33{bottom:1001.130000px;}
.y5{bottom:1015.530000px;}
.y32{bottom:1021.830000px;}
.y4{bottom:1039.110000px;}
.y31{bottom:1042.530000px;}
.y3{bottom:1060.350000px;}
.y30{bottom:1063.230000px;}
.h8{height:58.621992px;}
.h7{height:58.651172px;}
.h6{height:64.546875px;}
.h1{height:65.884219px;}
.h9{height:70.628906px;}
.h4{height:70.664062px;}
.h3{height:72.562500px;}
.h5{height:82.635820px;}
.h2{height:84.898125px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:108.035986px;}
.x15{left:123.515986px;}
.x3{left:186.149986px;}
.xf{left:196.049986px;}
.xc{left:201.449986px;}
.x14{left:207.569986px;}
.x12{left:219.089986px;}
.x5{left:286.634986px;}
.x17{left:306.074986px;}
.xd{left:313.994986px;}
.x13{left:317.774986px;}
.x10{left:319.394986px;}
.x9{left:321.914986px;}
.x7{left:357.554986px;}
.xe{left:375.734986px;}
.xa{left:387.974986px;}
.x6{left:390.494986px;}
.x16{left:432.794986px;}
.x4{left:459.074986px;}
.x11{left:561.344986px;}
.x1{left:569.624986px;}
.x8{left:660.704986px;}
.xb{left:810.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.608000pt;}
.ls9{letter-spacing:0.640000pt;}
.ws1{word-spacing:-18.703360pt;}
.ws4{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.894613pt;}
.ws0{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.916480pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.840000pt;}
.y1{bottom:69.792000pt;}
.y9e{bottom:99.872000pt;}
.y8c{bottom:108.832000pt;}
.yb4{bottom:111.712000pt;}
.y5d{bottom:116.992000pt;}
.y9d{bottom:118.272000pt;}
.y2f{bottom:123.232000pt;}
.y61{bottom:124.352000pt;}
.y8b{bottom:127.232000pt;}
.yb3{bottom:130.112000pt;}
.y79{bottom:133.152000pt;}
.y5c{bottom:135.386667pt;}
.y9c{bottom:136.666667pt;}
.ybd{bottom:139.386667pt;}
.y60{bottom:139.706667pt;}
.y2e{bottom:141.626667pt;}
.y8a{bottom:145.626667pt;}
.yb2{bottom:148.506667pt;}
.y78{bottom:151.546667pt;}
.y5b{bottom:153.786667pt;}
.y9b{bottom:155.066667pt;}
.y5f{bottom:155.546667pt;}
.ybc{bottom:157.786667pt;}
.y2d{bottom:160.026667pt;}
.y89{bottom:164.026667pt;}
.yb1{bottom:166.906667pt;}
.y77{bottom:169.946667pt;}
.y5e{bottom:170.426667pt;}
.y5a{bottom:172.186667pt;}
.y9a{bottom:173.466667pt;}
.ybb{bottom:175.546667pt;}
.y2c{bottom:178.426667pt;}
.y88{bottom:182.426667pt;}
.yb0{bottom:185.306667pt;}
.y76{bottom:188.346667pt;}
.y59{bottom:190.586667pt;}
.yba{bottom:190.906667pt;}
.y99{bottom:191.866667pt;}
.y2b{bottom:196.826667pt;}
.y87{bottom:200.826667pt;}
.yaf{bottom:203.706667pt;}
.yb9{bottom:206.106667pt;}
.y75{bottom:206.746667pt;}
.y58{bottom:208.986667pt;}
.y98{bottom:210.266667pt;}
.y2a{bottom:215.226667pt;}
.y86{bottom:219.226667pt;}
.yb8{bottom:221.466667pt;}
.yae{bottom:222.106667pt;}
.y74{bottom:225.146667pt;}
.y57{bottom:227.386667pt;}
.y97{bottom:228.666667pt;}
.y29{bottom:233.626667pt;}
.yb7{bottom:236.826667pt;}
.y85{bottom:237.626667pt;}
.yad{bottom:240.506667pt;}
.y73{bottom:243.546667pt;}
.y56{bottom:245.786667pt;}
.y96{bottom:247.066667pt;}
.y28{bottom:252.026667pt;}
.yb6{bottom:252.826667pt;}
.y84{bottom:256.026667pt;}
.yac{bottom:258.906667pt;}
.y72{bottom:261.946667pt;}
.y55{bottom:264.186667pt;}
.y95{bottom:265.466667pt;}
.yb5{bottom:267.706667pt;}
.y27{bottom:270.426667pt;}
.y83{bottom:274.426667pt;}
.yab{bottom:277.306667pt;}
.y71{bottom:280.346667pt;}
.y54{bottom:282.626667pt;}
.y94{bottom:283.906667pt;}
.y26{bottom:288.866667pt;}
.y82{bottom:292.866667pt;}
.yaa{bottom:295.746667pt;}
.y70{bottom:298.786667pt;}
.y53{bottom:301.026667pt;}
.y93{bottom:302.306667pt;}
.y25{bottom:307.266667pt;}
.y81{bottom:311.266667pt;}
.ya9{bottom:314.146667pt;}
.y6f{bottom:317.186667pt;}
.y52{bottom:319.426667pt;}
.y92{bottom:320.706667pt;}
.y24{bottom:325.666667pt;}
.y80{bottom:329.666667pt;}
.ya8{bottom:332.546667pt;}
.y6e{bottom:335.586667pt;}
.y51{bottom:337.826667pt;}
.y91{bottom:338.466667pt;}
.y23{bottom:344.066667pt;}
.y7f{bottom:348.066667pt;}
.ya7{bottom:350.946667pt;}
.y90{bottom:353.666667pt;}
.y6d{bottom:353.986667pt;}
.y50{bottom:356.226667pt;}
.y22{bottom:362.466667pt;}
.y7e{bottom:365.826667pt;}
.y8f{bottom:369.026667pt;}
.ya6{bottom:369.346667pt;}
.y6c{bottom:372.386667pt;}
.y4f{bottom:374.626667pt;}
.y21{bottom:380.866667pt;}
.y7d{bottom:381.186667pt;}
.y8e{bottom:385.026667pt;}
.ya5{bottom:387.746667pt;}
.y6b{bottom:390.786667pt;}
.y4e{bottom:393.026667pt;}
.y7c{bottom:396.386667pt;}
.y20{bottom:399.266667pt;}
.y8d{bottom:399.906667pt;}
.ya4{bottom:406.146667pt;}
.y6a{bottom:409.186667pt;}
.y4d{bottom:411.426667pt;}
.y7b{bottom:412.386667pt;}
.y1f{bottom:417.666667pt;}
.ya3{bottom:423.906667pt;}
.y7a{bottom:427.266667pt;}
.y69{bottom:427.586667pt;}
.y4c{bottom:429.826667pt;}
.y1e{bottom:436.066667pt;}
.ya2{bottom:439.266667pt;}
.y68{bottom:445.986667pt;}
.y4b{bottom:448.226667pt;}
.y1d{bottom:454.466667pt;}
.ya1{bottom:454.626667pt;}
.y67{bottom:464.386667pt;}
.y4a{bottom:466.626667pt;}
.ya0{bottom:470.626667pt;}
.y1c{bottom:472.866667pt;}
.y66{bottom:482.146667pt;}
.y49{bottom:485.026667pt;}
.y9f{bottom:485.506667pt;}
.y1b{bottom:491.266667pt;}
.y65{bottom:497.506667pt;}
.y48{bottom:503.426667pt;}
.y1a{bottom:509.693333pt;}
.y64{bottom:512.893333pt;}
.y47{bottom:521.853333pt;}
.y19{bottom:528.093333pt;}
.y63{bottom:528.893333pt;}
.y46{bottom:540.253333pt;}
.y62{bottom:543.773333pt;}
.y18{bottom:546.493333pt;}
.y45{bottom:558.653333pt;}
.y17{bottom:564.893333pt;}
.y44{bottom:577.053333pt;}
.y16{bottom:583.293333pt;}
.y43{bottom:595.453333pt;}
.y15{bottom:601.693333pt;}
.y42{bottom:613.853333pt;}
.y14{bottom:620.093333pt;}
.y41{bottom:632.253333pt;}
.y13{bottom:638.493333pt;}
.y40{bottom:650.653333pt;}
.y12{bottom:656.733333pt;}
.y3f{bottom:669.053333pt;}
.y11{bottom:675.133333pt;}
.y3e{bottom:687.453333pt;}
.y10{bottom:693.533333pt;}
.y3d{bottom:705.853333pt;}
.yf{bottom:711.933333pt;}
.y3c{bottom:724.253333pt;}
.ye{bottom:730.373333pt;}
.y3b{bottom:742.693333pt;}
.yd{bottom:748.773333pt;}
.y3a{bottom:761.093333pt;}
.yc{bottom:767.173333pt;}
.y39{bottom:779.493333pt;}
.yb{bottom:785.573333pt;}
.y38{bottom:797.893333pt;}
.ya{bottom:803.973333pt;}
.y37{bottom:816.293333pt;}
.y9{bottom:822.373333pt;}
.y36{bottom:834.693333pt;}
.y8{bottom:841.413333pt;}
.y35{bottom:853.093333pt;}
.y7{bottom:862.853333pt;}
.y34{bottom:871.493333pt;}
.y6{bottom:883.813333pt;}
.y33{bottom:889.893333pt;}
.y5{bottom:902.693333pt;}
.y32{bottom:908.293333pt;}
.y4{bottom:923.653333pt;}
.y31{bottom:926.693333pt;}
.y3{bottom:942.533333pt;}
.y30{bottom:945.093333pt;}
.h8{height:52.108438pt;}
.h7{height:52.134375pt;}
.h6{height:57.375000pt;}
.h1{height:58.563750pt;}
.h9{height:62.781250pt;}
.h4{height:62.812500pt;}
.h3{height:64.500000pt;}
.h5{height:73.454062pt;}
.h2{height:75.465000pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031988pt;}
.x15{left:109.791988pt;}
.x3{left:165.466655pt;}
.xf{left:174.266655pt;}
.xc{left:179.066655pt;}
.x14{left:184.506655pt;}
.x12{left:194.746655pt;}
.x5{left:254.786655pt;}
.x17{left:272.066655pt;}
.xd{left:279.106655pt;}
.x13{left:282.466655pt;}
.x10{left:283.906655pt;}
.x9{left:286.146655pt;}
.x7{left:317.826655pt;}
.xe{left:333.986655pt;}
.xa{left:344.866655pt;}
.x6{left:347.106655pt;}
.x16{left:384.706655pt;}
.x4{left:408.066655pt;}
.x11{left:498.973321pt;}
.x1{left:506.333321pt;}
.x8{left:587.293321pt;}
.xb{left:720.133321pt;}
}




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