
    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_4c916c46e634be01dace6451.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.724000;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_f5601ebdea9ed464c05aeafe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.068000;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_b1e9d1c201ea9045d6de2ff8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_01da856a52a76fce2b7e0c65.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.727000;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_33e2aa7ec4cc92dc560ab54c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.756000;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;}
.lsd{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053100px;}
.ls0{letter-spacing:0.106200px;}
.ls6{letter-spacing:0.159300px;}
.ls2{letter-spacing:0.212400px;}
.ls3{letter-spacing:0.265500px;}
.ls8{letter-spacing:0.318600px;}
.lsc{letter-spacing:0.424800px;}
.ls5{letter-spacing:0.477900px;}
.ls7{letter-spacing:0.531000px;}
.ls4{letter-spacing:0.584100px;}
.ls1{letter-spacing:0.690300px;}
.lsa{letter-spacing:0.796500px;}
.lsb{letter-spacing:1.221300px;}
.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:0.000000px;}
._5{margin-left:-6.874200px;}
._3{margin-left:-5.628600px;}
._1{margin-left:-4.194900px;}
._2{margin-left:-2.814300px;}
._0{margin-left:-1.168200px;}
._4{width:1.168200px;}
._6{width:2.655000px;}
._7{width:2605.389600px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:36.000000px;}
.fs1{font-size:53.100000px;}
.fs2{font-size:90.000000px;}
.fs0{font-size:180.000000px;}
.y7b{bottom:-38.164500px;}
.y0{bottom:0.000000px;}
.y7a{bottom:69.698979px;}
.y3e{bottom:70.839567px;}
.y79{bottom:103.206937px;}
.y3d{bottom:106.840039px;}
.y78{bottom:119.706966px;}
.y3c{bottom:124.839612px;}
.y77{bottom:136.206995px;}
.y3b{bottom:141.339109px;}
.y76{bottom:152.707023px;}
.y3a{bottom:157.838607px;}
.y75{bottom:169.207052px;}
.y39{bottom:174.338104px;}
.y74{bottom:185.707080px;}
.y38{bottom:190.837602px;}
.y73{bottom:202.207109px;}
.y37{bottom:207.337100px;}
.y72{bottom:218.707137px;}
.y36{bottom:223.836597px;}
.y71{bottom:235.207166px;}
.y35{bottom:240.336095px;}
.y70{bottom:251.707194px;}
.y34{bottom:256.835592px;}
.y6f{bottom:268.207223px;}
.y33{bottom:273.335090px;}
.y6e{bottom:284.707251px;}
.y32{bottom:289.834587px;}
.y6d{bottom:301.207279px;}
.y31{bottom:306.334085px;}
.y6c{bottom:317.707308px;}
.y30{bottom:322.833582px;}
.y6b{bottom:334.207336px;}
.y2f{bottom:339.333611px;}
.y6a{bottom:350.707365px;}
.y2e{bottom:355.833639px;}
.y69{bottom:367.207261px;}
.y2d{bottom:372.333667px;}
.y68{bottom:383.707289px;}
.y2c{bottom:388.833696px;}
.y67{bottom:400.207185px;}
.y2b{bottom:405.333592px;}
.y66{bottom:416.707213px;}
.y2a{bottom:421.833620px;}
.y65{bottom:433.207242px;}
.y29{bottom:438.333649px;}
.y64{bottom:449.707138px;}
.y28{bottom:454.833544px;}
.y63{bottom:466.207166px;}
.y27{bottom:471.333573px;}
.y62{bottom:482.707195px;}
.y26{bottom:487.833601px;}
.y61{bottom:499.207090px;}
.y25{bottom:504.333497px;}
.y60{bottom:515.707119px;}
.y24{bottom:520.833526px;}
.y5f{bottom:532.207147px;}
.y23{bottom:537.333554px;}
.y5e{bottom:548.707043px;}
.y22{bottom:553.833450px;}
.y5d{bottom:565.207072px;}
.y21{bottom:570.333478px;}
.y5c{bottom:581.707100px;}
.y20{bottom:586.833507px;}
.y5b{bottom:598.206996px;}
.y1f{bottom:603.333403px;}
.y5a{bottom:614.707024px;}
.y1e{bottom:619.833431px;}
.y59{bottom:631.207053px;}
.y1d{bottom:636.333460px;}
.y58{bottom:647.707081px;}
.y1c{bottom:652.833355px;}
.y57{bottom:664.206977px;}
.y1b{bottom:669.333384px;}
.y56{bottom:680.707006px;}
.y1a{bottom:685.833412px;}
.y55{bottom:697.207034px;}
.y19{bottom:702.333441px;}
.y54{bottom:713.706930px;}
.y18{bottom:718.833469px;}
.y53{bottom:730.206958px;}
.y17{bottom:735.333365px;}
.y52{bottom:746.706987px;}
.y16{bottom:751.833394px;}
.y51{bottom:763.207015px;}
.y15{bottom:768.333422px;}
.y50{bottom:779.707044px;}
.y14{bottom:784.833451px;}
.y4f{bottom:796.207072px;}
.y13{bottom:801.333479px;}
.y4e{bottom:812.707101px;}
.y12{bottom:817.833508px;}
.y4d{bottom:829.207129px;}
.y11{bottom:834.333536px;}
.y4c{bottom:845.707158px;}
.y10{bottom:850.833565px;}
.y4b{bottom:862.207186px;}
.yf{bottom:867.333593px;}
.y4a{bottom:878.707215px;}
.ye{bottom:883.833489px;}
.y49{bottom:895.207243px;}
.yd{bottom:900.333517px;}
.y48{bottom:911.707272px;}
.yc{bottom:916.833546px;}
.y47{bottom:928.207300px;}
.yb{bottom:933.333442px;}
.y46{bottom:944.707329px;}
.ya{bottom:949.833470px;}
.y45{bottom:961.207357px;}
.y9{bottom:966.333499px;}
.y44{bottom:977.707386px;}
.y8{bottom:982.833394px;}
.y43{bottom:994.207414px;}
.y7{bottom:999.333423px;}
.y42{bottom:1010.707443px;}
.y6{bottom:1015.833451px;}
.y41{bottom:1027.207471px;}
.y5{bottom:1032.333347px;}
.y40{bottom:1043.707500px;}
.y4{bottom:1048.833376px;}
.y3{bottom:1065.333404px;}
.y3f{bottom:1078.207500px;}
.y2{bottom:1081.833300px;}
.y1{bottom:1123.845450px;}
.h4{height:26.532000px;}
.h2{height:43.064100px;}
.h3{height:64.350000px;}
.h1{height:128.160000px;}
.h0{height:1182.000000px;}
.w0{width:885.000000px;}
.x0{left:0.000000px;}
.x5{left:11.056500px;}
.x1{left:50.056500px;}
.x2{left:71.316413px;}
.x3{left:453.143100px;}
.x4{left:474.402880px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047200pt;}
.ls0{letter-spacing:0.094400pt;}
.ls6{letter-spacing:0.141600pt;}
.ls2{letter-spacing:0.188800pt;}
.ls3{letter-spacing:0.236000pt;}
.ls8{letter-spacing:0.283200pt;}
.lsc{letter-spacing:0.377600pt;}
.ls5{letter-spacing:0.424800pt;}
.ls7{letter-spacing:0.472000pt;}
.ls4{letter-spacing:0.519200pt;}
.ls1{letter-spacing:0.613600pt;}
.lsa{letter-spacing:0.708000pt;}
.lsb{letter-spacing:1.085600pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-6.110400pt;}
._3{margin-left:-5.003200pt;}
._1{margin-left:-3.728800pt;}
._2{margin-left:-2.501600pt;}
._0{margin-left:-1.038400pt;}
._4{width:1.038400pt;}
._6{width:2.360000pt;}
._7{width:2315.901867pt;}
.fs3{font-size:32.000000pt;}
.fs1{font-size:47.200000pt;}
.fs2{font-size:80.000000pt;}
.fs0{font-size:160.000000pt;}
.y7b{bottom:-33.924000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:61.954648pt;}
.y3e{bottom:62.968504pt;}
.y79{bottom:91.739500pt;}
.y3d{bottom:94.968924pt;}
.y78{bottom:106.406192pt;}
.y3c{bottom:110.968544pt;}
.y77{bottom:121.072884pt;}
.y3b{bottom:125.634764pt;}
.y76{bottom:135.739576pt;}
.y3a{bottom:140.300984pt;}
.y75{bottom:150.406268pt;}
.y39{bottom:154.967204pt;}
.y74{bottom:165.072960pt;}
.y38{bottom:169.633424pt;}
.y73{bottom:179.739652pt;}
.y37{bottom:184.299644pt;}
.y72{bottom:194.406344pt;}
.y36{bottom:198.965864pt;}
.y71{bottom:209.073036pt;}
.y35{bottom:213.632084pt;}
.y70{bottom:223.739728pt;}
.y34{bottom:228.298304pt;}
.y6f{bottom:238.406420pt;}
.y33{bottom:242.964524pt;}
.y6e{bottom:253.073112pt;}
.y32{bottom:257.630744pt;}
.y6d{bottom:267.739804pt;}
.y31{bottom:272.296964pt;}
.y6c{bottom:282.406496pt;}
.y30{bottom:286.963184pt;}
.y6b{bottom:297.073188pt;}
.y2f{bottom:301.629876pt;}
.y6a{bottom:311.739880pt;}
.y2e{bottom:316.296568pt;}
.y69{bottom:326.406454pt;}
.y2d{bottom:330.963260pt;}
.y68{bottom:341.073146pt;}
.y2c{bottom:345.629952pt;}
.y67{bottom:355.739720pt;}
.y2b{bottom:360.296526pt;}
.y66{bottom:370.406412pt;}
.y2a{bottom:374.963218pt;}
.y65{bottom:385.073104pt;}
.y29{bottom:389.629910pt;}
.y64{bottom:399.739678pt;}
.y28{bottom:404.296484pt;}
.y63{bottom:414.406370pt;}
.y27{bottom:418.963176pt;}
.y62{bottom:429.073062pt;}
.y26{bottom:433.629868pt;}
.y61{bottom:443.739636pt;}
.y25{bottom:448.296442pt;}
.y60{bottom:458.406328pt;}
.y24{bottom:462.963134pt;}
.y5f{bottom:473.073020pt;}
.y23{bottom:477.629826pt;}
.y5e{bottom:487.739594pt;}
.y22{bottom:492.296400pt;}
.y5d{bottom:502.406286pt;}
.y21{bottom:506.963092pt;}
.y5c{bottom:517.072978pt;}
.y20{bottom:521.629784pt;}
.y5b{bottom:531.739552pt;}
.y1f{bottom:536.296358pt;}
.y5a{bottom:546.406244pt;}
.y1e{bottom:550.963050pt;}
.y59{bottom:561.072936pt;}
.y1d{bottom:565.629742pt;}
.y58{bottom:575.739628pt;}
.y1c{bottom:580.296316pt;}
.y57{bottom:590.406202pt;}
.y1b{bottom:594.963008pt;}
.y56{bottom:605.072894pt;}
.y1a{bottom:609.629700pt;}
.y55{bottom:619.739586pt;}
.y19{bottom:624.296392pt;}
.y54{bottom:634.406160pt;}
.y18{bottom:638.963084pt;}
.y53{bottom:649.072852pt;}
.y17{bottom:653.629658pt;}
.y52{bottom:663.739544pt;}
.y16{bottom:668.296350pt;}
.y51{bottom:678.406236pt;}
.y15{bottom:682.963042pt;}
.y50{bottom:693.072928pt;}
.y14{bottom:697.629734pt;}
.y4f{bottom:707.739620pt;}
.y13{bottom:712.296426pt;}
.y4e{bottom:722.406312pt;}
.y12{bottom:726.963118pt;}
.y4d{bottom:737.073004pt;}
.y11{bottom:741.629810pt;}
.y4c{bottom:751.739696pt;}
.y10{bottom:756.296502pt;}
.y4b{bottom:766.406388pt;}
.yf{bottom:770.963194pt;}
.y4a{bottom:781.073080pt;}
.ye{bottom:785.629768pt;}
.y49{bottom:795.739772pt;}
.yd{bottom:800.296460pt;}
.y48{bottom:810.406464pt;}
.yc{bottom:814.963152pt;}
.y47{bottom:825.073156pt;}
.yb{bottom:829.629726pt;}
.y46{bottom:839.739848pt;}
.ya{bottom:844.296418pt;}
.y45{bottom:854.406540pt;}
.y9{bottom:858.963110pt;}
.y44{bottom:869.073232pt;}
.y8{bottom:873.629684pt;}
.y43{bottom:883.739924pt;}
.y7{bottom:888.296376pt;}
.y42{bottom:898.406616pt;}
.y6{bottom:902.963068pt;}
.y41{bottom:913.073308pt;}
.y5{bottom:917.629642pt;}
.y40{bottom:927.740000pt;}
.y4{bottom:932.296334pt;}
.y3{bottom:946.963026pt;}
.y3f{bottom:958.406667pt;}
.y2{bottom:961.629600pt;}
.y1{bottom:998.973733pt;}
.h4{height:23.584000pt;}
.h2{height:38.279200pt;}
.h3{height:57.200000pt;}
.h1{height:113.920000pt;}
.h0{height:1050.666667pt;}
.w0{width:786.666667pt;}
.x0{left:0.000000pt;}
.x5{left:9.828000pt;}
.x1{left:44.494667pt;}
.x2{left:63.392367pt;}
.x3{left:402.793867pt;}
.x4{left:421.691449pt;}
}




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