
    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_aa919274e047fce0ba45413b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_31bce7d424414c7352f732fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.987793;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_bdb93ba417dccf3ac20d2bfd.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c78d8f34099b9963bd561167.woff2')format("woff");}.ff4{font-family:ff4;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;}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.358560px;}
.lsc{letter-spacing:-0.336960px;}
.ls14{letter-spacing:-0.239040px;}
.ls10{letter-spacing:-0.179280px;}
.ls9{letter-spacing:-0.119520px;}
.lsa{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.059760px;}
.lsd{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.119520px;}
.lse{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.239040px;}
.ls3{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.336960px;}
.lsf{letter-spacing:0.358560px;}
.ls6{letter-spacing:0.645408px;}
.ls8{letter-spacing:0.657360px;}
.ls0{letter-spacing:0.717120px;}
.ls4{letter-spacing:1.972080px;}
.ls7{letter-spacing:2.834666px;}
.ls5{letter-spacing:15.125256px;}
.ls1{letter-spacing:999.904320px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc1{text-shadow:-0.015em 0 rgb(47,84,150),0 0.015em rgb(47,84,150),0.015em 0 rgb(47,84,150),0 -0.015em  rgb(47,84,150);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(47,84,150);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-23.418720px;}
.ws1{word-spacing:-23.081760px;}
.ws3{word-spacing:-22.968000px;}
.ws4{word-spacing:-22.824000px;}
.ws8{word-spacing:-19.905652px;}
.ws5{word-spacing:-19.242720px;}
.ws7{word-spacing:-19.003680px;}
.ws6{word-spacing:-18.884160px;}
.ws0{word-spacing:-16.613280px;}
.ws27{word-spacing:-3.764880px;}
.wsf{word-spacing:-0.896400px;}
.ws25{word-spacing:-0.537840px;}
.ws24{word-spacing:-0.358560px;}
.wse{word-spacing:-0.288000px;}
.wsb{word-spacing:-0.239040px;}
.ws18{word-spacing:-0.179280px;}
.wsa{word-spacing:0.000000px;}
.ws9{word-spacing:0.119520px;}
.wsd{word-spacing:0.216000px;}
.ws2a{word-spacing:0.358560px;}
.wsc{word-spacing:0.758160px;}
.ws17{word-spacing:0.896400px;}
.ws13{word-spacing:1.254960px;}
.ws22{word-spacing:1.613520px;}
.ws15{word-spacing:1.972080px;}
.ws14{word-spacing:2.151360px;}
.ws10{word-spacing:2.330640px;}
.ws16{word-spacing:2.689200px;}
.ws30{word-spacing:2.834666px;}
.ws2d{word-spacing:3.406320px;}
.ws21{word-spacing:4.840560px;}
.ws1d{word-spacing:6.274800px;}
.ws11{word-spacing:6.633360px;}
.ws20{word-spacing:7.709040px;}
.ws26{word-spacing:10.995840px;}
.ws2e{word-spacing:11.354400px;}
.ws2f{word-spacing:11.593440px;}
.ws28{word-spacing:11.712960px;}
.ws29{word-spacing:12.071520px;}
.ws12{word-spacing:13.505760px;}
.ws1c{word-spacing:14.880240px;}
.ws1b{word-spacing:14.940000px;}
.ws1a{word-spacing:15.119280px;}
.ws23{word-spacing:15.657120px;}
.ws19{word-spacing:15.836400px;}
.ws1f{word-spacing:17.091360px;}
.ws1e{word-spacing:17.808480px;}
.ws2b{word-spacing:20.676960px;}
.ws2c{word-spacing:27.907920px;}
._3{margin-left:-3.209544px;}
._1{margin-left:-1.505952px;}
._0{width:1.075680px;}
._4{width:16.135200px;}
._2{width:1552.983120px;}
.fc5{color:rgb(91,155,213);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(47,84,150);}
.fc1{color:rgb(36,64,114);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs3{font-size:62.992571px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:24.474420px;}
.y1{bottom:41.760000px;}
.y2a{bottom:104.040000px;}
.y29{bottom:142.012080px;}
.y28{bottom:178.734600px;}
.y27{bottom:215.636400px;}
.y26{bottom:252.538200px;}
.y24{bottom:289.434780px;}
.y25{bottom:289.440000px;}
.y22{bottom:314.152200px;}
.y23{bottom:314.280000px;}
.y21{bottom:338.997420px;}
.y20{bottom:364.021920px;}
.y1f{bottom:388.867140px;}
.y1e{bottom:413.712360px;}
.y1d{bottom:438.557580px;}
.y1c{bottom:463.402800px;}
.y1b{bottom:488.248020px;}
.y1a{bottom:513.272520px;}
.y19{bottom:538.117740px;}
.y18{bottom:575.019540px;}
.y17{bottom:599.864760px;}
.y16{bottom:624.709980px;}
.y15{bottom:649.555200px;}
.y14{bottom:674.400420px;}
.y13{bottom:699.424920px;}
.y12{bottom:724.270140px;}
.y11{bottom:761.171940px;}
.y10{bottom:786.017160px;}
.yf{bottom:810.862380px;}
.ye{bottom:847.764180px;}
.yd{bottom:872.609400px;}
.yc{bottom:897.454620px;}
.yb{bottom:922.479120px;}
.ya{bottom:947.324340px;}
.y9{bottom:972.169560px;}
.y8{bottom:997.014780px;}
.y7{bottom:1021.860000px;}
.y6{bottom:1058.760000px;}
.y5{bottom:1097.280000px;}
.y4{bottom:1139.220000px;}
.y3{bottom:1183.140000px;}
.h3{height:43.506914px;}
.h2{height:46.804219px;}
.h8{height:47.988281px;}
.h7{height:49.335978px;}
.h6{height:56.390625px;}
.h5{height:61.329023px;}
.h4{height:61.411289px;}
.h0{height:1262.879970px;}
.h1{height:1263.000000px;}
.w2{width:892.980000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.000000px;}
.x4{left:129.600000px;}
.x2{left:219.027240px;}
.x3{left:310.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.318720pt;}
.lsc{letter-spacing:-0.299520pt;}
.ls14{letter-spacing:-0.212480pt;}
.ls10{letter-spacing:-0.159360pt;}
.ls9{letter-spacing:-0.106240pt;}
.lsa{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.053120pt;}
.lsd{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.106240pt;}
.lse{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.212480pt;}
.ls3{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.299520pt;}
.lsf{letter-spacing:0.318720pt;}
.ls6{letter-spacing:0.573696pt;}
.ls8{letter-spacing:0.584320pt;}
.ls0{letter-spacing:0.637440pt;}
.ls4{letter-spacing:1.752960pt;}
.ls7{letter-spacing:2.519703pt;}
.ls5{letter-spacing:13.444672pt;}
.ls1{letter-spacing:888.803840pt;}
.ws2{word-spacing:-20.816640pt;}
.ws1{word-spacing:-20.517120pt;}
.ws3{word-spacing:-20.416000pt;}
.ws4{word-spacing:-20.288000pt;}
.ws8{word-spacing:-17.693913pt;}
.ws5{word-spacing:-17.104640pt;}
.ws7{word-spacing:-16.892160pt;}
.ws6{word-spacing:-16.785920pt;}
.ws0{word-spacing:-14.767360pt;}
.ws27{word-spacing:-3.346560pt;}
.wsf{word-spacing:-0.796800pt;}
.ws25{word-spacing:-0.478080pt;}
.ws24{word-spacing:-0.318720pt;}
.wse{word-spacing:-0.256000pt;}
.wsb{word-spacing:-0.212480pt;}
.ws18{word-spacing:-0.159360pt;}
.wsa{word-spacing:0.000000pt;}
.ws9{word-spacing:0.106240pt;}
.wsd{word-spacing:0.192000pt;}
.ws2a{word-spacing:0.318720pt;}
.wsc{word-spacing:0.673920pt;}
.ws17{word-spacing:0.796800pt;}
.ws13{word-spacing:1.115520pt;}
.ws22{word-spacing:1.434240pt;}
.ws15{word-spacing:1.752960pt;}
.ws14{word-spacing:1.912320pt;}
.ws10{word-spacing:2.071680pt;}
.ws16{word-spacing:2.390400pt;}
.ws30{word-spacing:2.519703pt;}
.ws2d{word-spacing:3.027840pt;}
.ws21{word-spacing:4.302720pt;}
.ws1d{word-spacing:5.577600pt;}
.ws11{word-spacing:5.896320pt;}
.ws20{word-spacing:6.852480pt;}
.ws26{word-spacing:9.774080pt;}
.ws2e{word-spacing:10.092800pt;}
.ws2f{word-spacing:10.305280pt;}
.ws28{word-spacing:10.411520pt;}
.ws29{word-spacing:10.730240pt;}
.ws12{word-spacing:12.005120pt;}
.ws1c{word-spacing:13.226880pt;}
.ws1b{word-spacing:13.280000pt;}
.ws1a{word-spacing:13.439360pt;}
.ws23{word-spacing:13.917440pt;}
.ws19{word-spacing:14.076800pt;}
.ws1f{word-spacing:15.192320pt;}
.ws1e{word-spacing:15.829760pt;}
.ws2b{word-spacing:18.379520pt;}
.ws2c{word-spacing:24.807040pt;}
._3{margin-left:-2.852928pt;}
._1{margin-left:-1.338624pt;}
._0{width:0.956160pt;}
._4{width:14.342400pt;}
._2{width:1380.429440pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:55.993396pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:21.755040pt;}
.y1{bottom:37.120000pt;}
.y2a{bottom:92.480000pt;}
.y29{bottom:126.232960pt;}
.y28{bottom:158.875200pt;}
.y27{bottom:191.676800pt;}
.y26{bottom:224.478400pt;}
.y24{bottom:257.275360pt;}
.y25{bottom:257.280000pt;}
.y22{bottom:279.246400pt;}
.y23{bottom:279.360000pt;}
.y21{bottom:301.331040pt;}
.y20{bottom:323.575040pt;}
.y1f{bottom:345.659680pt;}
.y1e{bottom:367.744320pt;}
.y1d{bottom:389.828960pt;}
.y1c{bottom:411.913600pt;}
.y1b{bottom:433.998240pt;}
.y1a{bottom:456.242240pt;}
.y19{bottom:478.326880pt;}
.y18{bottom:511.128480pt;}
.y17{bottom:533.213120pt;}
.y16{bottom:555.297760pt;}
.y15{bottom:577.382400pt;}
.y14{bottom:599.467040pt;}
.y13{bottom:621.711040pt;}
.y12{bottom:643.795680pt;}
.y11{bottom:676.597280pt;}
.y10{bottom:698.681920pt;}
.yf{bottom:720.766560pt;}
.ye{bottom:753.568160pt;}
.yd{bottom:775.652800pt;}
.yc{bottom:797.737440pt;}
.yb{bottom:819.981440pt;}
.ya{bottom:842.066080pt;}
.y9{bottom:864.150720pt;}
.y8{bottom:886.235360pt;}
.y7{bottom:908.320000pt;}
.y6{bottom:941.120000pt;}
.y5{bottom:975.360000pt;}
.y4{bottom:1012.640000pt;}
.y3{bottom:1051.680000pt;}
.h3{height:38.672812pt;}
.h2{height:41.603750pt;}
.h8{height:42.656250pt;}
.h7{height:43.854203pt;}
.h6{height:50.125000pt;}
.h5{height:54.514687pt;}
.h4{height:54.587812pt;}
.h0{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.w2{width:793.760000pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.000000pt;}
.x4{left:115.200000pt;}
.x2{left:194.690880pt;}
.x3{left:276.000000pt;}
}




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