
    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_c1586fdd8f7e4c648899ae0f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.907000;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_ae66e67bd0066e1485fe0f0c.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;}
.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;}
.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;}
}
.ws10{word-spacing:-26.899125px;}
.ws29{word-spacing:-16.605662px;}
.ws1c{word-spacing:-5.379825px;}
.ws1e{word-spacing:-3.335478px;}
.ws8{word-spacing:-2.797498px;}
.ws26{word-spacing:-1.841088px;}
.ws12{word-spacing:-1.661762px;}
.ws1a{word-spacing:-0.107596px;}
.wse{word-spacing:0.000000px;}
.ws28{word-spacing:0.191282px;}
.ws1d{word-spacing:0.370609px;}
.ws24{word-spacing:0.848814px;}
.ws3{word-spacing:1.685672px;}
.ws16{word-spacing:1.745448px;}
.ws1f{word-spacing:2.163877px;}
.ws2d{word-spacing:2.283428px;}
.ws7{word-spacing:2.402979px;}
.wsf{word-spacing:2.453200px;}
.wsd{word-spacing:2.701857px;}
.ws4{word-spacing:2.761633px;}
.ws9{word-spacing:2.883586px;}
.ws2c{word-spacing:3.120286px;}
.ws15{word-spacing:3.239838px;}
.ws1{word-spacing:3.299613px;}
.ws1b{word-spacing:3.419164px;}
.ws11{word-spacing:4.375574px;}
.ws2b{word-spacing:4.913554px;}
.ws22{word-spacing:5.331984px;}
.ws0{word-spacing:5.379825px;}
.ws14{word-spacing:5.571086px;}
.ws2{word-spacing:5.810188px;}
.ws27{word-spacing:6.348169px;}
.ws18{word-spacing:6.467720px;}
.wsc{word-spacing:6.706822px;}
.ws2e{word-spacing:7.364354px;}
.ws13{word-spacing:7.962110px;}
.wsb{word-spacing:8.081661px;}
.ws20{word-spacing:8.320764px;}
.ws21{word-spacing:8.798968px;}
.wsa{word-spacing:8.918520px;}
.ws19{word-spacing:9.097846px;}
.ws2a{word-spacing:9.576051px;}
.ws6{word-spacing:10.353134px;}
.ws17{word-spacing:10.716611px;}
.ws25{word-spacing:12.352078px;}
.ws5{word-spacing:12.624607px;}
.ws23{word-spacing:12.803934px;}
._f{margin-left:-4.901599px;}
._6{margin-left:-2.668393px;}
._1{margin-left:-1.613941px;}
._2{width:1.673717px;}
._3{width:3.287658px;}
._b{width:14.324635px;}
._e{width:18.449152px;}
._7{width:20.959727px;}
._9{width:22.035688px;}
._4{width:26.600142px;}
._0{width:29.887800px;}
._a{width:37.615736px;}
._d{width:40.331957px;}
._5{width:41.747442px;}
._8{width:53.453941px;}
._c{width:57.155261px;}
._13{width:137.761249px;}
._12{width:139.456475px;}
._11{width:199.291850px;}
._10{width:259.942576px;}
._14{width:318.783275px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.775600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y1e{bottom:134.047500px;}
.y3d{bottom:178.879500px;}
.y5b{bottom:190.917000px;}
.y3c{bottom:196.812000px;}
.y3b{bottom:214.744500px;}
.y5a{bottom:214.828500px;}
.y3a{bottom:232.677000px;}
.y59{bottom:238.738500px;}
.y1d{bottom:247.849500px;}
.y58{bottom:262.648500px;}
.y1c{bottom:265.782000px;}
.y39{bottom:271.258500px;}
.y57{bottom:280.581000px;}
.y1b{bottom:295.671000px;}
.y38{bottom:298.158000px;}
.y56{bottom:298.513500px;}
.y55{bottom:316.447500px;}
.y1a{bottom:325.558500px;}
.y19{bottom:343.491000px;}
.y37{bottom:353.317500px;}
.y54{bottom:364.267500px;}
.y36{bottom:371.251500px;}
.y18{bottom:373.378500px;}
.y17{bottom:391.312500px;}
.y53{bottom:394.155000px;}
.y35{bottom:400.885500px;}
.y16{bottom:409.245000px;}
.y52{bottom:412.087500px;}
.y15{bottom:427.177500px;}
.y34{bottom:430.518000px;}
.y33{bottom:448.452000px;}
.y51{bottom:450.796500px;}
.y14{bottom:465.886500px;}
.y32{bottom:478.084500px;}
.y13{bottom:492.786000px;}
.y31{bottom:496.018500px;}
.y50{bottom:506.193000px;}
.y30{bottom:513.951000px;}
.y4f{bottom:524.125500px;}
.y12{bottom:548.182500px;}
.y2f{bottom:552.532500px;}
.y4e{bottom:554.014500px;}
.y11{bottom:566.115000px;}
.y2e{bottom:579.432000px;}
.y4d{bottom:583.902000px;}
.y10{bottom:584.047500px;}
.y4c{bottom:601.834500px;}
.yf{bottom:601.980000px;}
.y4b{bottom:631.723500px;}
.ye{bottom:631.867500px;}
.y2d{bottom:634.591500px;}
.y4a{bottom:649.656000px;}
.yd{bottom:649.801500px;}
.y2c{bottom:652.524000px;}
.y49{bottom:667.588500px;}
.yc{bottom:679.689000px;}
.y2b{bottom:682.158000px;}
.y48{bottom:685.521000px;}
.yb{bottom:697.621500px;}
.y2a{bottom:711.792000px;}
.ya{bottom:721.531500px;}
.y47{bottom:724.230000px;}
.y29{bottom:729.724500px;}
.y9{bottom:745.441500px;}
.y46{bottom:751.129500px;}
.y28{bottom:759.358500px;}
.y8{bottom:763.375500px;}
.y27{bottom:777.291000px;}
.y7{bottom:781.308000px;}
.y26{bottom:801.075000px;}
.y45{bottom:806.526000px;}
.y25{bottom:819.007500px;}
.y6{bottom:820.017000px;}
.y44{bottom:824.458500px;}
.y24{bottom:836.940000px;}
.y43{bottom:854.346000px;}
.y23{bottom:860.722500px;}
.y5{bottom:875.413500px;}
.y22{bottom:878.656500px;}
.y42{bottom:884.233500px;}
.y4{bottom:893.346000px;}
.y41{bottom:902.167500px;}
.y21{bottom:902.439000px;}
.y5d{bottom:914.122500px;}
.y20{bottom:920.371500px;}
.y3{bottom:923.233500px;}
.y40{bottom:932.055000px;}
.y3f{bottom:949.987500px;}
.y2{bottom:953.121000px;}
.y1f{bottom:958.954500px;}
.y5c{bottom:961.942500px;}
.y3e{bottom:967.920000px;}
.y1{bottom:985.852500px;}
.h2{height:44.831700px;}
.h1{height:60.770503px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:211.446000px;}
.x2{left:218.917500px;}
.x1{left:238.012500px;}
.x3{left:267.900000px;}
.x5{left:454.699500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws10{word-spacing:-23.910333pt;}
.ws29{word-spacing:-14.760588pt;}
.ws1c{word-spacing:-4.782067pt;}
.ws1e{word-spacing:-2.964870pt;}
.ws8{word-spacing:-2.486665pt;}
.ws26{word-spacing:-1.636523pt;}
.ws12{word-spacing:-1.477121pt;}
.ws1a{word-spacing:-0.095641pt;}
.wse{word-spacing:0.000000pt;}
.ws28{word-spacing:0.170028pt;}
.ws1d{word-spacing:0.329430pt;}
.ws24{word-spacing:0.754501pt;}
.ws3{word-spacing:1.498375pt;}
.ws16{word-spacing:1.551509pt;}
.ws1f{word-spacing:1.923446pt;}
.ws2d{word-spacing:2.029714pt;}
.ws7{word-spacing:2.135981pt;}
.wsf{word-spacing:2.180622pt;}
.wsd{word-spacing:2.401651pt;}
.ws4{word-spacing:2.454785pt;}
.ws9{word-spacing:2.563188pt;}
.ws2c{word-spacing:2.773588pt;}
.ws15{word-spacing:2.879856pt;}
.ws1{word-spacing:2.932989pt;}
.ws1b{word-spacing:3.039257pt;}
.ws11{word-spacing:3.889399pt;}
.ws2b{word-spacing:4.367604pt;}
.ws22{word-spacing:4.739541pt;}
.ws0{word-spacing:4.782067pt;}
.ws14{word-spacing:4.952076pt;}
.ws2{word-spacing:5.164612pt;}
.ws27{word-spacing:5.642817pt;}
.ws18{word-spacing:5.749084pt;}
.wsc{word-spacing:5.961620pt;}
.ws2e{word-spacing:6.546092pt;}
.ws13{word-spacing:7.077431pt;}
.wsb{word-spacing:7.183699pt;}
.ws20{word-spacing:7.396234pt;}
.ws21{word-spacing:7.821305pt;}
.wsa{word-spacing:7.927573pt;}
.ws19{word-spacing:8.086975pt;}
.ws2a{word-spacing:8.512045pt;}
.ws6{word-spacing:9.202786pt;}
.ws17{word-spacing:9.525877pt;}
.ws25{word-spacing:10.979625pt;}
.ws5{word-spacing:11.221873pt;}
.ws23{word-spacing:11.381274pt;}
._f{margin-left:-4.356977pt;}
._6{margin-left:-2.371905pt;}
._1{margin-left:-1.434614pt;}
._2{width:1.487748pt;}
._3{width:2.922363pt;}
._b{width:12.733009pt;}
._e{width:16.399246pt;}
._7{width:18.630868pt;}
._9{width:19.587278pt;}
._4{width:23.644571pt;}
._0{width:26.566933pt;}
._a{width:33.436210pt;}
._d{width:35.850628pt;}
._5{width:37.108837pt;}
._8{width:47.514614pt;}
._c{width:50.804676pt;}
._13{width:122.454444pt;}
._12{width:123.961311pt;}
._11{width:177.148311pt;}
._10{width:231.060067pt;}
._14{width:283.362911pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:119.153333pt;}
.y3d{bottom:159.004000pt;}
.y5b{bottom:169.704000pt;}
.y3c{bottom:174.944000pt;}
.y3b{bottom:190.884000pt;}
.y5a{bottom:190.958667pt;}
.y3a{bottom:206.824000pt;}
.y59{bottom:212.212000pt;}
.y1d{bottom:220.310667pt;}
.y58{bottom:233.465333pt;}
.y1c{bottom:236.250667pt;}
.y39{bottom:241.118667pt;}
.y57{bottom:249.405333pt;}
.y1b{bottom:262.818667pt;}
.y38{bottom:265.029333pt;}
.y56{bottom:265.345333pt;}
.y55{bottom:281.286667pt;}
.y1a{bottom:289.385333pt;}
.y19{bottom:305.325333pt;}
.y37{bottom:314.060000pt;}
.y54{bottom:323.793333pt;}
.y36{bottom:330.001333pt;}
.y18{bottom:331.892000pt;}
.y17{bottom:347.833333pt;}
.y53{bottom:350.360000pt;}
.y35{bottom:356.342667pt;}
.y16{bottom:363.773333pt;}
.y52{bottom:366.300000pt;}
.y15{bottom:379.713333pt;}
.y34{bottom:382.682667pt;}
.y33{bottom:398.624000pt;}
.y51{bottom:400.708000pt;}
.y14{bottom:414.121333pt;}
.y32{bottom:424.964000pt;}
.y13{bottom:438.032000pt;}
.y31{bottom:440.905333pt;}
.y50{bottom:449.949333pt;}
.y30{bottom:456.845333pt;}
.y4f{bottom:465.889333pt;}
.y12{bottom:487.273333pt;}
.y2f{bottom:491.140000pt;}
.y4e{bottom:492.457333pt;}
.y11{bottom:503.213333pt;}
.y2e{bottom:515.050667pt;}
.y4d{bottom:519.024000pt;}
.y10{bottom:519.153333pt;}
.y4c{bottom:534.964000pt;}
.yf{bottom:535.093333pt;}
.y4b{bottom:561.532000pt;}
.ye{bottom:561.660000pt;}
.y2d{bottom:564.081333pt;}
.y4a{bottom:577.472000pt;}
.yd{bottom:577.601333pt;}
.y2c{bottom:580.021333pt;}
.y49{bottom:593.412000pt;}
.yc{bottom:604.168000pt;}
.y2b{bottom:606.362667pt;}
.y48{bottom:609.352000pt;}
.yb{bottom:620.108000pt;}
.y2a{bottom:632.704000pt;}
.ya{bottom:641.361333pt;}
.y47{bottom:643.760000pt;}
.y29{bottom:648.644000pt;}
.y9{bottom:662.614667pt;}
.y46{bottom:667.670667pt;}
.y28{bottom:674.985333pt;}
.y8{bottom:678.556000pt;}
.y27{bottom:690.925333pt;}
.y7{bottom:694.496000pt;}
.y26{bottom:712.066667pt;}
.y45{bottom:716.912000pt;}
.y25{bottom:728.006667pt;}
.y6{bottom:728.904000pt;}
.y44{bottom:732.852000pt;}
.y24{bottom:743.946667pt;}
.y43{bottom:759.418667pt;}
.y23{bottom:765.086667pt;}
.y5{bottom:778.145333pt;}
.y22{bottom:781.028000pt;}
.y42{bottom:785.985333pt;}
.y4{bottom:794.085333pt;}
.y41{bottom:801.926667pt;}
.y21{bottom:802.168000pt;}
.y5d{bottom:812.553333pt;}
.y20{bottom:818.108000pt;}
.y3{bottom:820.652000pt;}
.y40{bottom:828.493333pt;}
.y3f{bottom:844.433333pt;}
.y2{bottom:847.218667pt;}
.y1f{bottom:852.404000pt;}
.y5c{bottom:855.060000pt;}
.y3e{bottom:860.373333pt;}
.y1{bottom:876.313333pt;}
.h2{height:39.850400pt;}
.h1{height:54.018225pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:187.952000pt;}
.x2{left:194.593333pt;}
.x1{left:211.566667pt;}
.x3{left:238.133333pt;}
.x5{left:404.177333pt;}
}




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