
    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_31e26deb577e7fc5f5bdd4d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121582;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_7c9e0547a6b4273257d85b41.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_d5eb238b7ddc3bb6f1c9198e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_376068d0241891d4056aa8d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_dbecb2edadd126f08b2efbac.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.119286;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_ee15e5e8b6094a254aa2dcec.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.113770;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;}
.ls6{letter-spacing:-10.573875px;}
.ls7{letter-spacing:-0.585000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000300px;}
.ls4{letter-spacing:0.058500px;}
.ls3{letter-spacing:0.175500px;}
.ls8{letter-spacing:0.409500px;}
.ls1{letter-spacing:1.387200px;}
.ls0{letter-spacing:10.656000px;}
.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:-14.625000px;}
.ws0{word-spacing:-12.750000px;}
.ws3{word-spacing:0.000000px;}
.ws1{word-spacing:10.179000px;}
._2{margin-left:-10.662600px;}
._8{margin-left:-1.170000px;}
._4{width:1.462500px;}
._3{width:3.289500px;}
._5{width:4.900500px;}
._9{width:5.915100px;}
._6{width:7.020000px;}
._7{width:8.190000px;}
._1{width:13.344000px;}
._b{width:869.585400px;}
._0{width:880.107000px;}
._a{width:1150.098000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:43.875000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs6{font-size:57.000000px;}
.fs4{font-size:58.500000px;}
.fs3{font-size:64.500000px;}
.fs1{font-size:171.052800px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.649550px;}
.y2d{bottom:124.584900px;}
.y7f{bottom:126.276600px;}
.y57{bottom:140.931150px;}
.y2c{bottom:141.030750px;}
.y56{bottom:157.277550px;}
.y2b{bottom:157.476600px;}
.y7e{bottom:158.886600px;}
.y55{bottom:173.623800px;}
.y2a{bottom:173.922450px;}
.y7d{bottom:175.191600px;}
.y54{bottom:189.970050px;}
.y29{bottom:190.368300px;}
.y7c{bottom:191.496600px;}
.y53{bottom:206.316300px;}
.y28{bottom:206.814150px;}
.y7b{bottom:207.801600px;}
.y52{bottom:222.662550px;}
.y27{bottom:223.260000px;}
.y7a{bottom:224.106600px;}
.y51{bottom:239.008800px;}
.y26{bottom:239.705850px;}
.y79{bottom:240.411600px;}
.y50{bottom:255.355050px;}
.y25{bottom:256.151700px;}
.y78{bottom:256.716600px;}
.y4f{bottom:271.701300px;}
.y24{bottom:272.597550px;}
.y77{bottom:273.021600px;}
.y4e{bottom:288.047550px;}
.y23{bottom:289.043400px;}
.y76{bottom:289.326600px;}
.y4d{bottom:304.393800px;}
.y22{bottom:305.489250px;}
.y75{bottom:305.631600px;}
.y4c{bottom:320.740050px;}
.y21{bottom:321.935100px;}
.y74{bottom:321.936600px;}
.y4b{bottom:337.086300px;}
.y73{bottom:338.241600px;}
.y20{bottom:338.380950px;}
.y4a{bottom:353.432550px;}
.y72{bottom:354.546600px;}
.y1f{bottom:354.826800px;}
.y49{bottom:369.778800px;}
.y71{bottom:370.851600px;}
.y1e{bottom:371.272650px;}
.y48{bottom:386.125050px;}
.y70{bottom:387.156600px;}
.y1d{bottom:387.718500px;}
.y47{bottom:402.471300px;}
.y6f{bottom:403.461600px;}
.y1c{bottom:404.164350px;}
.y46{bottom:418.817550px;}
.y6e{bottom:419.766600px;}
.y1b{bottom:420.610200px;}
.y45{bottom:435.163950px;}
.y6d{bottom:436.071600px;}
.y1a{bottom:437.056050px;}
.y44{bottom:451.510050px;}
.y6c{bottom:452.376600px;}
.y19{bottom:453.501900px;}
.y43{bottom:467.856450px;}
.y6b{bottom:468.681600px;}
.y18{bottom:469.947750px;}
.y42{bottom:484.202700px;}
.y6a{bottom:484.986600px;}
.y17{bottom:486.393600px;}
.y41{bottom:500.548950px;}
.y69{bottom:501.291600px;}
.y16{bottom:502.839450px;}
.y40{bottom:516.895200px;}
.y68{bottom:517.596600px;}
.y15{bottom:519.285300px;}
.y3f{bottom:533.241450px;}
.y67{bottom:533.901600px;}
.y14{bottom:535.731150px;}
.y3e{bottom:549.587700px;}
.y66{bottom:550.206600px;}
.y13{bottom:552.177000px;}
.y3d{bottom:565.933950px;}
.y65{bottom:566.511600px;}
.y12{bottom:568.622850px;}
.y3c{bottom:582.280200px;}
.y64{bottom:582.816600px;}
.y11{bottom:585.068700px;}
.y3b{bottom:598.626450px;}
.y63{bottom:599.121600px;}
.y10{bottom:601.514550px;}
.y3a{bottom:614.972700px;}
.y62{bottom:615.426600px;}
.yf{bottom:617.960400px;}
.y39{bottom:631.318950px;}
.y61{bottom:631.731600px;}
.ye{bottom:634.406250px;}
.y38{bottom:647.665200px;}
.y60{bottom:648.036600px;}
.yd{bottom:650.852100px;}
.y37{bottom:664.011450px;}
.y5f{bottom:664.341600px;}
.yc{bottom:667.297950px;}
.y36{bottom:680.357700px;}
.y5e{bottom:680.646600px;}
.yb{bottom:683.743800px;}
.y35{bottom:696.704100px;}
.y5d{bottom:696.951600px;}
.ya{bottom:700.189650px;}
.y34{bottom:713.050350px;}
.y5c{bottom:713.256600px;}
.y9{bottom:716.635500px;}
.y33{bottom:729.396450px;}
.y5b{bottom:729.561600px;}
.y8{bottom:733.081350px;}
.y32{bottom:745.742850px;}
.y5a{bottom:745.866600px;}
.y31{bottom:762.089100px;}
.y59{bottom:762.171600px;}
.y7{bottom:775.919250px;}
.y30{bottom:778.435200px;}
.y58{bottom:778.476600px;}
.y6{bottom:793.656600px;}
.y2f{bottom:794.781600px;}
.y2e{bottom:831.204450px;}
.y3{bottom:835.330050px;}
.y2{bottom:855.706950px;}
.y5{bottom:867.892950px;}
.y4{bottom:881.392950px;}
.h5{height:35.328000px;}
.h4{height:44.496000px;}
.h2{height:45.745605px;}
.h8{height:51.127441px;}
.h9{height:51.844482px;}
.h7{height:52.472900px;}
.h6{height:57.854736px;}
.h3{height:148.644883px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x1{left:93.542100px;}
.x5{left:107.148450px;}
.x4{left:119.055150px;}
.x6{left:132.661350px;}
.x8{left:392.490300px;}
.x3{left:401.928900px;}
.x7{left:473.435100px;}
.x2{left:507.059400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-9.399000pt;}
.ls7{letter-spacing:-0.520000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000267pt;}
.ls4{letter-spacing:0.052000pt;}
.ls3{letter-spacing:0.156000pt;}
.ls8{letter-spacing:0.364000pt;}
.ls1{letter-spacing:1.233067pt;}
.ls0{letter-spacing:9.472000pt;}
.ws2{word-spacing:-13.000000pt;}
.ws0{word-spacing:-11.333333pt;}
.ws3{word-spacing:0.000000pt;}
.ws1{word-spacing:9.048000pt;}
._2{margin-left:-9.477867pt;}
._8{margin-left:-1.040000pt;}
._4{width:1.300000pt;}
._3{width:2.924000pt;}
._5{width:4.356000pt;}
._9{width:5.257867pt;}
._6{width:6.240000pt;}
._7{width:7.280000pt;}
._1{width:11.861333pt;}
._b{width:772.964800pt;}
._0{width:782.317333pt;}
._a{width:1022.309333pt;}
.fs5{font-size:39.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs6{font-size:50.666667pt;}
.fs4{font-size:52.000000pt;}
.fs3{font-size:57.333333pt;}
.fs1{font-size:152.046933pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:76.132933pt;}
.y2d{bottom:110.742133pt;}
.y7f{bottom:112.245867pt;}
.y57{bottom:125.272133pt;}
.y2c{bottom:125.360667pt;}
.y56{bottom:139.802267pt;}
.y2b{bottom:139.979200pt;}
.y7e{bottom:141.232533pt;}
.y55{bottom:154.332267pt;}
.y2a{bottom:154.597733pt;}
.y7d{bottom:155.725867pt;}
.y54{bottom:168.862267pt;}
.y29{bottom:169.216267pt;}
.y7c{bottom:170.219200pt;}
.y53{bottom:183.392267pt;}
.y28{bottom:183.834800pt;}
.y7b{bottom:184.712533pt;}
.y52{bottom:197.922267pt;}
.y27{bottom:198.453333pt;}
.y7a{bottom:199.205867pt;}
.y51{bottom:212.452267pt;}
.y26{bottom:213.071867pt;}
.y79{bottom:213.699200pt;}
.y50{bottom:226.982267pt;}
.y25{bottom:227.690400pt;}
.y78{bottom:228.192533pt;}
.y4f{bottom:241.512267pt;}
.y24{bottom:242.308933pt;}
.y77{bottom:242.685867pt;}
.y4e{bottom:256.042267pt;}
.y23{bottom:256.927467pt;}
.y76{bottom:257.179200pt;}
.y4d{bottom:270.572267pt;}
.y22{bottom:271.546000pt;}
.y75{bottom:271.672533pt;}
.y4c{bottom:285.102267pt;}
.y21{bottom:286.164533pt;}
.y74{bottom:286.165867pt;}
.y4b{bottom:299.632267pt;}
.y73{bottom:300.659200pt;}
.y20{bottom:300.783067pt;}
.y4a{bottom:314.162267pt;}
.y72{bottom:315.152533pt;}
.y1f{bottom:315.401600pt;}
.y49{bottom:328.692267pt;}
.y71{bottom:329.645867pt;}
.y1e{bottom:330.020133pt;}
.y48{bottom:343.222267pt;}
.y70{bottom:344.139200pt;}
.y1d{bottom:344.638667pt;}
.y47{bottom:357.752267pt;}
.y6f{bottom:358.632533pt;}
.y1c{bottom:359.257200pt;}
.y46{bottom:372.282267pt;}
.y6e{bottom:373.125867pt;}
.y1b{bottom:373.875733pt;}
.y45{bottom:386.812400pt;}
.y6d{bottom:387.619200pt;}
.y1a{bottom:388.494267pt;}
.y44{bottom:401.342267pt;}
.y6c{bottom:402.112533pt;}
.y19{bottom:403.112800pt;}
.y43{bottom:415.872400pt;}
.y6b{bottom:416.605867pt;}
.y18{bottom:417.731333pt;}
.y42{bottom:430.402400pt;}
.y6a{bottom:431.099200pt;}
.y17{bottom:432.349867pt;}
.y41{bottom:444.932400pt;}
.y69{bottom:445.592533pt;}
.y16{bottom:446.968400pt;}
.y40{bottom:459.462400pt;}
.y68{bottom:460.085867pt;}
.y15{bottom:461.586933pt;}
.y3f{bottom:473.992400pt;}
.y67{bottom:474.579200pt;}
.y14{bottom:476.205467pt;}
.y3e{bottom:488.522400pt;}
.y66{bottom:489.072533pt;}
.y13{bottom:490.824000pt;}
.y3d{bottom:503.052400pt;}
.y65{bottom:503.565867pt;}
.y12{bottom:505.442533pt;}
.y3c{bottom:517.582400pt;}
.y64{bottom:518.059200pt;}
.y11{bottom:520.061067pt;}
.y3b{bottom:532.112400pt;}
.y63{bottom:532.552533pt;}
.y10{bottom:534.679600pt;}
.y3a{bottom:546.642400pt;}
.y62{bottom:547.045867pt;}
.yf{bottom:549.298133pt;}
.y39{bottom:561.172400pt;}
.y61{bottom:561.539200pt;}
.ye{bottom:563.916667pt;}
.y38{bottom:575.702400pt;}
.y60{bottom:576.032533pt;}
.yd{bottom:578.535200pt;}
.y37{bottom:590.232400pt;}
.y5f{bottom:590.525867pt;}
.yc{bottom:593.153733pt;}
.y36{bottom:604.762400pt;}
.y5e{bottom:605.019200pt;}
.yb{bottom:607.772267pt;}
.y35{bottom:619.292533pt;}
.y5d{bottom:619.512533pt;}
.ya{bottom:622.390800pt;}
.y34{bottom:633.822533pt;}
.y5c{bottom:634.005867pt;}
.y9{bottom:637.009333pt;}
.y33{bottom:648.352400pt;}
.y5b{bottom:648.499200pt;}
.y8{bottom:651.627867pt;}
.y32{bottom:662.882533pt;}
.y5a{bottom:662.992533pt;}
.y31{bottom:677.412533pt;}
.y59{bottom:677.485867pt;}
.y7{bottom:689.706000pt;}
.y30{bottom:691.942400pt;}
.y58{bottom:691.979200pt;}
.y6{bottom:705.472533pt;}
.y2f{bottom:706.472533pt;}
.y2e{bottom:738.848400pt;}
.y3{bottom:742.515600pt;}
.y2{bottom:760.628400pt;}
.y5{bottom:771.460400pt;}
.y4{bottom:783.460400pt;}
.h5{height:31.402667pt;}
.h4{height:39.552000pt;}
.h2{height:40.662760pt;}
.h8{height:45.446615pt;}
.h9{height:46.083984pt;}
.h7{height:46.642578pt;}
.h6{height:51.426432pt;}
.h3{height:132.128785pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x1{left:83.148533pt;}
.x5{left:95.243067pt;}
.x4{left:105.826800pt;}
.x6{left:117.921200pt;}
.x8{left:348.880267pt;}
.x3{left:357.270133pt;}
.x7{left:420.831200pt;}
.x2{left:450.719467pt;}
}




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