
    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_b8ed534ac8c00612acb966a7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.007812;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_d408d51575a5f8d49ed5f88d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.004883;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_90c25ba96dd4a3a54403bf35.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009766;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_0348bf2f0f8c93ad1c2dc53c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.009766;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_4f87d8f06750099950427eb9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.004883;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_65b7757365079ee23880ae83.woff')format("woff");}.ff6{font-family:ff6;line-height:1.007812;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_c62d73a67f3e45499c12bdeb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_c7fa252082b07bd9377949f6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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:ffa;src:url('chunks/assets/font_9468b173274f6a2edf8b76ab.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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:ffb;src:url('chunks/assets/font_3f6efd28f206618b491ed14f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.090820;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.576000px;}
.lse{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.109200px;}
.lsd{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.492480px;}
.lsa{letter-spacing:1.764000px;}
.lsb{letter-spacing:2.304000px;}
.ls4{letter-spacing:8.064000px;}
.ls6{letter-spacing:10.944000px;}
.ls8{letter-spacing:21.744000px;}
.ls9{letter-spacing:45.504000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(180,52,18),0 0.015em rgb(180,52,18),0.015em 0 rgb(180,52,18),0 -0.015em  rgb(180,52,18);}
.sc2{text-shadow:-0.015em 0 rgb(232,76,34),0 0.015em rgb(232,76,34),0.015em 0 rgb(232,76,34),0 -0.015em  rgb(232,76,34);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(180,52,18);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(232,76,34);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-72.000000px;}
.ws1{word-spacing:-20.304000px;}
.ws2{word-spacing:-20.016000px;}
.ws6{word-spacing:-19.944000px;}
.ws3{word-spacing:-19.872000px;}
.ws7{word-spacing:-19.800000px;}
.ws8{word-spacing:-18.305520px;}
.ws0{word-spacing:-16.613280px;}
.ws4{word-spacing:0.000000px;}
._b{margin-left:-4.848000px;}
._7{margin-left:-3.672000px;}
._8{margin-left:-2.616000px;}
._1{margin-left:-1.179360px;}
._0{width:1.075680px;}
._2{width:2.103120px;}
._10{width:3.129360px;}
._e{width:4.176000px;}
._d{width:5.832000px;}
._f{width:7.042080px;}
._4{width:8.136000px;}
._3{width:10.080000px;}
._5{width:12.024000px;}
._6{width:13.464000px;}
._c{width:15.048000px;}
._18{width:21.016320px;}
._11{width:22.032000px;}
._12{width:23.952000px;}
._9{width:26.856000px;}
._a{width:30.435360px;}
._17{width:34.416000px;}
._16{width:35.856000px;}
._13{width:42.528000px;}
._15{width:44.436000px;}
._14{width:45.504000px;}
.fc6{color:rgb(232,76,34);}
.fc5{color:rgb(163,104,0);}
.fc4{color:rgb(120,35,12);}
.fc3{color:rgb(133,28,0);}
.fc8{color:rgb(255,132,39);}
.fc2{color:rgb(255,97,55);}
.fc1{color:rgb(180,52,18);}
.fc7{color:rgb(255,98,56);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:30.060000px;}
.y30{bottom:30.780000px;}
.y8d{bottom:68.760000px;}
.y5e{bottom:73.620000px;}
.y8c{bottom:90.540000px;}
.y5d{bottom:98.100000px;}
.y2f{bottom:104.940000px;}
.y8b{bottom:112.500000px;}
.y5c{bottom:122.220000px;}
.y2e{bottom:128.880000px;}
.y8a{bottom:134.460000px;}
.y5b{bottom:146.700000px;}
.y2d{bottom:152.820000px;}
.y89{bottom:156.420000px;}
.y5a{bottom:170.820000px;}
.y2c{bottom:176.760000px;}
.y88{bottom:179.100000px;}
.y59{bottom:195.510000px;}
.y2b{bottom:200.910000px;}
.y87{bottom:207.930000px;}
.y58{bottom:219.990000px;}
.y2a{bottom:225.390000px;}
.y86{bottom:231.870000px;}
.y57{bottom:243.930000px;}
.y29{bottom:249.330000px;}
.y85{bottom:255.810000px;}
.y56{bottom:268.410000px;}
.y28{bottom:273.270000px;}
.y84{bottom:279.750000px;}
.y55{bottom:292.530000px;}
.y27{bottom:297.390000px;}
.y83{bottom:303.870000px;}
.y54{bottom:317.190000px;}
.y26{bottom:321.870000px;}
.y82{bottom:328.350000px;}
.y53{bottom:341.850000px;}
.y25{bottom:345.810000px;}
.y81{bottom:352.290000px;}
.y52{bottom:366.510000px;}
.y24{bottom:369.750000px;}
.y80{bottom:376.230000px;}
.y51{bottom:391.170000px;}
.y23{bottom:393.870000px;}
.y7f{bottom:400.170000px;}
.y50{bottom:415.650000px;}
.y22{bottom:418.350000px;}
.y7e{bottom:424.290000px;}
.y4f{bottom:440.175000px;}
.y21{bottom:442.335000px;}
.y7d{bottom:448.815000px;}
.y4e{bottom:464.295000px;}
.y20{bottom:466.275000px;}
.y7c{bottom:472.755000px;}
.y4d{bottom:488.955000px;}
.y1f{bottom:490.755000px;}
.y7b{bottom:496.515000px;}
.y4c{bottom:513.435000px;}
.y1e{bottom:514.695000px;}
.y7a{bottom:520.455000px;}
.y4b{bottom:537.555000px;}
.y1d{bottom:538.815000px;}
.y79{bottom:544.575000px;}
.y4a{bottom:562.215000px;}
.y1c{bottom:563.295000px;}
.y78{bottom:569.055000px;}
.y49{bottom:586.515000px;}
.y1b{bottom:587.235000px;}
.y77{bottom:592.995000px;}
.y48{bottom:610.635000px;}
.y1a{bottom:611.355000px;}
.y76{bottom:616.935000px;}
.y47{bottom:634.755000px;}
.y19{bottom:635.835000px;}
.y75{bottom:641.055000px;}
.y46{bottom:659.235000px;}
.y18{bottom:659.775000px;}
.y74{bottom:665.535000px;}
.y45{bottom:683.385000px;}
.y17{bottom:683.925000px;}
.y73{bottom:689.685000px;}
.y44{bottom:708.045000px;}
.y16{bottom:708.405000px;}
.y72{bottom:714.165000px;}
.y15{bottom:732.345000px;}
.y43{bottom:732.525000px;}
.y71{bottom:738.105000px;}
.y14{bottom:756.465000px;}
.y42{bottom:756.645000px;}
.y70{bottom:762.045000px;}
.y13{bottom:780.765000px;}
.y41{bottom:781.125000px;}
.y6f{bottom:785.985000px;}
.y12{bottom:804.705000px;}
.y40{bottom:805.065000px;}
.y6e{bottom:810.105000px;}
.y11{bottom:828.825000px;}
.y3f{bottom:829.545000px;}
.y6d{bottom:834.585000px;}
.y10{bottom:853.305000px;}
.y3e{bottom:853.665000px;}
.y6c{bottom:858.525000px;}
.yf{bottom:877.245000px;}
.y3d{bottom:878.145000px;}
.y6b{bottom:883.005000px;}
.ye{bottom:901.365000px;}
.y3c{bottom:902.265000px;}
.y6a{bottom:907.125000px;}
.yd{bottom:925.890000px;}
.y3b{bottom:926.970000px;}
.y69{bottom:931.650000px;}
.yc{bottom:949.830000px;}
.y3a{bottom:951.630000px;}
.y68{bottom:955.590000px;}
.yb{bottom:973.770000px;}
.y39{bottom:976.110000px;}
.y67{bottom:979.530000px;}
.ya{bottom:997.890000px;}
.y38{bottom:1000.230000px;}
.y66{bottom:1003.650000px;}
.y9{bottom:1021.110000px;}
.y37{bottom:1024.710000px;}
.y65{bottom:1028.130000px;}
.y8{bottom:1040.910000px;}
.y36{bottom:1048.650000px;}
.y64{bottom:1052.070000px;}
.y7{bottom:1060.890000px;}
.y35{bottom:1073.310000px;}
.y63{bottom:1076.010000px;}
.y6{bottom:1080.870000px;}
.y34{bottom:1097.970000px;}
.y62{bottom:1099.950000px;}
.y5{bottom:1103.550000px;}
.y33{bottom:1122.630000px;}
.y61{bottom:1124.070000px;}
.y4{bottom:1139.550000px;}
.y32{bottom:1147.290000px;}
.y60{bottom:1148.550000px;}
.y31{bottom:1171.980000px;}
.y5f{bottom:1172.520000px;}
.y3{bottom:1188.000000px;}
.y1{bottom:1214.280000px;}
.h5{height:47.329453px;}
.h7{height:52.461562px;}
.h2{height:57.023438px;}
.h6{height:59.480156px;}
.h3{height:66.717422px;}
.h4{height:123.740859px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:55.259987px;}
.xb{left:68.039987px;}
.xa{left:72.359987px;}
.xe{left:82.259987px;}
.x4{left:92.195987px;}
.xf{left:109.295987px;}
.x7{left:171.389987px;}
.x3{left:176.249987px;}
.x6{left:191.369987px;}
.xc{left:221.249987px;}
.x8{left:294.014987px;}
.x5{left:311.834987px;}
.x9{left:388.514987px;}
.x2{left:454.214987px;}
.xd{left:604.544987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.512000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.097067pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.437760pt;}
.lsa{letter-spacing:1.568000pt;}
.lsb{letter-spacing:2.048000pt;}
.ls4{letter-spacing:7.168000pt;}
.ls6{letter-spacing:9.728000pt;}
.ls8{letter-spacing:19.328000pt;}
.ls9{letter-spacing:40.448000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.048000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws6{word-spacing:-17.728000pt;}
.ws3{word-spacing:-17.664000pt;}
.ws7{word-spacing:-17.600000pt;}
.ws8{word-spacing:-16.271573pt;}
.ws0{word-spacing:-14.767360pt;}
.ws4{word-spacing:0.000000pt;}
._b{margin-left:-4.309333pt;}
._7{margin-left:-3.264000pt;}
._8{margin-left:-2.325333pt;}
._1{margin-left:-1.048320pt;}
._0{width:0.956160pt;}
._2{width:1.869440pt;}
._10{width:2.781653pt;}
._e{width:3.712000pt;}
._d{width:5.184000pt;}
._f{width:6.259627pt;}
._4{width:7.232000pt;}
._3{width:8.960000pt;}
._5{width:10.688000pt;}
._6{width:11.968000pt;}
._c{width:13.376000pt;}
._18{width:18.681173pt;}
._11{width:19.584000pt;}
._12{width:21.290667pt;}
._9{width:23.872000pt;}
._a{width:27.053653pt;}
._17{width:30.592000pt;}
._16{width:31.872000pt;}
._13{width:37.802667pt;}
._15{width:39.498667pt;}
._14{width:40.448000pt;}
.fs1{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:26.720000pt;}
.y30{bottom:27.360000pt;}
.y8d{bottom:61.120000pt;}
.y5e{bottom:65.440000pt;}
.y8c{bottom:80.480000pt;}
.y5d{bottom:87.200000pt;}
.y2f{bottom:93.280000pt;}
.y8b{bottom:100.000000pt;}
.y5c{bottom:108.640000pt;}
.y2e{bottom:114.560000pt;}
.y8a{bottom:119.520000pt;}
.y5b{bottom:130.400000pt;}
.y2d{bottom:135.840000pt;}
.y89{bottom:139.040000pt;}
.y5a{bottom:151.840000pt;}
.y2c{bottom:157.120000pt;}
.y88{bottom:159.200000pt;}
.y59{bottom:173.786667pt;}
.y2b{bottom:178.586667pt;}
.y87{bottom:184.826667pt;}
.y58{bottom:195.546667pt;}
.y2a{bottom:200.346667pt;}
.y86{bottom:206.106667pt;}
.y57{bottom:216.826667pt;}
.y29{bottom:221.626667pt;}
.y85{bottom:227.386667pt;}
.y56{bottom:238.586667pt;}
.y28{bottom:242.906667pt;}
.y84{bottom:248.666667pt;}
.y55{bottom:260.026667pt;}
.y27{bottom:264.346667pt;}
.y83{bottom:270.106667pt;}
.y54{bottom:281.946667pt;}
.y26{bottom:286.106667pt;}
.y82{bottom:291.866667pt;}
.y53{bottom:303.866667pt;}
.y25{bottom:307.386667pt;}
.y81{bottom:313.146667pt;}
.y52{bottom:325.786667pt;}
.y24{bottom:328.666667pt;}
.y80{bottom:334.426667pt;}
.y51{bottom:347.706667pt;}
.y23{bottom:350.106667pt;}
.y7f{bottom:355.706667pt;}
.y50{bottom:369.466667pt;}
.y22{bottom:371.866667pt;}
.y7e{bottom:377.146667pt;}
.y4f{bottom:391.266667pt;}
.y21{bottom:393.186667pt;}
.y7d{bottom:398.946667pt;}
.y4e{bottom:412.706667pt;}
.y20{bottom:414.466667pt;}
.y7c{bottom:420.226667pt;}
.y4d{bottom:434.626667pt;}
.y1f{bottom:436.226667pt;}
.y7b{bottom:441.346667pt;}
.y4c{bottom:456.386667pt;}
.y1e{bottom:457.506667pt;}
.y7a{bottom:462.626667pt;}
.y4b{bottom:477.826667pt;}
.y1d{bottom:478.946667pt;}
.y79{bottom:484.066667pt;}
.y4a{bottom:499.746667pt;}
.y1c{bottom:500.706667pt;}
.y78{bottom:505.826667pt;}
.y49{bottom:521.346667pt;}
.y1b{bottom:521.986667pt;}
.y77{bottom:527.106667pt;}
.y48{bottom:542.786667pt;}
.y1a{bottom:543.426667pt;}
.y76{bottom:548.386667pt;}
.y47{bottom:564.226667pt;}
.y19{bottom:565.186667pt;}
.y75{bottom:569.826667pt;}
.y46{bottom:585.986667pt;}
.y18{bottom:586.466667pt;}
.y74{bottom:591.586667pt;}
.y45{bottom:607.453333pt;}
.y17{bottom:607.933333pt;}
.y73{bottom:613.053333pt;}
.y44{bottom:629.373333pt;}
.y16{bottom:629.693333pt;}
.y72{bottom:634.813333pt;}
.y15{bottom:650.973333pt;}
.y43{bottom:651.133333pt;}
.y71{bottom:656.093333pt;}
.y14{bottom:672.413333pt;}
.y42{bottom:672.573333pt;}
.y70{bottom:677.373333pt;}
.y13{bottom:694.013333pt;}
.y41{bottom:694.333333pt;}
.y6f{bottom:698.653333pt;}
.y12{bottom:715.293333pt;}
.y40{bottom:715.613333pt;}
.y6e{bottom:720.093333pt;}
.y11{bottom:736.733333pt;}
.y3f{bottom:737.373333pt;}
.y6d{bottom:741.853333pt;}
.y10{bottom:758.493333pt;}
.y3e{bottom:758.813333pt;}
.y6c{bottom:763.133333pt;}
.yf{bottom:779.773333pt;}
.y3d{bottom:780.573333pt;}
.y6b{bottom:784.893333pt;}
.ye{bottom:801.213333pt;}
.y3c{bottom:802.013333pt;}
.y6a{bottom:806.333333pt;}
.yd{bottom:823.013333pt;}
.y3b{bottom:823.973333pt;}
.y69{bottom:828.133333pt;}
.yc{bottom:844.293333pt;}
.y3a{bottom:845.893333pt;}
.y68{bottom:849.413333pt;}
.yb{bottom:865.573333pt;}
.y39{bottom:867.653333pt;}
.y67{bottom:870.693333pt;}
.ya{bottom:887.013333pt;}
.y38{bottom:889.093333pt;}
.y66{bottom:892.133333pt;}
.y9{bottom:907.653333pt;}
.y37{bottom:910.853333pt;}
.y65{bottom:913.893333pt;}
.y8{bottom:925.253333pt;}
.y36{bottom:932.133333pt;}
.y64{bottom:935.173333pt;}
.y7{bottom:943.013333pt;}
.y35{bottom:954.053333pt;}
.y63{bottom:956.453333pt;}
.y6{bottom:960.773333pt;}
.y34{bottom:975.973333pt;}
.y62{bottom:977.733333pt;}
.y5{bottom:980.933333pt;}
.y33{bottom:997.893333pt;}
.y61{bottom:999.173333pt;}
.y4{bottom:1012.933333pt;}
.y32{bottom:1019.813333pt;}
.y60{bottom:1020.933333pt;}
.y31{bottom:1041.760000pt;}
.y5f{bottom:1042.240000pt;}
.y3{bottom:1056.000000pt;}
.y1{bottom:1079.360000pt;}
.h5{height:42.070625pt;}
.h7{height:46.632500pt;}
.h2{height:50.687500pt;}
.h6{height:52.871250pt;}
.h3{height:59.304375pt;}
.h4{height:109.991875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:49.119988pt;}
.xb{left:60.479988pt;}
.xa{left:64.319988pt;}
.xe{left:73.119988pt;}
.x4{left:81.951988pt;}
.xf{left:97.151988pt;}
.x7{left:152.346655pt;}
.x3{left:156.666655pt;}
.x6{left:170.106655pt;}
.xc{left:196.666655pt;}
.x8{left:261.346655pt;}
.x5{left:277.186655pt;}
.x9{left:345.346655pt;}
.x2{left:403.746655pt;}
.xd{left:537.373322pt;}
}




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