
    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_9ecf78430f2c952732f0b15a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.858398;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_8c7876c075639a71a1e71427.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b1966c292ba34de6f6791ce6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_5b00a44da01f7d0807196e57.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_a3d58e5fa0847e6ff0170e56.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2f60d049d6e002e2e3109c16.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_da5033ad70d2746bd7d7d88d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d5432b939a980659a1b3f984.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964355;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_3d8de9fb8d3ed181986e7915.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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;}
.ls1b{letter-spacing:-1.572000px;}
.ls8{letter-spacing:-1.200000px;}
.ls1a{letter-spacing:-0.924000px;}
.ls17{letter-spacing:-0.828000px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.lse{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.372000px;}
.ls2{letter-spacing:0.552000px;}
.lsd{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.612000px;}
.ls12{letter-spacing:0.660000px;}
.ls6{letter-spacing:0.828000px;}
.lsf{letter-spacing:1.200000px;}
.ls3{letter-spacing:1.800000px;}
.lsc{letter-spacing:3.000000px;}
.ls14{letter-spacing:5.340000px;}
.ls13{letter-spacing:5.400000px;}
.ls10{letter-spacing:5.460000px;}
.ls11{letter-spacing:5.580000px;}
.lsb{letter-spacing:6.600000px;}
.ls18{letter-spacing:13.860000px;}
.ls9{letter-spacing:18.780000px;}
.lsa{letter-spacing:33.000000px;}
.ls16{letter-spacing:34.200000px;}
.ls15{letter-spacing:34.380000px;}
.ls4{letter-spacing:37.800000px;}
.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;}
}
.ws5{word-spacing:-21.600000px;}
.ws4{word-spacing:-21.552000px;}
.ws6{word-spacing:-21.372000px;}
.ws0{word-spacing:-21.000000px;}
.ws3{word-spacing:-20.172000px;}
.ws7{word-spacing:-20.076000px;}
.ws2{word-spacing:-19.800000px;}
.ws8{word-spacing:-19.428000px;}
.ws1{word-spacing:0.000000px;}
._7{margin-left:-4.308000px;}
._4{margin-left:-2.658000px;}
._1{margin-left:-1.320000px;}
._0{width:1.650000px;}
._9{width:3.222000px;}
._f{width:4.590000px;}
._b{width:5.610000px;}
._a{width:6.720000px;}
._20{width:7.956000px;}
._1c{width:9.156000px;}
._15{width:10.374000px;}
._16{width:11.592000px;}
._14{width:12.660000px;}
._1b{width:14.088000px;}
._17{width:15.204000px;}
._18{width:16.314000px;}
._11{width:17.868000px;}
._10{width:18.990000px;}
._26{width:23.022000px;}
._2c{width:24.108000px;}
._1e{width:25.344000px;}
._1d{width:26.604000px;}
._1f{width:27.702000px;}
._2e{width:28.926000px;}
._19{width:29.964000px;}
._1a{width:31.386000px;}
._22{width:32.628000px;}
._12{width:33.804000px;}
._21{width:35.088000px;}
._d{width:37.134000px;}
._c{width:38.304000px;}
._e{width:40.338000px;}
._13{width:41.400000px;}
._8{width:43.824000px;}
._2a{width:45.222000px;}
._29{width:46.410000px;}
._2b{width:48.252000px;}
._24{width:50.316000px;}
._25{width:51.828000px;}
._27{width:53.484000px;}
._28{width:55.008000px;}
._6{width:59.568000px;}
._5{width:60.966000px;}
._2d{width:63.126000px;}
._2{width:64.614000px;}
._3{width:65.676000px;}
._23{width:67.764000px;}
._31{width:72.576000px;}
._33{width:94.932000px;}
._32{width:96.012000px;}
._2f{width:112.062000px;}
._30{width:113.064000px;}
._34{width:186.804000px;}
._35{width:188.682000px;}
.fc3{color:transparent;}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs0{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:6.300000px;}
.y50{bottom:16.800000px;}
.y4{bottom:31.237500px;}
.y30{bottom:31.800000px;}
.y3f{bottom:32.100000px;}
.y3c{bottom:32.115000px;}
.y34{bottom:32.130000px;}
.y38{bottom:32.145000px;}
.y3{bottom:57.337500px;}
.y42{bottom:68.092500px;}
.y3e{bottom:68.100000px;}
.y4f{bottom:68.115000px;}
.y2f{bottom:68.145000px;}
.y45{bottom:68.385000px;}
.y3b{bottom:68.400000px;}
.y55{bottom:68.437500px;}
.y33{bottom:68.445000px;}
.y4c{bottom:83.100000px;}
.y53{bottom:83.400000px;}
.y5b{bottom:83.430000px;}
.y40{bottom:85.837500px;}
.y49{bottom:104.385000px;}
.y3a{bottom:104.400000px;}
.y5e{bottom:104.415000px;}
.y41{bottom:104.437500px;}
.y4e{bottom:104.445000px;}
.y44{bottom:104.685000px;}
.y32{bottom:104.730000px;}
.y37{bottom:104.745000px;}
.y2a{bottom:107.737500px;}
.y54{bottom:114.637500px;}
.y4b{bottom:119.400000px;}
.y5a{bottom:119.430000px;}
.y52{bottom:119.730000px;}
.y22{bottom:122.737500px;}
.y61{bottom:131.737500px;}
.y36{bottom:140.745000px;}
.y29{bottom:144.037500px;}
.y5f{bottom:150.930000px;}
.y47{bottom:155.745000px;}
.y21{bottom:159.030000px;}
.y60{bottom:192.075000px;}
.y28{bottom:194.475000px;}
.y20{bottom:195.075000px;}
.y3d{bottom:222.975000px;}
.y1f{bottom:231.375000px;}
.y51{bottom:251.775000px;}
.y1e{bottom:267.675000px;}
.y1d{bottom:303.675000px;}
.y1c{bottom:340.005000px;}
.y39{bottom:360.105000px;}
.y5d{bottom:375.705000px;}
.y1b{bottom:376.320000px;}
.y4d{bottom:404.205000px;}
.y1a{bottom:412.620000px;}
.y19{bottom:448.620000px;}
.y18{bottom:484.920000px;}
.y35{bottom:497.205000px;}
.y5c{bottom:512.850000px;}
.y17{bottom:521.250000px;}
.y4a{bottom:541.350000px;}
.y16{bottom:557.550000px;}
.y15{bottom:593.550000px;}
.y14{bottom:629.850000px;}
.y59{bottom:664.950000px;}
.y13{bottom:666.150000px;}
.y31{bottom:670.650000px;}
.y48{bottom:693.495000px;}
.y12{bottom:702.480000px;}
.y11{bottom:738.480000px;}
.y10{bottom:774.795000px;}
.y2e{bottom:808.080000px;}
.yf{bottom:811.080000px;}
.y58{bottom:817.080000px;}
.y46{bottom:830.580000px;}
.ye{bottom:847.425000px;}
.yd{bottom:883.425000px;}
.yc{bottom:919.725000px;}
.y2d{bottom:941.025000px;}
.y57{bottom:954.525000px;}
.yb{bottom:956.025000px;}
.y2c{bottom:977.325000px;}
.ya{bottom:991.725000px;}
.y27{bottom:992.325000px;}
.y2b{bottom:1013.325000px;}
.y43{bottom:1019.070000px;}
.y9{bottom:1027.755000px;}
.y26{bottom:1028.355000px;}
.y56{bottom:1055.355000px;}
.y8{bottom:1064.070000px;}
.y25{bottom:1064.670000px;}
.y7{bottom:1100.370000px;}
.y24{bottom:1100.955000px;}
.y6{bottom:1136.655000px;}
.y23{bottom:1137.255000px;}
.y2{bottom:1185.900000px;}
.y1{bottom:1204.800000px;}
.h5{height:21.900000px;}
.h2{height:44.730469px;}
.h9{height:64.025391px;}
.h4{height:65.645508px;}
.h3{height:66.515625px;}
.ha{height:74.033203px;}
.h7{height:82.400391px;}
.h8{height:82.441406px;}
.h6{height:84.656250px;}
.hb{height:87.337500px;}
.h15{height:87.600000px;}
.h12{height:123.585000px;}
.he{height:123.600000px;}
.hf{height:123.637500px;}
.h10{height:123.900000px;}
.hc{height:123.937500px;}
.h16{height:138.600000px;}
.h13{height:138.637500px;}
.h14{height:138.937500px;}
.hd{height:159.930000px;}
.h11{height:174.930000px;}
.h17{height:211.275000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:60.000000px;}
.w4{width:680.625000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:4.500000px;}
.x11{left:9.000000px;}
.x5{left:17.400000px;}
.x10{left:117.037500px;}
.x3{left:127.537487px;}
.x7{left:158.729987px;}
.x1{left:192.374987px;}
.x6{left:232.574987px;}
.x2{left:302.504987px;}
.xf{left:315.704987px;}
.xe{left:354.404987px;}
.x8{left:369.419987px;}
.xb{left:397.004987px;}
.xd{left:402.119987px;}
.xc{left:432.449987px;}
.x4{left:448.650000px;}
.xa{left:461.549987px;}
.x9{left:510.449987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-1.397333pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls1a{letter-spacing:-0.821333pt;}
.ls17{letter-spacing:-0.736000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.lse{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.330667pt;}
.ls2{letter-spacing:0.490667pt;}
.lsd{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.544000pt;}
.ls12{letter-spacing:0.586667pt;}
.ls6{letter-spacing:0.736000pt;}
.lsf{letter-spacing:1.066667pt;}
.ls3{letter-spacing:1.600000pt;}
.lsc{letter-spacing:2.666667pt;}
.ls14{letter-spacing:4.746667pt;}
.ls13{letter-spacing:4.800000pt;}
.ls10{letter-spacing:4.853333pt;}
.ls11{letter-spacing:4.960000pt;}
.lsb{letter-spacing:5.866667pt;}
.ls18{letter-spacing:12.320000pt;}
.ls9{letter-spacing:16.693333pt;}
.lsa{letter-spacing:29.333333pt;}
.ls16{letter-spacing:30.400000pt;}
.ls15{letter-spacing:30.560000pt;}
.ls4{letter-spacing:33.600000pt;}
.ws5{word-spacing:-19.200000pt;}
.ws4{word-spacing:-19.157333pt;}
.ws6{word-spacing:-18.997333pt;}
.ws0{word-spacing:-18.666667pt;}
.ws3{word-spacing:-17.930667pt;}
.ws7{word-spacing:-17.845333pt;}
.ws2{word-spacing:-17.600000pt;}
.ws8{word-spacing:-17.269333pt;}
.ws1{word-spacing:0.000000pt;}
._7{margin-left:-3.829333pt;}
._4{margin-left:-2.362667pt;}
._1{margin-left:-1.173333pt;}
._0{width:1.466667pt;}
._9{width:2.864000pt;}
._f{width:4.080000pt;}
._b{width:4.986667pt;}
._a{width:5.973333pt;}
._20{width:7.072000pt;}
._1c{width:8.138667pt;}
._15{width:9.221333pt;}
._16{width:10.304000pt;}
._14{width:11.253333pt;}
._1b{width:12.522667pt;}
._17{width:13.514667pt;}
._18{width:14.501333pt;}
._11{width:15.882667pt;}
._10{width:16.880000pt;}
._26{width:20.464000pt;}
._2c{width:21.429333pt;}
._1e{width:22.528000pt;}
._1d{width:23.648000pt;}
._1f{width:24.624000pt;}
._2e{width:25.712000pt;}
._19{width:26.634667pt;}
._1a{width:27.898667pt;}
._22{width:29.002667pt;}
._12{width:30.048000pt;}
._21{width:31.189333pt;}
._d{width:33.008000pt;}
._c{width:34.048000pt;}
._e{width:35.856000pt;}
._13{width:36.800000pt;}
._8{width:38.954667pt;}
._2a{width:40.197333pt;}
._29{width:41.253333pt;}
._2b{width:42.890667pt;}
._24{width:44.725333pt;}
._25{width:46.069333pt;}
._27{width:47.541333pt;}
._28{width:48.896000pt;}
._6{width:52.949333pt;}
._5{width:54.192000pt;}
._2d{width:56.112000pt;}
._2{width:57.434667pt;}
._3{width:58.378667pt;}
._23{width:60.234667pt;}
._31{width:64.512000pt;}
._33{width:84.384000pt;}
._32{width:85.344000pt;}
._2f{width:99.610667pt;}
._30{width:100.501333pt;}
._34{width:166.048000pt;}
._35{width:167.717333pt;}
.fs0{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.600000pt;}
.y50{bottom:14.933333pt;}
.y4{bottom:27.766667pt;}
.y30{bottom:28.266667pt;}
.y3f{bottom:28.533333pt;}
.y3c{bottom:28.546667pt;}
.y34{bottom:28.560000pt;}
.y38{bottom:28.573333pt;}
.y3{bottom:50.966667pt;}
.y42{bottom:60.526667pt;}
.y3e{bottom:60.533333pt;}
.y4f{bottom:60.546667pt;}
.y2f{bottom:60.573333pt;}
.y45{bottom:60.786667pt;}
.y3b{bottom:60.800000pt;}
.y55{bottom:60.833333pt;}
.y33{bottom:60.840000pt;}
.y4c{bottom:73.866667pt;}
.y53{bottom:74.133333pt;}
.y5b{bottom:74.160000pt;}
.y40{bottom:76.300000pt;}
.y49{bottom:92.786667pt;}
.y3a{bottom:92.800000pt;}
.y5e{bottom:92.813333pt;}
.y41{bottom:92.833333pt;}
.y4e{bottom:92.840000pt;}
.y44{bottom:93.053333pt;}
.y32{bottom:93.093333pt;}
.y37{bottom:93.106667pt;}
.y2a{bottom:95.766667pt;}
.y54{bottom:101.900000pt;}
.y4b{bottom:106.133333pt;}
.y5a{bottom:106.160000pt;}
.y52{bottom:106.426667pt;}
.y22{bottom:109.100000pt;}
.y61{bottom:117.100000pt;}
.y36{bottom:125.106667pt;}
.y29{bottom:128.033333pt;}
.y5f{bottom:134.160000pt;}
.y47{bottom:138.440000pt;}
.y21{bottom:141.360000pt;}
.y60{bottom:170.733333pt;}
.y28{bottom:172.866667pt;}
.y20{bottom:173.400000pt;}
.y3d{bottom:198.200000pt;}
.y1f{bottom:205.666667pt;}
.y51{bottom:223.800000pt;}
.y1e{bottom:237.933333pt;}
.y1d{bottom:269.933333pt;}
.y1c{bottom:302.226667pt;}
.y39{bottom:320.093333pt;}
.y5d{bottom:333.960000pt;}
.y1b{bottom:334.506667pt;}
.y4d{bottom:359.293333pt;}
.y1a{bottom:366.773333pt;}
.y19{bottom:398.773333pt;}
.y18{bottom:431.040000pt;}
.y35{bottom:441.960000pt;}
.y5c{bottom:455.866667pt;}
.y17{bottom:463.333333pt;}
.y4a{bottom:481.200000pt;}
.y16{bottom:495.600000pt;}
.y15{bottom:527.600000pt;}
.y14{bottom:559.866667pt;}
.y59{bottom:591.066667pt;}
.y13{bottom:592.133333pt;}
.y31{bottom:596.133333pt;}
.y48{bottom:616.440000pt;}
.y12{bottom:624.426667pt;}
.y11{bottom:656.426667pt;}
.y10{bottom:688.706667pt;}
.y2e{bottom:718.293333pt;}
.yf{bottom:720.960000pt;}
.y58{bottom:726.293333pt;}
.y46{bottom:738.293333pt;}
.ye{bottom:753.266667pt;}
.yd{bottom:785.266667pt;}
.yc{bottom:817.533333pt;}
.y2d{bottom:836.466667pt;}
.y57{bottom:848.466667pt;}
.yb{bottom:849.800000pt;}
.y2c{bottom:868.733333pt;}
.ya{bottom:881.533333pt;}
.y27{bottom:882.066667pt;}
.y2b{bottom:900.733333pt;}
.y43{bottom:905.840000pt;}
.y9{bottom:913.560000pt;}
.y26{bottom:914.093333pt;}
.y56{bottom:938.093333pt;}
.y8{bottom:945.840000pt;}
.y25{bottom:946.373333pt;}
.y7{bottom:978.106667pt;}
.y24{bottom:978.626667pt;}
.y6{bottom:1010.360000pt;}
.y23{bottom:1010.893333pt;}
.y2{bottom:1054.133333pt;}
.y1{bottom:1070.933333pt;}
.h5{height:19.466667pt;}
.h2{height:39.760417pt;}
.h9{height:56.911458pt;}
.h4{height:58.351562pt;}
.h3{height:59.125000pt;}
.ha{height:65.807292pt;}
.h7{height:73.244792pt;}
.h8{height:73.281250pt;}
.h6{height:75.250000pt;}
.hb{height:77.633333pt;}
.h15{height:77.866667pt;}
.h12{height:109.853333pt;}
.he{height:109.866667pt;}
.hf{height:109.900000pt;}
.h10{height:110.133333pt;}
.hc{height:110.166667pt;}
.h16{height:123.200000pt;}
.h13{height:123.233333pt;}
.h14{height:123.500000pt;}
.hd{height:142.160000pt;}
.h11{height:155.493333pt;}
.h17{height:187.800000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:53.333333pt;}
.w4{width:605.000000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:4.000000pt;}
.x11{left:8.000000pt;}
.x5{left:15.466667pt;}
.x10{left:104.033333pt;}
.x3{left:113.366655pt;}
.x7{left:141.093322pt;}
.x1{left:170.999988pt;}
.x6{left:206.733322pt;}
.x2{left:268.893322pt;}
.xf{left:280.626655pt;}
.xe{left:315.026655pt;}
.x8{left:328.373322pt;}
.xb{left:352.893322pt;}
.xd{left:357.439988pt;}
.xc{left:384.399988pt;}
.x4{left:398.800000pt;}
.xa{left:410.266655pt;}
.x9{left:453.733322pt;}
}




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