
    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_ff4f03ffa7ec512ae51c2b21.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.115234;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_b402a27ee4a20e91111561d0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_68e27730ab5424b4802ac98c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_4df1e77ba3a8a13bbd0f6844.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_c3ef1adb0b2047f9e887fb63.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.944824;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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:-35.550000px;}
.v2{vertical-align:-32.316000px;}
.v3{vertical-align:-9.018000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.154026px;}
.ls4{letter-spacing:0.606000px;}
.ls2{letter-spacing:58.931304px;}
.ls7{letter-spacing:58.937304px;}
.ls1{letter-spacing:59.105304px;}
.ls5{letter-spacing:59.783304px;}
.ls3{letter-spacing:63.252252px;}
.ls6{letter-spacing:64.104252px;}
.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;}
}
.ws2{word-spacing:-33.261606px;}
.ws3{word-spacing:-29.916000px;}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:36.573498px;}
._9{margin-left:-14.289282px;}
._5{margin-left:-12.608190px;}
._a{margin-left:-10.436868px;}
._b{margin-left:-9.354456px;}
._2{margin-left:-8.272800px;}
._1{margin-left:-6.724368px;}
._7{margin-left:-5.641542px;}
._6{margin-left:-4.202730px;}
._4{margin-left:-1.440936px;}
._0{width:1.200072px;}
._3{width:2.895582px;}
._8{width:5.230152px;}
._c{width:474.829872px;}
._d{width:507.144936px;}
.fc4{color:rgb(82,148,226);}
.fc3{color:transparent;}
.fc2{color:rgb(0,255,255);}
.fc1{color:rgb(255,255,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:48.642000px;}
.fs5{font-size:54.084000px;}
.fs7{font-size:84.018000px;}
.fs2{font-size:89.970000px;}
.fs6{font-size:95.922000px;}
.fs8{font-size:108.000000px;}
.fs3{font-size:120.078000px;}
.fs0{font-size:131.982000px;}
.fs4{font-size:179.946000px;}
.fs1{font-size:300.018000px;}
.fsa{font-size:479.964000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y51{bottom:1.617000px;}
.y5d{bottom:11.650500px;}
.y72{bottom:14.202000px;}
.y71{bottom:23.046000px;}
.y42{bottom:23.217000px;}
.y16{bottom:32.188500px;}
.y2d{bottom:33.846000px;}
.y2c{bottom:36.865500px;}
.y50{bottom:37.290000px;}
.y6d{bottom:41.074500px;}
.y45{bottom:53.788500px;}
.y58{bottom:55.021500px;}
.y5c{bottom:60.123000px;}
.y6{bottom:62.505000px;}
.y41{bottom:67.011000px;}
.y60{bottom:67.309500px;}
.y2b{bottom:68.499000px;}
.y15{bottom:71.646000px;}
.y4f{bottom:72.837000px;}
.y64{bottom:75.388500px;}
.y3b{bottom:77.641500px;}
.y74{bottom:80.193000px;}
.y6e{bottom:84.274500px;}
.y2{bottom:85.762500px;}
.y68{bottom:87.846000px;}
.y24{bottom:89.674500px;}
.y47{bottom:93.246000px;}
.y31{bottom:96.988500px;}
.y57{bottom:98.646000px;}
.y2a{bottom:100.177500px;}
.y44{bottom:102.090000px;}
.y14{bottom:111.274500px;}
.y40{bottom:112.465500px;}
.y63{bottom:114.846000px;}
.y5b{bottom:116.377500px;}
.y4e{bottom:116.674500px;}
.y3a{bottom:117.270000px;}
.y6f{bottom:120.118500px;}
.y23{bottom:129.261000px;}
.y67{bottom:129.855000px;}
.y29{bottom:132.874500px;}
.y6c{bottom:138.105000px;}
.y46{bottom:141.718500px;}
.y30{bottom:145.290000px;}
.y13{bottom:150.861000px;}
.y56{bottom:153.538500px;}
.y3f{bottom:156.261000px;}
.y39{bottom:159.705000px;}
.y62{bottom:163.318500px;}
.y22{bottom:168.846000px;}
.y5a{bottom:169.909500px;}
.y4d{bottom:170.206500px;}
.y28{bottom:172.461000px;}
.y5{bottom:183.388500px;}
.y6b{bottom:186.874500px;}
.y1a{bottom:190.446000px;}
.y12{bottom:199.290000px;}
.y2f{bottom:202.905000px;}
.y21{bottom:208.474500px;}
.y3e{bottom:209.793000px;}
.y27{bottom:212.046000px;}
.y4c{bottom:215.788500px;}
.y38{bottom:217.318500px;}
.y59{bottom:223.441500px;}
.y6a{bottom:226.461000px;}
.y1e{bottom:230.074500px;}
.y19{bottom:238.918500px;}
.y11{bottom:248.061000px;}
.y3d{bottom:255.417000px;}
.y65{bottom:256.905000px;}
.y4b{bottom:259.455000px;}
.y26{bottom:260.518500px;}
.y55{bottom:263.494500px;}
.y4{bottom:264.388500px;}
.y69{bottom:266.046000px;}
.y37{bottom:274.890000px;}
.y1d{bottom:278.505000px;}
.y10{bottom:287.646000px;}
.y20{bottom:296.490000px;}
.y3c{bottom:299.041500px;}
.y4a{bottom:305.674500px;}
.y70{bottom:314.518500px;}
.y54{bottom:317.070000px;}
.y25{bottom:318.090000px;}
.y1c{bottom:327.274500px;}
.y36{bottom:332.505000px;}
.yf{bottom:336.118500px;}
.y5f{bottom:337.309500px;}
.y1f{bottom:345.261000px;}
.y3{bottom:345.388500px;}
.y49{bottom:354.105000px;}
.y53{bottom:363.246000px;}
.y1b{bottom:375.705000px;}
.y35{bottom:381.274500px;}
.ye{bottom:384.846000px;}
.y18{bottom:393.690000px;}
.y48{bottom:402.874500px;}
.y34{bottom:420.690000px;}
.y9{bottom:424.474500px;}
.yd{bottom:433.318500px;}
.y17{bottom:442.290000px;}
.y52{bottom:451.177500px;}
.y33{bottom:460.318500px;}
.y8{bottom:481.918500px;}
.yc{bottom:490.762500px;}
.y32{bottom:499.905000px;}
.y7{bottom:539.490000px;}
.y61{bottom:540.255000px;}
.yb{bottom:548.377500px;}
.y66{bottom:551.055000px;}
.y5e{bottom:564.109500px;}
.y43{bottom:628.909500px;}
.y73{bottom:637.455000px;}
.y2e{bottom:639.709500px;}
.ya{bottom:694.899000px;}
.he{height:64.013906px;}
.hf{height:64.019906px;}
.hc{height:64.187906px;}
.h10{height:64.193906px;}
.h11{height:64.697906px;}
.h7{height:71.746260px;}
.h12{height:71.752260px;}
.h8{height:71.920260px;}
.ha{height:75.936190px;}
.hb{height:79.523438px;}
.h4{height:81.315659px;}
.h9{height:85.711553px;}
.h13{height:87.420067px;}
.hd{height:96.503906px;}
.h5{height:107.296260px;}
.h2{height:119.286466px;}
.h6{height:162.636741px;}
.h3{height:271.158847px;}
.h14{height:433.795588px;}
.h1{height:809.956500px;}
.h0{height:810.000000px;}
.w2{width:1439.971500px;}
.w1{width:1440.000000px;}
.w0{width:1440.014173px;}
.x0{left:0.000000px;}
.x1{left:85.336500px;}
.x4{left:118.035000px;}
.x13{left:259.369500px;}
.xe{left:302.697000px;}
.x3{left:319.365000px;}
.xa{left:323.830500px;}
.x14{left:330.165000px;}
.x5{left:344.707500px;}
.x6{left:370.219500px;}
.x7{left:395.688000px;}
.xf{left:413.419500px;}
.xb{left:421.369500px;}
.x11{left:446.839500px;}
.x12{left:710.121000px;}
.x10{left:745.497000px;}
.xd{left:838.659000px;}
.x9{left:1044.453000px;}
.x2{left:1352.380500px;}
.xc{left:1361.268000px;}
.x8{left:1367.092500px;}
@media print{
.v1{vertical-align:-31.600000pt;}
.v2{vertical-align:-28.725333pt;}
.v3{vertical-align:-8.016000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.136912pt;}
.ls4{letter-spacing:0.538667pt;}
.ls2{letter-spacing:52.383381pt;}
.ls7{letter-spacing:52.388715pt;}
.ls1{letter-spacing:52.538048pt;}
.ls5{letter-spacing:53.140715pt;}
.ls3{letter-spacing:56.224224pt;}
.ls6{letter-spacing:56.981557pt;}
.ws2{word-spacing:-29.565872pt;}
.ws3{word-spacing:-26.592000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:32.509776pt;}
._9{margin-left:-12.701584pt;}
._5{margin-left:-11.207280pt;}
._a{margin-left:-9.277216pt;}
._b{margin-left:-8.315072pt;}
._2{margin-left:-7.353600pt;}
._1{margin-left:-5.977216pt;}
._7{margin-left:-5.014704pt;}
._6{margin-left:-3.735760pt;}
._4{margin-left:-1.280832pt;}
._0{width:1.066731pt;}
._3{width:2.573851pt;}
._8{width:4.649024pt;}
._c{width:422.070997pt;}
._d{width:450.795499pt;}
.fs9{font-size:43.237333pt;}
.fs5{font-size:48.074667pt;}
.fs7{font-size:74.682667pt;}
.fs2{font-size:79.973333pt;}
.fs6{font-size:85.264000pt;}
.fs8{font-size:96.000000pt;}
.fs3{font-size:106.736000pt;}
.fs0{font-size:117.317333pt;}
.fs4{font-size:159.952000pt;}
.fs1{font-size:266.682667pt;}
.fsa{font-size:426.634667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y51{bottom:1.437333pt;}
.y5d{bottom:10.356000pt;}
.y72{bottom:12.624000pt;}
.y71{bottom:20.485333pt;}
.y42{bottom:20.637333pt;}
.y16{bottom:28.612000pt;}
.y2d{bottom:30.085333pt;}
.y2c{bottom:32.769333pt;}
.y50{bottom:33.146667pt;}
.y6d{bottom:36.510667pt;}
.y45{bottom:47.812000pt;}
.y58{bottom:48.908000pt;}
.y5c{bottom:53.442667pt;}
.y6{bottom:55.560000pt;}
.y41{bottom:59.565333pt;}
.y60{bottom:59.830667pt;}
.y2b{bottom:60.888000pt;}
.y15{bottom:63.685333pt;}
.y4f{bottom:64.744000pt;}
.y64{bottom:67.012000pt;}
.y3b{bottom:69.014667pt;}
.y74{bottom:71.282667pt;}
.y6e{bottom:74.910667pt;}
.y2{bottom:76.233333pt;}
.y68{bottom:78.085333pt;}
.y24{bottom:79.710667pt;}
.y47{bottom:82.885333pt;}
.y31{bottom:86.212000pt;}
.y57{bottom:87.685333pt;}
.y2a{bottom:89.046667pt;}
.y44{bottom:90.746667pt;}
.y14{bottom:98.910667pt;}
.y40{bottom:99.969333pt;}
.y63{bottom:102.085333pt;}
.y5b{bottom:103.446667pt;}
.y4e{bottom:103.710667pt;}
.y3a{bottom:104.240000pt;}
.y6f{bottom:106.772000pt;}
.y23{bottom:114.898667pt;}
.y67{bottom:115.426667pt;}
.y29{bottom:118.110667pt;}
.y6c{bottom:122.760000pt;}
.y46{bottom:125.972000pt;}
.y30{bottom:129.146667pt;}
.y13{bottom:134.098667pt;}
.y56{bottom:136.478667pt;}
.y3f{bottom:138.898667pt;}
.y39{bottom:141.960000pt;}
.y62{bottom:145.172000pt;}
.y22{bottom:150.085333pt;}
.y5a{bottom:151.030667pt;}
.y4d{bottom:151.294667pt;}
.y28{bottom:153.298667pt;}
.y5{bottom:163.012000pt;}
.y6b{bottom:166.110667pt;}
.y1a{bottom:169.285333pt;}
.y12{bottom:177.146667pt;}
.y2f{bottom:180.360000pt;}
.y21{bottom:185.310667pt;}
.y3e{bottom:186.482667pt;}
.y27{bottom:188.485333pt;}
.y4c{bottom:191.812000pt;}
.y38{bottom:193.172000pt;}
.y59{bottom:198.614667pt;}
.y6a{bottom:201.298667pt;}
.y1e{bottom:204.510667pt;}
.y19{bottom:212.372000pt;}
.y11{bottom:220.498667pt;}
.y3d{bottom:227.037333pt;}
.y65{bottom:228.360000pt;}
.y4b{bottom:230.626667pt;}
.y26{bottom:231.572000pt;}
.y55{bottom:234.217333pt;}
.y4{bottom:235.012000pt;}
.y69{bottom:236.485333pt;}
.y37{bottom:244.346667pt;}
.y1d{bottom:247.560000pt;}
.y10{bottom:255.685333pt;}
.y20{bottom:263.546667pt;}
.y3c{bottom:265.814667pt;}
.y4a{bottom:271.710667pt;}
.y70{bottom:279.572000pt;}
.y54{bottom:281.840000pt;}
.y25{bottom:282.746667pt;}
.y1c{bottom:290.910667pt;}
.y36{bottom:295.560000pt;}
.yf{bottom:298.772000pt;}
.y5f{bottom:299.830667pt;}
.y1f{bottom:306.898667pt;}
.y3{bottom:307.012000pt;}
.y49{bottom:314.760000pt;}
.y53{bottom:322.885333pt;}
.y1b{bottom:333.960000pt;}
.y35{bottom:338.910667pt;}
.ye{bottom:342.085333pt;}
.y18{bottom:349.946667pt;}
.y48{bottom:358.110667pt;}
.y34{bottom:373.946667pt;}
.y9{bottom:377.310667pt;}
.yd{bottom:385.172000pt;}
.y17{bottom:393.146667pt;}
.y52{bottom:401.046667pt;}
.y33{bottom:409.172000pt;}
.y8{bottom:428.372000pt;}
.yc{bottom:436.233333pt;}
.y32{bottom:444.360000pt;}
.y7{bottom:479.546667pt;}
.y61{bottom:480.226667pt;}
.yb{bottom:487.446667pt;}
.y66{bottom:489.826667pt;}
.y5e{bottom:501.430667pt;}
.y43{bottom:559.030667pt;}
.y73{bottom:566.626667pt;}
.y2e{bottom:568.630667pt;}
.ya{bottom:617.688000pt;}
.he{height:56.901250pt;}
.hf{height:56.906583pt;}
.hc{height:57.055917pt;}
.h10{height:57.061250pt;}
.h11{height:57.509250pt;}
.h7{height:63.774453pt;}
.h12{height:63.779786pt;}
.h8{height:63.929120pt;}
.ha{height:67.498836pt;}
.hb{height:70.687500pt;}
.h4{height:72.280586pt;}
.h9{height:76.188047pt;}
.h13{height:77.706727pt;}
.hd{height:85.781250pt;}
.h5{height:95.374453pt;}
.h2{height:106.032414pt;}
.h6{height:144.565992pt;}
.h3{height:241.030086pt;}
.h14{height:385.596078pt;}
.h1{height:719.961333pt;}
.h0{height:720.000000pt;}
.w2{width:1279.974667pt;}
.w1{width:1280.000000pt;}
.w0{width:1280.012598pt;}
.x0{left:0.000000pt;}
.x1{left:75.854667pt;}
.x4{left:104.920000pt;}
.x13{left:230.550667pt;}
.xe{left:269.064000pt;}
.x3{left:283.880000pt;}
.xa{left:287.849333pt;}
.x14{left:293.480000pt;}
.x5{left:306.406667pt;}
.x6{left:329.084000pt;}
.x7{left:351.722667pt;}
.xf{left:367.484000pt;}
.xb{left:374.550667pt;}
.x11{left:397.190667pt;}
.x12{left:631.218667pt;}
.x10{left:662.664000pt;}
.xd{left:745.474667pt;}
.x9{left:928.402667pt;}
.x2{left:1202.116000pt;}
.xc{left:1210.016000pt;}
.x8{left:1215.193333pt;}
}




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