
    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_3b112d2f583a23c141ba5ff0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_46989f296ad2ce005f22c86a.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_0c11b90d70a3682ec00c4c75.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0ecddb364b6c083b97c6a5b3.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dceafa3bc9c11f529a8687e8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.706000;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001002px;}
.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;}
}
.ws2d{word-spacing:-16.605662px;}
.ws4{word-spacing:-15.359443px;}
.ws11{word-spacing:-3.036600px;}
.ws14{word-spacing:-1.362884px;}
.ws36{word-spacing:-0.887674px;}
.ws13{word-spacing:-0.466250px;}
.ws29{word-spacing:-0.071731px;}
.ws24{word-spacing:0.000000px;}
.ws16{word-spacing:0.071731px;}
.ws30{word-spacing:0.188294px;}
.ws20{word-spacing:0.669487px;}
.wsb{word-spacing:0.780077px;}
.ws33{word-spacing:1.102867px;}
.ws21{word-spacing:1.207467px;}
.ws1a{word-spacing:1.267243px;}
.wsc{word-spacing:1.318061px;}
.ws2f{word-spacing:1.802246px;}
.ws28{word-spacing:1.984550px;}
.ws2b{word-spacing:2.044326px;}
.ws1e{word-spacing:2.104101px;}
.ws12{word-spacing:2.462755px;}
.ws2{word-spacing:3.039610px;}
.ws5{word-spacing:3.057972px;}
.ws3{word-spacing:3.062940px;}
.ws31{word-spacing:3.093408px;}
.ws1{word-spacing:3.299613px;}
.ws35{word-spacing:3.308602px;}
.ws17{word-spacing:3.359389px;}
.ws2a{word-spacing:3.478940px;}
.wsf{word-spacing:4.196247px;}
.ws9{word-spacing:4.276973px;}
.wsa{word-spacing:4.707360px;}
.ws18{word-spacing:4.794003px;}
.ws15{word-spacing:5.092881px;}
.ws1b{word-spacing:5.272208px;}
.ws26{word-spacing:5.511310px;}
.ws1f{word-spacing:5.810188px;}
.ws23{word-spacing:6.049291px;}
.ws32{word-spacing:6.052320px;}
.ws2c{word-spacing:6.527496px;}
.ws1d{word-spacing:6.945925px;}
.ws27{word-spacing:7.304578px;}
.ws7{word-spacing:7.343482px;}
.ws39{word-spacing:7.451078px;}
.ws2e{word-spacing:7.558675px;}
.ws34{word-spacing:7.935264px;}
.ws10{word-spacing:8.141437px;}
.ws1c{word-spacing:8.260988px;}
.ws8{word-spacing:8.365651px;}
.ws22{word-spacing:9.157622px;}
.ws25{word-spacing:9.456500px;}
.wse{word-spacing:10.054256px;}
.ws19{word-spacing:10.412910px;}
.ws3a{word-spacing:10.678982px;}
.ws37{word-spacing:16.489210px;}
.ws38{word-spacing:26.065325px;}
.wsd{word-spacing:26.827469px;}
.ws6{word-spacing:29.829450px;}
.ws0{word-spacing:32.192873px;}
._4{margin-left:-28.214083px;}
._b{margin-left:-25.757245px;}
._5{margin-left:-21.740776px;}
._0{margin-left:-8.091257px;}
._a{margin-left:-6.366132px;}
._1{margin-left:-4.961375px;}
._7{margin-left:-3.227882px;}
._3{margin-left:-1.673717px;}
._2{width:1.793268px;}
._6{width:3.287658px;}
._8{width:9.862974px;}
._9{width:29.858112px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y27{bottom:193.617000px;}
.y26{bottom:211.549500px;}
.y25{bottom:229.482000px;}
.y24{bottom:247.414500px;}
.y23{bottom:265.347000px;}
.y22{bottom:283.279500px;}
.y21{bottom:301.213500px;}
.y20{bottom:319.146000px;}
.y1f{bottom:337.078500px;}
.y48{bottom:341.769000px;}
.y1e{bottom:355.011000px;}
.y47{bottom:358.206000px;}
.y1d{bottom:372.943500px;}
.y46{bottom:374.644500px;}
.y1c{bottom:390.876000px;}
.y45{bottom:391.083000px;}
.y44{bottom:407.521500px;}
.y1b{bottom:408.810000px;}
.y43{bottom:423.960000px;}
.y1a{bottom:426.742500px;}
.y42{bottom:440.398500px;}
.y19{bottom:444.675000px;}
.y41{bottom:456.837000px;}
.y18{bottom:462.607500px;}
.y40{bottom:473.275500px;}
.y17{bottom:480.540000px;}
.y3f{bottom:489.714000px;}
.y16{bottom:498.472500px;}
.y3e{bottom:506.152500px;}
.y15{bottom:516.406500px;}
.y3d{bottom:522.589500px;}
.y14{bottom:534.339000px;}
.y3c{bottom:539.028000px;}
.y13{bottom:552.271500px;}
.y3b{bottom:555.466500px;}
.y12{bottom:570.204000px;}
.y3a{bottom:571.905000px;}
.y11{bottom:588.136500px;}
.y39{bottom:588.343500px;}
.y38{bottom:604.782000px;}
.y10{bottom:606.070500px;}
.y37{bottom:621.220500px;}
.yf{bottom:624.003000px;}
.y36{bottom:637.659000px;}
.ye{bottom:641.935500px;}
.y35{bottom:654.097500px;}
.yd{bottom:674.662500px;}
.y34{bottom:688.468500px;}
.yc{bottom:721.488000px;}
.y33{bottom:736.288500px;}
.yb{bottom:737.926500px;}
.y32{bottom:754.221000px;}
.ya{bottom:754.363500px;}
.y9{bottom:770.802000px;}
.y31{bottom:772.155000px;}
.y8{bottom:787.240500px;}
.y30{bottom:790.087500px;}
.y7{bottom:803.679000px;}
.y6{bottom:820.117500px;}
.y2f{bottom:825.952500px;}
.y5{bottom:872.695500px;}
.y2e{bottom:873.774000px;}
.y4{bottom:889.134000px;}
.y2d{bottom:891.706500px;}
.y2c{bottom:909.639000px;}
.y3{bottom:920.455500px;}
.y2b{bottom:927.571500px;}
.y2a{bottom:945.504000px;}
.y29{bottom:963.436500px;}
.y2{bottom:972.403500px;}
.y28{bottom:981.370500px;}
.y1{bottom:999.303000px;}
.h3{height:40.348800px;}
.h2{height:44.831700px;}
.h4{height:50.211840px;}
.h1{height:60.254040px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:202.147500px;}
.x9{left:220.369500px;}
.x8{left:224.563500px;}
.x1{left:242.338500px;}
.x6{left:244.666500px;}
.x5{left:246.475500px;}
.x3{left:256.224000px;}
.x4{left:323.998500px;}
.x2{left:369.216000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000891pt;}
.ws2d{word-spacing:-14.760588pt;}
.ws4{word-spacing:-13.652838pt;}
.ws11{word-spacing:-2.699200pt;}
.ws14{word-spacing:-1.211452pt;}
.ws36{word-spacing:-0.789043pt;}
.ws13{word-spacing:-0.414444pt;}
.ws29{word-spacing:-0.063761pt;}
.ws24{word-spacing:0.000000pt;}
.ws16{word-spacing:0.063761pt;}
.ws30{word-spacing:0.167373pt;}
.ws20{word-spacing:0.595099pt;}
.wsb{word-spacing:0.693402pt;}
.ws33{word-spacing:0.980326pt;}
.ws21{word-spacing:1.073304pt;}
.ws1a{word-spacing:1.126438pt;}
.wsc{word-spacing:1.171610pt;}
.ws2f{word-spacing:1.601997pt;}
.ws28{word-spacing:1.764044pt;}
.ws2b{word-spacing:1.817178pt;}
.ws1e{word-spacing:1.870312pt;}
.ws12{word-spacing:2.189115pt;}
.ws2{word-spacing:2.701875pt;}
.ws5{word-spacing:2.718198pt;}
.ws3{word-spacing:2.722613pt;}
.ws31{word-spacing:2.749696pt;}
.ws1{word-spacing:2.932989pt;}
.ws35{word-spacing:2.940979pt;}
.ws17{word-spacing:2.986123pt;}
.ws2a{word-spacing:3.092391pt;}
.wsf{word-spacing:3.729997pt;}
.ws9{word-spacing:3.801754pt;}
.wsa{word-spacing:4.184320pt;}
.ws18{word-spacing:4.261336pt;}
.ws15{word-spacing:4.527005pt;}
.ws1b{word-spacing:4.686407pt;}
.ws26{word-spacing:4.898943pt;}
.ws1f{word-spacing:5.164612pt;}
.ws23{word-spacing:5.377147pt;}
.ws32{word-spacing:5.379840pt;}
.ws2c{word-spacing:5.802218pt;}
.ws1d{word-spacing:6.174155pt;}
.ws27{word-spacing:6.492959pt;}
.ws7{word-spacing:6.527539pt;}
.ws39{word-spacing:6.623181pt;}
.ws2e{word-spacing:6.718822pt;}
.ws34{word-spacing:7.053568pt;}
.ws10{word-spacing:7.236833pt;}
.ws1c{word-spacing:7.343100pt;}
.ws8{word-spacing:7.436134pt;}
.ws22{word-spacing:8.140108pt;}
.ws25{word-spacing:8.405778pt;}
.wse{word-spacing:8.937116pt;}
.ws19{word-spacing:9.255920pt;}
.ws3a{word-spacing:9.492429pt;}
.ws37{word-spacing:14.657075pt;}
.ws38{word-spacing:23.169178pt;}
.wsd{word-spacing:23.846639pt;}
.ws6{word-spacing:26.515067pt;}
.ws0{word-spacing:28.615887pt;}
._4{margin-left:-25.079185pt;}
._b{margin-left:-22.895329pt;}
._5{margin-left:-19.325134pt;}
._0{margin-left:-7.192228pt;}
._a{margin-left:-5.658784pt;}
._1{margin-left:-4.410111pt;}
._7{margin-left:-2.869229pt;}
._3{margin-left:-1.487748pt;}
._2{width:1.594016pt;}
._6{width:2.922363pt;}
._8{width:8.767088pt;}
._9{width:26.540544pt;}
.fs2{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:172.104000pt;}
.y26{bottom:188.044000pt;}
.y25{bottom:203.984000pt;}
.y24{bottom:219.924000pt;}
.y23{bottom:235.864000pt;}
.y22{bottom:251.804000pt;}
.y21{bottom:267.745333pt;}
.y20{bottom:283.685333pt;}
.y1f{bottom:299.625333pt;}
.y48{bottom:303.794667pt;}
.y1e{bottom:315.565333pt;}
.y47{bottom:318.405333pt;}
.y1d{bottom:331.505333pt;}
.y46{bottom:333.017333pt;}
.y1c{bottom:347.445333pt;}
.y45{bottom:347.629333pt;}
.y44{bottom:362.241333pt;}
.y1b{bottom:363.386667pt;}
.y43{bottom:376.853333pt;}
.y1a{bottom:379.326667pt;}
.y42{bottom:391.465333pt;}
.y19{bottom:395.266667pt;}
.y41{bottom:406.077333pt;}
.y18{bottom:411.206667pt;}
.y40{bottom:420.689333pt;}
.y17{bottom:427.146667pt;}
.y3f{bottom:435.301333pt;}
.y16{bottom:443.086667pt;}
.y3e{bottom:449.913333pt;}
.y15{bottom:459.028000pt;}
.y3d{bottom:464.524000pt;}
.y14{bottom:474.968000pt;}
.y3c{bottom:479.136000pt;}
.y13{bottom:490.908000pt;}
.y3b{bottom:493.748000pt;}
.y12{bottom:506.848000pt;}
.y3a{bottom:508.360000pt;}
.y11{bottom:522.788000pt;}
.y39{bottom:522.972000pt;}
.y38{bottom:537.584000pt;}
.y10{bottom:538.729333pt;}
.y37{bottom:552.196000pt;}
.yf{bottom:554.669333pt;}
.y36{bottom:566.808000pt;}
.ye{bottom:570.609333pt;}
.y35{bottom:581.420000pt;}
.yd{bottom:599.700000pt;}
.y34{bottom:611.972000pt;}
.yc{bottom:641.322667pt;}
.y33{bottom:654.478667pt;}
.yb{bottom:655.934667pt;}
.y32{bottom:670.418667pt;}
.ya{bottom:670.545333pt;}
.y9{bottom:685.157333pt;}
.y31{bottom:686.360000pt;}
.y8{bottom:699.769333pt;}
.y30{bottom:702.300000pt;}
.y7{bottom:714.381333pt;}
.y6{bottom:728.993333pt;}
.y2f{bottom:734.180000pt;}
.y5{bottom:775.729333pt;}
.y2e{bottom:776.688000pt;}
.y4{bottom:790.341333pt;}
.y2d{bottom:792.628000pt;}
.y2c{bottom:808.568000pt;}
.y3{bottom:818.182667pt;}
.y2b{bottom:824.508000pt;}
.y2a{bottom:840.448000pt;}
.y29{bottom:856.388000pt;}
.y2{bottom:864.358667pt;}
.y28{bottom:872.329333pt;}
.y1{bottom:888.269333pt;}
.h3{height:35.865600pt;}
.h2{height:39.850400pt;}
.h4{height:44.632747pt;}
.h1{height:53.559147pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:179.686667pt;}
.x9{left:195.884000pt;}
.x8{left:199.612000pt;}
.x1{left:215.412000pt;}
.x6{left:217.481333pt;}
.x5{left:219.089333pt;}
.x3{left:227.754667pt;}
.x4{left:287.998667pt;}
.x2{left:328.192000pt;}
}




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