
    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_1d0fe13a79896e5942f00f22.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_1f6e53690287b44e05ff9c74.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6f59b8faa8a06b992c9a9a9c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_c7f5d6adfbf34a161a0b312c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_3d2995fdcfa24225e9f2c902.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_7afccfec81b6a18a1d23769c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_671489d99d26f58549770e46.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_498576665682345f76d73799.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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:ff9;src:url('chunks/assets/font_9a9e011d1af1ac9eb8340901.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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:ffa;src:url('chunks/assets/font_121f6064c27dd32720f3f21b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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);}
.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;}
.lsd{letter-spacing:-0.900000px;}
.lsc{letter-spacing:-0.378600px;}
.ls8{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.037440px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.lse{letter-spacing:0.037440px;}
.ls0{letter-spacing:0.187200px;}
.ls5{letter-spacing:0.341400px;}
.ls4{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.378600px;}
.lsa{letter-spacing:0.480000px;}
.ls10{letter-spacing:7.020000px;}
.ls12{letter-spacing:7.740000px;}
.ls11{letter-spacing:8.460000px;}
.lsf{letter-spacing:12.780000px;}
.ls14{letter-spacing:14.940000px;}
.ls7{letter-spacing:39.540000px;}
.ls13{letter-spacing:87.461280px;}
.ls6{letter-spacing:129.221280px;}
.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;}
}
.ws0{word-spacing:-21.438600px;}
.ws3{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.401400px;}
.ws2{word-spacing:-21.060000px;}
.ws6{word-spacing:-21.022560px;}
.ws4{word-spacing:-20.700000px;}
.ws7{word-spacing:-20.681400px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-6.233760px;}
._19{margin-left:-5.223120px;}
._2f{margin-left:-3.864960px;}
._0{margin-left:-2.852640px;}
._1{margin-left:-1.189440px;}
._2{width:1.525440px;}
._17{width:2.677920px;}
._d{width:3.745680px;}
._22{width:4.763520px;}
._7{width:6.233760px;}
._11{width:7.760160px;}
._2e{width:8.800560px;}
._b{width:9.940320px;}
._8{width:11.793600px;}
._9{width:13.159680px;}
._6{width:15.172320px;}
._3{width:16.374720px;}
._21{width:17.668320px;}
._e{width:19.058400px;}
._f{width:22.745760px;}
._1c{width:24.692400px;}
._2d{width:26.114400px;}
._5{width:27.883440px;}
._4{width:28.988640px;}
._37{width:30.009600px;}
._c{width:31.674240px;}
._a{width:33.284880px;}
._1f{width:34.809600px;}
._10{width:35.812080px;}
._38{width:37.318320px;}
._2a{width:39.045360px;}
._36{width:40.935120px;}
._2b{width:42.388320px;}
._23{width:43.720560px;}
._24{width:44.910000px;}
._28{width:46.210560px;}
._1d{width:47.268720px;}
._1a{width:48.859200px;}
._1b{width:49.869120px;}
._40{width:51.226320px;}
._3b{width:52.397280px;}
._3c{width:53.418240px;}
._32{width:55.945440px;}
._14{width:57.030480px;}
._15{width:58.763040px;}
._41{width:60.241680px;}
._3e{width:61.495200px;}
._3d{width:62.600400px;}
._16{width:75.984480px;}
._3a{width:80.290800px;}
._39{width:81.301680px;}
._3f{width:82.733760px;}
._12{width:118.188720px;}
._13{width:119.799360px;}
._30{width:183.524400px;}
._31{width:184.867200px;}
._27{width:232.983360px;}
._29{width:344.037360px;}
._20{width:373.411440px;}
._2c{width:421.769280px;}
._1e{width:623.856960px;}
._33{width:682.582320px;}
._25{width:742.538640px;}
._26{width:764.632080px;}
._34{width:896.406720px;}
._35{width:1979.116080px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(36,63,96);}
.fc2{color:rgb(79,97,40);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,192,0);}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:12.960000px;}
.y6{bottom:39.420000px;}
.y5{bottom:57.600000px;}
.y35{bottom:109.296000px;}
.y29{bottom:116.136000px;}
.y8d{bottom:116.856000px;}
.y4e{bottom:117.576000px;}
.y34{bottom:137.016000px;}
.y28{bottom:143.856000px;}
.y8c{bottom:144.576000px;}
.y4d{bottom:145.296000px;}
.ya8{bottom:149.076000px;}
.yb6{bottom:161.850000px;}
.y33{bottom:164.910000px;}
.y27{bottom:171.570000px;}
.y4c{bottom:173.010000px;}
.y68{bottom:176.070000px;}
.ya7{bottom:176.970000px;}
.yb5{bottom:189.570000px;}
.y32{bottom:192.630000px;}
.y8b{bottom:193.350000px;}
.yce{bottom:198.570000px;}
.y26{bottom:199.290000px;}
.y4b{bottom:200.730000px;}
.y67{bottom:203.790000px;}
.ya6{bottom:204.690000px;}
.yb4{bottom:217.290000px;}
.y31{bottom:220.350000px;}
.y8a{bottom:224.130000px;}
.ycd{bottom:226.290000px;}
.y25{bottom:227.010000px;}
.y7f{bottom:227.190000px;}
.y66{bottom:231.690000px;}
.ya5{bottom:232.410000px;}
.y4a{bottom:236.010000px;}
.yb3{bottom:245.010000px;}
.y89{bottom:251.850000px;}
.y7e{bottom:254.910000px;}
.y65{bottom:259.410000px;}
.ycc{bottom:261.750000px;}
.y49{bottom:266.970000px;}
.y30{bottom:269.130000px;}
.y24{bottom:275.970000px;}
.y88{bottom:279.750000px;}
.ya4{bottom:281.190000px;}
.y7d{bottom:282.630000px;}
.y64{bottom:287.130000px;}
.ycb{bottom:289.470000px;}
.y48{bottom:294.690000px;}
.y2f{bottom:296.850000px;}
.y23{bottom:303.690000px;}
.y87{bottom:307.470000px;}
.y7c{bottom:310.530000px;}
.ya3{bottom:311.970000px;}
.y63{bottom:315.030000px;}
.y47{bottom:322.410000px;}
.yca{bottom:324.570000px;}
.y2e{bottom:324.750000px;}
.y22{bottom:331.410000px;}
.y86{bottom:335.190000px;}
.y7b{bottom:338.295000px;}
.ya2{bottom:339.735000px;}
.y62{bottom:342.615000px;}
.y46{bottom:350.175000px;}
.y2d{bottom:352.515000px;}
.yc9{bottom:355.575000px;}
.y21{bottom:359.175000px;}
.y85{bottom:362.955000px;}
.y7a{bottom:366.015000px;}
.yb2{bottom:366.735000px;}
.ya1{bottom:367.635000px;}
.y45{bottom:378.075000px;}
.y2c{bottom:380.235000px;}
.yc8{bottom:383.295000px;}
.y20{bottom:387.075000px;}
.y79{bottom:393.735000px;}
.yb1{bottom:394.455000px;}
.ya0{bottom:395.355000px;}
.y44{bottom:405.795000px;}
.y2b{bottom:407.955000px;}
.yc7{bottom:411.015000px;}
.y84{bottom:411.735000px;}
.y1f{bottom:414.795000px;}
.y78{bottom:421.635000px;}
.yb0{bottom:422.355000px;}
.y61{bottom:433.515000px;}
.y2a{bottom:435.855000px;}
.y43{bottom:441.075000px;}
.y83{bottom:442.515000px;}
.y9f{bottom:444.135000px;}
.yc6{bottom:446.295000px;}
.y77{bottom:449.355000px;}
.yaf{bottom:450.075000px;}
.y60{bottom:461.415000px;}
.y1e{bottom:463.575000px;}
.y42{bottom:468.795000px;}
.y82{bottom:470.415000px;}
.yc5{bottom:474.195000px;}
.y9e{bottom:474.915000px;}
.y76{bottom:477.075000px;}
.yae{bottom:485.355000px;}
.y5f{bottom:489.135000px;}
.y1d{bottom:491.295000px;}
.y41{bottom:496.695000px;}
.y81{bottom:498.135000px;}
.yc4{bottom:501.735000px;}
.y9d{bottom:502.635000px;}
.y75{bottom:504.795000px;}
.yad{bottom:516.135000px;}
.y1c{bottom:519.195000px;}
.y40{bottom:524.235000px;}
.y5e{bottom:524.415000px;}
.y80{bottom:525.855000px;}
.y9c{bottom:530.355000px;}
.y74{bottom:532.695000px;}
.yc3{bottom:537.195000px;}
.yac{bottom:543.855000px;}
.y1b{bottom:546.915000px;}
.y5d{bottom:552.135000px;}
.y9b{bottom:558.075000px;}
.y3f{bottom:559.695000px;}
.y73{bottom:560.415000px;}
.yc2{bottom:564.915000px;}
.yab{bottom:571.575000px;}
.y1a{bottom:574.635000px;}
.y5c{bottom:579.855000px;}
.y3e{bottom:587.415000px;}
.y72{bottom:588.135000px;}
.yc1{bottom:592.635000px;}
.yaa{bottom:599.475000px;}
.y19{bottom:602.355000px;}
.y9a{bottom:606.885000px;}
.y5b{bottom:607.785000px;}
.y3d{bottom:615.165000px;}
.y71{bottom:616.065000px;}
.ya9{bottom:627.225000px;}
.yc0{bottom:627.945000px;}
.y18{bottom:630.285000px;}
.y5a{bottom:635.505000px;}
.y99{bottom:637.845000px;}
.y3c{bottom:643.065000px;}
.y70{bottom:643.785000px;}
.ybf{bottom:655.845000px;}
.y17{bottom:658.005000px;}
.y98{bottom:665.565000px;}
.y3b{bottom:670.785000px;}
.ybe{bottom:683.565000px;}
.y16{bottom:685.725000px;}
.y6f{bottom:692.565000px;}
.y97{bottom:693.285000px;}
.y59{bottom:698.505000px;}
.y3a{bottom:706.065000px;}
.ybd{bottom:711.285000px;}
.y15{bottom:713.445000px;}
.y6e{bottom:720.285000px;}
.y96{bottom:721.005000px;}
.y58{bottom:726.225000px;}
.y39{bottom:733.785000px;}
.y14{bottom:741.345000px;}
.ybc{bottom:746.565000px;}
.y6d{bottom:748.005000px;}
.y95{bottom:748.725000px;}
.y57{bottom:754.125000px;}
.y38{bottom:761.505000px;}
.y13{bottom:769.065000px;}
.ybb{bottom:774.285000px;}
.y6c{bottom:775.905000px;}
.y56{bottom:781.845000px;}
.y37{bottom:789.405000px;}
.y12{bottom:796.785000px;}
.y94{bottom:797.505000px;}
.yba{bottom:802.005000px;}
.y6b{bottom:803.625000px;}
.y55{bottom:809.565000px;}
.y36{bottom:817.125000px;}
.y11{bottom:824.685000px;}
.y93{bottom:828.465000px;}
.y6a{bottom:831.345000px;}
.yb9{bottom:837.465000px;}
.y54{bottom:844.845000px;}
.y10{bottom:852.405000px;}
.y92{bottom:856.185000px;}
.y69{bottom:859.065000px;}
.yb8{bottom:865.185000px;}
.y53{bottom:872.610000px;}
.yf{bottom:880.170000px;}
.y91{bottom:883.950000px;}
.yb7{bottom:892.950000px;}
.y52{bottom:900.510000px;}
.ye{bottom:907.890000px;}
.y90{bottom:911.670000px;}
.y51{bottom:928.230000px;}
.yd{bottom:935.790000px;}
.y8f{bottom:939.390000px;}
.y50{bottom:955.950000px;}
.yc{bottom:963.510000px;}
.y4f{bottom:983.670000px;}
.y8e{bottom:988.170000px;}
.yb{bottom:991.230000px;}
.ya{bottom:1019.130000px;}
.y9{bottom:1046.850000px;}
.y8{bottom:1074.570000px;}
.y4{bottom:1098.330000px;}
.y3{bottom:1126.230000px;}
.y2{bottom:1171.260000px;}
.y1{bottom:1198.440000px;}
.h5{height:36.396000px;}
.h2{height:48.224531px;}
.h9{height:59.066719px;}
.h7{height:59.436914px;}
.h4{height:65.010937px;}
.h6{height:82.676953px;}
.h8{height:84.898125px;}
.ha{height:86.585445px;}
.h3{height:108.843750px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:55.296000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x7{left:11.880000px;}
.x6{left:27.000000px;}
.x5{left:84.995987px;}
.x8{left:89.135987px;}
.xc{left:130.715987px;}
.x9{left:162.389987px;}
.x3{left:213.689987px;}
.x2{left:267.734987px;}
.xb{left:295.094987px;}
.xe{left:301.394987px;}
.x10{left:306.254987px;}
.xf{left:313.094987px;}
.xd{left:344.234987px;}
.x4{left:445.244987px;}
.xa{left:446.684987px;}
.x1{left:581.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.800000pt;}
.lsc{letter-spacing:-0.336533pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.033280pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.lse{letter-spacing:0.033280pt;}
.ls0{letter-spacing:0.166400pt;}
.ls5{letter-spacing:0.303467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.336533pt;}
.lsa{letter-spacing:0.426667pt;}
.ls10{letter-spacing:6.240000pt;}
.ls12{letter-spacing:6.880000pt;}
.ls11{letter-spacing:7.520000pt;}
.lsf{letter-spacing:11.360000pt;}
.ls14{letter-spacing:13.280000pt;}
.ls7{letter-spacing:35.146667pt;}
.ls13{letter-spacing:77.743360pt;}
.ls6{letter-spacing:114.863360pt;}
.ws0{word-spacing:-19.056533pt;}
.ws3{word-spacing:-19.040000pt;}
.ws5{word-spacing:-19.023467pt;}
.ws2{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.686720pt;}
.ws4{word-spacing:-18.400000pt;}
.ws7{word-spacing:-18.383467pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-5.541120pt;}
._19{margin-left:-4.642773pt;}
._2f{margin-left:-3.435520pt;}
._0{margin-left:-2.535680pt;}
._1{margin-left:-1.057280pt;}
._2{width:1.355947pt;}
._17{width:2.380373pt;}
._d{width:3.329493pt;}
._22{width:4.234240pt;}
._7{width:5.541120pt;}
._11{width:6.897920pt;}
._2e{width:7.822720pt;}
._b{width:8.835840pt;}
._8{width:10.483200pt;}
._9{width:11.697493pt;}
._6{width:13.486507pt;}
._3{width:14.555307pt;}
._21{width:15.705173pt;}
._e{width:16.940800pt;}
._f{width:20.218453pt;}
._1c{width:21.948800pt;}
._2d{width:23.212800pt;}
._5{width:24.785280pt;}
._4{width:25.767680pt;}
._37{width:26.675200pt;}
._c{width:28.154880pt;}
._a{width:29.586560pt;}
._1f{width:30.941867pt;}
._10{width:31.832960pt;}
._38{width:33.171840pt;}
._2a{width:34.706987pt;}
._36{width:36.386773pt;}
._2b{width:37.678507pt;}
._23{width:38.862720pt;}
._24{width:39.920000pt;}
._28{width:41.076053pt;}
._1d{width:42.016640pt;}
._1a{width:43.430400pt;}
._1b{width:44.328107pt;}
._40{width:45.534507pt;}
._3b{width:46.575360pt;}
._3c{width:47.482880pt;}
._32{width:49.729280pt;}
._14{width:50.693760pt;}
._15{width:52.233813pt;}
._41{width:53.548160pt;}
._3e{width:54.662400pt;}
._3d{width:55.644800pt;}
._16{width:67.541760pt;}
._3a{width:71.369600pt;}
._39{width:72.268160pt;}
._3f{width:73.541120pt;}
._12{width:105.056640pt;}
._13{width:106.488320pt;}
._30{width:163.132800pt;}
._31{width:164.326400pt;}
._27{width:207.096320pt;}
._29{width:305.810987pt;}
._20{width:331.921280pt;}
._2c{width:374.906027pt;}
._1e{width:554.539520pt;}
._33{width:606.739840pt;}
._25{width:660.034347pt;}
._26{width:679.672960pt;}
._34{width:796.805973pt;}
._35{width:1759.214293pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:11.520000pt;}
.y6{bottom:35.040000pt;}
.y5{bottom:51.200000pt;}
.y35{bottom:97.152000pt;}
.y29{bottom:103.232000pt;}
.y8d{bottom:103.872000pt;}
.y4e{bottom:104.512000pt;}
.y34{bottom:121.792000pt;}
.y28{bottom:127.872000pt;}
.y8c{bottom:128.512000pt;}
.y4d{bottom:129.152000pt;}
.ya8{bottom:132.512000pt;}
.yb6{bottom:143.866667pt;}
.y33{bottom:146.586667pt;}
.y27{bottom:152.506667pt;}
.y4c{bottom:153.786667pt;}
.y68{bottom:156.506667pt;}
.ya7{bottom:157.306667pt;}
.yb5{bottom:168.506667pt;}
.y32{bottom:171.226667pt;}
.y8b{bottom:171.866667pt;}
.yce{bottom:176.506667pt;}
.y26{bottom:177.146667pt;}
.y4b{bottom:178.426667pt;}
.y67{bottom:181.146667pt;}
.ya6{bottom:181.946667pt;}
.yb4{bottom:193.146667pt;}
.y31{bottom:195.866667pt;}
.y8a{bottom:199.226667pt;}
.ycd{bottom:201.146667pt;}
.y25{bottom:201.786667pt;}
.y7f{bottom:201.946667pt;}
.y66{bottom:205.946667pt;}
.ya5{bottom:206.586667pt;}
.y4a{bottom:209.786667pt;}
.yb3{bottom:217.786667pt;}
.y89{bottom:223.866667pt;}
.y7e{bottom:226.586667pt;}
.y65{bottom:230.586667pt;}
.ycc{bottom:232.666667pt;}
.y49{bottom:237.306667pt;}
.y30{bottom:239.226667pt;}
.y24{bottom:245.306667pt;}
.y88{bottom:248.666667pt;}
.ya4{bottom:249.946667pt;}
.y7d{bottom:251.226667pt;}
.y64{bottom:255.226667pt;}
.ycb{bottom:257.306667pt;}
.y48{bottom:261.946667pt;}
.y2f{bottom:263.866667pt;}
.y23{bottom:269.946667pt;}
.y87{bottom:273.306667pt;}
.y7c{bottom:276.026667pt;}
.ya3{bottom:277.306667pt;}
.y63{bottom:280.026667pt;}
.y47{bottom:286.586667pt;}
.yca{bottom:288.506667pt;}
.y2e{bottom:288.666667pt;}
.y22{bottom:294.586667pt;}
.y86{bottom:297.946667pt;}
.y7b{bottom:300.706667pt;}
.ya2{bottom:301.986667pt;}
.y62{bottom:304.546667pt;}
.y46{bottom:311.266667pt;}
.y2d{bottom:313.346667pt;}
.yc9{bottom:316.066667pt;}
.y21{bottom:319.266667pt;}
.y85{bottom:322.626667pt;}
.y7a{bottom:325.346667pt;}
.yb2{bottom:325.986667pt;}
.ya1{bottom:326.786667pt;}
.y45{bottom:336.066667pt;}
.y2c{bottom:337.986667pt;}
.yc8{bottom:340.706667pt;}
.y20{bottom:344.066667pt;}
.y79{bottom:349.986667pt;}
.yb1{bottom:350.626667pt;}
.ya0{bottom:351.426667pt;}
.y44{bottom:360.706667pt;}
.y2b{bottom:362.626667pt;}
.yc7{bottom:365.346667pt;}
.y84{bottom:365.986667pt;}
.y1f{bottom:368.706667pt;}
.y78{bottom:374.786667pt;}
.yb0{bottom:375.426667pt;}
.y61{bottom:385.346667pt;}
.y2a{bottom:387.426667pt;}
.y43{bottom:392.066667pt;}
.y83{bottom:393.346667pt;}
.y9f{bottom:394.786667pt;}
.yc6{bottom:396.706667pt;}
.y77{bottom:399.426667pt;}
.yaf{bottom:400.066667pt;}
.y60{bottom:410.146667pt;}
.y1e{bottom:412.066667pt;}
.y42{bottom:416.706667pt;}
.y82{bottom:418.146667pt;}
.yc5{bottom:421.506667pt;}
.y9e{bottom:422.146667pt;}
.y76{bottom:424.066667pt;}
.yae{bottom:431.426667pt;}
.y5f{bottom:434.786667pt;}
.y1d{bottom:436.706667pt;}
.y41{bottom:441.506667pt;}
.y81{bottom:442.786667pt;}
.yc4{bottom:445.986667pt;}
.y9d{bottom:446.786667pt;}
.y75{bottom:448.706667pt;}
.yad{bottom:458.786667pt;}
.y1c{bottom:461.506667pt;}
.y40{bottom:465.986667pt;}
.y5e{bottom:466.146667pt;}
.y80{bottom:467.426667pt;}
.y9c{bottom:471.426667pt;}
.y74{bottom:473.506667pt;}
.yc3{bottom:477.506667pt;}
.yac{bottom:483.426667pt;}
.y1b{bottom:486.146667pt;}
.y5d{bottom:490.786667pt;}
.y9b{bottom:496.066667pt;}
.y3f{bottom:497.506667pt;}
.y73{bottom:498.146667pt;}
.yc2{bottom:502.146667pt;}
.yab{bottom:508.066667pt;}
.y1a{bottom:510.786667pt;}
.y5c{bottom:515.426667pt;}
.y3e{bottom:522.146667pt;}
.y72{bottom:522.786667pt;}
.yc1{bottom:526.786667pt;}
.yaa{bottom:532.866667pt;}
.y19{bottom:535.426667pt;}
.y9a{bottom:539.453333pt;}
.y5b{bottom:540.253333pt;}
.y3d{bottom:546.813333pt;}
.y71{bottom:547.613333pt;}
.ya9{bottom:557.533333pt;}
.yc0{bottom:558.173333pt;}
.y18{bottom:560.253333pt;}
.y5a{bottom:564.893333pt;}
.y99{bottom:566.973333pt;}
.y3c{bottom:571.613333pt;}
.y70{bottom:572.253333pt;}
.ybf{bottom:582.973333pt;}
.y17{bottom:584.893333pt;}
.y98{bottom:591.613333pt;}
.y3b{bottom:596.253333pt;}
.ybe{bottom:607.613333pt;}
.y16{bottom:609.533333pt;}
.y6f{bottom:615.613333pt;}
.y97{bottom:616.253333pt;}
.y59{bottom:620.893333pt;}
.y3a{bottom:627.613333pt;}
.ybd{bottom:632.253333pt;}
.y15{bottom:634.173333pt;}
.y6e{bottom:640.253333pt;}
.y96{bottom:640.893333pt;}
.y58{bottom:645.533333pt;}
.y39{bottom:652.253333pt;}
.y14{bottom:658.973333pt;}
.ybc{bottom:663.613333pt;}
.y6d{bottom:664.893333pt;}
.y95{bottom:665.533333pt;}
.y57{bottom:670.333333pt;}
.y38{bottom:676.893333pt;}
.y13{bottom:683.613333pt;}
.ybb{bottom:688.253333pt;}
.y6c{bottom:689.693333pt;}
.y56{bottom:694.973333pt;}
.y37{bottom:701.693333pt;}
.y12{bottom:708.253333pt;}
.y94{bottom:708.893333pt;}
.yba{bottom:712.893333pt;}
.y6b{bottom:714.333333pt;}
.y55{bottom:719.613333pt;}
.y36{bottom:726.333333pt;}
.y11{bottom:733.053333pt;}
.y93{bottom:736.413333pt;}
.y6a{bottom:738.973333pt;}
.yb9{bottom:744.413333pt;}
.y54{bottom:750.973333pt;}
.y10{bottom:757.693333pt;}
.y92{bottom:761.053333pt;}
.y69{bottom:763.613333pt;}
.yb8{bottom:769.053333pt;}
.y53{bottom:775.653333pt;}
.yf{bottom:782.373333pt;}
.y91{bottom:785.733333pt;}
.yb7{bottom:793.733333pt;}
.y52{bottom:800.453333pt;}
.ye{bottom:807.013333pt;}
.y90{bottom:810.373333pt;}
.y51{bottom:825.093333pt;}
.yd{bottom:831.813333pt;}
.y8f{bottom:835.013333pt;}
.y50{bottom:849.733333pt;}
.yc{bottom:856.453333pt;}
.y4f{bottom:874.373333pt;}
.y8e{bottom:878.373333pt;}
.yb{bottom:881.093333pt;}
.ya{bottom:905.893333pt;}
.y9{bottom:930.533333pt;}
.y8{bottom:955.173333pt;}
.y4{bottom:976.293333pt;}
.y3{bottom:1001.093333pt;}
.y2{bottom:1041.120000pt;}
.y1{bottom:1065.280000pt;}
.h5{height:32.352000pt;}
.h2{height:42.866250pt;}
.h9{height:52.503750pt;}
.h7{height:52.832812pt;}
.h4{height:57.787500pt;}
.h6{height:73.490625pt;}
.h8{height:75.465000pt;}
.ha{height:76.964840pt;}
.h3{height:96.750000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:49.152000pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x7{left:10.560000pt;}
.x6{left:24.000000pt;}
.x5{left:75.551988pt;}
.x8{left:79.231988pt;}
.xc{left:116.191988pt;}
.x9{left:144.346655pt;}
.x3{left:189.946655pt;}
.x2{left:237.986655pt;}
.xb{left:262.306655pt;}
.xe{left:267.906655pt;}
.x10{left:272.226655pt;}
.xf{left:278.306655pt;}
.xd{left:305.986655pt;}
.x4{left:395.773321pt;}
.xa{left:397.053321pt;}
.x1{left:517.053321pt;}
}




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