
    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_5aa789857cc807bcf7dd12a6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.140861;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_29078cb1a88d638ee5ec88e5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.080000;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_94628cd52037afccabb3a9a1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.089000;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_6d995a0385ebdb88ac0a9184.woff')format("woff");}.ff4{font-family:ff4;line-height:1.140861;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_472216c7abd038d0c89bd2d3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_0c7f2815ea4629c66898880d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.089000;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-103.680000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:10.680000px;}
.ls9{letter-spacing:-0.191400px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.084600px;}
.lsb{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.240000px;}
.ls3{letter-spacing:49.233600px;}
.ls2{letter-spacing:49.284000px;}
.ls6{letter-spacing:49.428000px;}
.ls5{letter-spacing:57.549600px;}
.ls4{letter-spacing:57.600000px;}
.ls7{letter-spacing:65.865600px;}
.lsa{letter-spacing:65.904000px;}
.ls8{letter-spacing:65.916000px;}
.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;}
}
.ws8{word-spacing:-78.048000px;}
.ws4{word-spacing:-33.552000px;}
.ws5{word-spacing:-28.828800px;}
.ws6{word-spacing:-28.800000px;}
.ws9{word-spacing:-28.637400px;}
.wsa{word-spacing:-21.744000px;}
.ws7{word-spacing:-21.600000px;}
.ws3{word-spacing:-16.848000px;}
.ws1{word-spacing:-1.687200px;}
.ws0{word-spacing:-1.631040px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-1.944864px;}
._1{width:1.053648px;}
._3{width:2.180880px;}
._6{width:3.622464px;}
._2{width:22.073520px;}
._4{width:258.185424px;}
._5{width:3873.840000px;}
.fc6{color:transparent;}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(13,13,13);}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(242,242,242);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:84.240000px;}
.fs7{font-size:108.000000px;}
.fs10{font-size:108.144000px;}
.fsf{font-size:113.840857px;}
.fs2{font-size:120.240000px;}
.fse{font-size:120.384000px;}
.fs3{font-size:144.000000px;}
.fsa{font-size:144.144000px;}
.fs4{font-size:167.760000px;}
.fs6{font-size:167.904000px;}
.fsb{font-size:192.240000px;}
.fs5{font-size:239.904000px;}
.fs9{font-size:264.240000px;}
.fsd{font-size:264.384000px;}
.fsc{font-size:288.000000px;}
.fs0{font-size:324.000000px;}
.fs1{font-size:324.144000px;}
.y0{bottom:0.000000px;}
.y37{bottom:12.168000px;}
.y59{bottom:16.668000px;}
.y4e{bottom:19.620000px;}
.y18{bottom:55.008000px;}
.y5{bottom:68.544000px;}
.yc{bottom:70.668000px;}
.y20{bottom:73.584000px;}
.y58{bottom:77.868000px;}
.y2c{bottom:79.200000px;}
.y4{bottom:104.544000px;}
.y57{bottom:110.304000px;}
.y1f{bottom:116.784000px;}
.y2b{bottom:122.400000px;}
.y4d{bottom:134.244000px;}
.y3c{bottom:139.860000px;}
.y34{bottom:147.240000px;}
.y22{bottom:152.205000px;}
.y17{bottom:159.480000px;}
.y2a{bottom:165.630000px;}
.y1e{bottom:169.200000px;}
.y3b{bottom:177.300000px;}
.y4c{bottom:179.430000px;}
.y21{bottom:184.605000px;}
.y33{bottom:197.640000px;}
.y56{bottom:208.110000px;}
.y29{bottom:218.010000px;}
.y1d{bottom:219.600000px;}
.y16{bottom:225.000000px;}
.y4b{bottom:228.600000px;}
.y32{bottom:261.540000px;}
.y28{bottom:268.410000px;}
.y1c{bottom:270.000000px;}
.y4a{bottom:273.600000px;}
.y3{bottom:277.455000px;}
.y55{bottom:285.195000px;}
.y3a{bottom:292.605000px;}
.y31{bottom:304.740000px;}
.y27{bottom:318.810000px;}
.y1b{bottom:320.430000px;}
.y49{bottom:325.800000px;}
.y5f{bottom:328.290000px;}
.y5b{bottom:346.650000px;}
.y54{bottom:346.755000px;}
.y40{bottom:347.970000px;}
.y30{bottom:355.350000px;}
.y15{bottom:355.710000px;}
.y2{bottom:364.965000px;}
.yb{bottom:368.175000px;}
.y3f{bottom:391.170000px;}
.y5e{bottom:405.360000px;}
.y2f{bottom:406.110000px;}
.y2d{bottom:407.190000px;}
.y53{bottom:411.015000px;}
.y48{bottom:415.290000px;}
.y5a{bottom:417.960000px;}
.y14{bottom:421.230000px;}
.y26{bottom:433.335000px;}
.ya{bottom:433.695000px;}
.y3e{bottom:434.370000px;}
.y2e{bottom:449.310000px;}
.y1a{bottom:451.110000px;}
.y1{bottom:452.445000px;}
.y47{bottom:465.870000px;}
.y25{bottom:476.535000px;}
.y13{bottom:486.570000px;}
.y5d{bottom:489.345000px;}
.y52{bottom:490.785000px;}
.y19{bottom:501.555000px;}
.y5c{bottom:514.545000px;}
.y46{bottom:516.630000px;}
.y24{bottom:528.765000px;}
.ye{bottom:529.815000px;}
.yf{bottom:533.010000px;}
.y39{bottom:537.840000px;}
.yd{bottom:540.750000px;}
.y43{bottom:548.565000px;}
.y7{bottom:551.805000px;}
.y12{bottom:551.955000px;}
.y51{bottom:562.245000px;}
.y9{bottom:564.405000px;}
.y45{bottom:568.830000px;}
.y38{bottom:570.240000px;}
.y23{bottom:579.165000px;}
.y42{bottom:599.325000px;}
.y50{bottom:607.425000px;}
.y35{bottom:616.530000px;}
.y36{bottom:617.430000px;}
.y8{bottom:647.670000px;}
.y6{bottom:648.930000px;}
.y11{bottom:655.485000px;}
.y44{bottom:661.245000px;}
.y10{bottom:672.450000px;}
.y41{bottom:708.945000px;}
.y4f{bottom:709.020000px;}
.y3d{bottom:720.000000px;}
.ha{height:72.699120px;}
.he{height:93.204000px;}
.h17{height:93.328272px;}
.h9{height:96.120000px;}
.h16{height:98.244660px;}
.h4{height:103.767120px;}
.h10{height:103.884000px;}
.h15{height:103.891392px;}
.h3{height:107.013600px;}
.hd{height:124.272000px;}
.hc{height:124.396272px;}
.h13{height:128.160000px;}
.h5{height:136.924000px;}
.h6{height:144.776880px;}
.h8{height:144.901152px;}
.h14{height:159.516460px;}
.hf{height:182.793540px;}
.h7{height:228.115384px;}
.hb{height:251.255540px;}
.h12{height:251.392464px;}
.h11{height:273.848000px;}
.h1{height:308.079000px;}
.h2{height:308.215924px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x25{left:9.935979px;}
.x8{left:64.871979px;}
.x9{left:68.867979px;}
.x31{left:84.167979px;}
.xf{left:109.799979px;}
.x2c{left:117.683979px;}
.x1b{left:132.227979px;}
.x32{left:138.167979px;}
.x20{left:150.194979px;}
.x29{left:163.829979px;}
.x14{left:185.249979px;}
.x2a{left:190.829979px;}
.x10{left:212.249979px;}
.x2d{left:217.829979px;}
.x11{left:220.349979px;}
.x27{left:229.289979px;}
.x2b{left:259.454979px;}
.xd{left:279.749979px;}
.x26{left:291.209979px;}
.x33{left:294.329979px;}
.xa{left:300.989979px;}
.x13{left:310.889979px;}
.x15{left:327.809979px;}
.x2{left:329.039979px;}
.x12{left:338.429979px;}
.xe{left:364.064979px;}
.x16{left:401.729979px;}
.x3{left:424.979979px;}
.x30{left:551.669979px;}
.x28{left:560.774979px;}
.x22{left:633.674979px;}
.x1{left:664.589979px;}
.xc{left:672.374979px;}
.x4{left:720.644979px;}
.x17{left:738.104979px;}
.x2e{left:745.889979px;}
.x1f{left:750.629979px;}
.x21{left:761.834979px;}
.x18{left:765.104979px;}
.x35{left:771.734979px;}
.x1c{left:777.629979px;}
.x34{left:780.329979px;}
.x19{left:792.104979px;}
.x1d{left:804.629979px;}
.x1a{left:819.104979px;}
.x1e{left:831.629979px;}
.x23{left:852.989979px;}
.x5{left:889.169979px;}
.x6{left:906.509979px;}
.x24{left:940.034979px;}
.x7{left:1056.779979px;}
.xb{left:1103.609979px;}
.x2f{left:1366.814979px;}
@media print{
.v1{vertical-align:-92.160000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:9.493333pt;}
.ls9{letter-spacing:-0.170133pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.075200pt;}
.lsb{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.213333pt;}
.ls3{letter-spacing:43.763200pt;}
.ls2{letter-spacing:43.808000pt;}
.ls6{letter-spacing:43.936000pt;}
.ls5{letter-spacing:51.155200pt;}
.ls4{letter-spacing:51.200000pt;}
.ls7{letter-spacing:58.547200pt;}
.lsa{letter-spacing:58.581333pt;}
.ls8{letter-spacing:58.592000pt;}
.ws8{word-spacing:-69.376000pt;}
.ws4{word-spacing:-29.824000pt;}
.ws5{word-spacing:-25.625600pt;}
.ws6{word-spacing:-25.600000pt;}
.ws9{word-spacing:-25.455467pt;}
.wsa{word-spacing:-19.328000pt;}
.ws7{word-spacing:-19.200000pt;}
.ws3{word-spacing:-14.976000pt;}
.ws1{word-spacing:-1.499733pt;}
.ws0{word-spacing:-1.449813pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-1.728768pt;}
._1{width:0.936576pt;}
._3{width:1.938560pt;}
._6{width:3.219968pt;}
._2{width:19.620907pt;}
._4{width:229.498155pt;}
._5{width:3443.413333pt;}
.fs8{font-size:74.880000pt;}
.fs7{font-size:96.000000pt;}
.fs10{font-size:96.128000pt;}
.fsf{font-size:101.191873pt;}
.fs2{font-size:106.880000pt;}
.fse{font-size:107.008000pt;}
.fs3{font-size:128.000000pt;}
.fsa{font-size:128.128000pt;}
.fs4{font-size:149.120000pt;}
.fs6{font-size:149.248000pt;}
.fsb{font-size:170.880000pt;}
.fs5{font-size:213.248000pt;}
.fs9{font-size:234.880000pt;}
.fsd{font-size:235.008000pt;}
.fsc{font-size:256.000000pt;}
.fs0{font-size:288.000000pt;}
.fs1{font-size:288.128000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:10.816000pt;}
.y59{bottom:14.816000pt;}
.y4e{bottom:17.440000pt;}
.y18{bottom:48.896000pt;}
.y5{bottom:60.928000pt;}
.yc{bottom:62.816000pt;}
.y20{bottom:65.408000pt;}
.y58{bottom:69.216000pt;}
.y2c{bottom:70.400000pt;}
.y4{bottom:92.928000pt;}
.y57{bottom:98.048000pt;}
.y1f{bottom:103.808000pt;}
.y2b{bottom:108.800000pt;}
.y4d{bottom:119.328000pt;}
.y3c{bottom:124.320000pt;}
.y34{bottom:130.880000pt;}
.y22{bottom:135.293333pt;}
.y17{bottom:141.760000pt;}
.y2a{bottom:147.226667pt;}
.y1e{bottom:150.400000pt;}
.y3b{bottom:157.600000pt;}
.y4c{bottom:159.493333pt;}
.y21{bottom:164.093333pt;}
.y33{bottom:175.680000pt;}
.y56{bottom:184.986667pt;}
.y29{bottom:193.786667pt;}
.y1d{bottom:195.200000pt;}
.y16{bottom:200.000000pt;}
.y4b{bottom:203.200000pt;}
.y32{bottom:232.480000pt;}
.y28{bottom:238.586667pt;}
.y1c{bottom:240.000000pt;}
.y4a{bottom:243.200000pt;}
.y3{bottom:246.626667pt;}
.y55{bottom:253.506667pt;}
.y3a{bottom:260.093333pt;}
.y31{bottom:270.880000pt;}
.y27{bottom:283.386667pt;}
.y1b{bottom:284.826667pt;}
.y49{bottom:289.600000pt;}
.y5f{bottom:291.813333pt;}
.y5b{bottom:308.133333pt;}
.y54{bottom:308.226667pt;}
.y40{bottom:309.306667pt;}
.y30{bottom:315.866667pt;}
.y15{bottom:316.186667pt;}
.y2{bottom:324.413333pt;}
.yb{bottom:327.266667pt;}
.y3f{bottom:347.706667pt;}
.y5e{bottom:360.320000pt;}
.y2f{bottom:360.986667pt;}
.y2d{bottom:361.946667pt;}
.y53{bottom:365.346667pt;}
.y48{bottom:369.146667pt;}
.y5a{bottom:371.520000pt;}
.y14{bottom:374.426667pt;}
.y26{bottom:385.186667pt;}
.ya{bottom:385.506667pt;}
.y3e{bottom:386.106667pt;}
.y2e{bottom:399.386667pt;}
.y1a{bottom:400.986667pt;}
.y1{bottom:402.173333pt;}
.y47{bottom:414.106667pt;}
.y25{bottom:423.586667pt;}
.y13{bottom:432.506667pt;}
.y5d{bottom:434.973333pt;}
.y52{bottom:436.253333pt;}
.y19{bottom:445.826667pt;}
.y5c{bottom:457.373333pt;}
.y46{bottom:459.226667pt;}
.y24{bottom:470.013333pt;}
.ye{bottom:470.946667pt;}
.yf{bottom:473.786667pt;}
.y39{bottom:478.080000pt;}
.yd{bottom:480.666667pt;}
.y43{bottom:487.613333pt;}
.y7{bottom:490.493333pt;}
.y12{bottom:490.626667pt;}
.y51{bottom:499.773333pt;}
.y9{bottom:501.693333pt;}
.y45{bottom:505.626667pt;}
.y38{bottom:506.880000pt;}
.y23{bottom:514.813333pt;}
.y42{bottom:532.733333pt;}
.y50{bottom:539.933333pt;}
.y35{bottom:548.026667pt;}
.y36{bottom:548.826667pt;}
.y8{bottom:575.706667pt;}
.y6{bottom:576.826667pt;}
.y11{bottom:582.653333pt;}
.y44{bottom:587.773333pt;}
.y10{bottom:597.733333pt;}
.y41{bottom:630.173333pt;}
.y4f{bottom:630.240000pt;}
.y3d{bottom:640.000000pt;}
.ha{height:64.621440pt;}
.he{height:82.848000pt;}
.h17{height:82.958464pt;}
.h9{height:85.440000pt;}
.h16{height:87.328587pt;}
.h4{height:92.237440pt;}
.h10{height:92.341333pt;}
.h15{height:92.347904pt;}
.h3{height:95.123200pt;}
.hd{height:110.464000pt;}
.hc{height:110.574464pt;}
.h13{height:113.920000pt;}
.h5{height:121.710222pt;}
.h6{height:128.690560pt;}
.h8{height:128.801024pt;}
.h14{height:141.792409pt;}
.hf{height:162.483147pt;}
.h7{height:202.769230pt;}
.hb{height:223.338258pt;}
.h12{height:223.459968pt;}
.h11{height:243.420444pt;}
.h1{height:273.848000pt;}
.h2{height:273.969710pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x25{left:8.831981pt;}
.x8{left:57.663981pt;}
.x9{left:61.215981pt;}
.x31{left:74.815981pt;}
.xf{left:97.599981pt;}
.x2c{left:104.607981pt;}
.x1b{left:117.535981pt;}
.x32{left:122.815981pt;}
.x20{left:133.506648pt;}
.x29{left:145.626648pt;}
.x14{left:164.666648pt;}
.x2a{left:169.626648pt;}
.x10{left:188.666648pt;}
.x2d{left:193.626648pt;}
.x11{left:195.866648pt;}
.x27{left:203.813314pt;}
.x2b{left:230.626648pt;}
.xd{left:248.666648pt;}
.x26{left:258.853314pt;}
.x33{left:261.626648pt;}
.xa{left:267.546648pt;}
.x13{left:276.346648pt;}
.x15{left:291.386648pt;}
.x2{left:292.479981pt;}
.x12{left:300.826648pt;}
.xe{left:323.613314pt;}
.x16{left:357.093314pt;}
.x3{left:377.759981pt;}
.x30{left:490.373314pt;}
.x28{left:498.466648pt;}
.x22{left:563.266648pt;}
.x1{left:590.746648pt;}
.xc{left:597.666648pt;}
.x4{left:640.573314pt;}
.x17{left:656.093314pt;}
.x2e{left:663.013314pt;}
.x1f{left:667.226648pt;}
.x21{left:677.186648pt;}
.x18{left:680.093314pt;}
.x35{left:685.986648pt;}
.x1c{left:691.226648pt;}
.x34{left:693.626648pt;}
.x19{left:704.093314pt;}
.x1d{left:715.226648pt;}
.x1a{left:728.093314pt;}
.x1e{left:739.226648pt;}
.x23{left:758.213314pt;}
.x5{left:790.373314pt;}
.x6{left:805.786648pt;}
.x24{left:835.586648pt;}
.x7{left:939.359981pt;}
.xb{left:980.986648pt;}
.x2f{left:1214.946648pt;}
}




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