
    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_0c63c53876c9ace8bef7735d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_0d7ec2fd3f08a25490a985e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011719;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_bba19970f62918803a245115.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973633;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_6a0ad0d7a155f606fdbec80e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.977061;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_1e9c8c20205132ba3b6169fe.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963379;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.752060px;}
.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;}
}
.ws4{word-spacing:-40.116596px;}
.ws6{word-spacing:-37.673999px;}
.ws1{word-spacing:-33.120001px;}
.ws3{word-spacing:-23.808002px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:323.733025px;}
.ws2{word-spacing:582.933169px;}
._2{margin-left:-11.664000px;}
._5{margin-left:-9.408001px;}
._3{margin-left:-3.735660px;}
._0{margin-left:-1.728000px;}
._1{width:1.872000px;}
._7{width:420.927754px;}
._9{width:432.036423px;}
._4{width:485.759387px;}
._b{width:494.638634px;}
._a{width:605.037466px;}
._8{width:1110.583010px;}
._6{width:2117.025318px;}
.fc6{color:rgb(0,151,167);}
.fc5{color:rgb(207,65,0);}
.fc2{color:transparent;}
.fc7{color:rgb(77,77,77);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(153,153,153);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(89,89,89);}
.fs7{font-size:66.000004px;}
.fs5{font-size:72.150001px;}
.fs3{font-size:78.000005px;}
.fsb{font-size:84.000000px;}
.fs0{font-size:96.000006px;}
.fse{font-size:102.000000px;}
.fsa{font-size:108.000003px;}
.fs4{font-size:144.000005px;}
.fs6{font-size:162.420008px;}
.fs10{font-size:163.799996px;}
.fs8{font-size:174.419983px;}
.fs9{font-size:175.800003px;}
.fsd{font-size:181.799997px;}
.fsc{font-size:193.800003px;}
.fsf{font-size:199.799997px;}
.fs2{font-size:258.000002px;}
.fs1{font-size:317.999998px;}
.y0{bottom:0.000000px;}
.y23{bottom:18.215862px;}
.y11{bottom:28.034975px;}
.y4b{bottom:29.372555px;}
.y2d{bottom:34.642044px;}
.y33{bottom:47.017078px;}
.y1c{bottom:47.501301px;}
.y22{bottom:50.840863px;}
.y48{bottom:64.152989px;}
.y2c{bottom:67.267049px;}
.y44{bottom:70.017164px;}
.y32{bottom:79.642079px;}
.y1b{bottom:80.126306px;}
.y21{bottom:83.465864px;}
.y47{bottom:93.402992px;}
.y43{bottom:99.267165px;}
.y2b{bottom:99.892051px;}
.y31{bottom:112.267085px;}
.y1a{bottom:112.751307px;}
.y20{bottom:116.090870px;}
.y42{bottom:128.517166px;}
.y2a{bottom:132.517047px;}
.y30{bottom:144.892086px;}
.y19{bottom:145.376304px;}
.y1f{bottom:148.715871px;}
.y41{bottom:157.767167px;}
.y46{bottom:158.644104px;}
.y29{bottom:165.142048px;}
.ye{bottom:166.124117px;}
.y2f{bottom:177.517082px;}
.y18{bottom:178.001305px;}
.y1e{bottom:181.340867px;}
.y40{bottom:187.017170px;}
.y45{bottom:187.894107px;}
.y2e{bottom:210.142083px;}
.y1d{bottom:213.965868px;}
.y6{bottom:233.306802px;}
.yc{bottom:251.311032px;}
.ya{bottom:273.716195px;}
.y15{bottom:310.119840px;}
.y4{bottom:340.898902px;}
.y9{bottom:358.900602px;}
.yd{bottom:374.358813px;}
.y17{bottom:406.820192px;}
.y28{bottom:430.334875px;}
.y16{bottom:436.070195px;}
.y4a{bottom:439.368536px;}
.y5{bottom:441.078457px;}
.y3f{bottom:445.926611px;}
.y1{bottom:448.857078px;}
.yb{bottom:461.101399px;}
.y27{bottom:462.959881px;}
.y49{bottom:468.618539px;}
.y3e{bottom:470.738599px;}
.y7{bottom:480.546912px;}
.y26{bottom:495.584882px;}
.y3d{bottom:499.988602px;}
.y3c{bottom:517.759776px;}
.y2{bottom:522.818991px;}
.y25{bottom:528.209878px;}
.y3b{bottom:547.009777px;}
.y3{bottom:548.670558px;}
.y24{bottom:560.834880px;}
.y8{bottom:568.690980px;}
.y3a{bottom:576.259780px;}
.y4d{bottom:581.131624px;}
.y37{bottom:585.596268px;}
.y14{bottom:594.091619px;}
.y35{bottom:594.836824px;}
.y38{bottom:641.071618px;}
.y34{bottom:642.511617px;}
.y4c{bottom:642.896927px;}
.y13{bottom:646.831617px;}
.y12{bottom:647.162820px;}
.y39{bottom:649.710641px;}
.y10{bottom:650.041836px;}
.yf{bottom:650.042815px;}
.y36{bottom:653.245952px;}
.h8{height:50.274126px;}
.h6{height:54.852320px;}
.h4{height:59.299809px;}
.hc{height:63.861328px;}
.h1{height:72.000005px;}
.hd{height:72.984380px;}
.h10{height:77.545899px;}
.hb{height:81.000003px;}
.h13{height:81.613387px;}
.h14{height:82.107425px;}
.h5{height:113.695316px;}
.h7{height:128.238844px;}
.h12{height:129.328415px;}
.h9{height:137.713434px;}
.ha{height:138.803029px;}
.hf{height:143.540330px;}
.he{height:153.014944px;}
.h11{height:157.752244px;}
.h3{height:203.704103px;}
.h2{height:251.077147px;}
.h0{height:810.000000px;}
.w0{width:1438.500000px;}
.x0{left:0.000000px;}
.x3{left:49.126561px;}
.x2{left:54.000002px;}
.x1d{left:57.672061px;}
.x7{left:62.574336px;}
.x15{left:75.617251px;}
.x11{left:103.047559px;}
.x5{left:110.134922px;}
.xa{left:142.439472px;}
.x9{left:163.769240px;}
.x13{left:179.971877px;}
.x17{left:199.508688px;}
.x12{left:261.013301px;}
.xb{left:371.660243px;}
.x14{left:430.585630px;}
.xd{left:487.309482px;}
.xc{left:609.265819px;}
.x16{left:619.627002px;}
.x18{left:690.324716px;}
.x4{left:749.012199px;}
.x1{left:751.139349px;}
.x8{left:797.549696px;}
.x1e{left:800.267718px;}
.x6{left:810.020760px;}
.xe{left:817.501414px;}
.x1b{left:834.285368px;}
.xf{left:865.700645px;}
.x19{left:942.617168px;}
.x1c{left:1046.590773px;}
.x1a{left:1061.613259px;}
.x10{left:1120.370211px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.779609pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-35.659197pt;}
.ws6{word-spacing:-33.487999pt;}
.ws1{word-spacing:-29.440001pt;}
.ws3{word-spacing:-21.162668pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:287.762689pt;}
.ws2{word-spacing:518.162817pt;}
._2{margin-left:-10.368000pt;}
._5{margin-left:-8.362667pt;}
._3{margin-left:-3.320587pt;}
._0{margin-left:-1.536000pt;}
._1{width:1.664000pt;}
._7{width:374.158004pt;}
._9{width:384.032376pt;}
._4{width:431.786122pt;}
._b{width:439.678786pt;}
._a{width:537.811081pt;}
._8{width:987.184897pt;}
._6{width:1881.800283pt;}
.fs7{font-size:58.666670pt;}
.fs5{font-size:64.133334pt;}
.fs3{font-size:69.333338pt;}
.fsb{font-size:74.666666pt;}
.fs0{font-size:85.333339pt;}
.fse{font-size:90.666667pt;}
.fsa{font-size:96.000003pt;}
.fs4{font-size:128.000004pt;}
.fs6{font-size:144.373341pt;}
.fs10{font-size:145.599997pt;}
.fs8{font-size:155.039985pt;}
.fs9{font-size:156.266669pt;}
.fsd{font-size:161.599997pt;}
.fsc{font-size:172.266670pt;}
.fsf{font-size:177.599998pt;}
.fs2{font-size:229.333335pt;}
.fs1{font-size:282.666665pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:16.191877pt;}
.y11{bottom:24.919978pt;}
.y4b{bottom:26.108938pt;}
.y2d{bottom:30.792928pt;}
.y33{bottom:41.792958pt;}
.y1c{bottom:42.223378pt;}
.y22{bottom:45.191878pt;}
.y48{bottom:57.024879pt;}
.y2c{bottom:59.792933pt;}
.y44{bottom:62.237479pt;}
.y32{bottom:70.792959pt;}
.y1b{bottom:71.223383pt;}
.y21{bottom:74.191879pt;}
.y47{bottom:83.024882pt;}
.y43{bottom:88.237480pt;}
.y2b{bottom:88.792934pt;}
.y31{bottom:99.792964pt;}
.y1a{bottom:100.223384pt;}
.y20{bottom:103.191884pt;}
.y42{bottom:114.237481pt;}
.y2a{bottom:117.792931pt;}
.y30{bottom:128.792965pt;}
.y19{bottom:129.223381pt;}
.y1f{bottom:132.191885pt;}
.y41{bottom:140.237481pt;}
.y46{bottom:141.016981pt;}
.y29{bottom:146.792932pt;}
.ye{bottom:147.665882pt;}
.y2f{bottom:157.792962pt;}
.y18{bottom:158.223382pt;}
.y1e{bottom:161.191882pt;}
.y40{bottom:166.237484pt;}
.y45{bottom:167.016984pt;}
.y2e{bottom:186.792963pt;}
.y1d{bottom:190.191883pt;}
.y6{bottom:207.383824pt;}
.yc{bottom:223.387584pt;}
.ya{bottom:243.303285pt;}
.y15{bottom:275.662080pt;}
.y4{bottom:303.021247pt;}
.y9{bottom:319.022757pt;}
.yd{bottom:332.763390pt;}
.y17{bottom:361.617949pt;}
.y28{bottom:382.519889pt;}
.y16{bottom:387.617951pt;}
.y4a{bottom:390.549809pt;}
.y5{bottom:392.069740pt;}
.y3f{bottom:396.379210pt;}
.y1{bottom:398.984070pt;}
.yb{bottom:409.867910pt;}
.y27{bottom:411.519894pt;}
.y49{bottom:416.549812pt;}
.y3e{bottom:418.434310pt;}
.y7{bottom:427.152811pt;}
.y26{bottom:440.519895pt;}
.y3d{bottom:444.434313pt;}
.y3c{bottom:460.230912pt;}
.y2{bottom:464.727992pt;}
.y25{bottom:469.519892pt;}
.y3b{bottom:486.230913pt;}
.y3{bottom:487.707163pt;}
.y24{bottom:498.519893pt;}
.y8{bottom:505.503093pt;}
.y3a{bottom:512.230915pt;}
.y4d{bottom:516.561443pt;}
.y37{bottom:520.530016pt;}
.y14{bottom:528.081439pt;}
.y35{bottom:528.743844pt;}
.y38{bottom:569.841438pt;}
.y34{bottom:571.121437pt;}
.y4c{bottom:571.463935pt;}
.y13{bottom:574.961437pt;}
.y12{bottom:575.255840pt;}
.y39{bottom:577.520569pt;}
.y10{bottom:577.814965pt;}
.yf{bottom:577.815835pt;}
.y36{bottom:580.663069pt;}
.h8{height:44.688112pt;}
.h6{height:48.757618pt;}
.h4{height:52.710941pt;}
.hc{height:56.765625pt;}
.h1{height:64.000004pt;}
.hd{height:64.875004pt;}
.h10{height:68.929688pt;}
.hb{height:72.000002pt;}
.h13{height:72.545233pt;}
.h14{height:72.984377pt;}
.h5{height:101.062503pt;}
.h7{height:113.990084pt;}
.h12{height:114.958591pt;}
.h9{height:122.411941pt;}
.ha{height:123.380471pt;}
.hf{height:127.591404pt;}
.he{height:136.013283pt;}
.h11{height:140.224217pt;}
.h3{height:181.070314pt;}
.h2{height:223.179686pt;}
.h0{height:720.000000pt;}
.w0{width:1278.666667pt;}
.x0{left:0.000000pt;}
.x3{left:43.668054pt;}
.x2{left:48.000002pt;}
.x1d{left:51.264055pt;}
.x7{left:55.621632pt;}
.x15{left:67.215334pt;}
.x11{left:91.597830pt;}
.x5{left:97.897708pt;}
.xa{left:126.612864pt;}
.x9{left:145.572658pt;}
.x13{left:159.975002pt;}
.x17{left:177.341056pt;}
.x12{left:232.011823pt;}
.xb{left:330.364661pt;}
.x14{left:382.742782pt;}
.xd{left:433.163984pt;}
.xc{left:541.569617pt;}
.x16{left:550.779558pt;}
.x18{left:613.621970pt;}
.x4{left:665.788621pt;}
.x1{left:667.679421pt;}
.x8{left:708.933063pt;}
.x1e{left:711.349083pt;}
.x6{left:720.018453pt;}
.xe{left:726.667923pt;}
.x1b{left:741.586994pt;}
.xf{left:769.511685pt;}
.x19{left:837.881927pt;}
.x1c{left:930.302910pt;}
.x1a{left:943.656230pt;}
.x10{left:995.884632pt;}
}




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