
    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_06ef51cbd4c007b43cb90f8a.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4de3fbc49587922c18e0cbc9.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_de0cfb9e3d49d713eecb0610.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d885b8d20855c29a5a950476.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_20dd8e1b92c340e763a12a36.woff')format("woff");}.ff5{font-family:ff5;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;}
.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:-97.200000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.037440px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.720000px;}
.ls8{letter-spacing:15.120000px;}
.ls2{letter-spacing:59.040000px;}
.lsa{letter-spacing:102.384000px;}
.ls6{letter-spacing:138.384000px;}
.ls0{letter-spacing:1039.457280px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws0{word-spacing:-23.381280px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.712000px;}
.ws4{word-spacing:0.000000px;}
._1e{margin-left:-4.248000px;}
._1f{margin-left:-3.240000px;}
._18{margin-left:-2.160000px;}
._0{margin-left:-1.072320px;}
._1{width:1.480320px;}
._d{width:2.871360px;}
._17{width:4.393920px;}
._22{width:6.048000px;}
._14{width:7.056000px;}
._e{width:8.136000px;}
._1d{width:9.360000px;}
._23{width:10.614720px;}
._4{width:11.921280px;}
._3{width:13.032000px;}
._16{width:14.104320px;}
._15{width:15.264000px;}
._a{width:16.992000px;}
._c{width:19.008000px;}
._1c{width:20.015040px;}
._7{width:21.744000px;}
._21{width:23.607360px;}
._24{width:25.127520px;}
._25{width:27.095040px;}
._9{width:28.144320px;}
._8{width:29.376000px;}
._20{width:30.495360px;}
._26{width:31.588800px;}
._b{width:32.600640px;}
._2{width:33.912000px;}
._27{width:35.016000px;}
._6{width:36.036000px;}
._5{width:37.080000px;}
._19{width:39.024000px;}
._1a{width:40.231680px;}
._13{width:45.864000px;}
._11{width:58.824000px;}
._10{width:60.060000px;}
._f{width:61.416000px;}
._12{width:100.152000px;}
._1b{width:194.400000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(57,127,172);}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.600000px;}
.y9{bottom:3.780000px;}
.y7{bottom:18.000000px;}
.y5{bottom:22.500000px;}
.y8{bottom:22.680000px;}
.y4{bottom:41.400000px;}
.y35{bottom:94.680000px;}
.y34{bottom:118.620000px;}
.ya2{bottom:121.320000px;}
.y5b{bottom:124.200000px;}
.y75{bottom:132.480000px;}
.y33{bottom:142.380000px;}
.ya1{bottom:145.080000px;}
.y5a{bottom:147.960000px;}
.y92{bottom:153.540000px;}
.y74{bottom:156.420000px;}
.y32{bottom:166.140000px;}
.ya0{bottom:169.020000px;}
.y59{bottom:171.720000px;}
.y73{bottom:180.180000px;}
.y31{bottom:189.900000px;}
.y9f{bottom:192.810000px;}
.y58{bottom:195.510000px;}
.y91{bottom:198.390000px;}
.y72{bottom:203.970000px;}
.y9e{bottom:216.570000px;}
.y57{bottom:219.450000px;}
.y90{bottom:222.150000px;}
.y30{bottom:234.750000px;}
.y9d{bottom:240.330000px;}
.y8f{bottom:245.910000px;}
.y71{bottom:248.790000px;}
.y2f{bottom:258.510000px;}
.y56{bottom:264.270000px;}
.y8e{bottom:269.850000px;}
.y70{bottom:272.550000px;}
.y2e{bottom:282.450000px;}
.y55{bottom:288.030000px;}
.y8d{bottom:293.610000px;}
.y6f{bottom:296.310000px;}
.y2d{bottom:306.210000px;}
.y54{bottom:311.790000px;}
.y8c{bottom:317.370000px;}
.y6e{bottom:320.250000px;}
.y2c{bottom:329.970000px;}
.y53{bottom:335.550000px;}
.y8b{bottom:341.130000px;}
.y6d{bottom:344.010000px;}
.y2b{bottom:353.730000px;}
.y52{bottom:359.310000px;}
.y8a{bottom:365.070000px;}
.y2a{bottom:377.670000px;}
.y51{bottom:383.070000px;}
.y9c{bottom:383.250000px;}
.y6c{bottom:388.830000px;}
.y29{bottom:401.430000px;}
.y9b{bottom:407.010000px;}
.y6b{bottom:412.590000px;}
.y28{bottom:425.190000px;}
.y50{bottom:428.070000px;}
.y9a{bottom:430.770000px;}
.y6a{bottom:436.395000px;}
.y27{bottom:448.995000px;}
.y4f{bottom:451.875000px;}
.y99{bottom:454.575000px;}
.y69{bottom:460.335000px;}
.y26{bottom:472.935000px;}
.y4e{bottom:475.635000px;}
.y98{bottom:478.515000px;}
.y68{bottom:484.095000px;}
.y25{bottom:496.695000px;}
.y4d{bottom:499.395000px;}
.y97{bottom:502.275000px;}
.y89{bottom:507.855000px;}
.y24{bottom:520.455000px;}
.y4c{bottom:523.335000px;}
.y96{bottom:526.035000px;}
.y67{bottom:528.915000px;}
.y88{bottom:531.615000px;}
.y23{bottom:544.215000px;}
.y4b{bottom:547.095000px;}
.y95{bottom:549.795000px;}
.y66{bottom:552.675000px;}
.y87{bottom:555.555000px;}
.y22{bottom:567.975000px;}
.y4a{bottom:570.855000px;}
.y94{bottom:573.735000px;}
.y65{bottom:576.435000px;}
.y86{bottom:579.315000px;}
.y21{bottom:591.915000px;}
.y49{bottom:594.615000px;}
.y64{bottom:600.195000px;}
.y85{bottom:603.075000px;}
.y20{bottom:615.675000px;}
.y93{bottom:618.375000px;}
.y48{bottom:618.555000px;}
.y63{bottom:624.135000px;}
.y84{bottom:626.835000px;}
.y1f{bottom:639.435000px;}
.y47{bottom:642.315000px;}
.y62{bottom:647.895000px;}
.y83{bottom:650.595000px;}
.y1e{bottom:663.195000px;}
.y46{bottom:666.075000px;}
.y82{bottom:674.565000px;}
.y1d{bottom:687.165000px;}
.y45{bottom:689.865000px;}
.y61{bottom:692.745000px;}
.y81{bottom:698.325000px;}
.y1c{bottom:710.925000px;}
.y44{bottom:713.625000px;}
.y60{bottom:716.505000px;}
.y80{bottom:722.085000px;}
.y1b{bottom:734.685000px;}
.y43{bottom:737.565000px;}
.y5f{bottom:740.265000px;}
.y7f{bottom:745.845000px;}
.y1a{bottom:758.445000px;}
.y42{bottom:761.325000px;}
.y5e{bottom:764.205000px;}
.y7e{bottom:769.785000px;}
.y19{bottom:782.385000px;}
.y41{bottom:785.085000px;}
.y5d{bottom:787.965000px;}
.y7d{bottom:793.545000px;}
.y18{bottom:806.145000px;}
.y40{bottom:808.845000px;}
.y5c{bottom:811.725000px;}
.y17{bottom:829.905000px;}
.y3f{bottom:832.785000px;}
.y7c{bottom:838.365000px;}
.y16{bottom:853.665000px;}
.y3e{bottom:856.545000px;}
.y15{bottom:877.605000px;}
.y3d{bottom:880.305000px;}
.y7b{bottom:883.185000px;}
.y14{bottom:901.365000px;}
.y3c{bottom:904.065000px;}
.y7a{bottom:906.945000px;}
.y13{bottom:925.170000px;}
.y3b{bottom:928.050000px;}
.y79{bottom:930.750000px;}
.y12{bottom:948.930000px;}
.y3a{bottom:951.810000px;}
.y78{bottom:954.510000px;}
.y11{bottom:972.870000px;}
.y39{bottom:975.570000px;}
.y77{bottom:978.450000px;}
.y10{bottom:996.630000px;}
.y38{bottom:999.330000px;}
.yf{bottom:1020.390000px;}
.y37{bottom:1023.270000px;}
.ye{bottom:1044.150000px;}
.y36{bottom:1047.030000px;}
.yd{bottom:1067.910000px;}
.y76{bottom:1070.790000px;}
.yc{bottom:1091.850000px;}
.yb{bottom:1115.610000px;}
.ya{bottom:1139.370000px;}
.y3{bottom:1184.940000px;}
.y2{bottom:1209.060000px;}
.y1{bottom:1233.180000px;}
.h4{height:37.980000px;}
.h7{height:50.484375px;}
.h3{height:65.010937px;}
.h6{height:70.664062px;}
.h5{height:72.562500px;}
.h8{height:75.093750px;}
.h2{height:87.859687px;}
.h0{height:1263.420000px;}
.h1{height:1263.750000px;}
.w3{width:23.760000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x4{left:3.600000px;}
.x1{left:84.995987px;}
.xd{left:226.829987px;}
.x5{left:242.489987px;}
.x7{left:297.254987px;}
.x8{left:344.774987px;}
.x9{left:347.114987px;}
.xc{left:360.794987px;}
.xf{left:371.774987px;}
.xa{left:387.254987px;}
.xe{left:391.754987px;}
.xb{left:399.314987px;}
.x6{left:432.824987px;}
.x3{left:442.365000px;}
.x2{left:457.664987px;}
@media print{
.v1{vertical-align:-86.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.033280pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls8{letter-spacing:13.440000pt;}
.ls2{letter-spacing:52.480000pt;}
.lsa{letter-spacing:91.008000pt;}
.ls6{letter-spacing:123.008000pt;}
.ls0{letter-spacing:923.962027pt;}
.ws3{word-spacing:-64.000000pt;}
.ws0{word-spacing:-20.783360pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws4{word-spacing:0.000000pt;}
._1e{margin-left:-3.776000pt;}
._1f{margin-left:-2.880000pt;}
._18{margin-left:-1.920000pt;}
._0{margin-left:-0.953173pt;}
._1{width:1.315840pt;}
._d{width:2.552320pt;}
._17{width:3.905707pt;}
._22{width:5.376000pt;}
._14{width:6.272000pt;}
._e{width:7.232000pt;}
._1d{width:8.320000pt;}
._23{width:9.435307pt;}
._4{width:10.596693pt;}
._3{width:11.584000pt;}
._16{width:12.537173pt;}
._15{width:13.568000pt;}
._a{width:15.104000pt;}
._c{width:16.896000pt;}
._1c{width:17.791147pt;}
._7{width:19.328000pt;}
._21{width:20.984320pt;}
._24{width:22.335573pt;}
._25{width:24.084480pt;}
._9{width:25.017173pt;}
._8{width:26.112000pt;}
._20{width:27.106987pt;}
._26{width:28.078933pt;}
._b{width:28.978347pt;}
._2{width:30.144000pt;}
._27{width:31.125333pt;}
._6{width:32.032000pt;}
._5{width:32.960000pt;}
._19{width:34.688000pt;}
._1a{width:35.761493pt;}
._13{width:40.768000pt;}
._11{width:52.288000pt;}
._10{width:53.386667pt;}
._f{width:54.592000pt;}
._12{width:89.024000pt;}
._1b{width:172.800000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.200000pt;}
.y9{bottom:3.360000pt;}
.y7{bottom:16.000000pt;}
.y5{bottom:20.000000pt;}
.y8{bottom:20.160000pt;}
.y4{bottom:36.800000pt;}
.y35{bottom:84.160000pt;}
.y34{bottom:105.440000pt;}
.ya2{bottom:107.840000pt;}
.y5b{bottom:110.400000pt;}
.y75{bottom:117.760000pt;}
.y33{bottom:126.560000pt;}
.ya1{bottom:128.960000pt;}
.y5a{bottom:131.520000pt;}
.y92{bottom:136.480000pt;}
.y74{bottom:139.040000pt;}
.y32{bottom:147.680000pt;}
.ya0{bottom:150.240000pt;}
.y59{bottom:152.640000pt;}
.y73{bottom:160.160000pt;}
.y31{bottom:168.800000pt;}
.y9f{bottom:171.386667pt;}
.y58{bottom:173.786667pt;}
.y91{bottom:176.346667pt;}
.y72{bottom:181.306667pt;}
.y9e{bottom:192.506667pt;}
.y57{bottom:195.066667pt;}
.y90{bottom:197.466667pt;}
.y30{bottom:208.666667pt;}
.y9d{bottom:213.626667pt;}
.y8f{bottom:218.586667pt;}
.y71{bottom:221.146667pt;}
.y2f{bottom:229.786667pt;}
.y56{bottom:234.906667pt;}
.y8e{bottom:239.866667pt;}
.y70{bottom:242.266667pt;}
.y2e{bottom:251.066667pt;}
.y55{bottom:256.026667pt;}
.y8d{bottom:260.986667pt;}
.y6f{bottom:263.386667pt;}
.y2d{bottom:272.186667pt;}
.y54{bottom:277.146667pt;}
.y8c{bottom:282.106667pt;}
.y6e{bottom:284.666667pt;}
.y2c{bottom:293.306667pt;}
.y53{bottom:298.266667pt;}
.y8b{bottom:303.226667pt;}
.y6d{bottom:305.786667pt;}
.y2b{bottom:314.426667pt;}
.y52{bottom:319.386667pt;}
.y8a{bottom:324.506667pt;}
.y2a{bottom:335.706667pt;}
.y51{bottom:340.506667pt;}
.y9c{bottom:340.666667pt;}
.y6c{bottom:345.626667pt;}
.y29{bottom:356.826667pt;}
.y9b{bottom:361.786667pt;}
.y6b{bottom:366.746667pt;}
.y28{bottom:377.946667pt;}
.y50{bottom:380.506667pt;}
.y9a{bottom:382.906667pt;}
.y6a{bottom:387.906667pt;}
.y27{bottom:399.106667pt;}
.y4f{bottom:401.666667pt;}
.y99{bottom:404.066667pt;}
.y69{bottom:409.186667pt;}
.y26{bottom:420.386667pt;}
.y4e{bottom:422.786667pt;}
.y98{bottom:425.346667pt;}
.y68{bottom:430.306667pt;}
.y25{bottom:441.506667pt;}
.y4d{bottom:443.906667pt;}
.y97{bottom:446.466667pt;}
.y89{bottom:451.426667pt;}
.y24{bottom:462.626667pt;}
.y4c{bottom:465.186667pt;}
.y96{bottom:467.586667pt;}
.y67{bottom:470.146667pt;}
.y88{bottom:472.546667pt;}
.y23{bottom:483.746667pt;}
.y4b{bottom:486.306667pt;}
.y95{bottom:488.706667pt;}
.y66{bottom:491.266667pt;}
.y87{bottom:493.826667pt;}
.y22{bottom:504.866667pt;}
.y4a{bottom:507.426667pt;}
.y94{bottom:509.986667pt;}
.y65{bottom:512.386667pt;}
.y86{bottom:514.946667pt;}
.y21{bottom:526.146667pt;}
.y49{bottom:528.546667pt;}
.y64{bottom:533.506667pt;}
.y85{bottom:536.066667pt;}
.y20{bottom:547.266667pt;}
.y93{bottom:549.666667pt;}
.y48{bottom:549.826667pt;}
.y63{bottom:554.786667pt;}
.y84{bottom:557.186667pt;}
.y1f{bottom:568.386667pt;}
.y47{bottom:570.946667pt;}
.y62{bottom:575.906667pt;}
.y83{bottom:578.306667pt;}
.y1e{bottom:589.506667pt;}
.y46{bottom:592.066667pt;}
.y82{bottom:599.613333pt;}
.y1d{bottom:610.813333pt;}
.y45{bottom:613.213333pt;}
.y61{bottom:615.773333pt;}
.y81{bottom:620.733333pt;}
.y1c{bottom:631.933333pt;}
.y44{bottom:634.333333pt;}
.y60{bottom:636.893333pt;}
.y80{bottom:641.853333pt;}
.y1b{bottom:653.053333pt;}
.y43{bottom:655.613333pt;}
.y5f{bottom:658.013333pt;}
.y7f{bottom:662.973333pt;}
.y1a{bottom:674.173333pt;}
.y42{bottom:676.733333pt;}
.y5e{bottom:679.293333pt;}
.y7e{bottom:684.253333pt;}
.y19{bottom:695.453333pt;}
.y41{bottom:697.853333pt;}
.y5d{bottom:700.413333pt;}
.y7d{bottom:705.373333pt;}
.y18{bottom:716.573333pt;}
.y40{bottom:718.973333pt;}
.y5c{bottom:721.533333pt;}
.y17{bottom:737.693333pt;}
.y3f{bottom:740.253333pt;}
.y7c{bottom:745.213333pt;}
.y16{bottom:758.813333pt;}
.y3e{bottom:761.373333pt;}
.y15{bottom:780.093333pt;}
.y3d{bottom:782.493333pt;}
.y7b{bottom:785.053333pt;}
.y14{bottom:801.213333pt;}
.y3c{bottom:803.613333pt;}
.y7a{bottom:806.173333pt;}
.y13{bottom:822.373333pt;}
.y3b{bottom:824.933333pt;}
.y79{bottom:827.333333pt;}
.y12{bottom:843.493333pt;}
.y3a{bottom:846.053333pt;}
.y78{bottom:848.453333pt;}
.y11{bottom:864.773333pt;}
.y39{bottom:867.173333pt;}
.y77{bottom:869.733333pt;}
.y10{bottom:885.893333pt;}
.y38{bottom:888.293333pt;}
.yf{bottom:907.013333pt;}
.y37{bottom:909.573333pt;}
.ye{bottom:928.133333pt;}
.y36{bottom:930.693333pt;}
.yd{bottom:949.253333pt;}
.y76{bottom:951.813333pt;}
.yc{bottom:970.533333pt;}
.yb{bottom:991.653333pt;}
.ya{bottom:1012.773333pt;}
.y3{bottom:1053.280000pt;}
.y2{bottom:1074.720000pt;}
.y1{bottom:1096.160000pt;}
.h4{height:33.760000pt;}
.h7{height:44.875000pt;}
.h3{height:57.787500pt;}
.h6{height:62.812500pt;}
.h5{height:64.500000pt;}
.h8{height:66.750000pt;}
.h2{height:78.097500pt;}
.h0{height:1123.040000pt;}
.h1{height:1123.333333pt;}
.w3{width:21.120000pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x4{left:3.200000pt;}
.x1{left:75.551988pt;}
.xd{left:201.626655pt;}
.x5{left:215.546655pt;}
.x7{left:264.226655pt;}
.x8{left:306.466655pt;}
.x9{left:308.546655pt;}
.xc{left:320.706655pt;}
.xf{left:330.466655pt;}
.xa{left:344.226655pt;}
.xe{left:348.226655pt;}
.xb{left:354.946655pt;}
.x6{left:384.733321pt;}
.x3{left:393.213333pt;}
.x2{left:406.813321pt;}
}




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