
    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_973382342778ca1d8758b1c0.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_a0d29ea793830e7254c3078f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_2198b975af60ca4caa1f505c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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_3d391b6c3ffab46654973ba6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.733000;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_61ecb37fa5040ad6d1c8567c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666000;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_c606ba021b3ece839c9c7098.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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:ff7;src:url('chunks/assets/font_de6a6998fefb1dbf0a0e6720.woff')format("woff");}.ff7{font-family:ff7;line-height:0.550000;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);}
.v3{vertical-align:-12.366000px;}
.v1{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:10.758000px;}
.v4{vertical-align:12.366000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.002400px;}
.ls3{letter-spacing:2.986800px;}
.ls1{letter-spacing:3.941290px;}
.ls2{letter-spacing:5.949571px;}
.ls9{letter-spacing:6.313473px;}
.ls4{letter-spacing:6.674074px;}
.ls5{letter-spacing:9.107453px;}
.lse{letter-spacing:12.352800px;}
.ls8{letter-spacing:13.907290px;}
.lsb{letter-spacing:15.181473px;}
.ls7{letter-spacing:15.883473px;}
.lsa{letter-spacing:16.811290px;}
.lsf{letter-spacing:17.513290px;}
.lsd{letter-spacing:17.932800px;}
.ls6{letter-spacing:21.176237px;}
.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:-17.932800px;}
.ws7{word-spacing:-0.789043px;}
.ws4{word-spacing:-0.645581px;}
.ws5{word-spacing:-0.573850px;}
.ws2{word-spacing:-0.071731px;}
.ws3{word-spacing:-0.053798px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:17.855731px;}
.ws0{word-spacing:17.861069px;}
.ws8{word-spacing:24.268099px;}
.wsa{word-spacing:239.940864px;}
.wsb{word-spacing:294.097920px;}
._4{margin-left:-8.989766px;}
._e{margin-left:-7.890432px;}
._c{margin-left:-6.457709px;}
._3{margin-left:-5.019283px;}
._b{margin-left:-3.945216px;}
._1{margin-left:-2.510592px;}
._0{margin-left:-1.434624px;}
._5{width:2.743718px;}
._9{width:4.224259px;}
._6{width:5.724682px;}
._8{width:12.884726px;}
._7{width:21.293597px;}
._2{width:22.593427px;}
._a{width:35.148288px;}
._d{width:71.013888px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:53.798400px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y44{bottom:103.218000px;}
.y20{bottom:104.400000px;}
.y43{bottom:143.413500px;}
.y1f{bottom:155.205000px;}
.y42{bottom:183.609000px;}
.y1e{bottom:206.011500px;}
.y41{bottom:222.534000px;}
.y1d{bottom:256.816500px;}
.y40{bottom:262.729500px;}
.y3f{bottom:301.654500px;}
.y1c{bottom:307.621500px;}
.y3e{bottom:341.850000px;}
.y1b{bottom:362.911500px;}
.y3d{bottom:380.776500px;}
.y1a{bottom:398.773500px;}
.y4b{bottom:413.350500px;}
.y3c{bottom:420.972000px;}
.y19{bottom:434.634000px;}
.y4a{bottom:453.546000px;}
.y18{bottom:470.496000px;}
.y3b{bottom:483.376500px;}
.y49{bottom:493.741500px;}
.y17{bottom:506.358000px;}
.y3a{bottom:519.238500px;}
.y48{bottom:533.935500px;}
.y16{bottom:542.220000px;}
.y39{bottom:555.697500px;}
.y15{bottom:578.082000px;}
.y2c{bottom:579.423000px;}
.y38{bottom:607.101000px;}
.y47{bottom:607.459500px;}
.y14{bottom:613.944000px;}
.y2b{bottom:615.285000px;}
.y37{bottom:642.963000px;}
.y46{bottom:643.321500px;}
.y13{bottom:649.804500px;}
.y2a{bottom:651.145500px;}
.y7{bottom:662.806500px;}
.y36{bottom:675.205500px;}
.y45{bottom:679.183500px;}
.y12{bottom:685.666500px;}
.y29{bottom:687.007500px;}
.y6{bottom:698.668500px;}
.y35{bottom:715.401000px;}
.y11{bottom:721.528500px;}
.y5{bottom:734.529000px;}
.y28{bottom:742.296000px;}
.y34{bottom:754.326000px;}
.y10{bottom:757.390500px;}
.y4{bottom:770.391000px;}
.y27{bottom:778.158000px;}
.yf{bottom:793.252500px;}
.y33{bottom:794.521500px;}
.y3{bottom:806.253000px;}
.y26{bottom:814.020000px;}
.ye{bottom:829.113000px;}
.y32{bottom:834.717000px;}
.y25{bottom:854.215500px;}
.yd{bottom:864.975000px;}
.y31{bottom:873.643500px;}
.y2{bottom:877.977000px;}
.y24{bottom:894.411000px;}
.yc{bottom:900.837000px;}
.y30{bottom:909.504000px;}
.y23{bottom:930.273000px;}
.yb{bottom:936.699000px;}
.y2f{bottom:945.366000px;}
.y22{bottom:966.135000px;}
.ya{bottom:972.561000px;}
.y2e{bottom:981.228000px;}
.y21{bottom:1001.997000px;}
.y9{bottom:1012.756500px;}
.y2d{bottom:1017.090000px;}
.y8{bottom:1057.285500px;}
.y1{bottom:1119.078000px;}
.h4{height:48.992410px;}
.h1{height:49.351066px;}
.h2{height:49.637990px;}
.h3{height:53.798400px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.xa{left:129.669000px;}
.xb{left:151.897500px;}
.xc{left:162.000000px;}
.x2{left:261.418500px;}
.x4{left:308.232000px;}
.xe{left:363.795000px;}
.xf{left:384.786000px;}
.x10{left:387.367500px;}
.x7{left:396.495000px;}
.x6{left:401.481000px;}
.x5{left:414.733500px;}
.x3{left:416.167500px;}
.x13{left:417.342000px;}
.x12{left:418.642500px;}
.x8{left:425.637000px;}
.xd{left:429.115500px;}
.x11{left:431.106000px;}
.x1{left:801.033000px;}
@media print{
.v3{vertical-align:-10.992000pt;}
.v1{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:9.562667pt;}
.v4{vertical-align:10.992000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.002133pt;}
.ls3{letter-spacing:2.654933pt;}
.ls1{letter-spacing:3.503369pt;}
.ls2{letter-spacing:5.288508pt;}
.ls9{letter-spacing:5.611976pt;}
.ls4{letter-spacing:5.932510pt;}
.ls5{letter-spacing:8.095514pt;}
.lse{letter-spacing:10.980267pt;}
.ls8{letter-spacing:12.362035pt;}
.lsb{letter-spacing:13.494642pt;}
.ls7{letter-spacing:14.118642pt;}
.lsa{letter-spacing:14.943369pt;}
.lsf{letter-spacing:15.567369pt;}
.lsd{letter-spacing:15.940267pt;}
.ls6{letter-spacing:18.823322pt;}
.ws6{word-spacing:-15.940267pt;}
.ws7{word-spacing:-0.701372pt;}
.ws4{word-spacing:-0.573850pt;}
.ws5{word-spacing:-0.510089pt;}
.ws2{word-spacing:-0.063761pt;}
.ws3{word-spacing:-0.047821pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:15.871761pt;}
.ws0{word-spacing:15.876506pt;}
.ws8{word-spacing:21.571644pt;}
.wsa{word-spacing:213.280768pt;}
.wsb{word-spacing:261.420373pt;}
._4{margin-left:-7.990903pt;}
._e{margin-left:-7.013717pt;}
._c{margin-left:-5.740186pt;}
._3{margin-left:-4.461585pt;}
._b{margin-left:-3.506859pt;}
._1{margin-left:-2.231637pt;}
._0{margin-left:-1.275221pt;}
._5{width:2.438861pt;}
._9{width:3.754897pt;}
._6{width:5.088606pt;}
._8{width:11.453090pt;}
._7{width:18.927642pt;}
._2{width:20.083046pt;}
._a{width:31.242923pt;}
._d{width:63.123456pt;}
.fs1{font-size:47.820800pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:91.749333pt;}
.y20{bottom:92.800000pt;}
.y43{bottom:127.478667pt;}
.y1f{bottom:137.960000pt;}
.y42{bottom:163.208000pt;}
.y1e{bottom:183.121333pt;}
.y41{bottom:197.808000pt;}
.y1d{bottom:228.281333pt;}
.y40{bottom:233.537333pt;}
.y3f{bottom:268.137333pt;}
.y1c{bottom:273.441333pt;}
.y3e{bottom:303.866667pt;}
.y1b{bottom:322.588000pt;}
.y3d{bottom:338.468000pt;}
.y1a{bottom:354.465333pt;}
.y4b{bottom:367.422667pt;}
.y3c{bottom:374.197333pt;}
.y19{bottom:386.341333pt;}
.y4a{bottom:403.152000pt;}
.y18{bottom:418.218667pt;}
.y3b{bottom:429.668000pt;}
.y49{bottom:438.881333pt;}
.y17{bottom:450.096000pt;}
.y3a{bottom:461.545333pt;}
.y48{bottom:474.609333pt;}
.y16{bottom:481.973333pt;}
.y39{bottom:493.953333pt;}
.y15{bottom:513.850667pt;}
.y2c{bottom:515.042667pt;}
.y38{bottom:539.645333pt;}
.y47{bottom:539.964000pt;}
.y14{bottom:545.728000pt;}
.y2b{bottom:546.920000pt;}
.y37{bottom:571.522667pt;}
.y46{bottom:571.841333pt;}
.y13{bottom:577.604000pt;}
.y2a{bottom:578.796000pt;}
.y7{bottom:589.161333pt;}
.y36{bottom:600.182667pt;}
.y45{bottom:603.718667pt;}
.y12{bottom:609.481333pt;}
.y29{bottom:610.673333pt;}
.y6{bottom:621.038667pt;}
.y35{bottom:635.912000pt;}
.y11{bottom:641.358667pt;}
.y5{bottom:652.914667pt;}
.y28{bottom:659.818667pt;}
.y34{bottom:670.512000pt;}
.y10{bottom:673.236000pt;}
.y4{bottom:684.792000pt;}
.y27{bottom:691.696000pt;}
.yf{bottom:705.113333pt;}
.y33{bottom:706.241333pt;}
.y3{bottom:716.669333pt;}
.y26{bottom:723.573333pt;}
.ye{bottom:736.989333pt;}
.y32{bottom:741.970667pt;}
.y25{bottom:759.302667pt;}
.yd{bottom:768.866667pt;}
.y31{bottom:776.572000pt;}
.y2{bottom:780.424000pt;}
.y24{bottom:795.032000pt;}
.yc{bottom:800.744000pt;}
.y30{bottom:808.448000pt;}
.y23{bottom:826.909333pt;}
.yb{bottom:832.621333pt;}
.y2f{bottom:840.325333pt;}
.y22{bottom:858.786667pt;}
.ya{bottom:864.498667pt;}
.y2e{bottom:872.202667pt;}
.y21{bottom:890.664000pt;}
.y9{bottom:900.228000pt;}
.y2d{bottom:904.080000pt;}
.y8{bottom:939.809333pt;}
.y1{bottom:994.736000pt;}
.h4{height:43.548809pt;}
.h1{height:43.867614pt;}
.h2{height:44.122658pt;}
.h3{height:47.820800pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.xa{left:115.261333pt;}
.xb{left:135.020000pt;}
.xc{left:144.000000pt;}
.x2{left:232.372000pt;}
.x4{left:273.984000pt;}
.xe{left:323.373333pt;}
.xf{left:342.032000pt;}
.x10{left:344.326667pt;}
.x7{left:352.440000pt;}
.x6{left:356.872000pt;}
.x5{left:368.652000pt;}
.x3{left:369.926667pt;}
.x13{left:370.970667pt;}
.x12{left:372.126667pt;}
.x8{left:378.344000pt;}
.xd{left:381.436000pt;}
.x11{left:383.205333pt;}
.x1{left:712.029333pt;}
}




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