
    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_38581466f63e1551e0aabef8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_d6af0ba926d6d1431d8873b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_3b54dcd249a3abf2104fdafc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.754395;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_b74ef7bf8807e58749dd6479.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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_955e7db3467d32c1b5dccfd5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_6fbe59a5e33a0ae2b962a2af.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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:-165.888000px;}
.v4{vertical-align:-119.808000px;}
.v3{vertical-align:-90.288000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.472000px;}
.ls6{letter-spacing:-8.220000px;}
.ls1{letter-spacing:-0.405600px;}
.lsd{letter-spacing:-0.325200px;}
.lsf{letter-spacing:-0.295800px;}
.ls4{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.272400px;}
.lse{letter-spacing:-0.162600px;}
.ls10{letter-spacing:-0.058740px;}
.ls12{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.162600px;}
.ls13{letter-spacing:0.170496px;}
.ls8{letter-spacing:0.245400px;}
.ls5{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.325200px;}
.ls7{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.504000px;}
.ls14{letter-spacing:43.450560px;}
.ls11{letter-spacing:52.576128px;}
.lsc{letter-spacing:140.025600px;}
.lsb{letter-spacing:140.076000px;}
.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;}
}
.ws3{word-spacing:-192.384000px;}
.ws2{word-spacing:-192.240000px;}
.ws18{word-spacing:-112.268160px;}
.ws1{word-spacing:-60.048000px;}
.ws9{word-spacing:-53.482752px;}
.ws6{word-spacing:-53.442720px;}
.wsa{word-spacing:-48.438720px;}
.wse{word-spacing:-46.677312px;}
.wsb{word-spacing:-46.637280px;}
.ws1a{word-spacing:-46.341480px;}
.wsf{word-spacing:-43.434720px;}
.ws7{word-spacing:-2.314560px;}
.ws15{word-spacing:-2.231616px;}
.ws13{word-spacing:-1.972560px;}
.ws11{word-spacing:-1.921920px;}
.ws12{word-spacing:-1.379760px;}
.ws5{word-spacing:-1.275360px;}
.ws4{word-spacing:-1.205040px;}
.ws16{word-spacing:-1.143264px;}
.ws10{word-spacing:-1.048080px;}
.ws8{word-spacing:-1.045440px;}
.ws0{word-spacing:0.000000px;}
.ws14{word-spacing:0.364680px;}
.wsd{word-spacing:2.949360px;}
.wsc{word-spacing:3.511680px;}
.ws19{word-spacing:1728.577200px;}
.ws17{word-spacing:2325.828864px;}
._d{margin-left:-21.003840px;}
._0{margin-left:-19.289520px;}
._15{margin-left:-17.232960px;}
._4{margin-left:-11.422080px;}
._3{margin-left:-6.372000px;}
._1{margin-left:-4.756320px;}
._5{margin-left:-2.870640px;}
._2{margin-left:-1.537920px;}
._8{width:1.296000px;}
._e{width:2.524800px;}
._f{width:3.606720px;}
._13{width:39.489504px;}
._b{width:44.160336px;}
._10{width:47.926128px;}
._7{width:49.690320px;}
._6{width:51.342864px;}
._14{width:52.421952px;}
._9{width:58.704000px;}
._12{width:87.028128px;}
._a{width:94.871040px;}
._11{width:776.490960px;}
._c{width:1589.640960px;}
.fc3{color:transparent;}
.fc1{color:rgb(10,48,74);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fsd{font-size:156.240000px;}
.fse{font-size:156.384000px;}
.fsa{font-size:167.760000px;}
.fsb{font-size:167.904000px;}
.fs8{font-size:174.240000px;}
.fs9{font-size:174.384000px;}
.fs3{font-size:185.040000px;}
.fs2{font-size:192.240000px;}
.fs6{font-size:192.384000px;}
.fs5{font-size:216.000000px;}
.fsc{font-size:216.144000px;}
.fs0{font-size:264.240000px;}
.fs1{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:53.928000px;}
.y13{bottom:55.296000px;}
.y6{bottom:62.748000px;}
.y1c{bottom:68.832000px;}
.ya8{bottom:77.868000px;}
.yc1{bottom:85.248000px;}
.y5{bottom:94.716000px;}
.y28{bottom:96.768000px;}
.y6b{bottom:100.728000px;}
.y12{bottom:113.796000px;}
.y8d{bottom:115.488000px;}
.y3a{bottom:117.432000px;}
.y17{bottom:121.176000px;}
.y7e{bottom:124.308000px;}
.ya7{bottom:124.668000px;}
.y41{bottom:125.316000px;}
.yb1{bottom:137.844000px;}
.y55{bottom:137.988000px;}
.yc0{bottom:138.708000px;}
.y77{bottom:143.568000px;}
.y38{bottom:164.415000px;}
.y8c{bottom:169.125000px;}
.y6a{bottom:172.770000px;}
.y16{bottom:174.855000px;}
.yb0{bottom:184.650000px;}
.y54{bottom:184.965000px;}
.y11{bottom:188.355000px;}
.y27{bottom:192.165000px;}
.ybf{bottom:192.345000px;}
.ya6{bottom:192.525000px;}
.y76{bottom:195.045000px;}
.y7d{bottom:198.825000px;}
.y40{bottom:199.875000px;}
.y96{bottom:201.525000px;}
.y37{bottom:211.215000px;}
.y69{bottom:219.750000px;}
.y47{bottom:220.935000px;}
.y8b{bottom:222.585000px;}
.y15{bottom:228.315000px;}
.yc4{bottom:234.105000px;}
.ya5{bottom:239.550000px;}
.y10{bottom:241.815000px;}
.y9c{bottom:245.850000px;}
.y31{bottom:248.685000px;}
.yaf{bottom:252.510000px;}
.y3f{bottom:253.515000px;}
.y95{bottom:255.210000px;}
.y36{bottom:258.045000px;}
.y83{bottom:261.870000px;}
.y3e{bottom:265.035000px;}
.y68{bottom:266.550000px;}
.ybe{bottom:266.910000px;}
.y7c{bottom:273.390000px;}
.y46{bottom:274.395000px;}
.y8a{bottom:276.270000px;}
.y14{bottom:281.955000px;}
.yc3{bottom:287.790000px;}
.y26{bottom:289.410000px;}
.yf{bottom:295.455000px;}
.y53{bottom:298.950000px;}
.yae{bottom:299.490000px;}
.y30{bottom:302.325000px;}
.y5f{bottom:305.070000px;}
.y75{bottom:305.790000px;}
.y1b{bottom:306.975000px;}
.ya4{bottom:307.410000px;}
.y67{bottom:313.350000px;}
.y82{bottom:315.510000px;}
.y43{bottom:316.515000px;}
.y9b{bottom:320.370000px;}
.ybd{bottom:320.550000px;}
.y4a{bottom:328.065000px;}
.y8f{bottom:329.730000px;}
.y3d{bottom:339.585000px;}
.yc2{bottom:341.430000px;}
.y52{bottom:345.750000px;}
.y7b{bottom:348.090000px;}
.ye{bottom:349.125000px;}
.y5d{bottom:351.900000px;}
.ya3{bottom:354.210000px;}
.y2f{bottom:355.830000px;}
.y66{bottom:360.360000px;}
.y1a{bottom:360.645000px;}
.yad{bottom:367.380000px;}
.y81{bottom:368.970000px;}
.y42{bottom:370.005000px;}
.y4{bottom:371.625000px;}
.y49{bottom:381.525000px;}
.y8e{bottom:383.370000px;}
.y25{bottom:386.430000px;}
.y51{bottom:392.760000px;}
.y9a{bottom:394.890000px;}
.ybc{bottom:395.100000px;}
.y5c{bottom:398.880000px;}
.y7a{bottom:401.550000px;}
.y45{bottom:402.585000px;}
.y65{bottom:407.160000px;}
.y2e{bottom:409.470000px;}
.y3c{bottom:414.105000px;}
.yac{bottom:414.180000px;}
.yb7{bottom:415.980000px;}
.ybb{bottom:416.160000px;}
.y74{bottom:416.520000px;}
.ya2{bottom:422.100000px;}
.yd{bottom:423.645000px;}
.y89{bottom:425.340000px;}
.y24{bottom:435.060000px;}
.y48{bottom:435.165000px;}
.y90{bottom:436.860000px;}
.y50{bottom:439.560000px;}
.y5b{bottom:445.680000px;}
.y64{bottom:454.140000px;}
.y44{bottom:456.225000px;}
.y94{bottom:457.920000px;}
.y73{bottom:460.080000px;}
.yb6{bottom:462.780000px;}
.y2d{bottom:462.930000px;}
.ya1{bottom:469.080000px;}
.y99{bottom:469.440000px;}
.yba{bottom:469.620000px;}
.y5e{bottom:470.880000px;}
.yc9{bottom:473.835000px;}
.y79{bottom:476.280000px;}
.yc{bottom:477.105000px;}
.y88{bottom:478.980000px;}
.ycd{bottom:481.290000px;}
.yab{bottom:482.070000px;}
.y23{bottom:483.480000px;}
.y3b{bottom:488.805000px;}
.y98{bottom:490.500000px;}
.y63{bottom:500.970000px;}
.y72{bottom:503.460000px;}
.y19{bottom:509.730000px;}
.y93{bottom:511.560000px;}
.yb5{bottom:516.450000px;}
.yc8{bottom:517.425000px;}
.y5a{bottom:517.710000px;}
.y80{bottom:518.220000px;}
.ycc{bottom:528.270000px;}
.yb{bottom:530.790000px;}
.y87{bottom:532.440000px;}
.y33{bottom:535.320000px;}
.ya0{bottom:536.940000px;}
.y39{bottom:539.430000px;}
.y97{bottom:544.140000px;}
.yb9{bottom:544.320000px;}
.y71{bottom:547.020000px;}
.y6d{bottom:547.770000px;}
.yaa{bottom:549.930000px;}
.y4f{bottom:553.530000px;}
.yc7{bottom:560.985000px;}
.y18{bottom:563.370000px;}
.y59{bottom:564.510000px;}
.y92{bottom:565.020000px;}
.y2c{bottom:570.240000px;}
.y7f{bottom:571.680000px;}
.ycb{bottom:575.070000px;}
.y22{bottom:580.710000px;}
.y32{bottom:582.120000px;}
.ya{bottom:584.430000px;}
.y86{bottom:586.080000px;}
.y35{bottom:586.260000px;}
.y70{bottom:590.610000px;}
.yb4{bottom:590.970000px;}
.y62{bottom:594.750000px;}
.y4e{bottom:600.510000px;}
.yc6{bottom:604.545000px;}
.y9f{bottom:604.830000px;}
.y58{bottom:611.490000px;}
.y91{bottom:618.690000px;}
.yca{bottom:622.050000px;}
.y2b{bottom:623.700000px;}
.y78{bottom:625.350000px;}
.y21{bottom:629.310000px;}
.y34{bottom:633.240000px;}
.y9{bottom:637.890000px;}
.y85{bottom:639.750000px;}
.y61{bottom:641.550000px;}
.yb3{bottom:644.610000px;}
.y4d{bottom:647.310000px;}
.y9e{bottom:651.630000px;}
.y3{bottom:654.945000px;}
.y57{bottom:658.290000px;}
.y20{bottom:677.730000px;}
.y60{bottom:688.575000px;}
.y84{bottom:693.210000px;}
.yb8{bottom:693.390000px;}
.ya9{bottom:693.795000px;}
.y4c{bottom:694.290000px;}
.yb2{bottom:698.115000px;}
.y9d{bottom:698.610000px;}
.y6f{bottom:701.310000px;}
.y2{bottom:728.610000px;}
.y8{bottom:732.810000px;}
.y2a{bottom:734.970000px;}
.y1d{bottom:761.910000px;}
.yc5{bottom:765.615000px;}
.y1f{bottom:771.690000px;}
.y56{bottom:790.485000px;}
.y7{bottom:792.930000px;}
.y29{bottom:795.090000px;}
.y6e{bottom:798.915000px;}
.y1{bottom:802.230000px;}
.y4b{bottom:811.830000px;}
.y1e{bottom:825.195000px;}
.h6{height:112.640625px;}
.h9{height:112.790813px;}
.h5{height:136.250156px;}
.hf{height:162.953438px;}
.h10{height:163.103625px;}
.hc{height:174.968437px;}
.hd{height:175.118625px;}
.ha{height:181.726875px;}
.hb{height:181.877063px;}
.h4{height:200.500313px;}
.h8{height:200.650500px;}
.h7{height:225.281250px;}
.he{height:225.431438px;}
.h2{height:275.594063px;}
.h3{height:275.744250px;}
.h1{height:892.500000px;}
.h0{height:892.800000px;}
.w2{width:1190.699982px;}
.w0{width:1190.700000px;}
.w1{width:1191.000000px;}
.x0{left:0.000000px;}
.x1e{left:42.947982px;}
.x1d{left:46.187982px;}
.x21{left:59.435982px;}
.x16{left:61.631982px;}
.x19{left:63.683982px;}
.x1{left:68.615982px;}
.x23{left:70.415982px;}
.x9{left:71.855982px;}
.xe{left:73.655982px;}
.x1f{left:81.467982px;}
.x20{left:83.087982px;}
.xc{left:85.535982px;}
.x17{left:87.155982px;}
.x22{left:95.831982px;}
.x4{left:100.151982px;}
.xa{left:106.631982px;}
.xf{left:108.791982px;}
.x6{left:121.355982px;}
.x7{left:135.251982px;}
.x14{left:153.869982px;}
.x12{left:170.354982px;}
.xd{left:194.654982px;}
.x13{left:250.274982px;}
.x1b{left:300.959982px;}
.x1a{left:306.899982px;}
.x8{left:323.744982px;}
.x15{left:330.839982px;}
.x2{left:360.104982px;}
.x1c{left:365.399982px;}
.x11{left:456.224982px;}
.x3{left:469.724982px;}
.xb{left:853.814982px;}
.x10{left:884.594982px;}
.x18{left:1061.999982px;}
.x5{left:1087.559982px;}
@media print{
.v1{vertical-align:-147.456000pt;}
.v4{vertical-align:-106.496000pt;}
.v3{vertical-align:-80.256000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.864000pt;}
.ls6{letter-spacing:-7.306667pt;}
.ls1{letter-spacing:-0.360533pt;}
.lsd{letter-spacing:-0.289067pt;}
.lsf{letter-spacing:-0.262933pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.242133pt;}
.lse{letter-spacing:-0.144533pt;}
.ls10{letter-spacing:-0.052213pt;}
.ls12{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.144533pt;}
.ls13{letter-spacing:0.151552pt;}
.ls8{letter-spacing:0.218133pt;}
.ls5{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.289067pt;}
.ls7{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.448000pt;}
.ls14{letter-spacing:38.622720pt;}
.ls11{letter-spacing:46.734336pt;}
.lsc{letter-spacing:124.467200pt;}
.lsb{letter-spacing:124.512000pt;}
.ws3{word-spacing:-171.008000pt;}
.ws2{word-spacing:-170.880000pt;}
.ws18{word-spacing:-99.793920pt;}
.ws1{word-spacing:-53.376000pt;}
.ws9{word-spacing:-47.540224pt;}
.ws6{word-spacing:-47.504640pt;}
.wsa{word-spacing:-43.056640pt;}
.wse{word-spacing:-41.490944pt;}
.wsb{word-spacing:-41.455360pt;}
.ws1a{word-spacing:-41.192427pt;}
.wsf{word-spacing:-38.608640pt;}
.ws7{word-spacing:-2.057387pt;}
.ws15{word-spacing:-1.983659pt;}
.ws13{word-spacing:-1.753387pt;}
.ws11{word-spacing:-1.708373pt;}
.ws12{word-spacing:-1.226453pt;}
.ws5{word-spacing:-1.133653pt;}
.ws4{word-spacing:-1.071147pt;}
.ws16{word-spacing:-1.016235pt;}
.ws10{word-spacing:-0.931627pt;}
.ws8{word-spacing:-0.929280pt;}
.ws0{word-spacing:0.000000pt;}
.ws14{word-spacing:0.324160pt;}
.wsd{word-spacing:2.621653pt;}
.wsc{word-spacing:3.121493pt;}
.ws19{word-spacing:1536.513067pt;}
.ws17{word-spacing:2067.403435pt;}
._d{margin-left:-18.670080pt;}
._0{margin-left:-17.146240pt;}
._15{margin-left:-15.318187pt;}
._4{margin-left:-10.152960pt;}
._3{margin-left:-5.664000pt;}
._1{margin-left:-4.227840pt;}
._5{margin-left:-2.551680pt;}
._2{margin-left:-1.367040pt;}
._8{width:1.152000pt;}
._e{width:2.244267pt;}
._f{width:3.205973pt;}
._13{width:35.101781pt;}
._b{width:39.253632pt;}
._10{width:42.601003pt;}
._7{width:44.169173pt;}
._6{width:45.638101pt;}
._14{width:46.597291pt;}
._9{width:52.181333pt;}
._12{width:77.358336pt;}
._a{width:84.329813pt;}
._11{width:690.214187pt;}
._c{width:1413.014187pt;}
.fs4{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fsd{font-size:138.880000pt;}
.fse{font-size:139.008000pt;}
.fsa{font-size:149.120000pt;}
.fsb{font-size:149.248000pt;}
.fs8{font-size:154.880000pt;}
.fs9{font-size:155.008000pt;}
.fs3{font-size:164.480000pt;}
.fs2{font-size:170.880000pt;}
.fs6{font-size:171.008000pt;}
.fs5{font-size:192.000000pt;}
.fsc{font-size:192.128000pt;}
.fs0{font-size:234.880000pt;}
.fs1{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:47.936000pt;}
.y13{bottom:49.152000pt;}
.y6{bottom:55.776000pt;}
.y1c{bottom:61.184000pt;}
.ya8{bottom:69.216000pt;}
.yc1{bottom:75.776000pt;}
.y5{bottom:84.192000pt;}
.y28{bottom:86.016000pt;}
.y6b{bottom:89.536000pt;}
.y12{bottom:101.152000pt;}
.y8d{bottom:102.656000pt;}
.y3a{bottom:104.384000pt;}
.y17{bottom:107.712000pt;}
.y7e{bottom:110.496000pt;}
.ya7{bottom:110.816000pt;}
.y41{bottom:111.392000pt;}
.yb1{bottom:122.528000pt;}
.y55{bottom:122.656000pt;}
.yc0{bottom:123.296000pt;}
.y77{bottom:127.616000pt;}
.y38{bottom:146.146667pt;}
.y8c{bottom:150.333333pt;}
.y6a{bottom:153.573333pt;}
.y16{bottom:155.426667pt;}
.yb0{bottom:164.133333pt;}
.y54{bottom:164.413333pt;}
.y11{bottom:167.426667pt;}
.y27{bottom:170.813333pt;}
.ybf{bottom:170.973333pt;}
.ya6{bottom:171.133333pt;}
.y76{bottom:173.373333pt;}
.y7d{bottom:176.733333pt;}
.y40{bottom:177.666667pt;}
.y96{bottom:179.133333pt;}
.y37{bottom:187.746667pt;}
.y69{bottom:195.333333pt;}
.y47{bottom:196.386667pt;}
.y8b{bottom:197.853333pt;}
.y15{bottom:202.946667pt;}
.yc4{bottom:208.093333pt;}
.ya5{bottom:212.933333pt;}
.y10{bottom:214.946667pt;}
.y9c{bottom:218.533333pt;}
.y31{bottom:221.053333pt;}
.yaf{bottom:224.453333pt;}
.y3f{bottom:225.346667pt;}
.y95{bottom:226.853333pt;}
.y36{bottom:229.373333pt;}
.y83{bottom:232.773333pt;}
.y3e{bottom:235.586667pt;}
.y68{bottom:236.933333pt;}
.ybe{bottom:237.253333pt;}
.y7c{bottom:243.013333pt;}
.y46{bottom:243.906667pt;}
.y8a{bottom:245.573333pt;}
.y14{bottom:250.626667pt;}
.yc3{bottom:255.813333pt;}
.y26{bottom:257.253333pt;}
.yf{bottom:262.626667pt;}
.y53{bottom:265.733333pt;}
.yae{bottom:266.213333pt;}
.y30{bottom:268.733333pt;}
.y5f{bottom:271.173333pt;}
.y75{bottom:271.813333pt;}
.y1b{bottom:272.866667pt;}
.ya4{bottom:273.253333pt;}
.y67{bottom:278.533333pt;}
.y82{bottom:280.453333pt;}
.y43{bottom:281.346667pt;}
.y9b{bottom:284.773333pt;}
.ybd{bottom:284.933333pt;}
.y4a{bottom:291.613333pt;}
.y8f{bottom:293.093333pt;}
.y3d{bottom:301.853333pt;}
.yc2{bottom:303.493333pt;}
.y52{bottom:307.333333pt;}
.y7b{bottom:309.413333pt;}
.ye{bottom:310.333333pt;}
.y5d{bottom:312.800000pt;}
.ya3{bottom:314.853333pt;}
.y2f{bottom:316.293333pt;}
.y66{bottom:320.320000pt;}
.y1a{bottom:320.573333pt;}
.yad{bottom:326.560000pt;}
.y81{bottom:327.973333pt;}
.y42{bottom:328.893333pt;}
.y4{bottom:330.333333pt;}
.y49{bottom:339.133333pt;}
.y8e{bottom:340.773333pt;}
.y25{bottom:343.493333pt;}
.y51{bottom:349.120000pt;}
.y9a{bottom:351.013333pt;}
.ybc{bottom:351.200000pt;}
.y5c{bottom:354.560000pt;}
.y7a{bottom:356.933333pt;}
.y45{bottom:357.853333pt;}
.y65{bottom:361.920000pt;}
.y2e{bottom:363.973333pt;}
.y3c{bottom:368.093333pt;}
.yac{bottom:368.160000pt;}
.yb7{bottom:369.760000pt;}
.ybb{bottom:369.920000pt;}
.y74{bottom:370.240000pt;}
.ya2{bottom:375.200000pt;}
.yd{bottom:376.573333pt;}
.y89{bottom:378.080000pt;}
.y24{bottom:386.720000pt;}
.y48{bottom:386.813333pt;}
.y90{bottom:388.320000pt;}
.y50{bottom:390.720000pt;}
.y5b{bottom:396.160000pt;}
.y64{bottom:403.680000pt;}
.y44{bottom:405.533333pt;}
.y94{bottom:407.040000pt;}
.y73{bottom:408.960000pt;}
.yb6{bottom:411.360000pt;}
.y2d{bottom:411.493333pt;}
.ya1{bottom:416.960000pt;}
.y99{bottom:417.280000pt;}
.yba{bottom:417.440000pt;}
.y5e{bottom:418.560000pt;}
.yc9{bottom:421.186667pt;}
.y79{bottom:423.360000pt;}
.yc{bottom:424.093333pt;}
.y88{bottom:425.760000pt;}
.ycd{bottom:427.813333pt;}
.yab{bottom:428.506667pt;}
.y23{bottom:429.760000pt;}
.y3b{bottom:434.493333pt;}
.y98{bottom:436.000000pt;}
.y63{bottom:445.306667pt;}
.y72{bottom:447.520000pt;}
.y19{bottom:453.093333pt;}
.y93{bottom:454.720000pt;}
.yb5{bottom:459.066667pt;}
.yc8{bottom:459.933333pt;}
.y5a{bottom:460.186667pt;}
.y80{bottom:460.640000pt;}
.ycc{bottom:469.573333pt;}
.yb{bottom:471.813333pt;}
.y87{bottom:473.280000pt;}
.y33{bottom:475.840000pt;}
.ya0{bottom:477.280000pt;}
.y39{bottom:479.493333pt;}
.y97{bottom:483.680000pt;}
.yb9{bottom:483.840000pt;}
.y71{bottom:486.240000pt;}
.y6d{bottom:486.906667pt;}
.yaa{bottom:488.826667pt;}
.y4f{bottom:492.026667pt;}
.yc7{bottom:498.653333pt;}
.y18{bottom:500.773333pt;}
.y59{bottom:501.786667pt;}
.y92{bottom:502.240000pt;}
.y2c{bottom:506.880000pt;}
.y7f{bottom:508.160000pt;}
.ycb{bottom:511.173333pt;}
.y22{bottom:516.186667pt;}
.y32{bottom:517.440000pt;}
.ya{bottom:519.493333pt;}
.y86{bottom:520.960000pt;}
.y35{bottom:521.120000pt;}
.y70{bottom:524.986667pt;}
.yb4{bottom:525.306667pt;}
.y62{bottom:528.666667pt;}
.y4e{bottom:533.786667pt;}
.yc6{bottom:537.373333pt;}
.y9f{bottom:537.626667pt;}
.y58{bottom:543.546667pt;}
.y91{bottom:549.946667pt;}
.yca{bottom:552.933333pt;}
.y2b{bottom:554.400000pt;}
.y78{bottom:555.866667pt;}
.y21{bottom:559.386667pt;}
.y34{bottom:562.880000pt;}
.y9{bottom:567.013333pt;}
.y85{bottom:568.666667pt;}
.y61{bottom:570.266667pt;}
.yb3{bottom:572.986667pt;}
.y4d{bottom:575.386667pt;}
.y9e{bottom:579.226667pt;}
.y3{bottom:582.173333pt;}
.y57{bottom:585.146667pt;}
.y20{bottom:602.426667pt;}
.y60{bottom:612.066667pt;}
.y84{bottom:616.186667pt;}
.yb8{bottom:616.346667pt;}
.ya9{bottom:616.706667pt;}
.y4c{bottom:617.146667pt;}
.yb2{bottom:620.546667pt;}
.y9d{bottom:620.986667pt;}
.y6f{bottom:623.386667pt;}
.y2{bottom:647.653333pt;}
.y8{bottom:651.386667pt;}
.y2a{bottom:653.306667pt;}
.y1d{bottom:677.253333pt;}
.yc5{bottom:680.546667pt;}
.y1f{bottom:685.946667pt;}
.y56{bottom:702.653333pt;}
.y7{bottom:704.826667pt;}
.y29{bottom:706.746667pt;}
.y6e{bottom:710.146667pt;}
.y1{bottom:713.093333pt;}
.y4b{bottom:721.626667pt;}
.y1e{bottom:733.506667pt;}
.h6{height:100.125000pt;}
.h9{height:100.258500pt;}
.h5{height:121.111250pt;}
.hf{height:144.847500pt;}
.h10{height:144.981000pt;}
.hc{height:155.527500pt;}
.hd{height:155.661000pt;}
.ha{height:161.535000pt;}
.hb{height:161.668500pt;}
.h4{height:178.222500pt;}
.h8{height:178.356000pt;}
.h7{height:200.250000pt;}
.he{height:200.383500pt;}
.h2{height:244.972500pt;}
.h3{height:245.106000pt;}
.h1{height:793.333333pt;}
.h0{height:793.600000pt;}
.w2{width:1058.399984pt;}
.w0{width:1058.400000pt;}
.w1{width:1058.666667pt;}
.x0{left:0.000000pt;}
.x1e{left:38.175984pt;}
.x1d{left:41.055984pt;}
.x21{left:52.831984pt;}
.x16{left:54.783984pt;}
.x19{left:56.607984pt;}
.x1{left:60.991984pt;}
.x23{left:62.591984pt;}
.x9{left:63.871984pt;}
.xe{left:65.471984pt;}
.x1f{left:72.415984pt;}
.x20{left:73.855984pt;}
.xc{left:76.031984pt;}
.x17{left:77.471984pt;}
.x22{left:85.183984pt;}
.x4{left:89.023984pt;}
.xa{left:94.783984pt;}
.xf{left:96.703984pt;}
.x6{left:107.871984pt;}
.x7{left:120.223984pt;}
.x14{left:136.773318pt;}
.x12{left:151.426651pt;}
.xd{left:173.026651pt;}
.x13{left:222.466651pt;}
.x1b{left:267.519984pt;}
.x1a{left:272.799984pt;}
.x8{left:287.773318pt;}
.x15{left:294.079984pt;}
.x2{left:320.093318pt;}
.x1c{left:324.799984pt;}
.x11{left:405.533318pt;}
.x3{left:417.533318pt;}
.xb{left:758.946651pt;}
.x10{left:786.306651pt;}
.x18{left:943.999984pt;}
.x5{left:966.719984pt;}
}




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