
    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_9d19511e519a4a5ffd49254e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.402354;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_5056592c359620038db41db1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_8855dfc071cd435bebc2c51a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_b9beb4ea14a878b656b52863.woff')format("woff");}.ff4{font-family:ff4;line-height:1.030273;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_16abe048cafec6b30981b287.woff')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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:ff6;src:url('chunks/assets/font_116bc56befd28f004b993136.woff')format("woff");}.ff6{font-family:ff6;line-height:1.030273;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:20.880000px;}
.ls10{letter-spacing:-0.756000px;}
.lse{letter-spacing:-0.567600px;}
.ls8{letter-spacing:-0.423600px;}
.ls6{letter-spacing:-0.064800px;}
.ls7{letter-spacing:-0.057600px;}
.lsf{letter-spacing:-0.037440px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.020160px;}
.lsc{letter-spacing:0.123600px;}
.lsb{letter-spacing:0.145200px;}
.lsd{letter-spacing:0.152400px;}
.ls5{letter-spacing:0.188400px;}
.ls2{letter-spacing:0.230400px;}
.ls0{letter-spacing:0.252000px;}
.ls1{letter-spacing:0.286560px;}
.lsa{letter-spacing:0.296400px;}
.ls9{letter-spacing:0.332400px;}
.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;}
}
.ws0{word-spacing:-48.240000px;}
.ws3{word-spacing:-41.760000px;}
.ws5{word-spacing:-8.809680px;}
.ws7{word-spacing:-8.629680px;}
.ws6{word-spacing:-8.600880px;}
.wsa{word-spacing:-8.497440px;}
.ws9{word-spacing:-8.477280px;}
.ws4{word-spacing:-8.419680px;}
.ws8{word-spacing:-7.909680px;}
.ws2{word-spacing:-7.560000px;}
.ws1{word-spacing:-7.308000px;}
.wsb{word-spacing:0.000000px;}
._8{margin-left:-3.237120px;}
._2{margin-left:-2.233440px;}
._0{margin-left:-1.061280px;}
._1{width:1.414080px;}
._c{width:2.539200px;}
._3{width:3.700800px;}
._4{width:5.534880px;}
._5{width:7.424160px;}
._b{width:10.435680px;}
._11{width:15.409440px;}
._12{width:16.917120px;}
._13{width:17.943840px;}
._7{width:18.959040px;}
._6{width:20.187360px;}
._d{width:22.442400px;}
._e{width:24.164640px;}
._a{width:31.554720px;}
._9{width:32.592960px;}
._f{width:35.965440px;}
._10{width:37.715520px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:48.960000px;}
.y3{bottom:63.360000px;}
.y32{bottom:189.390000px;}
.y31{bottom:202.170000px;}
.y30{bottom:215.130000px;}
.y2f{bottom:227.910000px;}
.y2e{bottom:240.690000px;}
.y2d{bottom:253.470000px;}
.y2c{bottom:266.250000px;}
.y2b{bottom:289.110000px;}
.y2a{bottom:325.650000px;}
.y29{bottom:338.430000px;}
.y28{bottom:360.210000px;}
.y27{bottom:381.315000px;}
.y26{bottom:393.555000px;}
.y25{bottom:405.795000px;}
.y24{bottom:418.035000px;}
.y23{bottom:430.095000px;}
.y44{bottom:433.875000px;}
.y22{bottom:442.335000px;}
.y43{bottom:447.555000px;}
.y21{bottom:454.575000px;}
.y42{bottom:460.335000px;}
.y20{bottom:466.635000px;}
.y41{bottom:473.115000px;}
.y1f{bottom:478.875000px;}
.y40{bottom:485.895000px;}
.y1e{bottom:491.115000px;}
.y3f{bottom:498.855000px;}
.y1d{bottom:503.175000px;}
.y3e{bottom:511.635000px;}
.y1c{bottom:515.415000px;}
.y3d{bottom:524.415000px;}
.y1b{bottom:527.475000px;}
.y3c{bottom:537.195000px;}
.y1a{bottom:539.715000px;}
.y3b{bottom:550.155000px;}
.y19{bottom:551.955000px;}
.y3a{bottom:562.965000px;}
.y18{bottom:564.045000px;}
.y39{bottom:575.745000px;}
.y17{bottom:576.285000px;}
.y16{bottom:588.525000px;}
.y15{bottom:600.585000px;}
.y38{bottom:601.305000px;}
.y14{bottom:612.825000px;}
.y37{bottom:614.265000px;}
.y13{bottom:625.065000px;}
.y36{bottom:633.345000px;}
.y12{bottom:637.125000px;}
.y11{bottom:649.365000px;}
.y35{bottom:659.625000px;}
.y10{bottom:661.605000px;}
.y34{bottom:672.405000px;}
.yf{bottom:673.665000px;}
.y33{bottom:685.365000px;}
.ye{bottom:685.905000px;}
.yd{bottom:699.405000px;}
.yc{bottom:717.045000px;}
.yb{bottom:731.625000px;}
.ya{bottom:746.205000px;}
.y9{bottom:761.010000px;}
.y8{bottom:779.370000px;}
.y7{bottom:827.970000px;}
.y6{bottom:860.910000px;}
.y5{bottom:894.030000px;}
.y2{bottom:922.650000px;}
.y1{bottom:936.540000px;}
.h9{height:35.296172px;}
.hb{height:36.091406px;}
.h8{height:36.193359px;}
.h6{height:41.691797px;}
.h3{height:41.809570px;}
.ha{height:46.801758px;}
.h7{height:51.793945px;}
.h5{height:52.081172px;}
.h2{height:61.423863px;}
.h4{height:91.283203px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:54.899989px;}
.x6{left:73.115989px;}
.xd{left:76.535989px;}
.x5{left:92.555989px;}
.x9{left:96.515989px;}
.xa{left:108.035989px;}
.xe{left:149.795989px;}
.x8{left:160.589989px;}
.xc{left:229.574989px;}
.xb{left:270.974989px;}
.x4{left:306.254989px;}
.x7{left:308.594989px;}
.x3{left:361.514989px;}
.xf{left:376.454989px;}
.x10{left:492.764989px;}
.x1{left:544.109989px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls10{letter-spacing:-0.672000pt;}
.lse{letter-spacing:-0.504533pt;}
.ls8{letter-spacing:-0.376533pt;}
.ls6{letter-spacing:-0.057600pt;}
.ls7{letter-spacing:-0.051200pt;}
.lsf{letter-spacing:-0.033280pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.017920pt;}
.lsc{letter-spacing:0.109867pt;}
.lsb{letter-spacing:0.129067pt;}
.lsd{letter-spacing:0.135467pt;}
.ls5{letter-spacing:0.167467pt;}
.ls2{letter-spacing:0.204800pt;}
.ls0{letter-spacing:0.224000pt;}
.ls1{letter-spacing:0.254720pt;}
.lsa{letter-spacing:0.263467pt;}
.ls9{letter-spacing:0.295467pt;}
.ws0{word-spacing:-42.880000pt;}
.ws3{word-spacing:-37.120000pt;}
.ws5{word-spacing:-7.830827pt;}
.ws7{word-spacing:-7.670827pt;}
.ws6{word-spacing:-7.645227pt;}
.wsa{word-spacing:-7.553280pt;}
.ws9{word-spacing:-7.535360pt;}
.ws4{word-spacing:-7.484160pt;}
.ws8{word-spacing:-7.030827pt;}
.ws2{word-spacing:-6.720000pt;}
.ws1{word-spacing:-6.496000pt;}
.wsb{word-spacing:0.000000pt;}
._8{margin-left:-2.877440pt;}
._2{margin-left:-1.985280pt;}
._0{margin-left:-0.943360pt;}
._1{width:1.256960pt;}
._c{width:2.257067pt;}
._3{width:3.289600pt;}
._4{width:4.919893pt;}
._5{width:6.599253pt;}
._b{width:9.276160pt;}
._11{width:13.697280pt;}
._12{width:15.037440pt;}
._13{width:15.950080pt;}
._7{width:16.852480pt;}
._6{width:17.944320pt;}
._d{width:19.948800pt;}
._e{width:21.479680pt;}
._a{width:28.048640pt;}
._9{width:28.971520pt;}
._f{width:31.969280pt;}
._10{width:33.524907pt;}
.fs4{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:43.520000pt;}
.y3{bottom:56.320000pt;}
.y32{bottom:168.346667pt;}
.y31{bottom:179.706667pt;}
.y30{bottom:191.226667pt;}
.y2f{bottom:202.586667pt;}
.y2e{bottom:213.946667pt;}
.y2d{bottom:225.306667pt;}
.y2c{bottom:236.666667pt;}
.y2b{bottom:256.986667pt;}
.y2a{bottom:289.466667pt;}
.y29{bottom:300.826667pt;}
.y28{bottom:320.186667pt;}
.y27{bottom:338.946667pt;}
.y26{bottom:349.826667pt;}
.y25{bottom:360.706667pt;}
.y24{bottom:371.586667pt;}
.y23{bottom:382.306667pt;}
.y44{bottom:385.666667pt;}
.y22{bottom:393.186667pt;}
.y43{bottom:397.826667pt;}
.y21{bottom:404.066667pt;}
.y42{bottom:409.186667pt;}
.y20{bottom:414.786667pt;}
.y41{bottom:420.546667pt;}
.y1f{bottom:425.666667pt;}
.y40{bottom:431.906667pt;}
.y1e{bottom:436.546667pt;}
.y3f{bottom:443.426667pt;}
.y1d{bottom:447.266667pt;}
.y3e{bottom:454.786667pt;}
.y1c{bottom:458.146667pt;}
.y3d{bottom:466.146667pt;}
.y1b{bottom:468.866667pt;}
.y3c{bottom:477.506667pt;}
.y1a{bottom:479.746667pt;}
.y3b{bottom:489.026667pt;}
.y19{bottom:490.626667pt;}
.y3a{bottom:500.413333pt;}
.y18{bottom:501.373333pt;}
.y39{bottom:511.773333pt;}
.y17{bottom:512.253333pt;}
.y16{bottom:523.133333pt;}
.y15{bottom:533.853333pt;}
.y38{bottom:534.493333pt;}
.y14{bottom:544.733333pt;}
.y37{bottom:546.013333pt;}
.y13{bottom:555.613333pt;}
.y36{bottom:562.973333pt;}
.y12{bottom:566.333333pt;}
.y11{bottom:577.213333pt;}
.y35{bottom:586.333333pt;}
.y10{bottom:588.093333pt;}
.y34{bottom:597.693333pt;}
.yf{bottom:598.813333pt;}
.y33{bottom:609.213333pt;}
.ye{bottom:609.693333pt;}
.yd{bottom:621.693333pt;}
.yc{bottom:637.373333pt;}
.yb{bottom:650.333333pt;}
.ya{bottom:663.293333pt;}
.y9{bottom:676.453333pt;}
.y8{bottom:692.773333pt;}
.y7{bottom:735.973333pt;}
.y6{bottom:765.253333pt;}
.y5{bottom:794.693333pt;}
.y2{bottom:820.133333pt;}
.y1{bottom:832.480000pt;}
.h9{height:31.374375pt;}
.hb{height:32.081250pt;}
.h8{height:32.171875pt;}
.h6{height:37.059375pt;}
.h3{height:37.164062pt;}
.ha{height:41.601562pt;}
.h7{height:46.039063pt;}
.h5{height:46.294375pt;}
.h2{height:54.598989pt;}
.h4{height:81.140625pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:48.799990pt;}
.x6{left:64.991990pt;}
.xd{left:68.031990pt;}
.x5{left:82.271990pt;}
.x9{left:85.791990pt;}
.xa{left:96.031990pt;}
.xe{left:133.151990pt;}
.x8{left:142.746657pt;}
.xc{left:204.066657pt;}
.xb{left:240.866657pt;}
.x4{left:272.226657pt;}
.x7{left:274.306657pt;}
.x3{left:321.346657pt;}
.xf{left:334.626657pt;}
.x10{left:438.013324pt;}
.x1{left:483.653324pt;}
}




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