
    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_f603714d18dbc1c76a85a4c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.723000;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_88d7704b991d5aaf2fa6e4fd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a9dbf019c551af71acdb5e85.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.907000;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_ba5fea4a97457c132635e49a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.665000;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_10238479682ccd8e59010ff5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.664000;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_2f250b3c19e3ab830377984c.woff2')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_7855c310b91a4387f46fb88f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.704000;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:ff8;src:url('chunks/assets/font_9ce1d9d58769edf921a02d3a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901000;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:ff9;src:url('chunks/assets/font_ead15c447f0f0e2be56b7db4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.431000;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:ffa;src:url('chunks/assets/font_4e92bc0e2d534b28f760f037.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v4{vertical-align:-23.041380px;}
.v3{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:25.919520px;}
.v1{vertical-align:37.439040px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.351120px;}
.ls5{letter-spacing:2.830316px;}
.ls6{letter-spacing:3.037344px;}
.ls0{letter-spacing:3.407230px;}
.ls3{letter-spacing:3.549896px;}
.ls2{letter-spacing:4.126750px;}
.ls1{letter-spacing:4.846270px;}
.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;}
}
.ws17{word-spacing:-43.038600px;}
.ws9{word-spacing:-29.887920px;}
.ws1{word-spacing:-20.269068px;}
.ws0{word-spacing:-20.268035px;}
.ws22{word-spacing:-0.065455px;}
.ws7{word-spacing:-0.059776px;}
.ws27{word-spacing:0.000000px;}
.ws24{word-spacing:11.486847px;}
.wsa{word-spacing:13.720169px;}
.ws15{word-spacing:14.440707px;}
.wsf{word-spacing:15.411825px;}
.wsb{word-spacing:15.781180px;}
.ws11{word-spacing:16.500284px;}
.wsc{word-spacing:17.884692px;}
.ws26{word-spacing:18.080687px;}
.ws16{word-spacing:18.838296px;}
.ws14{word-spacing:18.868184px;}
.ws25{word-spacing:19.172846px;}
.ws8{word-spacing:19.323616px;}
.ws6{word-spacing:19.479751px;}
.ws18{word-spacing:20.552744px;}
.ws10{word-spacing:21.029021px;}
.ws13{word-spacing:21.485589px;}
.ws1b{word-spacing:21.991829px;}
.ws12{word-spacing:22.613200px;}
.wse{word-spacing:22.924035px;}
.ws3{word-spacing:22.968832px;}
.ws5{word-spacing:23.172908px;}
.ws2{word-spacing:23.361059px;}
.ws1e{word-spacing:23.367816px;}
.ws23{word-spacing:23.493709px;}
.ws4{word-spacing:23.688368px;}
.ws1f{word-spacing:24.152747px;}
.wsd{word-spacing:24.771825px;}
.ws1d{word-spacing:25.526443px;}
.ws20{word-spacing:25.591832px;}
.ws21{word-spacing:27.033012px;}
.ws1c{word-spacing:28.080482px;}
.ws1a{word-spacing:29.913734px;}
.ws19{word-spacing:32.007299px;}
._3{margin-left:-35.076915px;}
._5{margin-left:-32.821263px;}
._15{margin-left:-31.023979px;}
._18{margin-left:-27.666238px;}
._12{margin-left:-25.302042px;}
._1{margin-left:-7.621098px;}
._6{margin-left:-5.516617px;}
._0{margin-left:-2.927327px;}
._7{margin-left:-1.508349px;}
._2{width:1.011348px;}
._a{width:2.140040px;}
._10{width:3.260111px;}
._1a{width:12.676062px;}
._19{width:13.745521px;}
._d{width:16.967118px;}
._8{width:18.000170px;}
._b{width:19.282260px;}
._9{width:20.638644px;}
._e{width:22.381999px;}
._4{width:24.512403px;}
._f{width:26.246453px;}
._14{width:27.484253px;}
._11{width:30.109181px;}
._17{width:32.908036px;}
._13{width:34.699242px;}
._c{width:40.744927px;}
._16{width:42.034092px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865480px;}
.fs3{font-size:41.843100px;}
.fs2{font-size:47.820660px;}
.fs8{font-size:53.798280px;}
.fs4{font-size:59.775840px;}
.fs6{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y27{bottom:106.710105px;}
.y26{bottom:151.529655px;}
.y25{bottom:167.910105px;}
.y24{bottom:184.469805px;}
.y23{bottom:206.610000px;}
.y22{bottom:229.109790px;}
.y21{bottom:249.449490px;}
.y20{bottom:269.789790px;}
.y1f{bottom:290.129490px;}
.y1e{bottom:310.469790px;}
.y1d{bottom:330.810090px;}
.y1c{bottom:351.149790px;}
.y1b{bottom:371.310090px;}
.y1a{bottom:391.649790px;}
.y19{bottom:411.990090px;}
.y18{bottom:432.329790px;}
.y17{bottom:468.870090px;}
.y16{bottom:519.810390px;}
.y15{bottom:537.810390px;}
.y14{bottom:555.629940px;}
.y13{bottom:573.629940px;}
.y12{bottom:591.450090px;}
.y11{bottom:609.450090px;}
.y10{bottom:627.450090px;}
.yf{bottom:645.270240px;}
.ye{bottom:663.270240px;}
.yd{bottom:681.270240px;}
.yc{bottom:699.090390px;}
.yb{bottom:717.090390px;}
.ya{bottom:734.910540px;}
.y9{bottom:758.130090px;}
.y8{bottom:828.510540px;}
.y7{bottom:854.790390px;}
.y6{bottom:891.150090px;}
.y5{bottom:917.610390px;}
.y4{bottom:953.970210px;}
.y3{bottom:974.850060px;}
.y2{bottom:1020.390300px;}
.y1{bottom:1053.330000px;}
.h9{height:17.307330px;}
.h4{height:27.783818px;}
.ha{height:40.348710px;}
.h6{height:41.723536px;}
.h5{height:44.831880px;}
.h8{height:49.090950px;}
.h3{height:57.720259px;}
.h7{height:60.254040px;}
.h1{height:73.027727px;}
.h2{height:91.237440px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xc{left:106.378695px;}
.x2{left:121.500000px;}
.xd{left:124.740300px;}
.x5{left:131.219790px;}
.x1{left:141.479850px;}
.xb{left:147.238995px;}
.xa{left:169.558995px;}
.x3{left:226.620000px;}
.x4{left:297.899610px;}
.x7{left:311.398965px;}
.x6{left:317.339445px;}
.x8{left:343.978875px;}
.x9{left:403.018995px;}
.xe{left:431.820675px;}
@media print{
.v4{vertical-align:-20.481227pt;}
.v3{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.039573pt;}
.v1{vertical-align:33.279147pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.312107pt;}
.ls5{letter-spacing:2.515837pt;}
.ls6{letter-spacing:2.699861pt;}
.ls0{letter-spacing:3.028648pt;}
.ls3{letter-spacing:3.155463pt;}
.ls2{letter-spacing:3.668222pt;}
.ls1{letter-spacing:4.307795pt;}
.ws17{word-spacing:-38.256533pt;}
.ws9{word-spacing:-26.567040pt;}
.ws1{word-spacing:-18.016949pt;}
.ws0{word-spacing:-18.016031pt;}
.ws22{word-spacing:-0.058182pt;}
.ws7{word-spacing:-0.053134pt;}
.ws27{word-spacing:0.000000pt;}
.ws24{word-spacing:10.210531pt;}
.wsa{word-spacing:12.195706pt;}
.ws15{word-spacing:12.836184pt;}
.wsf{word-spacing:13.699400pt;}
.wsb{word-spacing:14.027716pt;}
.ws11{word-spacing:14.666919pt;}
.wsc{word-spacing:15.897504pt;}
.ws26{word-spacing:16.071722pt;}
.ws16{word-spacing:16.745152pt;}
.ws14{word-spacing:16.771719pt;}
.ws25{word-spacing:17.042530pt;}
.ws8{word-spacing:17.176548pt;}
.ws6{word-spacing:17.315334pt;}
.ws18{word-spacing:18.269106pt;}
.ws10{word-spacing:18.692463pt;}
.ws13{word-spacing:19.098301pt;}
.ws1b{word-spacing:19.548293pt;}
.ws12{word-spacing:20.100622pt;}
.wse{word-spacing:20.376920pt;}
.ws3{word-spacing:20.416740pt;}
.ws5{word-spacing:20.598140pt;}
.ws2{word-spacing:20.765385pt;}
.ws1e{word-spacing:20.771392pt;}
.ws23{word-spacing:20.883297pt;}
.ws4{word-spacing:21.056327pt;}
.ws1f{word-spacing:21.469109pt;}
.wsd{word-spacing:22.019400pt;}
.ws1d{word-spacing:22.690172pt;}
.ws20{word-spacing:22.748295pt;}
.ws21{word-spacing:24.029344pt;}
.ws1c{word-spacing:24.960428pt;}
.ws1a{word-spacing:26.589986pt;}
.ws19{word-spacing:28.450933pt;}
._3{margin-left:-31.179480pt;}
._5{margin-left:-29.174456pt;}
._15{margin-left:-27.576870pt;}
._18{margin-left:-24.592211pt;}
._12{margin-left:-22.490704pt;}
._1{margin-left:-6.774309pt;}
._6{margin-left:-4.903660pt;}
._0{margin-left:-2.602069pt;}
._7{margin-left:-1.340755pt;}
._2{width:0.898976pt;}
._a{width:1.902258pt;}
._10{width:2.897876pt;}
._1a{width:11.267610pt;}
._19{width:12.218241pt;}
._d{width:15.081882pt;}
._8{width:16.000151pt;}
._b{width:17.139787pt;}
._9{width:18.345461pt;}
._e{width:19.895111pt;}
._4{width:21.788803pt;}
._f{width:23.330180pt;}
._14{width:24.430447pt;}
._11{width:26.763717pt;}
._17{width:29.251587pt;}
._13{width:30.843770pt;}
._c{width:36.217713pt;}
._16{width:37.363637pt;}
.fs7{font-size:31.880427pt;}
.fs3{font-size:37.193867pt;}
.fs2{font-size:42.507253pt;}
.fs8{font-size:47.820693pt;}
.fs4{font-size:53.134080pt;}
.fs6{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:94.853427pt;}
.y26{bottom:134.693027pt;}
.y25{bottom:149.253427pt;}
.y24{bottom:163.973160pt;}
.y23{bottom:183.653333pt;}
.y22{bottom:203.653147pt;}
.y21{bottom:221.732880pt;}
.y20{bottom:239.813147pt;}
.y1f{bottom:257.892880pt;}
.y1e{bottom:275.973147pt;}
.y1d{bottom:294.053413pt;}
.y1c{bottom:312.133147pt;}
.y1b{bottom:330.053413pt;}
.y1a{bottom:348.133147pt;}
.y19{bottom:366.213413pt;}
.y18{bottom:384.293147pt;}
.y17{bottom:416.773413pt;}
.y16{bottom:462.053680pt;}
.y15{bottom:478.053680pt;}
.y14{bottom:493.893280pt;}
.y13{bottom:509.893280pt;}
.y12{bottom:525.733413pt;}
.y11{bottom:541.733413pt;}
.y10{bottom:557.733413pt;}
.yf{bottom:573.573547pt;}
.ye{bottom:589.573547pt;}
.yd{bottom:605.573547pt;}
.yc{bottom:621.413680pt;}
.yb{bottom:637.413680pt;}
.ya{bottom:653.253813pt;}
.y9{bottom:673.893413pt;}
.y8{bottom:736.453813pt;}
.y7{bottom:759.813680pt;}
.y6{bottom:792.133413pt;}
.y5{bottom:815.653680pt;}
.y4{bottom:847.973520pt;}
.y3{bottom:866.533387pt;}
.y2{bottom:907.013600pt;}
.y1{bottom:936.293333pt;}
.h9{height:15.384293pt;}
.h4{height:24.696727pt;}
.ha{height:35.865520pt;}
.h6{height:37.087588pt;}
.h5{height:39.850560pt;}
.h8{height:43.636400pt;}
.h3{height:51.306897pt;}
.h7{height:53.559147pt;}
.h1{height:64.913535pt;}
.h2{height:81.099947pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xc{left:94.558840pt;}
.x2{left:108.000000pt;}
.xd{left:110.880267pt;}
.x5{left:116.639813pt;}
.x1{left:125.759867pt;}
.xb{left:130.879107pt;}
.xa{left:150.719107pt;}
.x3{left:201.440000pt;}
.x4{left:264.799653pt;}
.x7{left:276.799080pt;}
.x6{left:282.079507pt;}
.x8{left:305.759000pt;}
.x9{left:358.239107pt;}
.xe{left:383.840600pt;}
}




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