
    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_fb09e9d4c6bb7d06e3cb7c48.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_4b574008d07478776e44dd50.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708000;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_be2c8fad9d3fcf0f2ff99a0a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939000;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_8052c43edec23b3bbc67bbf6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933000;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
.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);}
.v3{vertical-align:-10.500000px;}
.v2{vertical-align:-8.910000px;}
.v1{vertical-align:-5.304000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:16.359238px;}
.ls3{letter-spacing:16.360877px;}
.ls5{letter-spacing:16.363650px;}
.ls4{letter-spacing:50.210496px;}
.ls1{letter-spacing:52.499421px;}
.ls6{letter-spacing:52.664496px;}
.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:-21.519300px;}
.ws3{word-spacing:-16.363650px;}
.ws9{word-spacing:-0.785455px;}
.wsb{word-spacing:-0.720001px;}
.wsa{word-spacing:-0.065455px;}
.ws6{word-spacing:-0.003556px;}
.ws4{word-spacing:-0.000947px;}
.ws5{word-spacing:-0.000844px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:2.749093px;}
.ws7{word-spacing:16.294262px;}
.ws2{word-spacing:16.298195px;}
._f{margin-left:-6.741824px;}
._11{margin-left:-5.236368px;}
._6{margin-left:-3.927276px;}
._10{margin-left:-2.684821px;}
._0{margin-left:-1.505456px;}
._1{width:1.112728px;}
._7{width:5.236368px;}
._5{width:8.116370px;}
._9{width:9.163644px;}
._d{width:11.667038px;}
._4{width:18.654561px;}
._8{width:20.029108px;}
._c{width:25.134542px;}
._b{width:27.425477px;}
._e{width:35.808115px;}
._3{width:80.948659px;}
._2{width:741.968688px;}
._a{width:1496.553974px;}
.fc8{color:rgb(0,173,239);}
.fc7{color:transparent;}
.fc9{color:rgb(235,109,93);}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(254,250,248);}
.fc3{color:rgb(224,45,48);}
.fc2{color:rgb(252,230,223);}
.fc5{color:rgb(249,206,194);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.873000px;}
.y68{bottom:19.833000px;}
.y41{bottom:30.606000px;}
.y67{bottom:34.029000px;}
.y71{bottom:38.923500px;}
.y2c{bottom:40.296000px;}
.y1f{bottom:43.947000px;}
.y66{bottom:48.226500px;}
.y40{bottom:50.929500px;}
.y1e{bottom:61.879500px;}
.y70{bottom:62.095500px;}
.y2b{bottom:65.103000px;}
.y3f{bottom:76.647000px;}
.y1d{bottom:82.801500px;}
.y65{bottom:85.750500px;}
.y2a{bottom:90.304500px;}
.y3e{bottom:101.454000px;}
.y8{bottom:102.780000px;}
.y1c{bottom:105.217500px;}
.ye{bottom:107.268000px;}
.y6f{bottom:108.898500px;}
.y64{bottom:110.557500px;}
.y29{bottom:114.259500px;}
.y3d{bottom:121.777500px;}
.y7{bottom:123.103500px;}
.y1b{bottom:130.024500px;}
.y6e{bottom:133.705500px;}
.y63{bottom:135.364500px;}
.y6{bottom:143.427000px;}
.y3c{bottom:147.420000px;}
.y6d{bottom:154.029000px;}
.y1a{bottom:154.833000px;}
.y62{bottom:155.688000px;}
.y4b{bottom:160.024500px;}
.yd{bottom:162.496500px;}
.y6c{bottom:178.836000px;}
.y4a{bottom:180.348000px;}
.y61{bottom:180.889500px;}
.y5{bottom:182.386500px;}
.y3b{bottom:190.207500px;}
.y4{bottom:196.582500px;}
.y6b{bottom:199.159500px;}
.y13{bottom:202.102500px;}
.y49{bottom:205.549500px;}
.y3a{bottom:215.014500px;}
.y58{bottom:217.275000px;}
.yc{bottom:217.725000px;}
.y6a{bottom:223.966500px;}
.y4f{bottom:226.471500px;}
.y12{bottom:226.909500px;}
.y53{bottom:229.956000px;}
.y3{bottom:232.515000px;}
.y24{bottom:241.095000px;}
.y57{bottom:242.445000px;}
.y69{bottom:248.776500px;}
.y31{bottom:249.520500px;}
.y4e{bottom:251.278500px;}
.y11{bottom:251.716500px;}
.y45{bottom:252.013500px;}
.y52{bottom:254.763000px;}
.y56{bottom:260.377500px;}
.y23{bottom:261.420000px;}
.y30{bottom:267.453000px;}
.yb{bottom:272.953500px;}
.y4d{bottom:276.085500px;}
.y44{bottom:276.820500px;}
.y10{bottom:276.918000px;}
.y51{bottom:279.570000px;}
.y55{bottom:283.924500px;}
.y2f{bottom:285.385500px;}
.y22{bottom:286.227000px;}
.y2{bottom:296.257500px;}
.y4c{bottom:300.892500px;}
.y43{bottom:301.627500px;}
.y2e{bottom:304.080000px;}
.y50{bottom:304.377000px;}
.y54{bottom:306.340500px;}
.y21{bottom:306.550500px;}
.yf{bottom:320.302500px;}
.y1{bottom:321.960000px;}
.y42{bottom:326.437500px;}
.y2d{bottom:328.888500px;}
.y20{bottom:331.359000px;}
.ya{bottom:362.751000px;}
.y60{bottom:3019.871685px;}
.y39{bottom:3030.644685px;}
.y5f{bottom:3034.067685px;}
.y28{bottom:3040.334685px;}
.y19{bottom:3043.985685px;}
.y5e{bottom:3048.265185px;}
.y38{bottom:3050.968185px;}
.y18{bottom:3061.918185px;}
.y27{bottom:3065.141685px;}
.y37{bottom:3076.685685px;}
.y17{bottom:3082.840185px;}
.y5d{bottom:3085.789185px;}
.y26{bottom:3090.343185px;}
.y36{bottom:3101.492685px;}
.y16{bottom:3105.256185px;}
.y5c{bottom:3110.596185px;}
.y25{bottom:3114.298185px;}
.y35{bottom:3121.816185px;}
.y15{bottom:3130.063185px;}
.y5b{bottom:3135.403185px;}
.y34{bottom:3147.458685px;}
.y14{bottom:3154.871685px;}
.y5a{bottom:3155.726685px;}
.y48{bottom:3160.063185px;}
.y47{bottom:3180.386685px;}
.y59{bottom:3180.928185px;}
.y33{bottom:3190.246185px;}
.y46{bottom:3205.588185px;}
.y32{bottom:3215.053185px;}
.h6{height:25.392845px;}
.ha{height:33.411125px;}
.h5{height:33.713523px;}
.h4{height:33.856985px;}
.hb{height:35.841857px;}
.h7{height:41.037857px;}
.h8{height:42.321125px;}
.h3{height:46.341857px;}
.h2{height:60.942658px;}
.h9{height:62.181870px;}
.h1{height:382.500000px;}
.h0{height:382.677000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x9{left:18.136500px;}
.x10{left:28.347000px;}
.xa{left:43.275000px;}
.xb{left:51.151500px;}
.x1e{left:57.912000px;}
.x11{left:61.074000px;}
.x1d{left:70.995000px;}
.x18{left:75.247500px;}
.xf{left:83.878500px;}
.x1b{left:91.252500px;}
.x1f{left:107.974500px;}
.x3{left:112.809000px;}
.x8{left:136.401000px;}
.x2{left:151.002000px;}
.x5{left:206.259000px;}
.x6{left:237.385500px;}
.x4{left:268.803000px;}
.x7{left:288.088500px;}
.x1{left:301.659000px;}
.x19{left:426.213000px;}
.x1a{left:446.563500px;}
.x17{left:517.996500px;}
.xc{left:3018.463185px;}
.x13{left:3042.557685px;}
.xd{left:3051.190185px;}
.x1c{left:3071.033685px;}
.x14{left:3075.286185px;}
.xe{left:3083.917185px;}
.x15{left:3426.251685px;}
.x16{left:3446.602185px;}
.x12{left:3518.035185px;}
@media print{
.v3{vertical-align:-9.333333pt;}
.v2{vertical-align:-7.920000pt;}
.v1{vertical-align:-4.714667pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:14.541545pt;}
.ls3{letter-spacing:14.543002pt;}
.ls5{letter-spacing:14.545467pt;}
.ls4{letter-spacing:44.631552pt;}
.ls1{letter-spacing:46.666152pt;}
.ls6{letter-spacing:46.812885pt;}
.ws0{word-spacing:-19.128267pt;}
.ws3{word-spacing:-14.545467pt;}
.ws9{word-spacing:-0.698182pt;}
.wsb{word-spacing:-0.640001pt;}
.wsa{word-spacing:-0.058182pt;}
.ws6{word-spacing:-0.003161pt;}
.ws4{word-spacing:-0.000842pt;}
.ws5{word-spacing:-0.000750pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:2.443638pt;}
.ws7{word-spacing:14.483789pt;}
.ws2{word-spacing:14.487285pt;}
._f{margin-left:-5.992732pt;}
._11{margin-left:-4.654549pt;}
._6{margin-left:-3.490912pt;}
._10{margin-left:-2.386508pt;}
._0{margin-left:-1.338183pt;}
._1{width:0.989092pt;}
._7{width:4.654549pt;}
._5{width:7.214551pt;}
._9{width:8.145461pt;}
._d{width:10.370701pt;}
._4{width:16.581832pt;}
._8{width:17.803651pt;}
._c{width:22.341815pt;}
._b{width:24.378202pt;}
._e{width:31.829436pt;}
._3{width:71.954364pt;}
._2{width:659.527723pt;}
._a{width:1330.270199pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.442667pt;}
.y68{bottom:17.629333pt;}
.y41{bottom:27.205333pt;}
.y67{bottom:30.248000pt;}
.y71{bottom:34.598667pt;}
.y2c{bottom:35.818667pt;}
.y1f{bottom:39.064000pt;}
.y66{bottom:42.868000pt;}
.y40{bottom:45.270667pt;}
.y1e{bottom:55.004000pt;}
.y70{bottom:55.196000pt;}
.y2b{bottom:57.869333pt;}
.y3f{bottom:68.130667pt;}
.y1d{bottom:73.601333pt;}
.y65{bottom:76.222667pt;}
.y2a{bottom:80.270667pt;}
.y3e{bottom:90.181333pt;}
.y8{bottom:91.360000pt;}
.y1c{bottom:93.526667pt;}
.ye{bottom:95.349333pt;}
.y6f{bottom:96.798667pt;}
.y64{bottom:98.273333pt;}
.y29{bottom:101.564000pt;}
.y3d{bottom:108.246667pt;}
.y7{bottom:109.425333pt;}
.y1b{bottom:115.577333pt;}
.y6e{bottom:118.849333pt;}
.y63{bottom:120.324000pt;}
.y6{bottom:127.490667pt;}
.y3c{bottom:131.040000pt;}
.y6d{bottom:136.914667pt;}
.y1a{bottom:137.629333pt;}
.y62{bottom:138.389333pt;}
.y4b{bottom:142.244000pt;}
.yd{bottom:144.441333pt;}
.y6c{bottom:158.965333pt;}
.y4a{bottom:160.309333pt;}
.y61{bottom:160.790667pt;}
.y5{bottom:162.121333pt;}
.y3b{bottom:169.073333pt;}
.y4{bottom:174.740000pt;}
.y6b{bottom:177.030667pt;}
.y13{bottom:179.646667pt;}
.y49{bottom:182.710667pt;}
.y3a{bottom:191.124000pt;}
.y58{bottom:193.133333pt;}
.yc{bottom:193.533333pt;}
.y6a{bottom:199.081333pt;}
.y4f{bottom:201.308000pt;}
.y12{bottom:201.697333pt;}
.y53{bottom:204.405333pt;}
.y3{bottom:206.680000pt;}
.y24{bottom:214.306667pt;}
.y57{bottom:215.506667pt;}
.y69{bottom:221.134667pt;}
.y31{bottom:221.796000pt;}
.y4e{bottom:223.358667pt;}
.y11{bottom:223.748000pt;}
.y45{bottom:224.012000pt;}
.y52{bottom:226.456000pt;}
.y56{bottom:231.446667pt;}
.y23{bottom:232.373333pt;}
.y30{bottom:237.736000pt;}
.yb{bottom:242.625333pt;}
.y4d{bottom:245.409333pt;}
.y44{bottom:246.062667pt;}
.y10{bottom:246.149333pt;}
.y51{bottom:248.506667pt;}
.y55{bottom:252.377333pt;}
.y2f{bottom:253.676000pt;}
.y22{bottom:254.424000pt;}
.y2{bottom:263.340000pt;}
.y4c{bottom:267.460000pt;}
.y43{bottom:268.113333pt;}
.y2e{bottom:270.293333pt;}
.y50{bottom:270.557333pt;}
.y54{bottom:272.302667pt;}
.y21{bottom:272.489333pt;}
.yf{bottom:284.713333pt;}
.y1{bottom:286.186667pt;}
.y42{bottom:290.166667pt;}
.y2d{bottom:292.345333pt;}
.y20{bottom:294.541333pt;}
.ya{bottom:322.445333pt;}
.y60{bottom:2684.330387pt;}
.y39{bottom:2693.906387pt;}
.y5f{bottom:2696.949053pt;}
.y28{bottom:2702.519720pt;}
.y19{bottom:2705.765053pt;}
.y5e{bottom:2709.569053pt;}
.y38{bottom:2711.971720pt;}
.y18{bottom:2721.705053pt;}
.y27{bottom:2724.570387pt;}
.y37{bottom:2734.831720pt;}
.y17{bottom:2740.302387pt;}
.y5d{bottom:2742.923720pt;}
.y26{bottom:2746.971720pt;}
.y36{bottom:2756.882387pt;}
.y16{bottom:2760.227720pt;}
.y5c{bottom:2764.974387pt;}
.y25{bottom:2768.265053pt;}
.y35{bottom:2774.947720pt;}
.y15{bottom:2782.278387pt;}
.y5b{bottom:2787.025053pt;}
.y34{bottom:2797.741053pt;}
.y14{bottom:2804.330387pt;}
.y5a{bottom:2805.090387pt;}
.y48{bottom:2808.945053pt;}
.y47{bottom:2827.010387pt;}
.y59{bottom:2827.491720pt;}
.y33{bottom:2835.774387pt;}
.y46{bottom:2849.411720pt;}
.y32{bottom:2857.825053pt;}
.h6{height:22.571418pt;}
.ha{height:29.698778pt;}
.h5{height:29.967576pt;}
.h4{height:30.095098pt;}
.hb{height:31.859428pt;}
.h7{height:36.478095pt;}
.h8{height:37.618778pt;}
.h3{height:41.192762pt;}
.h2{height:54.171251pt;}
.h9{height:55.272773pt;}
.h1{height:340.000000pt;}
.h0{height:340.157333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x9{left:16.121333pt;}
.x10{left:25.197333pt;}
.xa{left:38.466667pt;}
.xb{left:45.468000pt;}
.x1e{left:51.477333pt;}
.x11{left:54.288000pt;}
.x1d{left:63.106667pt;}
.x18{left:66.886667pt;}
.xf{left:74.558667pt;}
.x1b{left:81.113333pt;}
.x1f{left:95.977333pt;}
.x3{left:100.274667pt;}
.x8{left:121.245333pt;}
.x2{left:134.224000pt;}
.x5{left:183.341333pt;}
.x6{left:211.009333pt;}
.x4{left:238.936000pt;}
.x7{left:256.078667pt;}
.x1{left:268.141333pt;}
.x19{left:378.856000pt;}
.x1a{left:396.945333pt;}
.x17{left:460.441333pt;}
.xc{left:2683.078387pt;}
.x13{left:2704.495720pt;}
.xd{left:2712.169053pt;}
.x1c{left:2729.807720pt;}
.x14{left:2733.587720pt;}
.xe{left:2741.259720pt;}
.x15{left:3045.557053pt;}
.x16{left:3063.646387pt;}
.x12{left:3127.142387pt;}
}




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