
    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_067bc49f60245eb561a4269e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_562cb0d9f50fec72f620166c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_aeb8045398c5ec76dda3cf37.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_79f3804887b8afd7ad5730e8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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);}
.v2{vertical-align:-22.050014px;}
.v6{vertical-align:-15.242081px;}
.v4{vertical-align:-5.633856px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:22.050014px;}
.v1{vertical-align:28.349992px;}
.v5{vertical-align:36.000001px;}
.v7{vertical-align:75.022337px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.001052px;}
.ls2{letter-spacing:0.001057px;}
.ls4{letter-spacing:0.089865px;}
.ls5{letter-spacing:0.089910px;}
.ls7{letter-spacing:85.116090px;}
.ls6{letter-spacing:85.116144px;}
.ls1{letter-spacing:213.585708px;}
.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:-41.882401px;}
.ws3{word-spacing:-29.916001px;}
.ws5{word-spacing:-26.592002px;}
.ws7{word-spacing:-16.620000px;}
.ws0{word-spacing:-13.960801px;}
.ws1{word-spacing:-10.858402px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:1649.672499px;}
._4{margin-left:-10.567201px;}
._3{margin-left:-7.992000px;}
._0{margin-left:-6.216000px;}
._1{margin-left:-4.365184px;}
._2{margin-left:-2.683122px;}
._8{margin-left:-1.321325px;}
._5{width:2.032654px;}
._6{width:1014.729716px;}
._7{width:1080.428570px;}
.fc6{color:rgb(255,153,0);}
.fc5{color:rgb(66,133,244);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.200007px;}
.fsf{font-size:43.255801px;}
.fs9{font-size:44.368201px;}
.fs2{font-size:50.400004px;}
.fs4{font-size:58.800008px;}
.fs8{font-size:60.000000px;}
.fse{font-size:64.000007px;}
.fs7{font-size:72.000002px;}
.fs1{font-size:75.600002px;}
.fsc{font-size:84.000000px;}
.fsb{font-size:96.000006px;}
.fsd{font-size:107.437805px;}
.fs6{font-size:108.000003px;}
.fs10{font-size:144.000005px;}
.fs5{font-size:151.200005px;}
.fs0{font-size:167.999999px;}
.fsa{font-size:600.000004px;}
.y0{bottom:0.000000px;}
.y17{bottom:19.464056px;}
.y72{bottom:33.848025px;}
.y5f{bottom:37.466554px;}
.y5{bottom:41.002277px;}
.y71{bottom:51.848026px;}
.y49{bottom:54.422690px;}
.y12{bottom:58.796251px;}
.y5e{bottom:59.272880px;}
.y32{bottom:60.813514px;}
.y3c{bottom:61.610745px;}
.y3e{bottom:61.610779px;}
.y40{bottom:64.864695px;}
.y70{bottom:69.848027px;}
.y64{bottom:78.751986px;}
.y4{bottom:85.826777px;}
.y48{bottom:86.822698px;}
.yc{bottom:87.587083px;}
.y6f{bottom:87.848027px;}
.y31{bottom:89.613512px;}
.y3b{bottom:90.410743px;}
.y3d{bottom:90.410777px;}
.y3f{bottom:93.664694px;}
.y51{bottom:96.775859px;}
.y3{bottom:98.962276px;}
.y63{bottom:103.951980px;}
.y6e{bottom:105.848028px;}
.y47{bottom:119.222703px;}
.y6d{bottom:123.848028px;}
.y62{bottom:129.151978px;}
.y52{bottom:133.462129px;}
.y6c{bottom:141.848029px;}
.y2{bottom:146.541596px;}
.yb{bottom:147.960087px;}
.y33{bottom:155.401246px;}
.y5d{bottom:155.942284px;}
.y6b{bottom:159.848029px;}
.y50{bottom:162.067999px;}
.y4e{bottom:165.519803px;}
.y6a{bottom:177.848030px;}
.ya{bottom:180.360094px;}
.y53{bottom:181.292338px;}
.y4f{bottom:185.828004px;}
.y5c{bottom:188.342289px;}
.y4d{bottom:189.279808px;}
.y69{bottom:195.848031px;}
.y1{bottom:196.941598px;}
.y9{bottom:212.760100px;}
.y37{bottom:213.455676px;}
.y68{bottom:213.848031px;}
.y28{bottom:215.182844px;}
.y1d{bottom:230.225860px;}
.y67{bottom:231.848032px;}
.yf{bottom:237.676034px;}
.y1f{bottom:238.188476px;}
.y36{bottom:242.255666px;}
.y3a{bottom:244.089337px;}
.y2c{bottom:244.491360px;}
.y27{bottom:247.807845px;}
.y14{bottom:249.156592px;}
.y66{bottom:249.848032px;}
.y44{bottom:250.198668px;}
.y30{bottom:253.401145px;}
.y42{bottom:254.793366px;}
.y5a{bottom:265.379277px;}
.y2b{bottom:269.691359px;}
.ye{bottom:270.076039px;}
.y35{bottom:271.055658px;}
.y39{bottom:272.889329px;}
.y13{bottom:272.916597px;}
.y16{bottom:276.596557px;}
.y56{bottom:280.004277px;}
.y26{bottom:280.432842px;}
.y2f{bottom:282.201143px;}
.y43{bottom:282.598673px;}
.y41{bottom:283.593365px;}
.y8{bottom:290.973248px;}
.y59{bottom:294.629277px;}
.y34{bottom:299.855656px;}
.y15{bottom:300.356563px;}
.y38{bottom:301.689328px;}
.y1c{bottom:306.319630px;}
.y55{bottom:309.254278px;}
.y7{bottom:323.373253px;}
.y58{bottom:323.879278px;}
.y22{bottom:330.236575px;}
.y75{bottom:336.624955px;}
.y54{bottom:338.504276px;}
.y1b{bottom:339.424601px;}
.y4c{bottom:349.655774px;}
.y57{bottom:353.129279px;}
.y46{bottom:354.690809px;}
.y21{bottom:359.486569px;}
.y1e{bottom:363.892312px;}
.y18{bottom:363.893786px;}
.y11{bottom:366.723292px;}
.y74{bottom:369.024963px;}
.y25{bottom:380.274073px;}
.y45{bottom:387.090814px;}
.y61{bottom:387.863725px;}
.y20{bottom:388.736570px;}
.y2a{bottom:398.128809px;}
.y10{bottom:399.123297px;}
.y73{bottom:401.424968px;}
.y65{bottom:402.136182px;}
.y1a{bottom:406.278647px;}
.y4b{bottom:410.769237px;}
.y24{bottom:412.674081px;}
.y2e{bottom:416.543079px;}
.y60{bottom:416.663724px;}
.y4a{bottom:424.413658px;}
.y19{bottom:430.038652px;}
.y29{bottom:430.528815px;}
.y23{bottom:445.074087px;}
.y5b{bottom:445.363454px;}
.yd{bottom:455.417595px;}
.y2d{bottom:456.176448px;}
.y6{bottom:539.779915px;}
.h3{height:28.557818px;}
.h13{height:31.491406px;}
.ha{height:32.301264px;}
.h15{height:43.681641px;}
.h9{height:43.710938px;}
.h7{height:52.417970px;}
.hb{height:52.453127px;}
.h4{height:55.038869px;}
.he{height:61.154297px;}
.h2{height:65.067182px;}
.h11{height:69.890629px;}
.hd{height:69.937504px;}
.hf{height:78.217660px;}
.h8{height:78.626956px;}
.h6{height:78.679690px;}
.h10{height:82.593756px;}
.h14{height:104.835941px;}
.h5{height:110.077738px;}
.h1{height:122.308593px;}
.h12{height:153.649293px;}
.hc{height:436.816409px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1{left:10.125000px;}
.x1f{left:18.717031px;}
.x3e{left:24.021314px;}
.x4{left:27.637415px;}
.x20{left:29.949804px;}
.xe{left:37.251971px;}
.xc{left:46.395986px;}
.x18{left:52.311026px;}
.x40{left:55.198807px;}
.x4b{left:68.250004px;}
.x4d{left:71.006014px;}
.x21{left:73.054136px;}
.xd{left:74.350394px;}
.x6{left:89.480315px;}
.x36{left:90.804344px;}
.x25{left:108.326312px;}
.x23{left:112.456151px;}
.x22{left:119.778590px;}
.x24{left:127.335724px;}
.x17{left:149.942615px;}
.x5{left:163.917942px;}
.x47{left:175.154541px;}
.x3b{left:181.674220px;}
.x12{left:184.452767px;}
.x10{left:204.493923px;}
.xf{left:210.436094px;}
.x3d{left:216.360288px;}
.x42{left:237.085075px;}
.x3c{left:242.651584px;}
.x43{left:255.730917px;}
.x41{left:262.602335px;}
.x11{left:285.788394px;}
.x2b{left:409.088367px;}
.x4a{left:411.481329px;}
.x2e{left:416.082191px;}
.x2c{left:431.770345px;}
.x26{left:435.404061px;}
.x48{left:440.143698px;}
.x2f{left:443.239597px;}
.x13{left:447.491669px;}
.x2d{left:453.807960px;}
.x3{left:458.814007px;}
.x9{left:503.468521px;}
.x3f{left:521.343692px;}
.x19{left:571.740121px;}
.x1a{left:583.697641px;}
.x1b{left:586.021676px;}
.x2{left:612.100403px;}
.x45{left:613.295457px;}
.x30{left:625.098051px;}
.x44{left:629.299370px;}
.x31{left:632.976973px;}
.x28{left:635.493194px;}
.x27{left:644.813180px;}
.x38{left:652.948783px;}
.x8{left:657.921284px;}
.x29{left:659.737300px;}
.x46{left:661.975003px;}
.x7{left:679.889767px;}
.x3a{left:681.050159px;}
.x2a{left:698.173234px;}
.x14{left:712.431672px;}
.x37{left:719.814016px;}
.x15{left:723.081063px;}
.xb{left:732.321878px;}
.x4c{left:772.305100px;}
.x32{left:791.688196px;}
.xa{left:799.432068px;}
.x16{left:805.133388px;}
.x33{left:827.941115px;}
.x1c{left:852.311035px;}
.x1d{left:863.523682px;}
.x1e{left:865.059571px;}
.x34{left:869.710299px;}
.x35{left:874.396665px;}
.x49{left:888.947848px;}
.x39{left:893.421254px;}
@media print{
.v2{vertical-align:-19.600013pt;}
.v6{vertical-align:-13.548516pt;}
.v4{vertical-align:-5.007872pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.600013pt;}
.v1{vertical-align:25.199993pt;}
.v5{vertical-align:32.000001pt;}
.v7{vertical-align:66.686522pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000935pt;}
.ls2{letter-spacing:0.000939pt;}
.ls4{letter-spacing:0.079880pt;}
.ls5{letter-spacing:0.079920pt;}
.ls7{letter-spacing:75.658746pt;}
.ls6{letter-spacing:75.658794pt;}
.ls1{letter-spacing:189.853963pt;}
.ws6{word-spacing:-37.228801pt;}
.ws3{word-spacing:-26.592001pt;}
.ws5{word-spacing:-23.637335pt;}
.ws7{word-spacing:-14.773333pt;}
.ws0{word-spacing:-12.409601pt;}
.ws1{word-spacing:-9.651913pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:1466.375555pt;}
._4{margin-left:-9.393067pt;}
._3{margin-left:-7.104000pt;}
._0{margin-left:-5.525333pt;}
._1{margin-left:-3.880164pt;}
._2{margin-left:-2.384997pt;}
._8{margin-left:-1.174511pt;}
._5{width:1.806804pt;}
._6{width:901.981970pt;}
._7{width:960.380951pt;}
.fs3{font-size:34.844451pt;}
.fsf{font-size:38.449601pt;}
.fs9{font-size:39.438401pt;}
.fs2{font-size:44.800004pt;}
.fs4{font-size:52.266674pt;}
.fs8{font-size:53.333334pt;}
.fse{font-size:56.888895pt;}
.fs7{font-size:64.000002pt;}
.fs1{font-size:67.200002pt;}
.fsc{font-size:74.666666pt;}
.fsb{font-size:85.333339pt;}
.fsd{font-size:95.500271pt;}
.fs6{font-size:96.000003pt;}
.fs10{font-size:128.000004pt;}
.fs5{font-size:134.400004pt;}
.fs0{font-size:149.333333pt;}
.fsa{font-size:533.333337pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:17.301383pt;}
.y72{bottom:30.087134pt;}
.y5f{bottom:33.303604pt;}
.y5{bottom:36.446469pt;}
.y71{bottom:46.087134pt;}
.y49{bottom:48.375724pt;}
.y12{bottom:52.263334pt;}
.y5e{bottom:52.687004pt;}
.y32{bottom:54.056456pt;}
.y3c{bottom:54.765106pt;}
.y3e{bottom:54.765136pt;}
.y40{bottom:57.657507pt;}
.y70{bottom:62.087135pt;}
.y64{bottom:70.001765pt;}
.y4{bottom:76.290468pt;}
.y48{bottom:77.175731pt;}
.yc{bottom:77.855185pt;}
.y6f{bottom:78.087135pt;}
.y31{bottom:79.656455pt;}
.y3b{bottom:80.365105pt;}
.y3d{bottom:80.365135pt;}
.y3f{bottom:83.257505pt;}
.y51{bottom:86.022985pt;}
.y3{bottom:87.966468pt;}
.y63{bottom:92.401760pt;}
.y6e{bottom:94.087136pt;}
.y47{bottom:105.975736pt;}
.y6d{bottom:110.087136pt;}
.y62{bottom:114.801758pt;}
.y52{bottom:118.633004pt;}
.y6c{bottom:126.087137pt;}
.y2{bottom:130.259197pt;}
.yb{bottom:131.520077pt;}
.y33{bottom:138.134441pt;}
.y5d{bottom:138.615363pt;}
.y6b{bottom:142.087137pt;}
.y50{bottom:144.060443pt;}
.y4e{bottom:147.128713pt;}
.y6a{bottom:158.087138pt;}
.ya{bottom:160.320084pt;}
.y53{bottom:161.148745pt;}
.y4f{bottom:165.180448pt;}
.y5c{bottom:167.415368pt;}
.y4d{bottom:168.248718pt;}
.y69{bottom:174.087138pt;}
.y1{bottom:175.059198pt;}
.y9{bottom:189.120089pt;}
.y37{bottom:189.738379pt;}
.y68{bottom:190.087139pt;}
.y28{bottom:191.273639pt;}
.y1d{bottom:204.645209pt;}
.y67{bottom:206.087139pt;}
.yf{bottom:211.267585pt;}
.y1f{bottom:211.723089pt;}
.y36{bottom:215.338370pt;}
.y3a{bottom:216.968300pt;}
.y2c{bottom:217.325654pt;}
.y27{bottom:220.273640pt;}
.y14{bottom:221.472526pt;}
.y66{bottom:222.087140pt;}
.y44{bottom:222.398816pt;}
.y30{bottom:225.245462pt;}
.y42{bottom:226.482992pt;}
.y5a{bottom:235.892690pt;}
.y2b{bottom:239.725652pt;}
.ye{bottom:240.067590pt;}
.y35{bottom:240.938362pt;}
.y39{bottom:242.568292pt;}
.y13{bottom:242.592530pt;}
.y16{bottom:245.863607pt;}
.y56{bottom:248.892691pt;}
.y26{bottom:249.273638pt;}
.y2f{bottom:250.845461pt;}
.y43{bottom:251.198821pt;}
.y41{bottom:252.082991pt;}
.y8{bottom:258.642887pt;}
.y59{bottom:261.892691pt;}
.y34{bottom:266.538361pt;}
.y15{bottom:266.983611pt;}
.y38{bottom:268.168291pt;}
.y1c{bottom:272.284115pt;}
.y55{bottom:274.892692pt;}
.y7{bottom:287.442892pt;}
.y58{bottom:287.892692pt;}
.y22{bottom:293.543622pt;}
.y75{bottom:299.222182pt;}
.y54{bottom:300.892689pt;}
.y1b{bottom:301.710756pt;}
.y4c{bottom:310.805133pt;}
.y57{bottom:313.892693pt;}
.y46{bottom:315.280719pt;}
.y21{bottom:319.543617pt;}
.y1e{bottom:323.459833pt;}
.y18{bottom:323.461143pt;}
.y11{bottom:325.976259pt;}
.y74{bottom:328.022189pt;}
.y25{bottom:338.021399pt;}
.y45{bottom:344.080724pt;}
.y61{bottom:344.767756pt;}
.y20{bottom:345.543618pt;}
.y2a{bottom:353.892275pt;}
.y10{bottom:354.776264pt;}
.y73{bottom:356.822194pt;}
.y65{bottom:357.454384pt;}
.y1a{bottom:361.136575pt;}
.y4b{bottom:365.128210pt;}
.y24{bottom:366.821405pt;}
.y2e{bottom:370.260515pt;}
.y60{bottom:370.367755pt;}
.y4a{bottom:377.256585pt;}
.y19{bottom:382.256580pt;}
.y29{bottom:382.692280pt;}
.y23{bottom:395.621410pt;}
.y5b{bottom:395.878625pt;}
.yd{bottom:404.815640pt;}
.y2d{bottom:405.490176pt;}
.y6{bottom:479.804369pt;}
.h3{height:25.384727pt;}
.h13{height:27.992361pt;}
.ha{height:28.712235pt;}
.h15{height:38.828125pt;}
.h9{height:38.854167pt;}
.h7{height:46.593751pt;}
.hb{height:46.625001pt;}
.h4{height:48.923439pt;}
.he{height:54.359375pt;}
.h2{height:57.837495pt;}
.h11{height:62.125004pt;}
.hd{height:62.166671pt;}
.hf{height:69.526809pt;}
.h8{height:69.890627pt;}
.h6{height:69.937502pt;}
.h10{height:73.416672pt;}
.h14{height:93.187503pt;}
.h5{height:97.846878pt;}
.h1{height:108.718750pt;}
.h12{height:136.577149pt;}
.hc{height:388.281253pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1{left:9.000000pt;}
.x1f{left:16.637361pt;}
.x3e{left:21.352279pt;}
.x4{left:24.566591pt;}
.x20{left:26.622048pt;}
.xe{left:33.112863pt;}
.xc{left:41.240876pt;}
.x18{left:46.498689pt;}
.x40{left:49.065607pt;}
.x4b{left:60.666670pt;}
.x4d{left:63.116457pt;}
.x21{left:64.937010pt;}
.xd{left:66.089239pt;}
.x6{left:79.538058pt;}
.x36{left:80.714973pt;}
.x25{left:96.290055pt;}
.x23{left:99.961023pt;}
.x22{left:106.469857pt;}
.x24{left:113.187311pt;}
.x17{left:133.282324pt;}
.x5{left:145.704838pt;}
.x47{left:155.692925pt;}
.x3b{left:161.488195pt;}
.x12{left:163.958015pt;}
.x10{left:181.772376pt;}
.xf{left:187.054306pt;}
.x3d{left:192.320256pt;}
.x42{left:210.742289pt;}
.x3c{left:215.690297pt;}
.x43{left:227.316370pt;}
.x41{left:233.424297pt;}
.x11{left:254.034128pt;}
.x2b{left:363.634104pt;}
.x4a{left:365.761182pt;}
.x2e{left:369.850837pt;}
.x2c{left:383.795862pt;}
.x26{left:387.025832pt;}
.x48{left:391.238843pt;}
.x2f{left:393.990753pt;}
.x13{left:397.770373pt;}
.x2d{left:403.384853pt;}
.x3{left:407.834673pt;}
.x9{left:447.527574pt;}
.x3f{left:463.416615pt;}
.x19{left:508.213441pt;}
.x1a{left:518.842348pt;}
.x1b{left:520.908157pt;}
.x2{left:544.089247pt;}
.x45{left:545.151517pt;}
.x30{left:555.642712pt;}
.x44{left:559.377218pt;}
.x31{left:562.646198pt;}
.x28{left:564.882839pt;}
.x27{left:573.167271pt;}
.x38{left:580.398919pt;}
.x8{left:584.818919pt;}
.x29{left:586.433156pt;}
.x46{left:588.422225pt;}
.x7{left:604.346459pt;}
.x3a{left:605.377919pt;}
.x2a{left:620.598430pt;}
.x14{left:633.272597pt;}
.x37{left:639.834680pt;}
.x15{left:642.738723pt;}
.xb{left:650.952781pt;}
.x4c{left:686.493422pt;}
.x32{left:703.722841pt;}
.xa{left:710.606283pt;}
.x16{left:715.674123pt;}
.x33{left:735.947658pt;}
.x1c{left:757.609809pt;}
.x1d{left:767.576607pt;}
.x1e{left:768.941841pt;}
.x34{left:773.075822pt;}
.x35{left:777.241480pt;}
.x49{left:790.175865pt;}
.x39{left:794.152225pt;}
}




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