
    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_c30a206677e723748c39a077.woff')format("woff");}.ff1{font-family:ff1;line-height:1.470215;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_0154935cc15523ace2a49005.woff')format("woff");}.ff2{font-family:ff2;line-height:0.947266;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_1c2bf8e8aac0c3d7690f09cb.woff')format("woff");}.ff3{font-family:ff3;line-height:1.470215;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_f7f7f1465bf588bfd80960a1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_8f6580871f4e31a292163d37.woff')format("woff");}.ff5{font-family:ff5;line-height:0.947266;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_626d268a1a850115167901ae.woff')format("woff");}.ff6{font-family:ff6;line-height:1.538086;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_6bee63a1dd57ce360e05bdf1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.538086;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_4c5457cf8bf4a70532eccf1c.woff')format("woff");}.ff8{font-family:ff8;line-height:0.929199;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:-80.280000px;}
.v2{vertical-align:-78.480000px;}
.v3{vertical-align:-6.120000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-1.800000px;}
.lsc{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.031680px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000001px;}
.ls2{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.120000px;}
.lsa{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.432000px;}
.ls11{letter-spacing:0.792000px;}
.ls9{letter-spacing:21.168000px;}
.lsf{letter-spacing:99.405360px;}
.ls0{letter-spacing:191.448000px;}
.ls4{letter-spacing:193.167720px;}
.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;}
}
.wsb{word-spacing:-21.024000px;}
.ws9{word-spacing:-20.376000px;}
.ws3{word-spacing:-20.304000px;}
.ws1{word-spacing:-20.232001px;}
.ws2{word-spacing:-20.232000px;}
.ws8{word-spacing:-20.160000px;}
.ws4{word-spacing:-20.088000px;}
.ws7{word-spacing:-20.016000px;}
.wse{word-spacing:-19.296000px;}
.wsc{word-spacing:-18.432000px;}
.wsa{word-spacing:-17.784000px;}
.ws0{word-spacing:-16.893720px;}
.ws5{word-spacing:-11.835720px;}
.ws6{word-spacing:0.000000px;}
.wsd{word-spacing:8.064000px;}
._11{margin-left:-7.567680px;}
._1e{margin-left:-6.075840px;}
._2{margin-left:-5.040000px;}
._7{margin-left:-2.877840px;}
._0{margin-left:-1.082160px;}
._1{width:1.827840px;}
._3{width:2.835120px;}
._5{width:4.772160px;}
._6{width:6.258000px;}
._19{width:7.494480px;}
._8{width:8.540160px;}
._9{width:10.056000px;}
._1b{width:11.284800px;}
._f{width:12.390000px;}
._e{width:13.436160px;}
._1a{width:15.192000px;}
._1f{width:17.186160px;}
._25{width:18.488160px;}
._a{width:21.664320px;}
._16{width:23.613840px;}
._17{width:24.696000px;}
._27{width:25.942320px;}
._24{width:27.000000px;}
._1c{width:28.990320px;}
._1d{width:30.525360px;}
._4{width:31.726320px;}
._22{width:33.524160px;}
._18{width:44.180160px;}
._13{width:45.749280px;}
._10{width:47.016000px;}
._12{width:48.270480px;}
._b{width:49.868160px;}
._c{width:50.878320px;}
._d{width:52.554000px;}
._26{width:54.764160px;}
._23{width:97.301280px;}
._20{width:98.484480px;}
._21{width:100.135680px;}
._15{width:117.980160px;}
._14{width:119.594160px;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.120000px;}
.fs0{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5{bottom:18.900000px;}
.y4{bottom:35.550000px;}
.y3{bottom:52.290000px;}
.y35{bottom:57.450000px;}
.y2{bottom:68.940000px;}
.y34{bottom:76.350000px;}
.y8b{bottom:117.210000px;}
.y33{bottom:128.280000px;}
.y8a{bottom:137.280000px;}
.y61{bottom:138.360000px;}
.y32{bottom:148.260000px;}
.y89{bottom:157.260000px;}
.y60{bottom:158.430000px;}
.y31{bottom:168.240000px;}
.y88{bottom:177.330000px;}
.y5f{bottom:187.410000px;}
.y30{bottom:188.310000px;}
.y87{bottom:197.310000px;}
.y5e{bottom:207.390000px;}
.y2f{bottom:208.290000px;}
.y86{bottom:217.380000px;}
.y5d{bottom:236.460000px;}
.y85{bottom:237.360000px;}
.y2e{bottom:247.980000px;}
.y5c{bottom:256.440000px;}
.y84{bottom:257.430000px;}
.y2d{bottom:266.700000px;}
.y83{bottom:277.410000px;}
.y5b{bottom:285.510000px;}
.y2c{bottom:286.770000px;}
.y82{bottom:297.390000px;}
.y5a{bottom:305.490000px;}
.y2b{bottom:306.750000px;}
.y81{bottom:317.460000px;}
.y59{bottom:325.560000px;}
.y2a{bottom:326.820000px;}
.y80{bottom:337.440000px;}
.y29{bottom:346.800000px;}
.y58{bottom:354.540000px;}
.y28{bottom:366.870000px;}
.y57{bottom:374.610000px;}
.y7f{bottom:377.490000px;}
.y27{bottom:386.850000px;}
.y7e{bottom:397.560000px;}
.y56{bottom:403.590000px;}
.y26{bottom:406.830000px;}
.y7d{bottom:417.540000px;}
.y55{bottom:423.660000px;}
.y25{bottom:426.900000px;}
.y7c{bottom:437.610000px;}
.y54{bottom:443.640000px;}
.y24{bottom:446.880000px;}
.y7b{bottom:457.620000px;}
.y53{bottom:463.740000px;}
.y23{bottom:466.980000px;}
.y7a{bottom:477.690000px;}
.y22{bottom:486.960000px;}
.y52{bottom:492.720000px;}
.y79{bottom:497.670000px;}
.y21{bottom:507.030000px;}
.y51{bottom:512.700000px;}
.y78{bottom:517.740000px;}
.y20{bottom:527.010000px;}
.y77{bottom:537.720000px;}
.y50{bottom:541.770000px;}
.y1f{bottom:547.080000px;}
.y76{bottom:557.700000px;}
.y4f{bottom:561.750000px;}
.y1e{bottom:567.060000px;}
.y75{bottom:577.770000px;}
.y4e{bottom:581.820000px;}
.y1d{bottom:587.130000px;}
.y74{bottom:597.750000px;}
.y1c{bottom:607.110000px;}
.y4d{bottom:610.800000px;}
.y73{bottom:617.820000px;}
.y1b{bottom:627.180000px;}
.y4c{bottom:630.870000px;}
.y72{bottom:637.800000px;}
.y1a{bottom:647.160000px;}
.y4b{bottom:650.850000px;}
.y71{bottom:657.870000px;}
.y70{bottom:677.850000px;}
.y4a{bottom:679.920000px;}
.y19{bottom:687.210000px;}
.y6f{bottom:697.920000px;}
.y49{bottom:699.900000px;}
.y18{bottom:707.190000px;}
.y6e{bottom:717.900000px;}
.y48{bottom:719.970000px;}
.y17{bottom:727.260000px;}
.y6d{bottom:737.970000px;}
.y47{bottom:739.950000px;}
.y16{bottom:747.240000px;}
.y6c{bottom:757.950000px;}
.y46{bottom:759.930000px;}
.y15{bottom:767.310000px;}
.y6b{bottom:777.930000px;}
.y45{bottom:780.000000px;}
.y14{bottom:787.290000px;}
.y6a{bottom:798.000000px;}
.y13{bottom:807.360000px;}
.y44{bottom:808.980000px;}
.y69{bottom:817.980000px;}
.y12{bottom:827.340000px;}
.y43{bottom:829.050000px;}
.y68{bottom:838.050000px;}
.y11{bottom:847.410000px;}
.y42{bottom:849.030000px;}
.y67{bottom:858.030000px;}
.y97{bottom:861.810000px;}
.y41{bottom:878.100000px;}
.y96{bottom:880.530000px;}
.y10{bottom:887.370000px;}
.y40{bottom:898.080000px;}
.y95{bottom:900.600000px;}
.yf{bottom:907.440000px;}
.y3f{bottom:918.150000px;}
.y94{bottom:920.580000px;}
.ye{bottom:927.420000px;}
.y3e{bottom:938.130000px;}
.y93{bottom:940.650000px;}
.yd{bottom:947.490000px;}
.y66{bottom:958.200000px;}
.y3d{bottom:967.200000px;}
.y92{bottom:980.700000px;}
.y65{bottom:982.680000px;}
.yc{bottom:987.540000px;}
.y91{bottom:1000.710000px;}
.y64{bottom:1002.780000px;}
.y3c{bottom:1007.280000px;}
.yb{bottom:1007.550000px;}
.y90{bottom:1020.780000px;}
.y63{bottom:1022.760000px;}
.ya{bottom:1027.620000px;}
.y3b{bottom:1031.760000px;}
.y8f{bottom:1040.760000px;}
.y9{bottom:1047.600000px;}
.y3a{bottom:1051.740000px;}
.y8e{bottom:1060.740000px;}
.y8{bottom:1067.670000px;}
.y39{bottom:1071.810000px;}
.y8d{bottom:1080.810000px;}
.y7{bottom:1088.460000px;}
.y38{bottom:1091.790000px;}
.y8c{bottom:1100.790000px;}
.y6{bottom:1109.790000px;}
.y37{bottom:1111.860000px;}
.y62{bottom:1120.860000px;}
.y1{bottom:1126.800000px;}
.y36{bottom:1140.840000px;}
.h4{height:42.770918px;}
.hc{height:46.868730px;}
.hb{height:51.222656px;}
.h7{height:59.674395px;}
.h3{height:61.499707px;}
.h9{height:67.391895px;}
.h6{height:68.710781px;}
.h8{height:73.652344px;}
.h5{height:75.093750px;}
.ha{height:76.324219px;}
.h2{height:81.720000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:50.850000px;}
.w4{width:329.700000px;}
.w2{width:331.860000px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1{left:98.280000px;}
.x6{left:106.379987px;}
.x9{left:148.949987px;}
.x7{left:159.299987px;}
.x2{left:176.880000px;}
.x3{left:430.140000px;}
.x5{left:480.990000px;}
.x8{left:777.749987px;}
@media print{
.v1{vertical-align:-71.360000pt;}
.v2{vertical-align:-69.760000pt;}
.v3{vertical-align:-5.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.600000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.028160pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000001pt;}
.ls2{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.106667pt;}
.lsa{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.384000pt;}
.ls11{letter-spacing:0.704000pt;}
.ls9{letter-spacing:18.816000pt;}
.lsf{letter-spacing:88.360320pt;}
.ls0{letter-spacing:170.176000pt;}
.ls4{letter-spacing:171.704640pt;}
.wsb{word-spacing:-18.688000pt;}
.ws9{word-spacing:-18.112000pt;}
.ws3{word-spacing:-18.048000pt;}
.ws1{word-spacing:-17.984001pt;}
.ws2{word-spacing:-17.984000pt;}
.ws8{word-spacing:-17.920000pt;}
.ws4{word-spacing:-17.856000pt;}
.ws7{word-spacing:-17.792000pt;}
.wse{word-spacing:-17.152000pt;}
.wsc{word-spacing:-16.384000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws0{word-spacing:-15.016640pt;}
.ws5{word-spacing:-10.520640pt;}
.ws6{word-spacing:0.000000pt;}
.wsd{word-spacing:7.168000pt;}
._11{margin-left:-6.726827pt;}
._1e{margin-left:-5.400747pt;}
._2{margin-left:-4.480000pt;}
._7{margin-left:-2.558080pt;}
._0{margin-left:-0.961920pt;}
._1{width:1.624747pt;}
._3{width:2.520107pt;}
._5{width:4.241920pt;}
._6{width:5.562667pt;}
._19{width:6.661760pt;}
._8{width:7.591253pt;}
._9{width:8.938667pt;}
._1b{width:10.030933pt;}
._f{width:11.013333pt;}
._e{width:11.943253pt;}
._1a{width:13.504000pt;}
._1f{width:15.276587pt;}
._25{width:16.433920pt;}
._a{width:19.257173pt;}
._16{width:20.990080pt;}
._17{width:21.952000pt;}
._27{width:23.059840pt;}
._24{width:24.000000pt;}
._1c{width:25.769173pt;}
._1d{width:27.133653pt;}
._4{width:28.201173pt;}
._22{width:29.799253pt;}
._18{width:39.271253pt;}
._13{width:40.666027pt;}
._10{width:41.792000pt;}
._12{width:42.907093pt;}
._b{width:44.327253pt;}
._c{width:45.225173pt;}
._d{width:46.714667pt;}
._26{width:48.679253pt;}
._23{width:86.490027pt;}
._20{width:87.541760pt;}
._21{width:89.009493pt;}
._15{width:104.871253pt;}
._14{width:106.305920pt;}
.fs4{font-size:37.440000pt;}
.fs0{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:16.800000pt;}
.y4{bottom:31.600000pt;}
.y3{bottom:46.480000pt;}
.y35{bottom:51.066667pt;}
.y2{bottom:61.280000pt;}
.y34{bottom:67.866667pt;}
.y8b{bottom:104.186667pt;}
.y33{bottom:114.026667pt;}
.y8a{bottom:122.026667pt;}
.y61{bottom:122.986667pt;}
.y32{bottom:131.786667pt;}
.y89{bottom:139.786667pt;}
.y60{bottom:140.826667pt;}
.y31{bottom:149.546667pt;}
.y88{bottom:157.626667pt;}
.y5f{bottom:166.586667pt;}
.y30{bottom:167.386667pt;}
.y87{bottom:175.386667pt;}
.y5e{bottom:184.346667pt;}
.y2f{bottom:185.146667pt;}
.y86{bottom:193.226667pt;}
.y5d{bottom:210.186667pt;}
.y85{bottom:210.986667pt;}
.y2e{bottom:220.426667pt;}
.y5c{bottom:227.946667pt;}
.y84{bottom:228.826667pt;}
.y2d{bottom:237.066667pt;}
.y83{bottom:246.586667pt;}
.y5b{bottom:253.786667pt;}
.y2c{bottom:254.906667pt;}
.y82{bottom:264.346667pt;}
.y5a{bottom:271.546667pt;}
.y2b{bottom:272.666667pt;}
.y81{bottom:282.186667pt;}
.y59{bottom:289.386667pt;}
.y2a{bottom:290.506667pt;}
.y80{bottom:299.946667pt;}
.y29{bottom:308.266667pt;}
.y58{bottom:315.146667pt;}
.y28{bottom:326.106667pt;}
.y57{bottom:332.986667pt;}
.y7f{bottom:335.546667pt;}
.y27{bottom:343.866667pt;}
.y7e{bottom:353.386667pt;}
.y56{bottom:358.746667pt;}
.y26{bottom:361.626667pt;}
.y7d{bottom:371.146667pt;}
.y55{bottom:376.586667pt;}
.y25{bottom:379.466667pt;}
.y7c{bottom:388.986667pt;}
.y54{bottom:394.346667pt;}
.y24{bottom:397.226667pt;}
.y7b{bottom:406.773333pt;}
.y53{bottom:412.213333pt;}
.y23{bottom:415.093333pt;}
.y7a{bottom:424.613333pt;}
.y22{bottom:432.853333pt;}
.y52{bottom:437.973333pt;}
.y79{bottom:442.373333pt;}
.y21{bottom:450.693333pt;}
.y51{bottom:455.733333pt;}
.y78{bottom:460.213333pt;}
.y20{bottom:468.453333pt;}
.y77{bottom:477.973333pt;}
.y50{bottom:481.573333pt;}
.y1f{bottom:486.293333pt;}
.y76{bottom:495.733333pt;}
.y4f{bottom:499.333333pt;}
.y1e{bottom:504.053333pt;}
.y75{bottom:513.573333pt;}
.y4e{bottom:517.173333pt;}
.y1d{bottom:521.893333pt;}
.y74{bottom:531.333333pt;}
.y1c{bottom:539.653333pt;}
.y4d{bottom:542.933333pt;}
.y73{bottom:549.173333pt;}
.y1b{bottom:557.493333pt;}
.y4c{bottom:560.773333pt;}
.y72{bottom:566.933333pt;}
.y1a{bottom:575.253333pt;}
.y4b{bottom:578.533333pt;}
.y71{bottom:584.773333pt;}
.y70{bottom:602.533333pt;}
.y4a{bottom:604.373333pt;}
.y19{bottom:610.853333pt;}
.y6f{bottom:620.373333pt;}
.y49{bottom:622.133333pt;}
.y18{bottom:628.613333pt;}
.y6e{bottom:638.133333pt;}
.y48{bottom:639.973333pt;}
.y17{bottom:646.453333pt;}
.y6d{bottom:655.973333pt;}
.y47{bottom:657.733333pt;}
.y16{bottom:664.213333pt;}
.y6c{bottom:673.733333pt;}
.y46{bottom:675.493333pt;}
.y15{bottom:682.053333pt;}
.y6b{bottom:691.493333pt;}
.y45{bottom:693.333333pt;}
.y14{bottom:699.813333pt;}
.y6a{bottom:709.333333pt;}
.y13{bottom:717.653333pt;}
.y44{bottom:719.093333pt;}
.y69{bottom:727.093333pt;}
.y12{bottom:735.413333pt;}
.y43{bottom:736.933333pt;}
.y68{bottom:744.933333pt;}
.y11{bottom:753.253333pt;}
.y42{bottom:754.693333pt;}
.y67{bottom:762.693333pt;}
.y97{bottom:766.053333pt;}
.y41{bottom:780.533333pt;}
.y96{bottom:782.693333pt;}
.y10{bottom:788.773333pt;}
.y40{bottom:798.293333pt;}
.y95{bottom:800.533333pt;}
.yf{bottom:806.613333pt;}
.y3f{bottom:816.133333pt;}
.y94{bottom:818.293333pt;}
.ye{bottom:824.373333pt;}
.y3e{bottom:833.893333pt;}
.y93{bottom:836.133333pt;}
.yd{bottom:842.213333pt;}
.y66{bottom:851.733333pt;}
.y3d{bottom:859.733333pt;}
.y92{bottom:871.733333pt;}
.y65{bottom:873.493333pt;}
.yc{bottom:877.813333pt;}
.y91{bottom:889.520000pt;}
.y64{bottom:891.360000pt;}
.y3c{bottom:895.360000pt;}
.yb{bottom:895.600000pt;}
.y90{bottom:907.360000pt;}
.y63{bottom:909.120000pt;}
.ya{bottom:913.440000pt;}
.y3b{bottom:917.120000pt;}
.y8f{bottom:925.120000pt;}
.y9{bottom:931.200000pt;}
.y3a{bottom:934.880000pt;}
.y8e{bottom:942.880000pt;}
.y8{bottom:949.040000pt;}
.y39{bottom:952.720000pt;}
.y8d{bottom:960.720000pt;}
.y7{bottom:967.520000pt;}
.y38{bottom:970.480000pt;}
.y8c{bottom:978.480000pt;}
.y6{bottom:986.480000pt;}
.y37{bottom:988.320000pt;}
.y62{bottom:996.320000pt;}
.y1{bottom:1001.600000pt;}
.y36{bottom:1014.080000pt;}
.h4{height:38.018594pt;}
.hc{height:41.661094pt;}
.hb{height:45.531250pt;}
.h7{height:53.043906pt;}
.h3{height:54.666406pt;}
.h9{height:59.903906pt;}
.h6{height:61.076250pt;}
.h8{height:65.468750pt;}
.h5{height:66.750000pt;}
.ha{height:67.843750pt;}
.h2{height:72.640000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:45.200000pt;}
.w4{width:293.066667pt;}
.w2{width:294.986667pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1{left:87.360000pt;}
.x6{left:94.559988pt;}
.x9{left:132.399988pt;}
.x7{left:141.599988pt;}
.x2{left:157.226667pt;}
.x3{left:382.346667pt;}
.x5{left:427.546667pt;}
.x8{left:691.333322pt;}
}




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