
    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_6c28e369121753a1f7eb1b0b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.853027;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_af515f2d3a591059de8c0771.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5f432a59df047e39295f65fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_4025fb9dc1ec21db0ab23f56.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_2c45a4df50312ad8d930b34a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.052734;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5{letter-spacing:-0.463800px;}
.ls4{letter-spacing:-0.078000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.132480px;}
.ls3{letter-spacing:2.310000px;}
.ls1{letter-spacing:59.345280px;}
.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;}
}
.ws0{word-spacing:-66.240000px;}
.ws2{word-spacing:-14.892240px;}
.ws3{word-spacing:-14.506440px;}
.ws1{word-spacing:0.000000px;}
._8{margin-left:-4.106880px;}
._5{margin-left:-2.583360px;}
._0{margin-left:-1.126080px;}
._1{width:1.094400px;}
._2{width:2.252160px;}
._3{width:4.239360px;}
._4{width:5.570880px;}
._7{width:7.220160px;}
._6{width:8.478720px;}
._c{width:10.333440px;}
._b{width:11.525760px;}
._d{width:12.980160px;}
._12{width:16.361280px;}
._9{width:17.853120px;}
._a{width:19.076160px;}
._e{width:20.866560px;}
._10{width:22.008480px;}
._f{width:23.051520px;}
._11{width:24.508800px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:46.080000px;}
.y3{bottom:65.880000px;}
.y54{bottom:119.556000px;}
.y2b{bottom:131.796000px;}
.y53{bottom:141.156000px;}
.y2a{bottom:153.390000px;}
.y90{bottom:160.950000px;}
.y68{bottom:162.390000px;}
.y52{bottom:162.750000px;}
.y29{bottom:175.350000px;}
.y8f{bottom:182.910000px;}
.y67{bottom:184.710000px;}
.y51{bottom:196.230000px;}
.y66{bottom:206.310000px;}
.y28{bottom:208.470000px;}
.y8e{bottom:216.390000px;}
.y50{bottom:218.550000px;}
.y65{bottom:228.270000px;}
.y8d{bottom:238.395000px;}
.y4f{bottom:240.195000px;}
.y27{bottom:242.355000px;}
.y64{bottom:261.435000px;}
.y4e{bottom:261.795000px;}
.y8c{bottom:271.875000px;}
.y26{bottom:276.195000px;}
.y4d{bottom:283.755000px;}
.y8b{bottom:293.835000px;}
.y63{bottom:295.275000px;}
.y25{bottom:298.155000px;}
.y4c{bottom:305.355000px;}
.y24{bottom:320.115000px;}
.y8a{bottom:327.315000px;}
.y62{bottom:329.115000px;}
.y4b{bottom:338.835000px;}
.y23{bottom:341.715000px;}
.y61{bottom:351.105000px;}
.ya9{bottom:351.465000px;}
.y89{bottom:361.185000px;}
.y22{bottom:363.345000px;}
.y4a{bottom:372.345000px;}
.y60{bottom:372.705000px;}
.y88{bottom:383.145000px;}
.ya8{bottom:385.305000px;}
.y5f{bottom:394.665000px;}
.y21{bottom:396.825000px;}
.y87{bottom:404.745000px;}
.y49{bottom:406.185000px;}
.y5e{bottom:416.265000px;}
.y20{bottom:418.785000px;}
.y86{bottom:426.705000px;}
.y48{bottom:428.505000px;}
.y1f{bottom:440.385000px;}
.ya7{bottom:441.105000px;}
.y85{bottom:448.305000px;}
.y5d{bottom:449.745000px;}
.y47{bottom:450.105000px;}
.y84{bottom:469.905000px;}
.y46{bottom:471.705000px;}
.ya6{bottom:474.630000px;}
.y1e{bottom:474.990000px;}
.y83{bottom:491.910000px;}
.y5c{bottom:493.710000px;}
.y1d{bottom:496.950000px;}
.y45{bottom:505.230000px;}
.ya5{bottom:508.110000px;}
.y82{bottom:513.510000px;}
.y5b{bottom:515.310000px;}
.y44{bottom:527.190000px;}
.y1c{bottom:531.150000px;}
.y5a{bottom:536.910000px;}
.ya4{bottom:541.950000px;}
.y81{bottom:546.990000px;}
.y43{bottom:549.150000px;}
.y1b{bottom:553.110000px;}
.ya3{bottom:563.910000px;}
.y80{bottom:568.950000px;}
.y59{bottom:570.390000px;}
.y42{bottom:570.750000px;}
.y1a{bottom:587.670000px;}
.y7f{bottom:590.910000px;}
.y41{bottom:592.710000px;}
.ya2{bottom:597.420000px;}
.y19{bottom:609.660000px;}
.y7e{bottom:612.540000px;}
.y40{bottom:614.340000px;}
.ya1{bottom:619.380000px;}
.y18{bottom:631.620000px;}
.y7d{bottom:634.140000px;}
.y3f{bottom:635.940000px;}
.ya0{bottom:652.860000px;}
.y7c{bottom:656.100000px;}
.y3e{bottom:657.900000px;}
.y17{bottom:664.740000px;}
.y9f{bottom:674.820000px;}
.y7b{bottom:677.700000px;}
.y58{bottom:679.500000px;}
.y16{bottom:687.060000px;}
.y3d{bottom:691.020000px;}
.y9e{bottom:708.300000px;}
.y15{bottom:708.660000px;}
.y7a{bottom:711.180000px;}
.y57{bottom:712.980000px;}
.y3c{bottom:713.340000px;}
.y14{bottom:730.650000px;}
.y3b{bottom:734.970000px;}
.y79{bottom:745.050000px;}
.y13{bottom:752.250000px;}
.y3a{bottom:756.930000px;}
.y9d{bottom:763.770000px;}
.y39{bottom:778.530000px;}
.y12{bottom:785.730000px;}
.y9c{bottom:786.090000px;}
.y38{bottom:800.130000px;}
.y78{bottom:800.850000px;}
.y11{bottom:807.690000px;}
.y9b{bottom:819.210000px;}
.y77{bottom:822.450000px;}
.y10{bottom:829.290000px;}
.y37{bottom:833.610000px;}
.y9a{bottom:841.575000px;}
.y76{bottom:844.095000px;}
.yf{bottom:851.295000px;}
.y36{bottom:855.615000px;}
.y99{bottom:863.175000px;}
.y75{bottom:866.055000px;}
.ye{bottom:872.895000px;}
.y35{bottom:877.575000px;}
.y74{bottom:887.655000px;}
.yd{bottom:894.855000px;}
.y98{bottom:896.655000px;}
.y34{bottom:899.175000px;}
.y73{bottom:909.615000px;}
.yc{bottom:916.455000px;}
.y33{bottom:921.135000px;}
.y97{bottom:930.495000px;}
.y72{bottom:931.215000px;}
.y32{bottom:942.735000px;}
.yb{bottom:949.935000px;}
.y96{bottom:952.455000px;}
.y71{bottom:952.815000px;}
.y56{bottom:964.365000px;}
.y70{bottom:974.445000px;}
.y31{bottom:976.245000px;}
.ya{bottom:983.445000px;}
.y95{bottom:985.965000px;}
.y55{bottom:997.845000px;}
.y30{bottom:998.205000px;}
.y94{bottom:1007.925000px;}
.y6f{bottom:1009.005000px;}
.y9{bottom:1017.285000px;}
.y2f{bottom:1019.805000px;}
.y6e{bottom:1030.965000px;}
.y93{bottom:1041.405000px;}
.y2e{bottom:1041.765000px;}
.y8{bottom:1051.125000px;}
.y6d{bottom:1052.925000px;}
.y2d{bottom:1063.365000px;}
.y6c{bottom:1074.525000px;}
.y7{bottom:1084.650000px;}
.y2c{bottom:1085.010000px;}
.y6b{bottom:1096.170000px;}
.y92{bottom:1096.890000px;}
.y6a{bottom:1118.130000px;}
.y6{bottom:1118.490000px;}
.y91{bottom:1118.850000px;}
.y69{bottom:1139.730000px;}
.y5{bottom:1140.810000px;}
.y2{bottom:1182.210000px;}
.y1{bottom:1203.120000px;}
.h3{height:48.843072px;}
.h4{height:54.628594px;}
.h5{height:57.927656px;}
.h2{height:60.679688px;}
.h6{height:68.084282px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.475987px;}
.x3{left:129.635987px;}
.x7{left:154.514987px;}
.x8{left:181.514987px;}
.x4{left:208.514987px;}
.x6{left:356.549987px;}
.x5{left:394.709987px;}
.x2{left:446.219987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls4{letter-spacing:-0.069333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.117760pt;}
.ls3{letter-spacing:2.053333pt;}
.ls1{letter-spacing:52.751360pt;}
.ws0{word-spacing:-58.880000pt;}
.ws2{word-spacing:-13.237547pt;}
.ws3{word-spacing:-12.894613pt;}
.ws1{word-spacing:0.000000pt;}
._8{margin-left:-3.650560pt;}
._5{margin-left:-2.296320pt;}
._0{margin-left:-1.000960pt;}
._1{width:0.972800pt;}
._2{width:2.001920pt;}
._3{width:3.768320pt;}
._4{width:4.951893pt;}
._7{width:6.417920pt;}
._6{width:7.536640pt;}
._c{width:9.185280pt;}
._b{width:10.245120pt;}
._d{width:11.537920pt;}
._12{width:14.543360pt;}
._9{width:15.869440pt;}
._a{width:16.956587pt;}
._e{width:18.548053pt;}
._10{width:19.563093pt;}
._f{width:20.490240pt;}
._11{width:21.785600pt;}
.fs1{font-size:42.240000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:40.960000pt;}
.y3{bottom:58.560000pt;}
.y54{bottom:106.272000pt;}
.y2b{bottom:117.152000pt;}
.y53{bottom:125.472000pt;}
.y2a{bottom:136.346667pt;}
.y90{bottom:143.066667pt;}
.y68{bottom:144.346667pt;}
.y52{bottom:144.666667pt;}
.y29{bottom:155.866667pt;}
.y8f{bottom:162.586667pt;}
.y67{bottom:164.186667pt;}
.y51{bottom:174.426667pt;}
.y66{bottom:183.386667pt;}
.y28{bottom:185.306667pt;}
.y8e{bottom:192.346667pt;}
.y50{bottom:194.266667pt;}
.y65{bottom:202.906667pt;}
.y8d{bottom:211.906667pt;}
.y4f{bottom:213.506667pt;}
.y27{bottom:215.426667pt;}
.y64{bottom:232.386667pt;}
.y4e{bottom:232.706667pt;}
.y8c{bottom:241.666667pt;}
.y26{bottom:245.506667pt;}
.y4d{bottom:252.226667pt;}
.y8b{bottom:261.186667pt;}
.y63{bottom:262.466667pt;}
.y25{bottom:265.026667pt;}
.y4c{bottom:271.426667pt;}
.y24{bottom:284.546667pt;}
.y8a{bottom:290.946667pt;}
.y62{bottom:292.546667pt;}
.y4b{bottom:301.186667pt;}
.y23{bottom:303.746667pt;}
.y61{bottom:312.093333pt;}
.ya9{bottom:312.413333pt;}
.y89{bottom:321.053333pt;}
.y22{bottom:322.973333pt;}
.y4a{bottom:330.973333pt;}
.y60{bottom:331.293333pt;}
.y88{bottom:340.573333pt;}
.ya8{bottom:342.493333pt;}
.y5f{bottom:350.813333pt;}
.y21{bottom:352.733333pt;}
.y87{bottom:359.773333pt;}
.y49{bottom:361.053333pt;}
.y5e{bottom:370.013333pt;}
.y20{bottom:372.253333pt;}
.y86{bottom:379.293333pt;}
.y48{bottom:380.893333pt;}
.y1f{bottom:391.453333pt;}
.ya7{bottom:392.093333pt;}
.y85{bottom:398.493333pt;}
.y5d{bottom:399.773333pt;}
.y47{bottom:400.093333pt;}
.y84{bottom:417.693333pt;}
.y46{bottom:419.293333pt;}
.ya6{bottom:421.893333pt;}
.y1e{bottom:422.213333pt;}
.y83{bottom:437.253333pt;}
.y5c{bottom:438.853333pt;}
.y1d{bottom:441.733333pt;}
.y45{bottom:449.093333pt;}
.ya5{bottom:451.653333pt;}
.y82{bottom:456.453333pt;}
.y5b{bottom:458.053333pt;}
.y44{bottom:468.613333pt;}
.y1c{bottom:472.133333pt;}
.y5a{bottom:477.253333pt;}
.ya4{bottom:481.733333pt;}
.y81{bottom:486.213333pt;}
.y43{bottom:488.133333pt;}
.y1b{bottom:491.653333pt;}
.ya3{bottom:501.253333pt;}
.y80{bottom:505.733333pt;}
.y59{bottom:507.013333pt;}
.y42{bottom:507.333333pt;}
.y1a{bottom:522.373333pt;}
.y7f{bottom:525.253333pt;}
.y41{bottom:526.853333pt;}
.ya2{bottom:531.040000pt;}
.y19{bottom:541.920000pt;}
.y7e{bottom:544.480000pt;}
.y40{bottom:546.080000pt;}
.ya1{bottom:550.560000pt;}
.y18{bottom:561.440000pt;}
.y7d{bottom:563.680000pt;}
.y3f{bottom:565.280000pt;}
.ya0{bottom:580.320000pt;}
.y7c{bottom:583.200000pt;}
.y3e{bottom:584.800000pt;}
.y17{bottom:590.880000pt;}
.y9f{bottom:599.840000pt;}
.y7b{bottom:602.400000pt;}
.y58{bottom:604.000000pt;}
.y16{bottom:610.720000pt;}
.y3d{bottom:614.240000pt;}
.y9e{bottom:629.600000pt;}
.y15{bottom:629.920000pt;}
.y7a{bottom:632.160000pt;}
.y57{bottom:633.760000pt;}
.y3c{bottom:634.080000pt;}
.y14{bottom:649.466667pt;}
.y3b{bottom:653.306667pt;}
.y79{bottom:662.266667pt;}
.y13{bottom:668.666667pt;}
.y3a{bottom:672.826667pt;}
.y9d{bottom:678.906667pt;}
.y39{bottom:692.026667pt;}
.y12{bottom:698.426667pt;}
.y9c{bottom:698.746667pt;}
.y38{bottom:711.226667pt;}
.y78{bottom:711.866667pt;}
.y11{bottom:717.946667pt;}
.y9b{bottom:728.186667pt;}
.y77{bottom:731.066667pt;}
.y10{bottom:737.146667pt;}
.y37{bottom:740.986667pt;}
.y9a{bottom:748.066667pt;}
.y76{bottom:750.306667pt;}
.yf{bottom:756.706667pt;}
.y36{bottom:760.546667pt;}
.y99{bottom:767.266667pt;}
.y75{bottom:769.826667pt;}
.ye{bottom:775.906667pt;}
.y35{bottom:780.066667pt;}
.y74{bottom:789.026667pt;}
.yd{bottom:795.426667pt;}
.y98{bottom:797.026667pt;}
.y34{bottom:799.266667pt;}
.y73{bottom:808.546667pt;}
.yc{bottom:814.626667pt;}
.y33{bottom:818.786667pt;}
.y97{bottom:827.106667pt;}
.y72{bottom:827.746667pt;}
.y32{bottom:837.986667pt;}
.yb{bottom:844.386667pt;}
.y96{bottom:846.626667pt;}
.y71{bottom:846.946667pt;}
.y56{bottom:857.213333pt;}
.y70{bottom:866.173333pt;}
.y31{bottom:867.773333pt;}
.ya{bottom:874.173333pt;}
.y95{bottom:876.413333pt;}
.y55{bottom:886.973333pt;}
.y30{bottom:887.293333pt;}
.y94{bottom:895.933333pt;}
.y6f{bottom:896.893333pt;}
.y9{bottom:904.253333pt;}
.y2f{bottom:906.493333pt;}
.y6e{bottom:916.413333pt;}
.y93{bottom:925.693333pt;}
.y2e{bottom:926.013333pt;}
.y8{bottom:934.333333pt;}
.y6d{bottom:935.933333pt;}
.y2d{bottom:945.213333pt;}
.y6c{bottom:955.133333pt;}
.y7{bottom:964.133333pt;}
.y2c{bottom:964.453333pt;}
.y6b{bottom:974.373333pt;}
.y92{bottom:975.013333pt;}
.y6a{bottom:993.893333pt;}
.y6{bottom:994.213333pt;}
.y91{bottom:994.533333pt;}
.y69{bottom:1013.093333pt;}
.y5{bottom:1014.053333pt;}
.y2{bottom:1050.853333pt;}
.y1{bottom:1069.440000pt;}
.h3{height:43.416064pt;}
.h4{height:48.558750pt;}
.h5{height:51.491250pt;}
.h2{height:53.937500pt;}
.h6{height:60.519362pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.311988pt;}
.x3{left:115.231988pt;}
.x7{left:137.346655pt;}
.x8{left:161.346655pt;}
.x4{left:185.346655pt;}
.x6{left:316.933322pt;}
.x5{left:350.853322pt;}
.x2{left:396.639988pt;}
}




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