
    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_8132e9c071875801659ede99.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_e9d53d48389f49d2f0a55f68.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.114258;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;}
.ls2{letter-spacing:107.972030px;}
.ls1{letter-spacing:108.000426px;}
.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;}
}
.ws6{word-spacing:-29.916001px;}
.ws7{word-spacing:-23.268000px;}
.wsa{word-spacing:-16.620000px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:14.364000px;}
.ws3{word-spacing:60.372002px;}
.ws1{word-spacing:156.384005px;}
.ws2{word-spacing:162.216005px;}
.ws4{word-spacing:222.264007px;}
.ws8{word-spacing:556.989097px;}
.ws9{word-spacing:652.371882px;}
._2{margin-left:-10.560001px;}
._0{margin-left:-7.992000px;}
._6{margin-left:-6.660000px;}
._4{margin-left:-5.280000px;}
._1{margin-left:-3.552000px;}
._3{margin-left:-1.728000px;}
._5{width:1.458900px;}
._9{width:130.056604px;}
._d{width:220.241757px;}
._8{width:367.046162px;}
._c{width:368.352604px;}
._7{width:483.974161px;}
._b{width:561.605817px;}
._a{width:675.074160px;}
._e{width:802.838997px;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:60.000000px;}
.fs0{font-size:84.000000px;}
.fs5{font-size:96.000006px;}
.fs4{font-size:108.000003px;}
.fs6{font-size:114.000007px;}
.fs3{font-size:180.000006px;}
.fs1{font-size:216.000007px;}
.y0{bottom:0.000000px;}
.y69{bottom:14.142127px;}
.y1{bottom:36.772065px;}
.y4{bottom:41.141600px;}
.y68{bottom:53.543757px;}
.y12{bottom:103.969777px;}
.y67{bottom:121.474845px;}
.y3b{bottom:137.714941px;}
.y66{bottom:150.724846px;}
.y11{bottom:161.344824px;}
.y3a{bottom:162.464942px;}
.y65{bottom:179.974847px;}
.y59{bottom:180.907900px;}
.y43{bottom:184.061432px;}
.y39{bottom:187.214945px;}
.y54{bottom:199.513229px;}
.y1c{bottom:201.214781px;}
.y58{bottom:205.657901px;}
.y42{bottom:208.811433px;}
.y64{bottom:209.224848px;}
.y10{bottom:218.719849px;}
.y57{bottom:230.407879px;}
.y38{bottom:233.561434px;}
.y41{bottom:233.561436px;}
.y63{bottom:238.474849px;}
.y22{bottom:241.714827px;}
.y53{bottom:249.013231px;}
.yf{bottom:251.344850px;}
.y37{bottom:258.311435px;}
.y1b{bottom:261.964827px;}
.y62{bottom:267.724850px;}
.y52{bottom:273.763232px;}
.y21{bottom:278.839828px;}
.y40{bottom:279.907881px;}
.y36{bottom:283.061436px;}
.ye{bottom:283.969851px;}
.y61{bottom:296.974851px;}
.y51{bottom:298.513232px;}
.y1a{bottom:299.089829px;}
.y3f{bottom:304.657881px;}
.y35{bottom:307.811439px;}
.yd{bottom:316.594852px;}
.y50{bottom:323.263233px;}
.y60{bottom:328.339830px;}
.y3e{bottom:329.407882px;}
.y19{bottom:336.214830px;}
.y20{bottom:339.589852px;}
.y4f{bottom:348.013234px;}
.yc{bottom:349.219853px;}
.y3{bottom:353.165897px;}
.y34{bottom:354.157883px;}
.y5f{bottom:363.349853px;}
.y4e{bottom:372.763212px;}
.y18{bottom:373.339831px;}
.y33{bottom:378.907884px;}
.yb{bottom:381.844854px;}
.y5e{bottom:392.599854px;}
.y4d{bottom:397.513213px;}
.y1f{bottom:400.339854px;}
.y32{bottom:403.657884px;}
.y27{bottom:408.214832px;}
.y17{bottom:410.464832px;}
.ya{bottom:414.469855px;}
.y2{bottom:418.415899px;}
.y4c{bottom:422.263214px;}
.y5c{bottom:423.964833px;}
.y5d{bottom:423.964855px;}
.y3d{bottom:428.407885px;}
.y31{bottom:428.407888px;}
.y1e{bottom:437.464856px;}
.y26{bottom:445.339833px;}
.y4b{bottom:447.013215px;}
.y16{bottom:447.589833px;}
.y5a{bottom:450.004365px;}
.y56{bottom:453.157886px;}
.y3c{bottom:453.157888px;}
.y5b{bottom:461.089834px;}
.y4a{bottom:471.763215px;}
.y9{bottom:471.844834px;}
.y30{bottom:474.754366px;}
.y55{bottom:477.907889px;}
.y25{bottom:482.464835px;}
.y15{bottom:484.714835px;}
.y49{bottom:496.513216px;}
.y1d{bottom:498.214835px;}
.y2f{bottom:499.504366px;}
.y48{bottom:521.263217px;}
.y14{bottom:521.839836px;}
.y2e{bottom:524.254367px;}
.y8{bottom:529.219841px;}
.y24{bottom:543.214836px;}
.y47{bottom:546.013218px;}
.y2d{bottom:549.004368px;}
.y13{bottom:558.964837px;}
.y7{bottom:561.844842px;}
.y46{bottom:570.763219px;}
.y2c{bottom:573.754369px;}
.y23{bottom:581.149838px;}
.y45{bottom:595.513219px;}
.y2b{bottom:598.504372px;}
.y6{bottom:619.714839px;}
.y44{bottom:620.263222px;}
.y2a{bottom:644.850822px;}
.y29{bottom:669.600822px;}
.y28{bottom:694.350825px;}
.y5{bottom:756.675001px;}
.h3{height:53.613282px;}
.h1{height:75.058593px;}
.ha{height:75.919922px;}
.h7{height:85.781255px;}
.h6{height:86.765630px;}
.h8{height:96.503909px;}
.h5{height:97.611331px;}
.h9{height:103.034186px;}
.h4{height:162.685552px;}
.h2{height:195.222662px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x5{left:10.125000px;}
.xd{left:28.677167px;}
.x6{left:46.939963px;}
.x1c{left:57.631857px;}
.x1d{left:100.939964px;}
.x1f{left:115.262959px;}
.x7{left:154.939966px;}
.x2{left:168.842306px;}
.x19{left:243.608273px;}
.x13{left:245.899605px;}
.x11{left:251.441728px;}
.x16{left:252.771755px;}
.x12{left:263.099037px;}
.x15{left:273.186138px;}
.xe{left:280.269706px;}
.x1{left:288.995094px;}
.x14{left:290.674665px;}
.x20{left:297.968511px;}
.x9{left:309.450433px;}
.x8{left:326.938960px;}
.x3{left:410.879916px;}
.x1a{left:451.311022px;}
.x17{left:475.362499px;}
.xf{left:487.178161px;}
.xa{left:493.296069px;}
.x18{left:495.787130px;}
.xb{left:513.720703px;}
.x1b{left:654.507865px;}
.x1e{left:655.621139px;}
.x4{left:662.846899px;}
.x10{left:729.608311px;}
.xc{left:735.143583px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:95.975138pt;}
.ls1{letter-spacing:96.000379pt;}
.ws6{word-spacing:-26.592001pt;}
.ws7{word-spacing:-20.682667pt;}
.wsa{word-spacing:-14.773333pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:12.768000pt;}
.ws3{word-spacing:53.664002pt;}
.ws1{word-spacing:139.008004pt;}
.ws2{word-spacing:144.192005pt;}
.ws4{word-spacing:197.568006pt;}
.ws8{word-spacing:495.101420pt;}
.ws9{word-spacing:579.886117pt;}
._2{margin-left:-9.386667pt;}
._0{margin-left:-7.104000pt;}
._6{margin-left:-5.920000pt;}
._4{margin-left:-4.693334pt;}
._1{margin-left:-3.157334pt;}
._3{margin-left:-1.536000pt;}
._5{width:1.296800pt;}
._9{width:115.605870pt;}
._d{width:195.770451pt;}
._8{width:326.263255pt;}
._c{width:327.424537pt;}
._7{width:430.199254pt;}
._b{width:499.205171pt;}
._a{width:600.065920pt;}
._e{width:713.634664pt;}
.fs2{font-size:53.333334pt;}
.fs0{font-size:74.666666pt;}
.fs5{font-size:85.333339pt;}
.fs4{font-size:96.000003pt;}
.fs6{font-size:101.333339pt;}
.fs3{font-size:160.000005pt;}
.fs1{font-size:192.000006pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:12.570779pt;}
.y1{bottom:32.686280pt;}
.y4{bottom:36.570311pt;}
.y68{bottom:47.594450pt;}
.y12{bottom:92.417580pt;}
.y67{bottom:107.977640pt;}
.y3b{bottom:122.413281pt;}
.y66{bottom:133.977641pt;}
.y11{bottom:143.417622pt;}
.y3a{bottom:144.413282pt;}
.y65{bottom:159.977642pt;}
.y59{bottom:160.807022pt;}
.y43{bottom:163.610162pt;}
.y39{bottom:166.413284pt;}
.y54{bottom:177.345093pt;}
.y1c{bottom:178.857583pt;}
.y58{bottom:182.807023pt;}
.y42{bottom:185.610163pt;}
.y64{bottom:185.977643pt;}
.y10{bottom:194.417643pt;}
.y57{bottom:204.807004pt;}
.y38{bottom:207.610164pt;}
.y41{bottom:207.610166pt;}
.y63{bottom:211.977644pt;}
.y22{bottom:214.857624pt;}
.y53{bottom:221.345094pt;}
.yf{bottom:223.417644pt;}
.y37{bottom:229.610164pt;}
.y1b{bottom:232.857624pt;}
.y62{bottom:237.977645pt;}
.y52{bottom:243.345095pt;}
.y21{bottom:247.857625pt;}
.y40{bottom:248.807005pt;}
.y36{bottom:251.610165pt;}
.ye{bottom:252.417645pt;}
.y61{bottom:263.977645pt;}
.y51{bottom:265.345095pt;}
.y1a{bottom:265.857625pt;}
.y3f{bottom:270.807006pt;}
.y35{bottom:273.610168pt;}
.yd{bottom:281.417646pt;}
.y50{bottom:287.345096pt;}
.y60{bottom:291.857626pt;}
.y3e{bottom:292.807006pt;}
.y19{bottom:298.857627pt;}
.y20{bottom:301.857647pt;}
.y4f{bottom:309.345097pt;}
.yc{bottom:310.417647pt;}
.y3{bottom:313.925242pt;}
.y34{bottom:314.807007pt;}
.y5f{bottom:322.977647pt;}
.y4e{bottom:331.345078pt;}
.y18{bottom:331.857628pt;}
.y33{bottom:336.807008pt;}
.yb{bottom:339.417648pt;}
.y5e{bottom:348.977648pt;}
.y4d{bottom:353.345078pt;}
.y1f{bottom:355.857648pt;}
.y32{bottom:358.807008pt;}
.y27{bottom:362.857629pt;}
.y17{bottom:364.857629pt;}
.ya{bottom:368.417649pt;}
.y2{bottom:371.925244pt;}
.y4c{bottom:375.345079pt;}
.y5c{bottom:376.857629pt;}
.y5d{bottom:376.857649pt;}
.y3d{bottom:380.807009pt;}
.y31{bottom:380.807011pt;}
.y1e{bottom:388.857649pt;}
.y26{bottom:395.857630pt;}
.y4b{bottom:397.345080pt;}
.y16{bottom:397.857630pt;}
.y5a{bottom:400.003880pt;}
.y56{bottom:402.807010pt;}
.y3c{bottom:402.807012pt;}
.y5b{bottom:409.857630pt;}
.y4a{bottom:419.345080pt;}
.y9{bottom:419.417630pt;}
.y30{bottom:422.003880pt;}
.y55{bottom:424.807013pt;}
.y25{bottom:428.857631pt;}
.y15{bottom:430.857631pt;}
.y49{bottom:441.345081pt;}
.y1d{bottom:442.857631pt;}
.y2f{bottom:444.003881pt;}
.y48{bottom:463.345082pt;}
.y14{bottom:463.857632pt;}
.y2e{bottom:466.003882pt;}
.y8{bottom:470.417636pt;}
.y24{bottom:482.857632pt;}
.y47{bottom:485.345082pt;}
.y2d{bottom:488.003883pt;}
.y13{bottom:496.857633pt;}
.y7{bottom:499.417637pt;}
.y46{bottom:507.345083pt;}
.y2c{bottom:510.003883pt;}
.y23{bottom:516.577633pt;}
.y45{bottom:529.345084pt;}
.y2b{bottom:532.003886pt;}
.y6{bottom:550.857635pt;}
.y44{bottom:551.345087pt;}
.y2a{bottom:573.200730pt;}
.y29{bottom:595.200731pt;}
.y28{bottom:617.200734pt;}
.y5{bottom:672.600000pt;}
.h3{height:47.656250pt;}
.h1{height:66.718750pt;}
.ha{height:67.484375pt;}
.h7{height:76.250005pt;}
.h6{height:77.125005pt;}
.h8{height:85.781253pt;}
.h5{height:86.765628pt;}
.h9{height:91.585943pt;}
.h4{height:144.609380pt;}
.h2{height:173.531256pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.000000pt;}
.xd{left:25.490815pt;}
.x6{left:41.724411pt;}
.x1c{left:51.228318pt;}
.x1d{left:89.724413pt;}
.x1f{left:102.455963pt;}
.x7{left:137.724414pt;}
.x2{left:150.082050pt;}
.x19{left:216.540687pt;}
.x13{left:218.577427pt;}
.x11{left:223.503758pt;}
.x16{left:224.686004pt;}
.x12{left:233.865810pt;}
.x15{left:242.832123pt;}
.xe{left:249.128628pt;}
.x1{left:256.884528pt;}
.x14{left:258.377480pt;}
.x20{left:264.860898pt;}
.x9{left:275.067052pt;}
.x8{left:290.612409pt;}
.x3{left:365.226592pt;}
.x1a{left:401.165353pt;}
.x17{left:422.544444pt;}
.xf{left:433.047254pt;}
.xa{left:438.485395pt;}
.x18{left:440.699671pt;}
.xb{left:456.640625pt;}
.x1b{left:581.784769pt;}
.x1e{left:582.774346pt;}
.x4{left:589.197244pt;}
.x10{left:648.540721pt;}
.xc{left:653.460963pt;}
}




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