
    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_db9527fb6ccbe0a91e8e45fb.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_157c52c892ad5b84438a722b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fc4ddb3aa8136ba0b5feef9b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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);}
.v3{vertical-align:-18.000000px;}
.v1{vertical-align:-5.100000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v2{vertical-align:27.000000px;}
.lsd{letter-spacing:-8.340000px;}
.ls16{letter-spacing:-1.614000px;}
.ls1c{letter-spacing:-1.530000px;}
.ls15{letter-spacing:-1.518000px;}
.ls1d{letter-spacing:-1.380000px;}
.lsf{letter-spacing:-0.840000px;}
.ls20{letter-spacing:-0.834000px;}
.ls17{letter-spacing:-0.522000px;}
.ls11{letter-spacing:-0.131400px;}
.ls22{letter-spacing:-0.122400px;}
.ls1f{letter-spacing:-0.022500px;}
.lsb{letter-spacing:-0.018480px;}
.ls8{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.018420px;}
.ls21{letter-spacing:0.027420px;}
.ls1{letter-spacing:0.120600px;}
.ls1e{letter-spacing:0.127800px;}
.ls3{letter-spacing:0.687300px;}
.ls10{letter-spacing:0.690000px;}
.ls4{letter-spacing:1.374000px;}
.lsa{letter-spacing:1.488000px;}
.lse{letter-spacing:1.524000px;}
.ls12{letter-spacing:1.638000px;}
.ls9{letter-spacing:2.550000px;}
.ls14{letter-spacing:12.039000px;}
.ls7{letter-spacing:15.987300px;}
.ls6{letter-spacing:16.167300px;}
.ls1b{letter-spacing:23.193300px;}
.ls19{letter-spacing:38.673300px;}
.ls5{letter-spacing:47.992500px;}
.ls2{letter-spacing:48.022500px;}
.ls13{letter-spacing:55.747500px;}
.ls1a{letter-spacing:57.322500px;}
.ls18{letter-spacing:57.375000px;}
.ls0{letter-spacing:3226.859400px;}
.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;}
}
.wsb{word-spacing:-27.950700px;}
.ws6{word-spacing:-27.836700px;}
.ws1{word-spacing:-27.800700px;}
.ws8{word-spacing:-27.686700px;}
.ws9{word-spacing:-27.002700px;}
.ws3{word-spacing:-27.000000px;}
.ws4{word-spacing:-26.331120px;}
.wsc{word-spacing:-26.312700px;}
.ws2{word-spacing:-26.294220px;}
.wsa{word-spacing:-26.181300px;}
.ws7{word-spacing:-25.472700px;}
.ws14{word-spacing:-18.892800px;}
.ws17{word-spacing:-18.834120px;}
.ws1a{word-spacing:-18.806700px;}
.ws19{word-spacing:-18.765000px;}
.ws15{word-spacing:-18.742500px;}
.ws18{word-spacing:-18.684300px;}
.ws5{word-spacing:-17.972700px;}
.ws13{word-spacing:-17.385000px;}
.ws12{word-spacing:-17.235000px;}
.ws16{word-spacing:-17.192700px;}
.ws0{word-spacing:-15.053700px;}
.wsf{word-spacing:-13.761000px;}
.ws11{word-spacing:-13.239000px;}
.wse{word-spacing:-12.243000px;}
.ws10{word-spacing:-12.188700px;}
.wsd{word-spacing:0.000000px;}
._1{margin-left:-16.573800px;}
._2{margin-left:-12.970800px;}
._9{margin-left:-10.989150px;}
._8{margin-left:-8.827350px;}
._a{margin-left:-4.255950px;}
._5{margin-left:-3.242700px;}
._4{margin-left:-1.801500px;}
._0{width:1.261050px;}
._3{width:2.341950px;}
._6{width:3.603000px;}
._7{width:4.683900px;}
._b{width:7.323450px;}
._10{width:9.052500px;}
._f{width:10.281450px;}
._e{width:12.472050px;}
._d{width:16.559850px;}
._12{width:22.604700px;}
._13{width:23.946150px;}
._11{width:38.496300px;}
._c{width:49.287300px;}
.fc6{color:rgb(78,167,46);}
.fc5{color:rgb(255,38,0);}
.fc4{color:rgb(78,149,217);}
.fc3{color:rgb(233,113,50);}
.fc2{color:rgb(217,217,217);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:36.150000px;}
.fs8{font-size:49.500000px;}
.fs9{font-size:49.650000px;}
.fs4{font-size:54.150000px;}
.fsa{font-size:67.500000px;}
.fsb{font-size:67.650000px;}
.fs7{font-size:72.150000px;}
.fs3{font-size:85.650000px;}
.fs6{font-size:94.650000px;}
.fs1{font-size:121.650000px;}
.fs2{font-size:121.800000px;}
.fs0{font-size:180.150000px;}
.y0{bottom:0.000000px;}
.y15{bottom:67.125000px;}
.y14{bottom:81.787500px;}
.y13{bottom:99.787500px;}
.y12{bottom:113.325000px;}
.y11{bottom:131.325000px;}
.y10{bottom:145.987500px;}
.y1e{bottom:248.700000px;}
.y1d{bottom:277.995000px;}
.y1c{bottom:297.150000px;}
.y1b{bottom:326.445000px;}
.y1a{bottom:346.725000px;}
.y19{bottom:365.850000px;}
.y18{bottom:395.130000px;}
.y17{bottom:428.850000px;}
.yf{bottom:434.370000px;}
.y16{bottom:457.005000px;}
.ye{bottom:462.525000px;}
.yd{bottom:529.800000px;}
.ya{bottom:530.445000px;}
.yc{bottom:559.095000px;}
.y9{bottom:559.725000px;}
.yb{bottom:596.250000px;}
.y8{bottom:596.925000px;}
.y7{bottom:651.000000px;}
.y4{bottom:656.655000px;}
.y5{bottom:659.820000px;}
.y3{bottom:661.755000px;}
.y6{bottom:668.475000px;}
.y2{bottom:704.175000px;}
.y1{bottom:758.250000px;}
.h5{height:38.476758px;}
.h8{height:51.626953px;}
.h7{height:64.681348px;}
.h9{height:70.400391px;}
.ha{height:70.556836px;}
.h4{height:89.330273px;}
.h6{height:98.716992px;}
.h2{height:126.877148px;}
.h3{height:127.033594px;}
.h1{height:187.890820px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x2{left:61.237479px;}
.x8{left:80.624979px;}
.x1{left:104.962479px;}
.x4{left:296.504979px;}
.x3{left:357.344979px;}
.x11{left:398.924979px;}
.x12{left:419.174979px;}
.xf{left:427.019979px;}
.x10{left:470.624979px;}
.x7{left:486.449979px;}
.x6{left:505.724979px;}
.x9{left:696.644979px;}
.xa{left:716.924979px;}
.xb{left:908.174979px;}
.xc{left:972.644979px;}
.x5{left:1057.499979px;}
.xd{left:1161.269979px;}
.xe{left:1181.519979px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v1{vertical-align:-4.533333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v2{vertical-align:24.000000pt;}
.lsd{letter-spacing:-7.413333pt;}
.ls16{letter-spacing:-1.434667pt;}
.ls1c{letter-spacing:-1.360000pt;}
.ls15{letter-spacing:-1.349333pt;}
.ls1d{letter-spacing:-1.226667pt;}
.lsf{letter-spacing:-0.746667pt;}
.ls20{letter-spacing:-0.741333pt;}
.ls17{letter-spacing:-0.464000pt;}
.ls11{letter-spacing:-0.116800pt;}
.ls22{letter-spacing:-0.108800pt;}
.ls1f{letter-spacing:-0.020000pt;}
.lsb{letter-spacing:-0.016427pt;}
.ls8{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.016373pt;}
.ls21{letter-spacing:0.024373pt;}
.ls1{letter-spacing:0.107200pt;}
.ls1e{letter-spacing:0.113600pt;}
.ls3{letter-spacing:0.610933pt;}
.ls10{letter-spacing:0.613333pt;}
.ls4{letter-spacing:1.221333pt;}
.lsa{letter-spacing:1.322667pt;}
.lse{letter-spacing:1.354667pt;}
.ls12{letter-spacing:1.456000pt;}
.ls9{letter-spacing:2.266667pt;}
.ls14{letter-spacing:10.701333pt;}
.ls7{letter-spacing:14.210933pt;}
.ls6{letter-spacing:14.370933pt;}
.ls1b{letter-spacing:20.616267pt;}
.ls19{letter-spacing:34.376267pt;}
.ls5{letter-spacing:42.660000pt;}
.ls2{letter-spacing:42.686667pt;}
.ls13{letter-spacing:49.553333pt;}
.ls1a{letter-spacing:50.953333pt;}
.ls18{letter-spacing:51.000000pt;}
.ls0{letter-spacing:2868.319467pt;}
.wsb{word-spacing:-24.845067pt;}
.ws6{word-spacing:-24.743733pt;}
.ws1{word-spacing:-24.711733pt;}
.ws8{word-spacing:-24.610400pt;}
.ws9{word-spacing:-24.002400pt;}
.ws3{word-spacing:-24.000000pt;}
.ws4{word-spacing:-23.405440pt;}
.wsc{word-spacing:-23.389067pt;}
.ws2{word-spacing:-23.372640pt;}
.wsa{word-spacing:-23.272267pt;}
.ws7{word-spacing:-22.642400pt;}
.ws14{word-spacing:-16.793600pt;}
.ws17{word-spacing:-16.741440pt;}
.ws1a{word-spacing:-16.717067pt;}
.ws19{word-spacing:-16.680000pt;}
.ws15{word-spacing:-16.660000pt;}
.ws18{word-spacing:-16.608267pt;}
.ws5{word-spacing:-15.975733pt;}
.ws13{word-spacing:-15.453333pt;}
.ws12{word-spacing:-15.320000pt;}
.ws16{word-spacing:-15.282400pt;}
.ws0{word-spacing:-13.381067pt;}
.wsf{word-spacing:-12.232000pt;}
.ws11{word-spacing:-11.768000pt;}
.wse{word-spacing:-10.882667pt;}
.ws10{word-spacing:-10.834400pt;}
.wsd{word-spacing:0.000000pt;}
._1{margin-left:-14.732267pt;}
._2{margin-left:-11.529600pt;}
._9{margin-left:-9.768133pt;}
._8{margin-left:-7.846533pt;}
._a{margin-left:-3.783067pt;}
._5{margin-left:-2.882400pt;}
._4{margin-left:-1.601333pt;}
._0{width:1.120933pt;}
._3{width:2.081733pt;}
._6{width:3.202667pt;}
._7{width:4.163467pt;}
._b{width:6.509733pt;}
._10{width:8.046667pt;}
._f{width:9.139067pt;}
._e{width:11.086267pt;}
._d{width:14.719867pt;}
._12{width:20.093067pt;}
._13{width:21.285467pt;}
._11{width:34.218933pt;}
._c{width:43.810933pt;}
.fs5{font-size:32.133333pt;}
.fs8{font-size:44.000000pt;}
.fs9{font-size:44.133333pt;}
.fs4{font-size:48.133333pt;}
.fsa{font-size:60.000000pt;}
.fsb{font-size:60.133333pt;}
.fs7{font-size:64.133333pt;}
.fs3{font-size:76.133333pt;}
.fs6{font-size:84.133333pt;}
.fs1{font-size:108.133333pt;}
.fs2{font-size:108.266667pt;}
.fs0{font-size:160.133333pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:59.666667pt;}
.y14{bottom:72.700000pt;}
.y13{bottom:88.700000pt;}
.y12{bottom:100.733333pt;}
.y11{bottom:116.733333pt;}
.y10{bottom:129.766667pt;}
.y1e{bottom:221.066667pt;}
.y1d{bottom:247.106667pt;}
.y1c{bottom:264.133333pt;}
.y1b{bottom:290.173333pt;}
.y1a{bottom:308.200000pt;}
.y19{bottom:325.200000pt;}
.y18{bottom:351.226667pt;}
.y17{bottom:381.200000pt;}
.yf{bottom:386.106667pt;}
.y16{bottom:406.226667pt;}
.ye{bottom:411.133333pt;}
.yd{bottom:470.933333pt;}
.ya{bottom:471.506667pt;}
.yc{bottom:496.973333pt;}
.y9{bottom:497.533333pt;}
.yb{bottom:530.000000pt;}
.y8{bottom:530.600000pt;}
.y7{bottom:578.666667pt;}
.y4{bottom:583.693333pt;}
.y5{bottom:586.506667pt;}
.y3{bottom:588.226667pt;}
.y6{bottom:594.200000pt;}
.y2{bottom:625.933333pt;}
.y1{bottom:674.000000pt;}
.h5{height:34.201563pt;}
.h8{height:45.890625pt;}
.h7{height:57.494531pt;}
.h9{height:62.578125pt;}
.ha{height:62.717188pt;}
.h4{height:79.404688pt;}
.h6{height:87.748438pt;}
.h2{height:112.779687pt;}
.h3{height:112.918750pt;}
.h1{height:167.014062pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.433314pt;}
.x8{left:71.666648pt;}
.x1{left:93.299981pt;}
.x4{left:263.559981pt;}
.x3{left:317.639981pt;}
.x11{left:354.599981pt;}
.x12{left:372.599981pt;}
.xf{left:379.573314pt;}
.x10{left:418.333314pt;}
.x7{left:432.399981pt;}
.x6{left:449.533314pt;}
.x9{left:619.239981pt;}
.xa{left:637.266648pt;}
.xb{left:807.266648pt;}
.xc{left:864.573314pt;}
.x5{left:939.999981pt;}
.xd{left:1032.239981pt;}
.xe{left:1050.239981pt;}
}




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