
    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_1c3324f463a1f6c95ea04698.woff')format("woff");}.ff1{font-family:ff1;line-height:0.958000;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_087d4efc8a79f8388b505e5e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.727011;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_6a90317a8b0aef3e1b8766a1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.934000;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_53750c293702e9d1e0902106.woff')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_4ab21fb1df391805060e93b3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.883000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249990,-0.002182,0.002182,0.249990,0,0);-ms-transform:matrix(0.249990,-0.002182,0.002182,0.249990,0,0);-webkit-transform:matrix(0.249990,-0.002182,0.002182,0.249990,0,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);}
.m3{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);}
.v1{vertical-align:-126.554400px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-3.948000px;}
.ls4{letter-spacing:-0.738000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.400000px;}
.ls2{letter-spacing:2.400001px;}
.ls0{letter-spacing:2.820000px;}
.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;}
}
.ws4{word-spacing:-140.544000px;}
.wse{word-spacing:-129.744000px;}
.ws2{word-spacing:-76.986000px;}
.ws3{word-spacing:-73.200000px;}
.ws9{word-spacing:-60.630000px;}
.ws6{word-spacing:-60.024000px;}
.wsa{word-spacing:-57.360034px;}
.ws8{word-spacing:-57.360000px;}
.ws7{word-spacing:-57.096000px;}
.ws1{word-spacing:-52.704000px;}
.ws5{word-spacing:-41.220000px;}
.ws0{word-spacing:-34.650000px;}
.wsc{word-spacing:-1.410000px;}
.wsb{word-spacing:0.000000px;}
.wsd{word-spacing:0.738000px;}
._7{margin-left:-52.488000px;}
._c{margin-left:-50.151600px;}
._0{margin-left:-17.167200px;}
._e{margin-left:-15.926400px;}
._1{margin-left:-14.352000px;}
._a{margin-left:-10.716000px;}
._6{margin-left:-7.754400px;}
._5{margin-left:-6.696000px;}
._2{margin-left:-5.575200px;}
._f{margin-left:-4.465800px;}
._3{margin-left:-3.045600px;}
._4{margin-left:-1.728000px;}
._b{width:2.100000px;}
._9{width:4.536000px;}
._d{width:129.744000px;}
._8{width:765.995400px;}
.fca{color:transparent;}
.fc9{color:rgb(231,57,47);}
.fc8{color:rgb(0,147,126);}
.fc7{color:rgb(231,55,67);}
.fc6{color:rgb(2,159,121);}
.fc5{color:rgb(16,171,153);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(41,50,116);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(0,159,120);}
.fc0{color:rgb(230,42,54);}
.fs11{font-size:90.000000px;}
.fs4{font-size:126.000000px;}
.fs2{font-size:162.000000px;}
.fsb{font-size:180.000000px;}
.fsa{font-size:210.000000px;}
.fs1{font-size:216.000000px;}
.fs9{font-size:222.000000px;}
.fsf{font-size:234.000000px;}
.fs10{font-size:240.000000px;}
.fs13{font-size:240.000140px;}
.fsc{font-size:246.000000px;}
.fs8{font-size:270.000000px;}
.fs5{font-size:282.000000px;}
.fs12{font-size:294.000000px;}
.fs3{font-size:300.000000px;}
.fs7{font-size:516.000000px;}
.fs0{font-size:552.000000px;}
.fs6{font-size:576.000000px;}
.fse{font-size:600.000000px;}
.fsd{font-size:612.000000px;}
.y0{bottom:0.000000px;}
.y38{bottom:77.851200px;}
.y3d{bottom:317.973600px;}
.y36{bottom:459.094950px;}
.y35{bottom:529.294950px;}
.y34{bottom:738.626850px;}
.y39{bottom:954.873000px;}
.y3b{bottom:1092.854700px;}
.y37{bottom:1223.532300px;}
.y3a{bottom:1348.290300px;}
.y3c{bottom:1448.579550px;}
.y1d{bottom:1464.850200px;}
.y1c{bottom:1529.650200px;}
.y18{bottom:1581.151950px;}
.y17{bottom:1618.951950px;}
.y1b{bottom:1626.088800px;}
.y2d{bottom:1641.984600px;}
.y16{bottom:1656.751950px;}
.y1a{bottom:1690.888800px;}
.y15{bottom:1694.551950px;}
.y19{bottom:1755.688800px;}
.y2c{bottom:1800.339300px;}
.y14{bottom:1804.670700px;}
.y2b{bottom:1854.339300px;}
.y29{bottom:1909.818300px;}
.y2a{bottom:1973.904300px;}
.y28{bottom:1976.418300px;}
.y13{bottom:2010.416700px;}
.y20{bottom:2333.279700px;}
.y26{bottom:2357.111550px;}
.y1e{bottom:2497.615200px;}
.y27{bottom:2529.371850px;}
.y1f{bottom:2671.679700px;}
.y25{bottom:2709.747600px;}
.y24{bottom:2800.447950px;}
.y21{bottom:2843.374650px;}
.y23{bottom:2890.447950px;}
.y4{bottom:3130.770450px;}
.y31{bottom:3268.327800px;}
.y3{bottom:3289.746450px;}
.y30{bottom:3342.127800px;}
.y2{bottom:3448.722450px;}
.y1{bottom:3607.698450px;}
.y2f{bottom:3689.273700px;}
.y2e{bottom:3763.073700px;}
.y22{bottom:3780.314550px;}
.y9{bottom:4136.636850px;}
.yc{bottom:4158.776850px;}
.y8{bottom:4201.436850px;}
.yb{bottom:4223.576850px;}
.y12{bottom:4225.744500px;}
.yf{bottom:4228.501350px;}
.y7{bottom:4266.236850px;}
.ya{bottom:4288.376850px;}
.y11{bottom:4290.544500px;}
.ye{bottom:4293.301350px;}
.y6{bottom:4331.036850px;}
.y10{bottom:4355.344500px;}
.yd{bottom:4358.101350px;}
.y5{bottom:4395.836850px;}
.y33{bottom:4616.962050px;}
.y32{bottom:4812.037050px;}
.hf{height:69.300000px;}
.h5{height:92.736000px;}
.h3{height:162.216000px;}
.h9{height:167.040000px;}
.hd{height:175.734000px;}
.hb{height:184.746000px;}
.h6{height:202.761065px;}
.h8{height:206.016000px;}
.he{height:222.720000px;}
.h11{height:222.720130px;}
.h4{height:225.300000px;}
.ha{height:261.696000px;}
.h10{height:272.832000px;}
.h2{height:414.552000px;}
.h7{height:432.576000px;}
.hc{height:567.936000px;}
.h0{height:5055.585000px;}
.h1{height:5055.750000px;}
.w0{width:3575.910000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x15{left:71.376450px;}
.x1a{left:118.896150px;}
.x4{left:263.823450px;}
.x25{left:310.528350px;}
.x17{left:327.346050px;}
.x24{left:367.007400px;}
.x12{left:379.982550px;}
.x13{left:384.950250px;}
.x16{left:438.068550px;}
.x1f{left:486.850500px;}
.x23{left:724.070850px;}
.x26{left:834.120300px;}
.x21{left:839.937600px;}
.x19{left:933.073800px;}
.x2{left:994.546200px;}
.x18{left:1002.058800px;}
.x14{left:1222.582650px;}
.x9{left:1527.635850px;}
.xb{left:1533.251850px;}
.xa{left:1542.053850px;}
.x3{left:1856.440200px;}
.xf{left:1979.382150px;}
.x6{left:2115.424650px;}
.xd{left:2117.985150px;}
.xc{left:2188.605300px;}
.x1{left:2274.478500px;}
.x10{left:2399.556750px;}
.xe{left:2420.289150px;}
.x11{left:2431.009950px;}
.x27{left:2531.073600px;}
.x20{left:2568.830550px;}
.x7{left:2684.864100px;}
.x5{left:2793.543600px;}
.x1c{left:2868.740100px;}
.x1b{left:2956.316100px;}
.x1e{left:3097.039800px;}
.x8{left:3187.467750px;}
.x1d{left:3234.000300px;}
.x22{left:3488.544750px;}
@media print{
.v1{vertical-align:-112.492800pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-3.509333pt;}
.ls4{letter-spacing:-0.656000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.133333pt;}
.ls2{letter-spacing:2.133335pt;}
.ls0{letter-spacing:2.506667pt;}
.ws4{word-spacing:-124.928000pt;}
.wse{word-spacing:-115.328000pt;}
.ws2{word-spacing:-68.432000pt;}
.ws3{word-spacing:-65.066667pt;}
.ws9{word-spacing:-53.893333pt;}
.ws6{word-spacing:-53.354667pt;}
.wsa{word-spacing:-50.986697pt;}
.ws8{word-spacing:-50.986667pt;}
.ws7{word-spacing:-50.752000pt;}
.ws1{word-spacing:-46.848000pt;}
.ws5{word-spacing:-36.640000pt;}
.ws0{word-spacing:-30.800000pt;}
.wsc{word-spacing:-1.253333pt;}
.wsb{word-spacing:0.000000pt;}
.wsd{word-spacing:0.656000pt;}
._7{margin-left:-46.656000pt;}
._c{margin-left:-44.579200pt;}
._0{margin-left:-15.259733pt;}
._e{margin-left:-14.156800pt;}
._1{margin-left:-12.757333pt;}
._a{margin-left:-9.525333pt;}
._6{margin-left:-6.892800pt;}
._5{margin-left:-5.952000pt;}
._2{margin-left:-4.955733pt;}
._f{margin-left:-3.969600pt;}
._3{margin-left:-2.707200pt;}
._4{margin-left:-1.536000pt;}
._b{width:1.866667pt;}
._9{width:4.032000pt;}
._d{width:115.328000pt;}
._8{width:680.884800pt;}
.fs11{font-size:80.000000pt;}
.fs4{font-size:112.000000pt;}
.fs2{font-size:144.000000pt;}
.fsb{font-size:160.000000pt;}
.fsa{font-size:186.666667pt;}
.fs1{font-size:192.000000pt;}
.fs9{font-size:197.333333pt;}
.fsf{font-size:208.000000pt;}
.fs10{font-size:213.333333pt;}
.fs13{font-size:213.333458pt;}
.fsc{font-size:218.666667pt;}
.fs8{font-size:240.000000pt;}
.fs5{font-size:250.666667pt;}
.fs12{font-size:261.333333pt;}
.fs3{font-size:266.666667pt;}
.fs7{font-size:458.666667pt;}
.fs0{font-size:490.666667pt;}
.fs6{font-size:512.000000pt;}
.fse{font-size:533.333333pt;}
.fsd{font-size:544.000000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:69.201067pt;}
.y3d{bottom:282.643200pt;}
.y36{bottom:408.084400pt;}
.y35{bottom:470.484400pt;}
.y34{bottom:656.557200pt;}
.y39{bottom:848.776000pt;}
.y3b{bottom:971.426400pt;}
.y37{bottom:1087.584267pt;}
.y3a{bottom:1198.480267pt;}
.y3c{bottom:1287.626267pt;}
.y1d{bottom:1302.089067pt;}
.y1c{bottom:1359.689067pt;}
.y18{bottom:1405.468400pt;}
.y17{bottom:1439.068400pt;}
.y1b{bottom:1445.412267pt;}
.y2d{bottom:1459.541867pt;}
.y16{bottom:1472.668400pt;}
.y1a{bottom:1503.012267pt;}
.y15{bottom:1506.268400pt;}
.y19{bottom:1560.612267pt;}
.y2c{bottom:1600.301600pt;}
.y14{bottom:1604.151733pt;}
.y2b{bottom:1648.301600pt;}
.y29{bottom:1697.616267pt;}
.y2a{bottom:1754.581600pt;}
.y28{bottom:1756.816267pt;}
.y13{bottom:1787.037067pt;}
.y20{bottom:2074.026400pt;}
.y26{bottom:2095.210267pt;}
.y1e{bottom:2220.102400pt;}
.y27{bottom:2248.330533pt;}
.y1f{bottom:2374.826400pt;}
.y25{bottom:2408.664533pt;}
.y24{bottom:2489.287067pt;}
.y21{bottom:2527.444133pt;}
.y23{bottom:2569.287067pt;}
.y4{bottom:2782.907067pt;}
.y31{bottom:2905.180267pt;}
.y3{bottom:2924.219067pt;}
.y30{bottom:2970.780267pt;}
.y2{bottom:3065.531067pt;}
.y1{bottom:3206.843067pt;}
.y2f{bottom:3279.354400pt;}
.y2e{bottom:3344.954400pt;}
.y22{bottom:3360.279600pt;}
.y9{bottom:3677.010533pt;}
.yc{bottom:3696.690533pt;}
.y8{bottom:3734.610533pt;}
.yb{bottom:3754.290533pt;}
.y12{bottom:3756.217333pt;}
.yf{bottom:3758.667867pt;}
.y7{bottom:3792.210533pt;}
.ya{bottom:3811.890533pt;}
.y11{bottom:3813.817333pt;}
.ye{bottom:3816.267867pt;}
.y6{bottom:3849.810533pt;}
.y10{bottom:3871.417333pt;}
.yd{bottom:3873.867867pt;}
.y5{bottom:3907.410533pt;}
.y33{bottom:4103.966267pt;}
.y32{bottom:4277.366267pt;}
.hf{height:61.600000pt;}
.h5{height:82.432000pt;}
.h3{height:144.192000pt;}
.h9{height:148.480000pt;}
.hd{height:156.208000pt;}
.hb{height:164.218667pt;}
.h6{height:180.232058pt;}
.h8{height:183.125333pt;}
.he{height:197.973333pt;}
.h11{height:197.973449pt;}
.h4{height:200.266667pt;}
.ha{height:232.618667pt;}
.h10{height:242.517333pt;}
.h2{height:368.490667pt;}
.h7{height:384.512000pt;}
.hc{height:504.832000pt;}
.h0{height:4493.853333pt;}
.h1{height:4494.000000pt;}
.w0{width:3178.586667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x15{left:63.445733pt;}
.x1a{left:105.685467pt;}
.x4{left:234.509733pt;}
.x25{left:276.025200pt;}
.x17{left:290.974267pt;}
.x24{left:326.228800pt;}
.x12{left:337.762267pt;}
.x13{left:342.178000pt;}
.x16{left:389.394267pt;}
.x1f{left:432.756000pt;}
.x23{left:643.618533pt;}
.x26{left:741.440267pt;}
.x21{left:746.611200pt;}
.x19{left:829.398933pt;}
.x2{left:884.041067pt;}
.x18{left:890.718933pt;}
.x14{left:1086.740133pt;}
.x9{left:1357.898533pt;}
.xb{left:1362.890533pt;}
.xa{left:1370.714533pt;}
.x3{left:1650.169067pt;}
.xf{left:1759.450800pt;}
.x6{left:1880.377467pt;}
.xd{left:1882.653467pt;}
.xc{left:1945.426933pt;}
.x1{left:2021.758667pt;}
.x10{left:2132.939333pt;}
.xe{left:2151.368133pt;}
.x11{left:2160.897733pt;}
.x27{left:2249.843200pt;}
.x20{left:2283.404933pt;}
.x7{left:2386.545867pt;}
.x5{left:2483.149867pt;}
.x1c{left:2549.991200pt;}
.x1b{left:2627.836533pt;}
.x1e{left:2752.924267pt;}
.x8{left:2833.304667pt;}
.x1d{left:2874.666933pt;}
.x22{left:3100.928667pt;}
}




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