
    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_cf4d57946923c0d0ea7e3b8d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_657817290d578e1a4254f779.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_d42ba9464e727c04d2a0b709.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966309;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_40952f68280b0576d13dc8a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.774902;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_68e2c807eddf02937afa4223.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675293;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_7bfb6ad08787923e2039f2f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_2064637803efce89334cf92a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_4e8901a7b9664723c532d679.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.671387;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);}
.v1{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-4.838399px;}
.ls18{letter-spacing:-1.708800px;}
.ls4{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.268800px;}
.lsa{letter-spacing:-0.230400px;}
.lse{letter-spacing:-0.192000px;}
.ls1a{letter-spacing:-0.172800px;}
.lsf{letter-spacing:-0.115200px;}
.ls17{letter-spacing:-0.096000px;}
.ls6{letter-spacing:-0.076800px;}
.ls1e{letter-spacing:-0.072000px;}
.ls15{letter-spacing:-0.057600px;}
.ls16{letter-spacing:-0.038400px;}
.ls1f{letter-spacing:-0.036000px;}
.ls7{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.057600px;}
.ls1{letter-spacing:0.096000px;}
.ls5{letter-spacing:0.115200px;}
.ls10{letter-spacing:0.134400px;}
.ls1c{letter-spacing:0.151200px;}
.lsb{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.172800px;}
.ls1d{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.230400px;}
.ls1b{letter-spacing:0.259200px;}
.lsc{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.326400px;}
.ls11{letter-spacing:0.364800px;}
.ls3{letter-spacing:0.384000px;}
.ls8{letter-spacing:0.403200px;}
.ls9{letter-spacing:0.441600px;}
.ls0{letter-spacing:148.800017px;}
.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;}
}
.wsd{word-spacing:-126.684000px;}
.wsc{word-spacing:-126.648000px;}
.wsa{word-spacing:-101.606400px;}
.ws9{word-spacing:-101.376000px;}
.ws8{word-spacing:-101.318400px;}
.ws3{word-spacing:-68.025583px;}
.ws4{word-spacing:-67.967983px;}
.ws5{word-spacing:-67.814383px;}
.ws7{word-spacing:-67.737583px;}
.ws0{word-spacing:-67.699183px;}
.ws2{word-spacing:-67.583983px;}
.ws1{word-spacing:-67.468783px;}
.ws6{word-spacing:-67.315183px;}
.wsb{word-spacing:-38.016000px;}
.wse{word-spacing:0.000000px;}
._5{margin-left:-26.495993px;}
._4{margin-left:-18.431995px;}
._6{margin-left:-17.279996px;}
._8{margin-left:-4.799999px;}
._0{margin-left:-3.647999px;}
._3{margin-left:-2.303999px;}
._1{margin-left:-1.152000px;}
._2{width:1.536000px;}
._7{width:2.687999px;}
._9{width:4.607999px;}
._a{width:5.951999px;}
._b{width:1779.127199px;}
.fc1{color:rgb(230,126,34);}
.fc2{color:rgb(242,242,242);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:108.000000px;}
.fs0{font-size:191.999952px;}
.fs3{font-size:288.000000px;}
.fs2{font-size:360.000000px;}
.fs1{font-size:690.000048px;}
.y0{bottom:0.000000px;}
.y4c{bottom:13.440000px;}
.yc{bottom:107.400000px;}
.y6{bottom:110.640000px;}
.y12{bottom:112.080000px;}
.yb{bottom:193.080000px;}
.y5{bottom:196.320000px;}
.y11{bottom:197.400000px;}
.ya{bottom:280.200000px;}
.y4{bottom:283.080000px;}
.y10{bottom:284.520000px;}
.y9{bottom:365.520000px;}
.y3{bottom:368.760000px;}
.yf{bottom:369.840000px;}
.y8{bottom:452.640000px;}
.y2{bottom:455.520000px;}
.ye{bottom:456.960000px;}
.y7{bottom:539.400000px;}
.y1{bottom:542.640000px;}
.yd{bottom:544.080000px;}
.y49{bottom:779.880000px;}
.y48{bottom:928.560000px;}
.y47{bottom:1013.880000px;}
.y3e{bottom:1025.760000px;}
.y46{bottom:1101.000000px;}
.y3d{bottom:1112.520000px;}
.y36{bottom:1113.240000px;}
.y45{bottom:1187.760000px;}
.y3c{bottom:1198.200000px;}
.y35{bottom:1200.360000px;}
.y44{bottom:1273.440000px;}
.y3b{bottom:1284.960000px;}
.y34{bottom:1287.480000px;}
.y43{bottom:1360.560000px;}
.y3a{bottom:1370.640000px;}
.y33{bottom:1372.800000px;}
.y42{bottom:1445.880000px;}
.y39{bottom:1457.760000px;}
.y32{bottom:1459.920000px;}
.y38{bottom:1544.520000px;}
.y41{bottom:1619.760000px;}
.y37{bottom:1630.200000px;}
.y31{bottom:1632.360000px;}
.y40{bottom:1705.440000px;}
.y30{bottom:1719.480000px;}
.y3f{bottom:1792.560000px;}
.y2f{bottom:1804.800000px;}
.y2e{bottom:1891.920000px;}
.y2d{bottom:1977.240000px;}
.y4b{bottom:2833.680000px;}
.y4a{bottom:2838.720000px;}
.y4e{bottom:2953.200000px;}
.y2c{bottom:3061.200000px;}
.y2b{bottom:3148.320000px;}
.y1e{bottom:3226.440000px;}
.y2a{bottom:3235.080000px;}
.y1d{bottom:3312.120000px;}
.y29{bottom:3320.760000px;}
.y1c{bottom:3398.880000px;}
.y28{bottom:3407.520000px;}
.y27{bottom:3580.320150px;}
.y1b{bottom:3658.440150px;}
.y26{bottom:3667.080150px;}
.y1a{bottom:3744.120150px;}
.y25{bottom:3752.760150px;}
.y19{bottom:3830.880150px;}
.y24{bottom:3839.520150px;}
.y18{bottom:3918.000150px;}
.y23{bottom:3925.200150px;}
.y17{bottom:4003.680150px;}
.y22{bottom:4012.320150px;}
.y16{bottom:4090.440150px;}
.y21{bottom:4099.080150px;}
.y20{bottom:4172.520150px;}
.y1f{bottom:4231.200150px;}
.y4d{bottom:4312.200150px;}
.y15{bottom:4516.680150px;}
.y14{bottom:4670.040150px;}
.y13{bottom:4877.040150px;}
.h6{height:82.582031px;}
.h1{height:146.812463px;}
.h5{height:220.218750px;}
.h4{height:239.941406px;}
.h3{height:273.515625px;}
.h2{height:524.238318px;}
.h0{height:5052.000000px;}
.w0{width:3576.000000px;}
.x0{left:0.000000px;}
.x12{left:10.799881px;}
.x5{left:58.568385px;}
.x6{left:112.568385px;}
.xc{left:114.153420px;}
.x11{left:186.758250px;}
.x7{left:540.093750px;}
.x8{left:843.191250px;}
.x3{left:1247.536350px;}
.xd{left:1300.116750px;}
.x4{left:1301.536350px;}
.xf{left:1390.099350px;}
.x9{left:1404.780750px;}
.x13{left:1510.405500px;}
.x14{left:1610.133000px;}
.x1{left:2435.569500px;}
.xe{left:2488.534500px;}
.x2{left:2489.569500px;}
.xa{left:2512.719000px;}
.x10{left:2543.850000px;}
.xb{left:2566.719000px;}
@media print{
.v1{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-4.300799pt;}
.ls18{letter-spacing:-1.518933pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.238933pt;}
.lsa{letter-spacing:-0.204800pt;}
.lse{letter-spacing:-0.170667pt;}
.ls1a{letter-spacing:-0.153600pt;}
.lsf{letter-spacing:-0.102400pt;}
.ls17{letter-spacing:-0.085333pt;}
.ls6{letter-spacing:-0.068267pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls15{letter-spacing:-0.051200pt;}
.ls16{letter-spacing:-0.034133pt;}
.ls1f{letter-spacing:-0.032000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.051200pt;}
.ls1{letter-spacing:0.085333pt;}
.ls5{letter-spacing:0.102400pt;}
.ls10{letter-spacing:0.119467pt;}
.ls1c{letter-spacing:0.134400pt;}
.lsb{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.153600pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.204800pt;}
.ls1b{letter-spacing:0.230400pt;}
.lsc{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.290133pt;}
.ls11{letter-spacing:0.324267pt;}
.ls3{letter-spacing:0.341333pt;}
.ls8{letter-spacing:0.358400pt;}
.ls9{letter-spacing:0.392533pt;}
.ls0{letter-spacing:132.266682pt;}
.wsd{word-spacing:-112.608000pt;}
.wsc{word-spacing:-112.576000pt;}
.wsa{word-spacing:-90.316800pt;}
.ws9{word-spacing:-90.112000pt;}
.ws8{word-spacing:-90.060800pt;}
.ws3{word-spacing:-60.467185pt;}
.ws4{word-spacing:-60.415985pt;}
.ws5{word-spacing:-60.279452pt;}
.ws7{word-spacing:-60.211185pt;}
.ws0{word-spacing:-60.177052pt;}
.ws2{word-spacing:-60.074652pt;}
.ws1{word-spacing:-59.972252pt;}
.ws6{word-spacing:-59.835718pt;}
.wsb{word-spacing:-33.792000pt;}
.wse{word-spacing:0.000000pt;}
._5{margin-left:-23.551994pt;}
._4{margin-left:-16.383996pt;}
._6{margin-left:-15.359996pt;}
._8{margin-left:-4.266666pt;}
._0{margin-left:-3.242666pt;}
._3{margin-left:-2.047999pt;}
._1{margin-left:-1.024000pt;}
._2{width:1.365333pt;}
._7{width:2.389333pt;}
._9{width:4.095999pt;}
._a{width:5.290665pt;}
._b{width:1581.446399pt;}
.fs4{font-size:96.000000pt;}
.fs0{font-size:170.666624pt;}
.fs3{font-size:256.000000pt;}
.fs2{font-size:320.000000pt;}
.fs1{font-size:613.333376pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:11.946667pt;}
.yc{bottom:95.466667pt;}
.y6{bottom:98.346667pt;}
.y12{bottom:99.626667pt;}
.yb{bottom:171.626667pt;}
.y5{bottom:174.506667pt;}
.y11{bottom:175.466667pt;}
.ya{bottom:249.066667pt;}
.y4{bottom:251.626667pt;}
.y10{bottom:252.906667pt;}
.y9{bottom:324.906667pt;}
.y3{bottom:327.786667pt;}
.yf{bottom:328.746667pt;}
.y8{bottom:402.346667pt;}
.y2{bottom:404.906667pt;}
.ye{bottom:406.186667pt;}
.y7{bottom:479.466667pt;}
.y1{bottom:482.346667pt;}
.yd{bottom:483.626667pt;}
.y49{bottom:693.226667pt;}
.y48{bottom:825.386667pt;}
.y47{bottom:901.226667pt;}
.y3e{bottom:911.786667pt;}
.y46{bottom:978.666667pt;}
.y3d{bottom:988.906667pt;}
.y36{bottom:989.546667pt;}
.y45{bottom:1055.786667pt;}
.y3c{bottom:1065.066667pt;}
.y35{bottom:1066.986667pt;}
.y44{bottom:1131.946667pt;}
.y3b{bottom:1142.186667pt;}
.y34{bottom:1144.426667pt;}
.y43{bottom:1209.386667pt;}
.y3a{bottom:1218.346667pt;}
.y33{bottom:1220.266667pt;}
.y42{bottom:1285.226667pt;}
.y39{bottom:1295.786667pt;}
.y32{bottom:1297.706667pt;}
.y38{bottom:1372.906667pt;}
.y41{bottom:1439.786667pt;}
.y37{bottom:1449.066667pt;}
.y31{bottom:1450.986667pt;}
.y40{bottom:1515.946667pt;}
.y30{bottom:1528.426667pt;}
.y3f{bottom:1593.386667pt;}
.y2f{bottom:1604.266667pt;}
.y2e{bottom:1681.706667pt;}
.y2d{bottom:1757.546667pt;}
.y4b{bottom:2518.826667pt;}
.y4a{bottom:2523.306667pt;}
.y4e{bottom:2625.066667pt;}
.y2c{bottom:2721.066667pt;}
.y2b{bottom:2798.506667pt;}
.y1e{bottom:2867.946667pt;}
.y2a{bottom:2875.626667pt;}
.y1d{bottom:2944.106667pt;}
.y29{bottom:2951.786667pt;}
.y1c{bottom:3021.226667pt;}
.y28{bottom:3028.906667pt;}
.y27{bottom:3182.506800pt;}
.y1b{bottom:3251.946800pt;}
.y26{bottom:3259.626800pt;}
.y1a{bottom:3328.106800pt;}
.y25{bottom:3335.786800pt;}
.y19{bottom:3405.226800pt;}
.y24{bottom:3412.906800pt;}
.y18{bottom:3482.666800pt;}
.y23{bottom:3489.066800pt;}
.y17{bottom:3558.826800pt;}
.y22{bottom:3566.506800pt;}
.y16{bottom:3635.946800pt;}
.y21{bottom:3643.626800pt;}
.y20{bottom:3708.906800pt;}
.y1f{bottom:3761.066800pt;}
.y4d{bottom:3833.066800pt;}
.y15{bottom:4014.826800pt;}
.y14{bottom:4151.146800pt;}
.y13{bottom:4335.146800pt;}
.h6{height:73.406250pt;}
.h1{height:130.499967pt;}
.h5{height:195.750000pt;}
.h4{height:213.281250pt;}
.h3{height:243.125000pt;}
.h2{height:465.989616pt;}
.h0{height:4490.666667pt;}
.w0{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x12{left:9.599895pt;}
.x5{left:52.060787pt;}
.x6{left:100.060787pt;}
.xc{left:101.469707pt;}
.x11{left:166.007333pt;}
.x7{left:480.083333pt;}
.x8{left:749.503333pt;}
.x3{left:1108.921200pt;}
.xd{left:1155.659333pt;}
.x4{left:1156.921200pt;}
.xf{left:1235.643867pt;}
.x9{left:1248.694000pt;}
.x13{left:1342.582667pt;}
.x14{left:1431.229333pt;}
.x1{left:2164.950667pt;}
.xe{left:2212.030667pt;}
.x2{left:2212.950667pt;}
.xa{left:2233.528000pt;}
.x10{left:2261.200000pt;}
.xb{left:2281.528000pt;}
}




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