
    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_b9074c591f8e4df8f07789a9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_af36d87d57262e74caf9fdb0.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9c1f9a93e20a1c9025fc321b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_10a2ad5d7a32a0c0fbdfa826.woff')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_58190d27885faf847bfd33d5.woff')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_5aab77f0f5880e06f3591727.woff')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_b1bcb95857e9ac4dff9d446d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.920410;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_8d335d5dde6312aa9657492e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3e24679ec273c77b566e6e75.woff')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.900000px;}
.lse{letter-spacing:-0.690000px;}
.ls6{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.009360px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.013440px;}
.ls2{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.037440px;}
.ls9{letter-spacing:0.148080px;}
.lsc{letter-spacing:0.252720px;}
.lsd{letter-spacing:0.350400px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.378600px;}
.ls3{letter-spacing:0.504000px;}
.ls8{letter-spacing:29.340000px;}
.lsb{letter-spacing:94.140000px;}
.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;}
}
.ws9{word-spacing:-84.600000px;}
.ws1{word-spacing:-24.300000px;}
.ws7{word-spacing:-21.438600px;}
.ws3{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.410400px;}
.ws4{word-spacing:-21.097440px;}
.wsa{word-spacing:-21.088080px;}
.ws2{word-spacing:-21.060000px;}
.wsd{word-spacing:-21.050640px;}
.wsc{word-spacing:-20.880000px;}
.ws5{word-spacing:-20.700000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.784000px;}
.ws6{word-spacing:0.000000px;}
._11{margin-left:-5.011440px;}
._10{margin-left:-3.959280px;}
._9{margin-left:-2.694000px;}
._1{margin-left:-1.158720px;}
._0{width:1.140000px;}
._12{width:2.633040px;}
._3{width:4.231920px;}
._17{width:5.862960px;}
._14{width:7.646880px;}
._13{width:8.676720px;}
._18{width:9.787920px;}
._21{width:11.171760px;}
._2{width:12.214800px;}
._e{width:13.646880px;}
._7{width:15.837120px;}
._8{width:17.843520px;}
._1a{width:19.375200px;}
._d{width:23.510160px;}
._c{width:24.572160px;}
._19{width:25.965120px;}
._15{width:28.301520px;}
._16{width:29.379360px;}
._25{width:30.494880px;}
._28{width:31.520160px;}
._a{width:35.636160px;}
._29{width:37.147200px;}
._1e{width:39.340080px;}
._26{width:41.029920px;}
._f{width:42.541200px;}
._5{width:48.233760px;}
._6{width:51.368640px;}
._22{width:53.808720px;}
._2a{width:60.852960px;}
._4{width:62.533440px;}
._27{width:63.577200px;}
._b{width:66.128400px;}
._23{width:71.402400px;}
._1c{width:74.241120px;}
._1b{width:75.531120px;}
._1d{width:77.656080px;}
._1f{width:82.892160px;}
._20{width:84.041520px;}
._24{width:94.665120px;}
._2b{width:124.704000px;}
._2c{width:126.878160px;}
._2d{width:1476.096000px;}
.fc4{color:rgb(60,90,114);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:54.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.120000px;}
.y0{bottom:0.000000px;}
.y51{bottom:7.020000px;}
.y59{bottom:7.050000px;}
.y5b{bottom:7.200000px;}
.y3{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.ya{bottom:17.280000px;}
.y9{bottom:19.440000px;}
.y54{bottom:23.760000px;}
.y4{bottom:27.900000px;}
.y50{bottom:30.780000px;}
.y2{bottom:36.720000px;}
.y8{bottom:44.640000px;}
.y4f{bottom:54.540000px;}
.y2b{bottom:105.876000px;}
.y6c{bottom:120.276000px;}
.y49{bottom:121.536000px;}
.y4d{bottom:129.996000px;}
.y2a{bottom:133.776000px;}
.y6b{bottom:147.996000px;}
.y48{bottom:149.436000px;}
.y4c{bottom:157.890000px;}
.y29{bottom:161.490000px;}
.y6a{bottom:175.710000px;}
.y47{bottom:177.150000px;}
.y4b{bottom:185.610000px;}
.y28{bottom:189.210000px;}
.y69{bottom:203.430000px;}
.y46{bottom:204.870000px;}
.y4a{bottom:213.330000px;}
.y27{bottom:216.930000px;}
.y68{bottom:231.330000px;}
.y45{bottom:232.770000px;}
.y26{bottom:244.830000px;}
.y67{bottom:259.050000px;}
.y44{bottom:260.490000px;}
.y25{bottom:272.550000px;}
.y66{bottom:286.770000px;}
.y43{bottom:288.210000px;}
.y24{bottom:300.270000px;}
.y65{bottom:314.670000px;}
.y42{bottom:315.930000px;}
.y23{bottom:327.990000px;}
.y64{bottom:342.435000px;}
.y41{bottom:343.875000px;}
.y22{bottom:355.935000px;}
.y63{bottom:370.155000px;}
.y40{bottom:371.595000px;}
.y21{bottom:383.655000px;}
.y62{bottom:397.875000px;}
.y3f{bottom:399.315000px;}
.y20{bottom:411.375000px;}
.y61{bottom:425.775000px;}
.y3e{bottom:427.215000px;}
.y1f{bottom:447.735000px;}
.y60{bottom:453.495000px;}
.y3d{bottom:454.935000px;}
.y5f{bottom:477.615000px;}
.y3c{bottom:482.655000px;}
.y1e{bottom:483.915000px;}
.y5e{bottom:505.335000px;}
.y3b{bottom:510.375000px;}
.y1d{bottom:520.095000px;}
.y5d{bottom:525.855000px;}
.y3a{bottom:538.275000px;}
.y5c{bottom:550.335000px;}
.y1c{bottom:556.275000px;}
.y39{bottom:565.995000px;}
.y5a{bottom:574.815000px;}
.y1b{bottom:592.455000px;}
.y38{bottom:593.715000px;}
.y58{bottom:599.475000px;}
.y37{bottom:621.465000px;}
.y57{bottom:623.985000px;}
.y1a{bottom:628.845000px;}
.y56{bottom:648.645000px;}
.y36{bottom:649.365000px;}
.y19{bottom:665.025000px;}
.y55{bottom:673.125000px;}
.y35{bottom:677.085000px;}
.y53{bottom:697.605000px;}
.y18{bottom:701.205000px;}
.y34{bottom:704.805000px;}
.y33{bottom:732.705000px;}
.y17{bottom:737.385000px;}
.y52{bottom:738.825000px;}
.y32{bottom:760.425000px;}
.y4e{bottom:763.485000px;}
.y16{bottom:773.745000px;}
.y31{bottom:788.145000px;}
.y15{bottom:809.925000px;}
.y30{bottom:815.865000px;}
.y2f{bottom:843.765000px;}
.y14{bottom:846.105000px;}
.y2e{bottom:871.530000px;}
.y13{bottom:882.330000px;}
.y2d{bottom:899.250000px;}
.y12{bottom:918.690000px;}
.y2c{bottom:927.150000px;}
.y11{bottom:954.870000px;}
.y10{bottom:982.590000px;}
.yf{bottom:1010.310000px;}
.ye{bottom:1038.210000px;}
.yd{bottom:1065.930000px;}
.yc{bottom:1093.650000px;}
.y7{bottom:1129.830000px;}
.y5{bottom:1149.480000px;}
.y1{bottom:1166.760000px;}
.h5{height:6.480000px;}
.he{height:23.760000px;}
.h10{height:23.796000px;}
.h11{height:23.940000px;}
.h7{height:39.636000px;}
.hf{height:40.500000px;}
.hd{height:50.800781px;}
.h4{height:52.998047px;}
.h2{height:53.460000px;}
.hb{height:59.066719px;}
.h8{height:70.664062px;}
.hc{height:71.280000px;}
.h3{height:72.562500px;}
.ha{height:82.676953px;}
.h6{height:84.898125px;}
.h12{height:86.585445px;}
.h9{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:45.000000px;}
.w14{width:51.696000px;}
.wd{width:52.200000px;}
.we{width:53.856000px;}
.wf{width:55.620000px;}
.w16{width:55.800000px;}
.w13{width:57.780000px;}
.w15{width:58.860000px;}
.w12{width:61.020000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w11{width:96.156000px;}
.w9{width:101.340000px;}
.w8{width:106.776000px;}
.w7{width:110.160000px;}
.wb{width:110.196000px;}
.wc{width:115.380000px;}
.wa{width:157.890000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.560000px;}
.x2{left:8.640000px;}
.x7{left:13.860000px;}
.x1{left:31.860000px;}
.x4{left:59.970000px;}
.x5{left:84.959987px;}
.x9{left:93.455987px;}
.x8{left:127.475987px;}
.xc{left:141.875987px;}
.x14{left:204.690000px;}
.x1a{left:257.610000px;}
.xa{left:266.069987px;}
.x15{left:312.195000px;}
.xd{left:368.894987px;}
.xe{left:375.914987px;}
.xf{left:389.234987px;}
.x16{left:414.255000px;}
.xb{left:446.474987px;}
.x11{left:476.924987px;}
.x1b{left:511.125000px;}
.x10{left:519.404987px;}
.x17{left:572.865000px;}
.x1c{left:631.365000px;}
.x18{left:683.970000px;}
.x13{left:685.949987px;}
.x1d{left:743.550000px;}
.x12{left:749.489987px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
@media print{
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.800000pt;}
.lse{letter-spacing:-0.613333pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.008320pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.011947pt;}
.ls2{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.033280pt;}
.ls9{letter-spacing:0.131627pt;}
.lsc{letter-spacing:0.224640pt;}
.lsd{letter-spacing:0.311467pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.336533pt;}
.ls3{letter-spacing:0.448000pt;}
.ls8{letter-spacing:26.080000pt;}
.lsb{letter-spacing:83.680000pt;}
.ws9{word-spacing:-75.200000pt;}
.ws1{word-spacing:-21.600000pt;}
.ws7{word-spacing:-19.056533pt;}
.ws3{word-spacing:-19.040000pt;}
.ws8{word-spacing:-19.031467pt;}
.ws4{word-spacing:-18.753280pt;}
.wsa{word-spacing:-18.744960pt;}
.ws2{word-spacing:-18.720000pt;}
.wsd{word-spacing:-18.711680pt;}
.wsc{word-spacing:-18.560000pt;}
.ws5{word-spacing:-18.400000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.808000pt;}
.ws6{word-spacing:0.000000pt;}
._11{margin-left:-4.454613pt;}
._10{margin-left:-3.519360pt;}
._9{margin-left:-2.394667pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.013333pt;}
._12{width:2.340480pt;}
._3{width:3.761707pt;}
._17{width:5.211520pt;}
._14{width:6.797227pt;}
._13{width:7.712640pt;}
._18{width:8.700373pt;}
._21{width:9.930453pt;}
._2{width:10.857600pt;}
._e{width:12.130560pt;}
._7{width:14.077440pt;}
._8{width:15.860907pt;}
._1a{width:17.222400pt;}
._d{width:20.897920pt;}
._c{width:21.841920pt;}
._19{width:23.080107pt;}
._15{width:25.156907pt;}
._16{width:26.114987pt;}
._25{width:27.106560pt;}
._28{width:28.017920pt;}
._a{width:31.676587pt;}
._29{width:33.019733pt;}
._1e{width:34.968960pt;}
._26{width:36.471040pt;}
._f{width:37.814400pt;}
._5{width:42.874453pt;}
._6{width:45.661013pt;}
._22{width:47.829973pt;}
._2a{width:54.091520pt;}
._4{width:55.585280pt;}
._27{width:56.513067pt;}
._b{width:58.780800pt;}
._23{width:63.468800pt;}
._1c{width:65.992107pt;}
._1b{width:67.138773pt;}
._1d{width:69.027627pt;}
._1f{width:73.681920pt;}
._20{width:74.703573pt;}
._24{width:84.146773pt;}
._2b{width:110.848000pt;}
._2c{width:112.780587pt;}
._2d{width:1312.085333pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.440000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:6.240000pt;}
.y59{bottom:6.266667pt;}
.y5b{bottom:6.400000pt;}
.y3{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.ya{bottom:15.360000pt;}
.y9{bottom:17.280000pt;}
.y54{bottom:21.120000pt;}
.y4{bottom:24.800000pt;}
.y50{bottom:27.360000pt;}
.y2{bottom:32.640000pt;}
.y8{bottom:39.680000pt;}
.y4f{bottom:48.480000pt;}
.y2b{bottom:94.112000pt;}
.y6c{bottom:106.912000pt;}
.y49{bottom:108.032000pt;}
.y4d{bottom:115.552000pt;}
.y2a{bottom:118.912000pt;}
.y6b{bottom:131.552000pt;}
.y48{bottom:132.832000pt;}
.y4c{bottom:140.346667pt;}
.y29{bottom:143.546667pt;}
.y6a{bottom:156.186667pt;}
.y47{bottom:157.466667pt;}
.y4b{bottom:164.986667pt;}
.y28{bottom:168.186667pt;}
.y69{bottom:180.826667pt;}
.y46{bottom:182.106667pt;}
.y4a{bottom:189.626667pt;}
.y27{bottom:192.826667pt;}
.y68{bottom:205.626667pt;}
.y45{bottom:206.906667pt;}
.y26{bottom:217.626667pt;}
.y67{bottom:230.266667pt;}
.y44{bottom:231.546667pt;}
.y25{bottom:242.266667pt;}
.y66{bottom:254.906667pt;}
.y43{bottom:256.186667pt;}
.y24{bottom:266.906667pt;}
.y65{bottom:279.706667pt;}
.y42{bottom:280.826667pt;}
.y23{bottom:291.546667pt;}
.y64{bottom:304.386667pt;}
.y41{bottom:305.666667pt;}
.y22{bottom:316.386667pt;}
.y63{bottom:329.026667pt;}
.y40{bottom:330.306667pt;}
.y21{bottom:341.026667pt;}
.y62{bottom:353.666667pt;}
.y3f{bottom:354.946667pt;}
.y20{bottom:365.666667pt;}
.y61{bottom:378.466667pt;}
.y3e{bottom:379.746667pt;}
.y1f{bottom:397.986667pt;}
.y60{bottom:403.106667pt;}
.y3d{bottom:404.386667pt;}
.y5f{bottom:424.546667pt;}
.y3c{bottom:429.026667pt;}
.y1e{bottom:430.146667pt;}
.y5e{bottom:449.186667pt;}
.y3b{bottom:453.666667pt;}
.y1d{bottom:462.306667pt;}
.y5d{bottom:467.426667pt;}
.y3a{bottom:478.466667pt;}
.y5c{bottom:489.186667pt;}
.y1c{bottom:494.466667pt;}
.y39{bottom:503.106667pt;}
.y5a{bottom:510.946667pt;}
.y1b{bottom:526.626667pt;}
.y38{bottom:527.746667pt;}
.y58{bottom:532.866667pt;}
.y37{bottom:552.413333pt;}
.y57{bottom:554.653333pt;}
.y1a{bottom:558.973333pt;}
.y56{bottom:576.573333pt;}
.y36{bottom:577.213333pt;}
.y19{bottom:591.133333pt;}
.y55{bottom:598.333333pt;}
.y35{bottom:601.853333pt;}
.y53{bottom:620.093333pt;}
.y18{bottom:623.293333pt;}
.y34{bottom:626.493333pt;}
.y33{bottom:651.293333pt;}
.y17{bottom:655.453333pt;}
.y52{bottom:656.733333pt;}
.y32{bottom:675.933333pt;}
.y4e{bottom:678.653333pt;}
.y16{bottom:687.773333pt;}
.y31{bottom:700.573333pt;}
.y15{bottom:719.933333pt;}
.y30{bottom:725.213333pt;}
.y2f{bottom:750.013333pt;}
.y14{bottom:752.093333pt;}
.y2e{bottom:774.693333pt;}
.y13{bottom:784.293333pt;}
.y2d{bottom:799.333333pt;}
.y12{bottom:816.613333pt;}
.y2c{bottom:824.133333pt;}
.y11{bottom:848.773333pt;}
.y10{bottom:873.413333pt;}
.yf{bottom:898.053333pt;}
.ye{bottom:922.853333pt;}
.yd{bottom:947.493333pt;}
.yc{bottom:972.133333pt;}
.y7{bottom:1004.293333pt;}
.y5{bottom:1021.760000pt;}
.y1{bottom:1037.120000pt;}
.h5{height:5.760000pt;}
.he{height:21.120000pt;}
.h10{height:21.152000pt;}
.h11{height:21.280000pt;}
.h7{height:35.232000pt;}
.hf{height:36.000000pt;}
.hd{height:45.156250pt;}
.h4{height:47.109375pt;}
.h2{height:47.520000pt;}
.hb{height:52.503750pt;}
.h8{height:62.812500pt;}
.hc{height:63.360000pt;}
.h3{height:64.500000pt;}
.ha{height:73.490625pt;}
.h6{height:75.465000pt;}
.h12{height:76.964840pt;}
.h9{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:40.000000pt;}
.w14{width:45.952000pt;}
.wd{width:46.400000pt;}
.we{width:47.872000pt;}
.wf{width:49.440000pt;}
.w16{width:49.600000pt;}
.w13{width:51.360000pt;}
.w15{width:52.320000pt;}
.w12{width:54.240000pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w11{width:85.472000pt;}
.w9{width:90.080000pt;}
.w8{width:94.912000pt;}
.w7{width:97.920000pt;}
.wb{width:97.952000pt;}
.wc{width:102.560000pt;}
.wa{width:140.346667pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.720000pt;}
.x2{left:7.680000pt;}
.x7{left:12.320000pt;}
.x1{left:28.320000pt;}
.x4{left:53.306667pt;}
.x5{left:75.519988pt;}
.x9{left:83.071988pt;}
.x8{left:113.311988pt;}
.xc{left:126.111988pt;}
.x14{left:181.946667pt;}
.x1a{left:228.986667pt;}
.xa{left:236.506655pt;}
.x15{left:277.506667pt;}
.xd{left:327.906655pt;}
.xe{left:334.146655pt;}
.xf{left:345.986655pt;}
.x16{left:368.226667pt;}
.xb{left:396.866655pt;}
.x11{left:423.933322pt;}
.x1b{left:454.333333pt;}
.x10{left:461.693322pt;}
.x17{left:509.213333pt;}
.x1c{left:561.213333pt;}
.x18{left:607.973333pt;}
.x13{left:609.733322pt;}
.x1d{left:660.933333pt;}
.x12{left:666.213322pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
}




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