
    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_99d91e8be0c5a82052e331e0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.206000;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_d119af1b15299cec4bf15b44.woff')format("woff");}.ff2{font-family:ff2;line-height:0.755000;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_ac31402be35fed313f18fe29.woff')format("woff");}.ff3{font-family:ff3;line-height:1.212000;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_6ccb2abd1bc6249553abd85c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_1754265d92027a731a2ac52a.woff')format("woff");}.ff5{font-family:ff5;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ecb3562781fd4a28c750180d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.076000;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:ffb;src:url('chunks/assets/font_bd45ea6c23419d2b9f967167.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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.031349px;}
.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;}
}
.ws1{word-spacing:-14.478325px;}
.ws0{word-spacing:-0.101674px;}
.ws2{word-spacing:-0.054226px;}
.ws7{word-spacing:0.000000px;}
.ws4{word-spacing:472.126856px;}
.ws5{word-spacing:545.117917px;}
.ws6{word-spacing:557.001492px;}
.ws3{word-spacing:611.009506px;}
._1{width:303.697038px;}
._0{width:328.760436px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,37,41);}
.fs4{font-size:35.999997px;}
.fs3{font-size:47.447695px;}
.fs0{font-size:54.225937px;}
.fs1{font-size:67.782421px;}
.fs2{font-size:101.673632px;}
.y0{bottom:0.000000px;}
.y38{bottom:1.899023px;}
.y37{bottom:13.556533px;}
.y36{bottom:35.585820px;}
.y5e{bottom:37.280150px;}
.y5f{bottom:40.618480px;}
.y1{bottom:40.618510px;}
.y35{bottom:56.767827px;}
.y5d{bottom:58.462156px;}
.y34{bottom:78.797114px;}
.y5c{bottom:80.491443px;}
.y33{bottom:100.826401px;}
.y5b{bottom:101.673450px;}
.y32{bottom:122.008407px;}
.y5a{bottom:123.702737px;}
.y31{bottom:144.037694px;}
.y59{bottom:145.732024px;}
.y30{bottom:165.219701px;}
.y58{bottom:166.914031px;}
.y2f{bottom:187.248988px;}
.y57{bottom:188.943318px;}
.y2e{bottom:209.278275px;}
.y56{bottom:210.125324px;}
.y62{bottom:215.209267px;}
.y2d{bottom:230.460282px;}
.y55{bottom:232.154611px;}
.y61{bottom:250.795038px;}
.y2c{bottom:252.489569px;}
.y54{bottom:254.183898px;}
.y2b{bottom:273.671575px;}
.y53{bottom:275.365905px;}
.y2a{bottom:295.700862px;}
.y52{bottom:297.395192px;}
.y60{bottom:310.951937px;}
.y29{bottom:317.730149px;}
.y51{bottom:318.577199px;}
.y28{bottom:338.912156px;}
.y50{bottom:340.606486px;}
.y27{bottom:360.941443px;}
.y4f{bottom:362.635773px;}
.y26{bottom:382.123450px;}
.y4e{bottom:383.817779px;}
.y39{bottom:388.003650px;}
.y25{bottom:404.152737px;}
.y4d{bottom:405.847066px;}
.y24{bottom:426.182024px;}
.y4c{bottom:427.029073px;}
.y23{bottom:447.364030px;}
.y4b{bottom:449.058360px;}
.y22{bottom:469.393317px;}
.y4a{bottom:470.240367px;}
.y21{bottom:490.575324px;}
.y49{bottom:492.269654px;}
.y20{bottom:512.604611px;}
.y48{bottom:514.298941px;}
.y1f{bottom:533.786618px;}
.y47{bottom:535.480948px;}
.y1e{bottom:555.815905px;}
.y46{bottom:557.510234px;}
.y1d{bottom:577.845192px;}
.y45{bottom:578.692241px;}
.y1c{bottom:599.027198px;}
.y44{bottom:600.721528px;}
.y1b{bottom:621.056485px;}
.y43{bottom:622.750815px;}
.y1a{bottom:642.238492px;}
.y42{bottom:643.932822px;}
.y19{bottom:664.267779px;}
.y41{bottom:665.962109px;}
.y18{bottom:686.297066px;}
.y40{bottom:687.144116px;}
.y17{bottom:707.479073px;}
.y3f{bottom:709.173403px;}
.y16{bottom:729.508360px;}
.y3e{bottom:731.202690px;}
.y15{bottom:750.690367px;}
.y3d{bottom:752.384696px;}
.y14{bottom:772.719654px;}
.y3c{bottom:774.413983px;}
.y13{bottom:794.748941px;}
.y3b{bottom:795.595990px;}
.y3a{bottom:817.625277px;}
.y12{bottom:854.905840px;}
.y11{bottom:908.284497px;}
.y9{bottom:923.535541px;}
.yb{bottom:929.466503px;}
.y10{bottom:934.550185px;}
.y8{bottom:944.717548px;}
.y5{bottom:955.732192px;}
.ya{bottom:956.579472px;}
.yf{bottom:960.815873px;}
.y4{bottom:982.845160px;}
.ye{bottom:987.081562px;}
.y7{bottom:1007.416288px;}
.yd{bottom:1013.347250px;}
.y6{bottom:1029.445575px;}
.yc{bottom:1039.612938px;}
.y3{bottom:1081.129671px;}
.y2{bottom:1151.453934px;}
.ha{height:37.546872px;}
.h7{height:40.289871px;}
.hd{height:43.434976px;}
.h8{height:44.316147px;}
.h3{height:50.647025px;}
.h6{height:51.080833px;}
.hc{height:51.514640px;}
.h4{height:63.308782px;}
.h5{height:75.543509px;}
.hb{height:832.029026px;}
.h9{height:840.502086px;}
.h2{height:1180.261463px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:774.414170px;}
.w3{width:774.414175px;}
.w2{width:809.999894px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:12.709204px;}
.x9{left:15.251045px;}
.xb{left:16.945614px;}
.x17{left:30.502090px;}
.x1{left:41.999997px;}
.xa{left:59.792874px;}
.x5{left:115.150684px;}
.x4{left:132.122767px;}
.x6{left:274.161365px;}
.xf{left:276.619794px;}
.x10{left:295.233483px;}
.x15{left:348.265551px;}
.x16{left:366.879240px;}
.x7{left:428.008923px;}
.x11{left:429.834299px;}
.x12{left:448.447987px;}
.x8{left:556.160064px;}
.xd{left:671.968698px;}
.x2{left:679.651163px;}
.xe{left:690.586377px;}
.x13{left:699.196478px;}
.x14{left:717.818499px;}
.xc{left:803.885214px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.027866pt;}
.ws1{word-spacing:-12.869622pt;}
.ws0{word-spacing:-0.090377pt;}
.ws2{word-spacing:-0.048201pt;}
.ws7{word-spacing:0.000000pt;}
.ws4{word-spacing:419.668316pt;}
.ws5{word-spacing:484.549259pt;}
.ws6{word-spacing:495.112437pt;}
.ws3{word-spacing:543.119561pt;}
._1{width:269.952923pt;}
._0{width:292.231499pt;}
.fs4{font-size:31.999997pt;}
.fs3{font-size:42.175729pt;}
.fs0{font-size:48.200833pt;}
.fs1{font-size:60.251041pt;}
.fs2{font-size:90.376562pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:1.688020pt;}
.y37{bottom:12.050251pt;}
.y36{bottom:31.631840pt;}
.y5e{bottom:33.137911pt;}
.y5f{bottom:36.105315pt;}
.y1{bottom:36.105342pt;}
.y35{bottom:50.460290pt;}
.y5d{bottom:51.966361pt;}
.y34{bottom:70.041879pt;}
.y5c{bottom:71.547950pt;}
.y33{bottom:89.623467pt;}
.y5b{bottom:90.376400pt;}
.y32{bottom:108.451918pt;}
.y5a{bottom:109.957988pt;}
.y31{bottom:128.033506pt;}
.y59{bottom:129.539577pt;}
.y30{bottom:146.861956pt;}
.y58{bottom:148.368027pt;}
.y2f{bottom:166.443545pt;}
.y57{bottom:167.949616pt;}
.y2e{bottom:186.025133pt;}
.y56{bottom:186.778066pt;}
.y62{bottom:191.297126pt;}
.y2d{bottom:204.853584pt;}
.y55{bottom:206.359655pt;}
.y61{bottom:222.928923pt;}
.y2c{bottom:224.435172pt;}
.y54{bottom:225.941243pt;}
.y2b{bottom:243.263623pt;}
.y53{bottom:244.769693pt;}
.y2a{bottom:262.845211pt;}
.y52{bottom:264.351282pt;}
.y60{bottom:276.401722pt;}
.y29{bottom:282.426799pt;}
.y51{bottom:283.179732pt;}
.y28{bottom:301.255250pt;}
.y50{bottom:302.761321pt;}
.y27{bottom:320.836838pt;}
.y4f{bottom:322.342909pt;}
.y26{bottom:339.665289pt;}
.y4e{bottom:341.171359pt;}
.y39{bottom:344.892134pt;}
.y25{bottom:359.246877pt;}
.y4d{bottom:360.752948pt;}
.y24{bottom:378.828465pt;}
.y4c{bottom:379.581398pt;}
.y23{bottom:397.656916pt;}
.y4b{bottom:399.162987pt;}
.y22{bottom:417.238504pt;}
.y4a{bottom:417.991437pt;}
.y21{bottom:436.066955pt;}
.y49{bottom:437.573026pt;}
.y20{bottom:455.648543pt;}
.y48{bottom:457.154614pt;}
.y1f{bottom:474.476994pt;}
.y47{bottom:475.983064pt;}
.y1e{bottom:494.058582pt;}
.y46{bottom:495.564653pt;}
.y1d{bottom:513.640170pt;}
.y45{bottom:514.393103pt;}
.y1c{bottom:532.468621pt;}
.y44{bottom:533.974692pt;}
.y1b{bottom:552.050209pt;}
.y43{bottom:553.556280pt;}
.y1a{bottom:570.878660pt;}
.y42{bottom:572.384731pt;}
.y19{bottom:590.460248pt;}
.y41{bottom:591.966319pt;}
.y18{bottom:610.041837pt;}
.y40{bottom:610.794769pt;}
.y17{bottom:628.870287pt;}
.y3f{bottom:630.376358pt;}
.y16{bottom:648.451875pt;}
.y3e{bottom:649.957946pt;}
.y15{bottom:667.280326pt;}
.y3d{bottom:668.786397pt;}
.y14{bottom:686.861914pt;}
.y3c{bottom:688.367985pt;}
.y13{bottom:706.443503pt;}
.y3b{bottom:707.196436pt;}
.y3a{bottom:726.778024pt;}
.y12{bottom:759.916302pt;}
.y11{bottom:807.363997pt;}
.y9{bottom:820.920481pt;}
.yb{bottom:826.192447pt;}
.y10{bottom:830.711275pt;}
.y8{bottom:839.748932pt;}
.y5{bottom:849.539726pt;}
.ya{bottom:850.292864pt;}
.yf{bottom:854.058554pt;}
.y4{bottom:873.640142pt;}
.ye{bottom:877.405832pt;}
.y7{bottom:895.481145pt;}
.yd{bottom:900.753111pt;}
.y6{bottom:915.062733pt;}
.yc{bottom:924.100390pt;}
.y3{bottom:961.004152pt;}
.y2{bottom:1023.514608pt;}
.ha{height:33.374997pt;}
.h7{height:35.813219pt;}
.hd{height:38.608867pt;}
.h8{height:39.392131pt;}
.h3{height:45.019578pt;}
.h6{height:45.405185pt;}
.hc{height:45.790791pt;}
.h4{height:56.274473pt;}
.h5{height:67.149786pt;}
.hb{height:739.581357pt;}
.h9{height:747.112965pt;}
.h2{height:1049.121300pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:688.368151pt;}
.w3{width:688.368156pt;}
.w2{width:719.999906pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:11.297070pt;}
.x9{left:13.556484pt;}
.xb{left:15.062768pt;}
.x17{left:27.112969pt;}
.x1{left:37.333331pt;}
.xa{left:53.149221pt;}
.x5{left:102.356164pt;}
.x4{left:117.442459pt;}
.x6{left:243.698991pt;}
.xf{left:245.884262pt;}
.x10{left:262.429762pt;}
.x15{left:309.569379pt;}
.x16{left:326.114880pt;}
.x7{left:380.452376pt;}
.x11{left:382.074932pt;}
.x12{left:398.620433pt;}
.x8{left:494.364501pt;}
.xd{left:597.305510pt;}
.x2{left:604.134367pt;}
.xe{left:613.854558pt;}
.x13{left:621.507980pt;}
.x14{left:638.060888pt;}
.xc{left:714.564635pt;}
}




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