
    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_511478fa8895b1346f67ae17.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_2f1e6256b6825730f9bd741d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_43178169ac1b75f048ab3b18.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_fc3476f6d07bdd116d5d4b43.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-3.010912px;}
.ws3{word-spacing:-1.898183px;}
.wsa{word-spacing:0.000000px;}
.wsd{word-spacing:1.963638px;}
.wsc{word-spacing:2.094547px;}
.ws0{word-spacing:3.098779px;}
.ws9{word-spacing:3.469094px;}
.ws6{word-spacing:6.741824px;}
.ws5{word-spacing:6.742733px;}
.wse{word-spacing:7.985461px;}
.ws1{word-spacing:8.177334px;}
.ws7{word-spacing:9.360008px;}
.ws4{word-spacing:9.818190px;}
.ws8{word-spacing:9.883645px;}
.ws2{word-spacing:11.716373px;}
._8{margin-left:-9.451480px;}
._0{margin-left:-8.005180px;}
._3{margin-left:-6.233432px;}
._1{margin-left:-2.668393px;}
._5{margin-left:-1.636365px;}
._2{width:1.832729px;}
._7{width:19.389807px;}
._6{width:28.064778px;}
._4{width:31.075690px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y28{bottom:63.168000px;}
.y27{bottom:109.287000px;}
.y7a{bottom:112.291500px;}
.y26{bottom:129.610500px;}
.y79{bottom:132.241500px;}
.y78{bottom:152.191500px;}
.y25{bottom:160.513500px;}
.y77{bottom:172.141500px;}
.y76{bottom:192.093000px;}
.y24{bottom:203.758500px;}
.y4e{bottom:210.235500px;}
.y75{bottom:212.043000px;}
.y23{bottom:223.710000px;}
.y4d{bottom:230.185500px;}
.y74{bottom:231.993000px;}
.y22{bottom:243.660000px;}
.y4c{bottom:250.135500px;}
.y73{bottom:251.943000px;}
.y21{bottom:263.610000px;}
.y4b{bottom:270.087000px;}
.y4a{bottom:290.037000px;}
.y72{bottom:291.843000px;}
.y20{bottom:303.510000px;}
.y49{bottom:309.987000px;}
.y71{bottom:311.793000px;}
.y1f{bottom:323.460000px;}
.y48{bottom:329.937000px;}
.y70{bottom:331.743000px;}
.y1e{bottom:343.410000px;}
.y47{bottom:349.887000px;}
.y6f{bottom:351.693000px;}
.y1d{bottom:363.360000px;}
.y46{bottom:369.837000px;}
.y6e{bottom:371.644500px;}
.y45{bottom:389.787000px;}
.y6d{bottom:391.594500px;}
.y1c{bottom:403.261500px;}
.y44{bottom:409.737000px;}
.y6c{bottom:411.544500px;}
.y1b{bottom:423.211500px;}
.y43{bottom:429.688500px;}
.y6b{bottom:431.494500px;}
.y1a{bottom:443.161500px;}
.y42{bottom:449.638500px;}
.y6a{bottom:451.444500px;}
.y19{bottom:463.111500px;}
.y41{bottom:469.588500px;}
.y69{bottom:471.394500px;}
.y40{bottom:489.538500px;}
.y68{bottom:491.344500px;}
.y18{bottom:503.011500px;}
.y67{bottom:511.294500px;}
.y17{bottom:522.961500px;}
.y3f{bottom:529.065000px;}
.y66{bottom:531.246000px;}
.y16{bottom:542.911500px;}
.y65{bottom:551.196000px;}
.y3e{bottom:559.551000px;}
.y15{bottom:562.863000px;}
.y64{bottom:571.146000px;}
.y3d{bottom:579.874500px;}
.y14{bottom:582.813000px;}
.y63{bottom:591.096000px;}
.y3c{bottom:600.198000px;}
.y13{bottom:602.763000px;}
.y62{bottom:611.046000px;}
.y12{bottom:622.713000px;}
.y61{bottom:630.996000px;}
.y3b{bottom:631.101000px;}
.y11{bottom:642.663000px;}
.y60{bottom:650.946000px;}
.y10{bottom:662.613000px;}
.y5f{bottom:670.896000px;}
.y3a{bottom:674.346000px;}
.yf{bottom:682.563000px;}
.y5e{bottom:690.847500px;}
.y39{bottom:694.296000px;}
.y5d{bottom:710.797500px;}
.y38{bottom:714.246000px;}
.ye{bottom:722.463000px;}
.y5c{bottom:730.747500px;}
.y37{bottom:734.197500px;}
.yd{bottom:742.041000px;}
.y36{bottom:754.147500px;}
.y5b{bottom:770.647500px;}
.yc{bottom:772.525500px;}
.y35{bottom:774.097500px;}
.y5a{bottom:790.597500px;}
.yb{bottom:792.850500px;}
.y34{bottom:794.047500px;}
.y59{bottom:810.547500px;}
.ya{bottom:813.174000px;}
.y33{bottom:813.997500px;}
.y58{bottom:830.497500px;}
.y9{bottom:833.497500px;}
.y32{bottom:833.947500px;}
.y57{bottom:850.449000px;}
.y31{bottom:853.897500px;}
.y8{bottom:864.400500px;}
.y56{bottom:870.399000px;}
.y30{bottom:873.847500px;}
.y55{bottom:889.975500px;}
.y2f{bottom:893.799000px;}
.y7{bottom:895.303500px;}
.y2e{bottom:913.749000px;}
.y54{bottom:920.460000px;}
.y2d{bottom:933.699000px;}
.y6{bottom:939.145500px;}
.y53{bottom:940.785000px;}
.y2c{bottom:953.649000px;}
.y5{bottom:959.470500px;}
.y52{bottom:961.108500px;}
.y2b{bottom:973.599000px;}
.y4{bottom:979.794000px;}
.y51{bottom:981.432000px;}
.y7e{bottom:983.761500px;}
.y2a{bottom:993.549000px;}
.y3{bottom:1000.117500px;}
.y50{bottom:1001.755500px;}
.y7d{bottom:1003.711500px;}
.y7c{bottom:1023.661500px;}
.y4f{bottom:1032.658500px;}
.y29{bottom:1033.075500px;}
.y2{bottom:1036.662000px;}
.y7b{bottom:1043.611500px;}
.y1{bottom:1063.561500px;}
.h5{height:45.425492px;}
.h4{height:45.818220px;}
.h2{height:49.090950px;}
.h3{height:50.211840px;}
.h1{height:60.254040px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x3{left:142.363500px;}
.x2{left:148.320000px;}
.x8{left:168.136500px;}
.x4{left:176.727000px;}
.x9{left:211.090500px;}
.x5{left:245.454000px;}
.x6{left:254.046000px;}
.x7{left:454.909500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsb{word-spacing:-2.676366pt;}
.ws3{word-spacing:-1.687274pt;}
.wsa{word-spacing:0.000000pt;}
.wsd{word-spacing:1.745456pt;}
.wsc{word-spacing:1.861820pt;}
.ws0{word-spacing:2.754470pt;}
.ws9{word-spacing:3.083639pt;}
.ws6{word-spacing:5.992732pt;}
.ws5{word-spacing:5.993540pt;}
.wse{word-spacing:7.098188pt;}
.ws1{word-spacing:7.268741pt;}
.ws7{word-spacing:8.320007pt;}
.ws4{word-spacing:8.727280pt;}
.ws8{word-spacing:8.785462pt;}
.ws2{word-spacing:10.414554pt;}
._8{margin-left:-8.401316pt;}
._0{margin-left:-7.115715pt;}
._3{margin-left:-5.540829pt;}
._1{margin-left:-2.371905pt;}
._5{margin-left:-1.454547pt;}
._2{width:1.629092pt;}
._7{width:17.235384pt;}
._6{width:24.946469pt;}
._4{width:27.622835pt;}
.fs1{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:56.149333pt;}
.y27{bottom:97.144000pt;}
.y7a{bottom:99.814667pt;}
.y26{bottom:115.209333pt;}
.y79{bottom:117.548000pt;}
.y78{bottom:135.281333pt;}
.y25{bottom:142.678667pt;}
.y77{bottom:153.014667pt;}
.y76{bottom:170.749333pt;}
.y24{bottom:181.118667pt;}
.y4e{bottom:186.876000pt;}
.y75{bottom:188.482667pt;}
.y23{bottom:198.853333pt;}
.y4d{bottom:204.609333pt;}
.y74{bottom:206.216000pt;}
.y22{bottom:216.586667pt;}
.y4c{bottom:222.342667pt;}
.y73{bottom:223.949333pt;}
.y21{bottom:234.320000pt;}
.y4b{bottom:240.077333pt;}
.y4a{bottom:257.810667pt;}
.y72{bottom:259.416000pt;}
.y20{bottom:269.786667pt;}
.y49{bottom:275.544000pt;}
.y71{bottom:277.149333pt;}
.y1f{bottom:287.520000pt;}
.y48{bottom:293.277333pt;}
.y70{bottom:294.882667pt;}
.y1e{bottom:305.253333pt;}
.y47{bottom:311.010667pt;}
.y6f{bottom:312.616000pt;}
.y1d{bottom:322.986667pt;}
.y46{bottom:328.744000pt;}
.y6e{bottom:330.350667pt;}
.y45{bottom:346.477333pt;}
.y6d{bottom:348.084000pt;}
.y1c{bottom:358.454667pt;}
.y44{bottom:364.210667pt;}
.y6c{bottom:365.817333pt;}
.y1b{bottom:376.188000pt;}
.y43{bottom:381.945333pt;}
.y6b{bottom:383.550667pt;}
.y1a{bottom:393.921333pt;}
.y42{bottom:399.678667pt;}
.y6a{bottom:401.284000pt;}
.y19{bottom:411.654667pt;}
.y41{bottom:417.412000pt;}
.y69{bottom:419.017333pt;}
.y40{bottom:435.145333pt;}
.y68{bottom:436.750667pt;}
.y18{bottom:447.121333pt;}
.y67{bottom:454.484000pt;}
.y17{bottom:464.854667pt;}
.y3f{bottom:470.280000pt;}
.y66{bottom:472.218667pt;}
.y16{bottom:482.588000pt;}
.y65{bottom:489.952000pt;}
.y3e{bottom:497.378667pt;}
.y15{bottom:500.322667pt;}
.y64{bottom:507.685333pt;}
.y3d{bottom:515.444000pt;}
.y14{bottom:518.056000pt;}
.y63{bottom:525.418667pt;}
.y3c{bottom:533.509333pt;}
.y13{bottom:535.789333pt;}
.y62{bottom:543.152000pt;}
.y12{bottom:553.522667pt;}
.y61{bottom:560.885333pt;}
.y3b{bottom:560.978667pt;}
.y11{bottom:571.256000pt;}
.y60{bottom:578.618667pt;}
.y10{bottom:588.989333pt;}
.y5f{bottom:596.352000pt;}
.y3a{bottom:599.418667pt;}
.yf{bottom:606.722667pt;}
.y5e{bottom:614.086667pt;}
.y39{bottom:617.152000pt;}
.y5d{bottom:631.820000pt;}
.y38{bottom:634.885333pt;}
.ye{bottom:642.189333pt;}
.y5c{bottom:649.553333pt;}
.y37{bottom:652.620000pt;}
.yd{bottom:659.592000pt;}
.y36{bottom:670.353333pt;}
.y5b{bottom:685.020000pt;}
.yc{bottom:686.689333pt;}
.y35{bottom:688.086667pt;}
.y5a{bottom:702.753333pt;}
.yb{bottom:704.756000pt;}
.y34{bottom:705.820000pt;}
.y59{bottom:720.486667pt;}
.ya{bottom:722.821333pt;}
.y33{bottom:723.553333pt;}
.y58{bottom:738.220000pt;}
.y9{bottom:740.886667pt;}
.y32{bottom:741.286667pt;}
.y57{bottom:755.954667pt;}
.y31{bottom:759.020000pt;}
.y8{bottom:768.356000pt;}
.y56{bottom:773.688000pt;}
.y30{bottom:776.753333pt;}
.y55{bottom:791.089333pt;}
.y2f{bottom:794.488000pt;}
.y7{bottom:795.825333pt;}
.y2e{bottom:812.221333pt;}
.y54{bottom:818.186667pt;}
.y2d{bottom:829.954667pt;}
.y6{bottom:834.796000pt;}
.y53{bottom:836.253333pt;}
.y2c{bottom:847.688000pt;}
.y5{bottom:852.862667pt;}
.y52{bottom:854.318667pt;}
.y2b{bottom:865.421333pt;}
.y4{bottom:870.928000pt;}
.y51{bottom:872.384000pt;}
.y7e{bottom:874.454667pt;}
.y2a{bottom:883.154667pt;}
.y3{bottom:888.993333pt;}
.y50{bottom:890.449333pt;}
.y7d{bottom:892.188000pt;}
.y7c{bottom:909.921333pt;}
.y4f{bottom:917.918667pt;}
.y29{bottom:918.289333pt;}
.y2{bottom:921.477333pt;}
.y7b{bottom:927.654667pt;}
.y1{bottom:945.388000pt;}
.h5{height:40.378215pt;}
.h4{height:40.727307pt;}
.h2{height:43.636400pt;}
.h3{height:44.632747pt;}
.h1{height:53.559147pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x3{left:126.545333pt;}
.x2{left:131.840000pt;}
.x8{left:149.454667pt;}
.x4{left:157.090667pt;}
.x9{left:187.636000pt;}
.x5{left:218.181333pt;}
.x6{left:225.818667pt;}
.x7{left:404.364000pt;}
}




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