
    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_48664de70299484dc9c990ba.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_92493af72d14a25757006c4f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.103027;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_830cfb4592c02ecd1f764a8d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.031738;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_5f75cb6f81dd9210994eb961.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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.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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.176400px;}
.ls1{letter-spacing:-0.122400px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017700px;}
.ls7{letter-spacing:0.223200px;}
.lse{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.864000px;}
.lsd{letter-spacing:2.082000px;}
.lsc{letter-spacing:2.304000px;}
.ls8{letter-spacing:44.509680px;}
.lsb{letter-spacing:57.866976px;}
.lsa{letter-spacing:57.995280px;}
.ls4{letter-spacing:65.109888px;}
.ls3{letter-spacing:65.175840px;}
.ls5{letter-spacing:79.619328px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-50.736240px;}
.wsf{word-spacing:-39.591360px;}
.ws8{word-spacing:-38.747520px;}
.wse{word-spacing:-34.017984px;}
.wsc{word-spacing:-33.984000px;}
.wsa{word-spacing:-32.712192px;}
.wsb{word-spacing:-32.676480px;}
.ws0{word-spacing:-31.911840px;}
.ws1{word-spacing:-31.789440px;}
.ws10{word-spacing:-28.376640px;}
.ws2{word-spacing:-26.837412px;}
.ws5{word-spacing:-23.844240px;}
.ws6{word-spacing:-23.667840px;}
.ws9{word-spacing:-17.856000px;}
.ws3{word-spacing:-16.992000px;}
.ws11{word-spacing:-14.103360px;}
.ws7{word-spacing:-0.685440px;}
.ws4{word-spacing:0.000000px;}
.wsd{word-spacing:568.307520px;}
._9{margin-left:-659.376000px;}
._0{margin-left:-15.045120px;}
._7{margin-left:-10.820880px;}
._6{margin-left:-7.012800px;}
._10{margin-left:-3.636384px;}
._1{margin-left:-2.488320px;}
._2{margin-left:-1.382400px;}
._3{width:1.382400px;}
._5{width:2.475840px;}
._1b{width:3.624480px;}
._4{width:19.785600px;}
._14{width:33.877440px;}
._18{width:36.223200px;}
._8{width:37.764288px;}
._15{width:614.678400px;}
._d{width:644.745216px;}
._12{width:706.036512px;}
._e{width:818.475600px;}
._f{width:875.255232px;}
._11{width:877.861920px;}
._19{width:951.670560px;}
._13{width:991.228800px;}
._c{width:998.590368px;}
._17{width:1024.348800px;}
._1a{width:1077.821040px;}
._b{width:1133.631120px;}
._a{width:1156.694592px;}
._1c{width:1236.196560px;}
._16{width:2164.427040px;}
.fc4{color:rgb(90,0,150);}
.fc3{color:rgb(228,191,255);}
.fc1{color:rgb(230,190,255);}
.fc5{color:rgb(127,127,127);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:9.360000px;}
.fs1a{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:72.144000px;}
.fs19{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fsb{font-size:105.984000px;}
.fs3{font-size:108.144000px;}
.fs11{font-size:115.920000px;}
.fs13{font-size:116.064000px;}
.fs18{font-size:120.240000px;}
.fsc{font-size:120.384000px;}
.fs0{font-size:128.160000px;}
.fs12{font-size:131.760000px;}
.fs14{font-size:131.904000px;}
.fs7{font-size:137.520000px;}
.fsa{font-size:137.664000px;}
.fs1{font-size:138.240000px;}
.fs15{font-size:144.000000px;}
.fs16{font-size:144.144000px;}
.fs8{font-size:156.240000px;}
.fs9{font-size:156.384000px;}
.fs17{font-size:167.760000px;}
.fsd{font-size:174.240000px;}
.fs10{font-size:192.240000px;}
.fsf{font-size:192.384000px;}
.fse{font-size:203.760000px;}
.y0{bottom:0.000000px;}
.y1{bottom:19.620000px;}
.yb{bottom:23.148000px;}
.y15{bottom:24.696000px;}
.y38{bottom:78.480000px;}
.y47{bottom:87.300000px;}
.y49{bottom:105.300000px;}
.y29{bottom:117.360000px;}
.y46{bottom:123.300000px;}
.y2c{bottom:138.525000px;}
.y34{bottom:138.600000px;}
.y31{bottom:138.630000px;}
.y48{bottom:141.300000px;}
.y36{bottom:146.700000px;}
.y14{bottom:146.736000px;}
.y45{bottom:159.300000px;}
.y28{bottom:184.350000px;}
.y22{bottom:196.590000px;}
.y4d{bottom:209.550000px;}
.y4b{bottom:214.020000px;}
.y33{bottom:214.920000px;}
.y39{bottom:217.080000px;}
.y4a{bottom:230.220000px;}
.y13{bottom:238.530000px;}
.y27{bottom:251.310000px;}
.y1d{bottom:259.410000px;}
.y41{bottom:263.805000px;}
.y1f{bottom:266.790000px;}
.y44{bottom:269.355000px;}
.y4c{bottom:272.190000px;}
.y40{bottom:276.840000px;}
.y12{bottom:280.650000px;}
.y43{bottom:281.955000px;}
.y30{bottom:283.140000px;}
.y37{bottom:285.300000px;}
.y26{bottom:318.135000px;}
.y11{bottom:322.815000px;}
.y3f{bottom:331.200000px;}
.ya{bottom:333.105000px;}
.y1c{bottom:337.035000px;}
.y21{bottom:344.595000px;}
.y35{bottom:353.520000px;}
.y2e{bottom:358.560000px;}
.y2a{bottom:385.095000px;}
.y3e{bottom:385.410000px;}
.y2b{bottom:412.560000px;}
.y1b{bottom:414.795000px;}
.y32{bottom:421.770000px;}
.y10{bottom:421.995000px;}
.y23{bottom:422.355000px;}
.y5{bottom:425.415000px;}
.y4f{bottom:435.135000px;}
.y19{bottom:439.350000px;}
.y3d{bottom:439.770000px;}
.y25{bottom:452.055000px;}
.yf{bottom:464.145000px;}
.y4{bottom:475.095000px;}
.y2f{bottom:489.990000px;}
.y1a{bottom:492.585000px;}
.y18{bottom:494.430000px;}
.y4e{bottom:497.775000px;}
.ye{bottom:506.265000px;}
.y24{bottom:511.485000px;}
.y3{bottom:513.285000px;}
.y2{bottom:535.605000px;}
.yd{bottom:548.385000px;}
.y2d{bottom:551.085000px;}
.y3c{bottom:554.940000px;}
.y42{bottom:557.070000px;}
.yc{bottom:590.505000px;}
.y6{bottom:612.465000px;}
.y53{bottom:616.425000px;}
.y52{bottom:638.025000px;}
.y51{bottom:659.625000px;}
.y50{bottom:681.225000px;}
.y3b{bottom:683.100000px;}
.y17{bottom:683.460000px;}
.y1e{bottom:684.645000px;}
.y20{bottom:684.690000px;}
.y9{bottom:709.770000px;}
.y3a{bottom:728.820000px;}
.y16{bottom:730.440000px;}
.y8{bottom:753.015000px;}
.y7{bottom:774.615000px;}
.h3{height:7.509023px;}
.h1b{height:47.942227px;}
.h5{height:57.761719px;}
.h6{height:57.877242px;}
.hb{height:62.894531px;}
.h1a{height:73.586602px;}
.h7{height:76.823086px;}
.h4{height:94.467586px;}
.h19{height:96.462070px;}
.h1{height:102.815859px;}
.ha{height:105.159656px;}
.h2{height:110.902500px;}
.h12{height:115.096992px;}
.h13{height:115.222781px;}
.h15{height:115.523438px;}
.h16{height:115.638961px;}
.h10{height:125.342930px;}
.hf{height:125.458453px;}
.h18{height:134.584805px;}
.h8{height:136.481133px;}
.h9{height:136.606922px;}
.h17{height:146.544258px;}
.hc{height:152.204766px;}
.hd{height:163.465664px;}
.h11{height:167.928398px;}
.he{height:168.054188px;}
.h14{height:302.580000px;}
.h0{height:810.000000px;}
.w3{width:206.640000px;}
.w1{width:1653.750000px;}
.w2{width:1654.019975px;}
.w0{width:1654.020000px;}
.x0{left:0.000000px;}
.xf{left:5.400000px;}
.xb{left:66.095975px;}
.x6{left:72.359975px;}
.x7{left:104.399975px;}
.xa{left:113.471975px;}
.x1a{left:144.611975px;}
.x20{left:151.019975px;}
.x4{left:163.334975px;}
.x2{left:164.549975px;}
.xe{left:169.920000px;}
.x1b{left:178.634975px;}
.x10{left:207.899975px;}
.x1c{left:247.244975px;}
.x3{left:282.674975px;}
.x11{left:460.184975px;}
.x13{left:469.004975px;}
.xc{left:504.434975px;}
.x14{left:665.429975px;}
.x12{left:675.509975px;}
.x18{left:740.234975px;}
.x1f{left:750.419975px;}
.x8{left:837.389975px;}
.x9{left:869.429975px;}
.x1d{left:892.589975px;}
.x17{left:954.974975px;}
.x15{left:966.494975px;}
.x1e{left:967.679975px;}
.x16{left:1007.999975px;}
.xd{left:1152.464975px;}
.x1{left:1277.924975px;}
.x19{left:1341.254975px;}
.x5{left:1350.074975px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.156800pt;}
.ls1{letter-spacing:-0.108800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015733pt;}
.ls7{letter-spacing:0.198400pt;}
.lse{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.768000pt;}
.lsd{letter-spacing:1.850667pt;}
.lsc{letter-spacing:2.048000pt;}
.ls8{letter-spacing:39.564160pt;}
.lsb{letter-spacing:51.437312pt;}
.lsa{letter-spacing:51.551360pt;}
.ls4{letter-spacing:57.875456pt;}
.ls3{letter-spacing:57.934080pt;}
.ls5{letter-spacing:70.772736pt;}
.ws12{word-spacing:-45.098880pt;}
.wsf{word-spacing:-35.192320pt;}
.ws8{word-spacing:-34.442240pt;}
.wse{word-spacing:-30.238208pt;}
.wsc{word-spacing:-30.208000pt;}
.wsa{word-spacing:-29.077504pt;}
.wsb{word-spacing:-29.045760pt;}
.ws0{word-spacing:-28.366080pt;}
.ws1{word-spacing:-28.257280pt;}
.ws10{word-spacing:-25.223680pt;}
.ws2{word-spacing:-23.855477pt;}
.ws5{word-spacing:-21.194880pt;}
.ws6{word-spacing:-21.038080pt;}
.ws9{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.104000pt;}
.ws11{word-spacing:-12.536320pt;}
.ws7{word-spacing:-0.609280pt;}
.ws4{word-spacing:0.000000pt;}
.wsd{word-spacing:505.162240pt;}
._9{margin-left:-586.112000pt;}
._0{margin-left:-13.373440pt;}
._7{margin-left:-9.618560pt;}
._6{margin-left:-6.233600pt;}
._10{margin-left:-3.232341pt;}
._1{margin-left:-2.211840pt;}
._2{margin-left:-1.228800pt;}
._3{width:1.228800pt;}
._5{width:2.200747pt;}
._1b{width:3.221760pt;}
._4{width:17.587200pt;}
._14{width:30.113280pt;}
._18{width:32.198400pt;}
._8{width:33.568256pt;}
._15{width:546.380800pt;}
._d{width:573.106859pt;}
._12{width:627.588011pt;}
._e{width:727.533867pt;}
._f{width:778.004651pt;}
._11{width:780.321707pt;}
._19{width:845.929387pt;}
._13{width:881.092267pt;}
._c{width:887.635883pt;}
._17{width:910.532267pt;}
._1a{width:958.063147pt;}
._b{width:1007.672107pt;}
._a{width:1028.172971pt;}
._1c{width:1098.841387pt;}
._16{width:1923.935147pt;}
.fs2{font-size:8.320000pt;}
.fs1a{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:64.128000pt;}
.fs19{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fsb{font-size:94.208000pt;}
.fs3{font-size:96.128000pt;}
.fs11{font-size:103.040000pt;}
.fs13{font-size:103.168000pt;}
.fs18{font-size:106.880000pt;}
.fsc{font-size:107.008000pt;}
.fs0{font-size:113.920000pt;}
.fs12{font-size:117.120000pt;}
.fs14{font-size:117.248000pt;}
.fs7{font-size:122.240000pt;}
.fsa{font-size:122.368000pt;}
.fs1{font-size:122.880000pt;}
.fs15{font-size:128.000000pt;}
.fs16{font-size:128.128000pt;}
.fs8{font-size:138.880000pt;}
.fs9{font-size:139.008000pt;}
.fs17{font-size:149.120000pt;}
.fsd{font-size:154.880000pt;}
.fs10{font-size:170.880000pt;}
.fsf{font-size:171.008000pt;}
.fse{font-size:181.120000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:17.440000pt;}
.yb{bottom:20.576000pt;}
.y15{bottom:21.952000pt;}
.y38{bottom:69.760000pt;}
.y47{bottom:77.600000pt;}
.y49{bottom:93.600000pt;}
.y29{bottom:104.320000pt;}
.y46{bottom:109.600000pt;}
.y2c{bottom:123.133333pt;}
.y34{bottom:123.200000pt;}
.y31{bottom:123.226667pt;}
.y48{bottom:125.600000pt;}
.y36{bottom:130.400000pt;}
.y14{bottom:130.432000pt;}
.y45{bottom:141.600000pt;}
.y28{bottom:163.866667pt;}
.y22{bottom:174.746667pt;}
.y4d{bottom:186.266667pt;}
.y4b{bottom:190.240000pt;}
.y33{bottom:191.040000pt;}
.y39{bottom:192.960000pt;}
.y4a{bottom:204.640000pt;}
.y13{bottom:212.026667pt;}
.y27{bottom:223.386667pt;}
.y1d{bottom:230.586667pt;}
.y41{bottom:234.493333pt;}
.y1f{bottom:237.146667pt;}
.y44{bottom:239.426667pt;}
.y4c{bottom:241.946667pt;}
.y40{bottom:246.080000pt;}
.y12{bottom:249.466667pt;}
.y43{bottom:250.626667pt;}
.y30{bottom:251.680000pt;}
.y37{bottom:253.600000pt;}
.y26{bottom:282.786667pt;}
.y11{bottom:286.946667pt;}
.y3f{bottom:294.400000pt;}
.ya{bottom:296.093333pt;}
.y1c{bottom:299.586667pt;}
.y21{bottom:306.306667pt;}
.y35{bottom:314.240000pt;}
.y2e{bottom:318.720000pt;}
.y2a{bottom:342.306667pt;}
.y3e{bottom:342.586667pt;}
.y2b{bottom:366.720000pt;}
.y1b{bottom:368.706667pt;}
.y32{bottom:374.906667pt;}
.y10{bottom:375.106667pt;}
.y23{bottom:375.426667pt;}
.y5{bottom:378.146667pt;}
.y4f{bottom:386.786667pt;}
.y19{bottom:390.533333pt;}
.y3d{bottom:390.906667pt;}
.y25{bottom:401.826667pt;}
.yf{bottom:412.573333pt;}
.y4{bottom:422.306667pt;}
.y2f{bottom:435.546667pt;}
.y1a{bottom:437.853333pt;}
.y18{bottom:439.493333pt;}
.y4e{bottom:442.466667pt;}
.ye{bottom:450.013333pt;}
.y24{bottom:454.653333pt;}
.y3{bottom:456.253333pt;}
.y2{bottom:476.093333pt;}
.yd{bottom:487.453333pt;}
.y2d{bottom:489.853333pt;}
.y3c{bottom:493.280000pt;}
.y42{bottom:495.173333pt;}
.yc{bottom:524.893333pt;}
.y6{bottom:544.413333pt;}
.y53{bottom:547.933333pt;}
.y52{bottom:567.133333pt;}
.y51{bottom:586.333333pt;}
.y50{bottom:605.533333pt;}
.y3b{bottom:607.200000pt;}
.y17{bottom:607.520000pt;}
.y1e{bottom:608.573333pt;}
.y20{bottom:608.613333pt;}
.y9{bottom:630.906667pt;}
.y3a{bottom:647.840000pt;}
.y16{bottom:649.280000pt;}
.y8{bottom:669.346667pt;}
.y7{bottom:688.546667pt;}
.h3{height:6.674687pt;}
.h1b{height:42.615313pt;}
.h5{height:51.343750pt;}
.h6{height:51.446437pt;}
.hb{height:55.906250pt;}
.h1a{height:65.410313pt;}
.h7{height:68.287188pt;}
.h4{height:83.971187pt;}
.h19{height:85.744062pt;}
.h1{height:91.391875pt;}
.ha{height:93.475250pt;}
.h2{height:98.580000pt;}
.h12{height:102.308437pt;}
.h13{height:102.420250pt;}
.h15{height:102.687500pt;}
.h16{height:102.790188pt;}
.h10{height:111.415937pt;}
.hf{height:111.518625pt;}
.h18{height:119.630937pt;}
.h8{height:121.316563pt;}
.h9{height:121.428375pt;}
.h17{height:130.261562pt;}
.hc{height:135.293125pt;}
.hd{height:145.302812pt;}
.h11{height:149.269688pt;}
.he{height:149.381500pt;}
.h14{height:268.960000pt;}
.h0{height:720.000000pt;}
.w3{width:183.680000pt;}
.w1{width:1470.000000pt;}
.w2{width:1470.239978pt;}
.w0{width:1470.240000pt;}
.x0{left:0.000000pt;}
.xf{left:4.800000pt;}
.xb{left:58.751978pt;}
.x6{left:64.319978pt;}
.x7{left:92.799978pt;}
.xa{left:100.863978pt;}
.x1a{left:128.543978pt;}
.x20{left:134.239978pt;}
.x4{left:145.186645pt;}
.x2{left:146.266645pt;}
.xe{left:151.040000pt;}
.x1b{left:158.786645pt;}
.x10{left:184.799978pt;}
.x1c{left:219.773311pt;}
.x3{left:251.266645pt;}
.x11{left:409.053311pt;}
.x13{left:416.893311pt;}
.xc{left:448.386645pt;}
.x14{left:591.493311pt;}
.x12{left:600.453311pt;}
.x18{left:657.986645pt;}
.x1f{left:667.039978pt;}
.x8{left:744.346645pt;}
.x9{left:772.826645pt;}
.x1d{left:793.413311pt;}
.x17{left:848.866645pt;}
.x15{left:859.106645pt;}
.x1e{left:860.159978pt;}
.x16{left:895.999978pt;}
.xd{left:1024.413311pt;}
.x1{left:1135.933311pt;}
.x19{left:1192.226645pt;}
.x5{left:1200.066645pt;}
}




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