
    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_3d28b53384b91d914deb8c04.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_283f0849310fbec0bdc1f185.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8c92138d51ab22e509943479.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_a30eda9070ee5788cee72394.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_27fe7ef745ae7ece4ac2909d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.773926;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_ec34507a7103d2014331e07c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_550f1d339d96d0e205ca7e7c.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0bc8ad4c33f99abdcc0bd5c2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_ce728043cb921714fdc569e6.woff')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;}
.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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-0.828000px;}
.ls5{letter-spacing:-0.540000px;}
.ls10{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.106800px;}
.ls13{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.ls8{letter-spacing:0.306600px;}
.ls6{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.666720px;}
.lsc{letter-spacing:2.340000px;}
.lse{letter-spacing:3.060000px;}
.ls7{letter-spacing:8.726400px;}
.ls12{letter-spacing:9.540000px;}
.ls11{letter-spacing:78.426720px;}
.ls2{letter-spacing:113.904000px;}
.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;}
}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.246600px;}
.ws5{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.046800px;}
.ws1{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.wsc{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.608000px;}
.ws3{word-spacing:-13.500000px;}
.ws8{word-spacing:-12.672000px;}
.ws0{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._0{margin-left:-1.095120px;}
._1{width:1.281360px;}
._2{width:2.646000px;}
._7{width:3.834000px;}
._4{width:5.088240px;}
._3{width:6.102000px;}
._d{width:7.180080px;}
._5{width:8.208000px;}
._6{width:9.504000px;}
._9{width:10.634640px;}
._8{width:12.096000px;}
._a{width:13.140000px;}
._16{width:14.594640px;}
._10{width:16.003440px;}
._f{width:17.031600px;}
._c{width:18.465840px;}
._b{width:19.772160px;}
._11{width:21.145920px;}
._17{width:22.518000px;}
._19{width:23.721120px;}
._18{width:24.894000px;}
._1a{width:26.276880px;}
._15{width:28.836000px;}
._14{width:29.970000px;}
._e{width:52.740000px;}
._13{width:55.136880px;}
._12{width:56.322000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs7{font-size:69.120000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yd9{bottom:2.880000px;}
.yb7{bottom:3.060000px;}
.yd8{bottom:18.360000px;}
.yfa{bottom:18.390000px;}
.y109{bottom:18.405000px;}
.yd6{bottom:18.540000px;}
.ye0{bottom:18.570000px;}
.ye2{bottom:33.840000px;}
.yf9{bottom:33.870000px;}
.ye9{bottom:33.885000px;}
.ydc{bottom:34.020000px;}
.y108{bottom:34.065000px;}
.ye6{bottom:49.500000px;}
.yf8{bottom:49.530000px;}
.ya3{bottom:223.770000px;}
.yee{bottom:224.850000px;}
.y97{bottom:227.370000px;}
.ya2{bottom:228.270000px;}
.y78{bottom:228.630000px;}
.y104{bottom:228.810000px;}
.y24{bottom:231.150000px;}
.yae{bottom:234.930000px;}
.y4f{bottom:239.430000px;}
.ya1{bottom:240.690000px;}
.yed{bottom:245.010000px;}
.y96{bottom:245.370000px;}
.y77{bottom:246.630000px;}
.y103{bottom:248.790000px;}
.y23{bottom:249.150000px;}
.yd1{bottom:251.310000px;}
.yad{bottom:252.930000px;}
.y4e{bottom:257.430000px;}
.ya0{bottom:260.490000px;}
.yb1{bottom:262.290000px;}
.y95{bottom:263.370000px;}
.yb4{bottom:263.910000px;}
.y76{bottom:264.630000px;}
.y22{bottom:267.150000px;}
.yd0{bottom:269.310000px;}
.yac{bottom:270.930000px;}
.y4d{bottom:275.430000px;}
.y9f{bottom:278.490000px;}
.yec{bottom:280.470000px;}
.y94{bottom:281.370000px;}
.y75{bottom:282.630000px;}
.y102{bottom:284.250000px;}
.y21{bottom:285.150000px;}
.ycf{bottom:287.310000px;}
.yab{bottom:288.930000px;}
.y4c{bottom:293.430000px;}
.y9e{bottom:296.490000px;}
.y74{bottom:300.630000px;}
.y20{bottom:303.150000px;}
.yce{bottom:305.310000px;}
.yaa{bottom:306.930000px;}
.y4b{bottom:311.430000px;}
.y9d{bottom:314.490000px;}
.yeb{bottom:316.110000px;}
.y93{bottom:318.090000px;}
.y73{bottom:318.630000px;}
.y1f{bottom:321.150000px;}
.ycd{bottom:323.310000px;}
.ya9{bottom:324.930000px;}
.y4a{bottom:329.430000px;}
.y9c{bottom:332.490000px;}
.y101{bottom:335.370000px;}
.y72{bottom:336.630000px;}
.y1e{bottom:339.150000px;}
.ycc{bottom:341.310000px;}
.ya8{bottom:342.930000px;}
.y49{bottom:347.430000px;}
.y9b{bottom:350.490000px;}
.yea{bottom:351.570000px;}
.y71{bottom:354.630000px;}
.y1d{bottom:357.150000px;}
.ycb{bottom:359.310000px;}
.ya7{bottom:360.930000px;}
.y61{bottom:365.430000px;}
.y92{bottom:366.870000px;}
.y70{bottom:372.630000px;}
.yca{bottom:377.310000px;}
.ya6{bottom:378.930000px;}
.y9a{bottom:380.550000px;}
.y60{bottom:383.430000px;}
.y48{bottom:384.150000px;}
.y91{bottom:384.870000px;}
.y100{bottom:386.490000px;}
.ye8{bottom:387.210000px;}
.y6f{bottom:390.630000px;}
.y1c{bottom:393.870000px;}
.yc9{bottom:395.310000px;}
.ya5{bottom:396.930000px;}
.y5f{bottom:401.430000px;}
.y90{bottom:402.870000px;}
.y6e{bottom:408.630000px;}
.yc8{bottom:413.355000px;}
.ya4{bottom:414.975000px;}
.y5e{bottom:419.475000px;}
.y8f{bottom:420.915000px;}
.yff{bottom:421.995000px;}
.y99{bottom:425.235000px;}
.y6d{bottom:426.675000px;}
.yc7{bottom:431.355000px;}
.y47{bottom:432.975000px;}
.y5d{bottom:437.475000px;}
.ye7{bottom:438.195000px;}
.y8e{bottom:438.915000px;}
.y1b{bottom:442.335000px;}
.y6c{bottom:444.675000px;}
.yc6{bottom:449.355000px;}
.y46{bottom:450.975000px;}
.y5c{bottom:455.475000px;}
.y8d{bottom:456.915000px;}
.yfe{bottom:457.635000px;}
.y1a{bottom:458.895000px;}
.y6b{bottom:462.675000px;}
.yc5{bottom:467.355000px;}
.y45{bottom:468.975000px;}
.y5b{bottom:473.475000px;}
.ye5{bottom:473.835000px;}
.y8c{bottom:474.915000px;}
.y6a{bottom:480.675000px;}
.yc4{bottom:485.355000px;}
.y44{bottom:486.975000px;}
.y5a{bottom:491.475000px;}
.y8b{bottom:492.915000px;}
.yfd{bottom:493.095000px;}
.y19{bottom:502.275000px;}
.yc3{bottom:503.355000px;}
.y43{bottom:504.975000px;}
.y59{bottom:509.475000px;}
.y8a{bottom:510.915000px;}
.y69{bottom:516.315000px;}
.y18{bottom:518.835000px;}
.yc2{bottom:521.355000px;}
.yb0{bottom:522.795000px;}
.y42{bottom:522.975000px;}
.yb3{bottom:524.055000px;}
.y58{bottom:527.475000px;}
.y89{bottom:528.915000px;}
.y17{bottom:535.395000px;}
.y68{bottom:538.995000px;}
.yc1{bottom:539.355000px;}
.ye4{bottom:540.435000px;}
.y41{bottom:540.975000px;}
.yfc{bottom:544.215000px;}
.y57{bottom:545.475000px;}
.y88{bottom:546.915000px;}
.y16{bottom:551.775000px;}
.yc0{bottom:557.355000px;}
.y40{bottom:558.975000px;}
.ye3{bottom:560.415000px;}
.y56{bottom:563.475000px;}
.y87{bottom:564.915000px;}
.y15{bottom:568.335000px;}
.ybf{bottom:575.355000px;}
.y3f{bottom:576.975000px;}
.y55{bottom:581.475000px;}
.y86{bottom:582.915000px;}
.y14{bottom:584.895000px;}
.ybe{bottom:593.355000px;}
.y3e{bottom:594.975000px;}
.ye1{bottom:596.055000px;}
.y54{bottom:599.475000px;}
.y85{bottom:600.915000px;}
.y13{bottom:601.275000px;}
.yfb{bottom:610.815000px;}
.ybd{bottom:611.355000px;}
.y3d{bottom:612.975000px;}
.y53{bottom:617.475000px;}
.y12{bottom:617.835000px;}
.y84{bottom:618.915000px;}
.ybc{bottom:629.355000px;}
.y3c{bottom:630.975000px;}
.y11{bottom:634.395000px;}
.y52{bottom:635.475000px;}
.y83{bottom:636.915000px;}
.yf7{bottom:646.455000px;}
.ydf{bottom:646.995000px;}
.ybb{bottom:647.355000px;}
.y3b{bottom:648.975000px;}
.y10{bottom:650.775000px;}
.y51{bottom:653.475000px;}
.y82{bottom:654.915000px;}
.yba{bottom:665.385000px;}
.y10e{bottom:666.645000px;}
.y3a{bottom:667.005000px;}
.yf{bottom:667.365000px;}
.y81{bottom:672.945000px;}
.yde{bottom:682.665000px;}
.yb9{bottom:683.385000px;}
.ye{bottom:683.925000px;}
.y39{bottom:685.005000px;}
.y50{bottom:690.225000px;}
.y80{bottom:690.945000px;}
.yd{bottom:700.305000px;}
.y10d{bottom:701.925000px;}
.y38{bottom:703.005000px;}
.y7f{bottom:708.945000px;}
.yf6{bottom:713.085000px;}
.yc{bottom:716.865000px;}
.ydd{bottom:718.125000px;}
.yb8{bottom:720.105000px;}
.y37{bottom:721.005000px;}
.y67{bottom:725.505000px;}
.y7e{bottom:726.945000px;}
.yb{bottom:733.425000px;}
.y10c{bottom:737.565000px;}
.y36{bottom:739.005000px;}
.y66{bottom:743.505000px;}
.y7d{bottom:744.945000px;}
.yf5{bottom:748.545000px;}
.ya{bottom:749.805000px;}
.y35{bottom:757.005000px;}
.y65{bottom:761.505000px;}
.y7c{bottom:762.945000px;}
.yb6{bottom:765.645000px;}
.y9{bottom:766.365000px;}
.ydb{bottom:769.245000px;}
.y34{bottom:775.005000px;}
.y64{bottom:779.505000px;}
.y7b{bottom:780.945000px;}
.yb5{bottom:781.305000px;}
.yb2{bottom:783.465000px;}
.yaf{bottom:783.645000px;}
.yf4{bottom:784.185000px;}
.y10b{bottom:788.685000px;}
.y33{bottom:793.005000px;}
.y63{bottom:797.505000px;}
.y7a{bottom:798.945000px;}
.y32{bottom:811.005000px;}
.y79{bottom:816.945000px;}
.yda{bottom:820.365000px;}
.y8{bottom:827.745000px;}
.y31{bottom:829.005000px;}
.y62{bottom:834.225000px;}
.yf3{bottom:835.125000px;}
.y10a{bottom:839.625000px;}
.yd7{bottom:840.345000px;}
.y30{bottom:847.005000px;}
.y7{bottom:848.805000px;}
.y2f{bottom:865.005000px;}
.yf2{bottom:870.765000px;}
.yd5{bottom:875.805000px;}
.y6{bottom:876.165000px;}
.y2e{bottom:883.005000px;}
.y107{bottom:890.745000px;}
.y5{bottom:893.445000px;}
.y2d{bottom:901.005000px;}
.y4{bottom:910.770000px;}
.yd4{bottom:914.370000px;}
.y2c{bottom:919.050000px;}
.yf1{bottom:921.750000px;}
.y2b{bottom:937.050000px;}
.y106{bottom:941.910000px;}
.yd3{bottom:952.350000px;}
.y2a{bottom:955.050000px;}
.y3{bottom:965.310000px;}
.yd2{bottom:971.070000px;}
.yf0{bottom:972.870000px;}
.y29{bottom:973.050000px;}
.y28{bottom:991.050000px;}
.y2{bottom:992.310000px;}
.y105{bottom:992.850000px;}
.yef{bottom:1008.510000px;}
.y27{bottom:1009.050000px;}
.y1{bottom:1019.310000px;}
.y26{bottom:1027.050000px;}
.y98{bottom:1032.270000px;}
.y25{bottom:1069.170000px;}
.h18{height:15.480000px;}
.h14{height:15.660000px;}
.h17{height:30.960000px;}
.h21{height:30.996000px;}
.h1b{height:31.140000px;}
.h16{height:31.176000px;}
.h4{height:35.332031px;}
.hb{height:38.158594px;}
.h1d{height:39.049805px;}
.h1a{height:46.440000px;}
.h1e{height:46.476000px;}
.h19{height:46.620000px;}
.h22{height:46.656000px;}
.h20{height:52.971680px;}
.h5{height:52.998047px;}
.h6{height:54.421875px;}
.hc{height:58.621992px;}
.h8{height:58.651172px;}
.h3{height:59.038594px;}
.h9{height:60.226875px;}
.ha{height:61.423863px;}
.h1c{height:62.100000px;}
.h1f{height:62.136000px;}
.hd{height:62.211094px;}
.h15{height:72.562500px;}
.h7{height:74.953125px;}
.h2{height:84.898125px;}
.he{height:258.150000px;}
.h11{height:258.330000px;}
.h12{height:259.410000px;}
.h13{height:260.130000px;}
.h10{height:260.490000px;}
.hf{height:260.850000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:24.660000px;}
.w6{width:494.205000px;}
.w4{width:535.245000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:1.080000px;}
.x16{left:50.040000px;}
.x14{left:178.950000px;}
.x18{left:185.970000px;}
.x9{left:187.049987px;}
.xe{left:188.489987px;}
.x1{left:191.009987px;}
.x2{left:193.169987px;}
.x12{left:197.489987px;}
.x6{left:201.629987px;}
.xa{left:204.149987px;}
.x4{left:207.569987px;}
.x1a{left:212.970000px;}
.x8{left:229.529987px;}
.xd{left:262.289987px;}
.x5{left:313.274987px;}
.x3{left:358.634987px;}
.x13{left:403.094987px;}
.x7{left:416.414987px;}
.x15{left:484.680000px;}
.xf{left:586.904973px;}
.x10{left:591.764987px;}
.x11{left:678.749987px;}
.x17{left:692.429987px;}
.xb{left:699.089987px;}
.xc{left:734.369987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-0.736000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.094933pt;}
.ls13{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.ls8{letter-spacing:0.272533pt;}
.ls6{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.592640pt;}
.lsc{letter-spacing:2.080000pt;}
.lse{letter-spacing:2.720000pt;}
.ls7{letter-spacing:7.756800pt;}
.ls12{letter-spacing:8.480000pt;}
.ls11{letter-spacing:69.712640pt;}
.ls2{letter-spacing:101.248000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.552533pt;}
.ws5{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.374933pt;}
.ws1{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.wsc{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.096000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.264000pt;}
.ws0{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._0{margin-left:-0.973440pt;}
._1{width:1.138987pt;}
._2{width:2.352000pt;}
._7{width:3.408000pt;}
._4{width:4.522880pt;}
._3{width:5.424000pt;}
._d{width:6.382293pt;}
._5{width:7.296000pt;}
._6{width:8.448000pt;}
._9{width:9.453013pt;}
._8{width:10.752000pt;}
._a{width:11.680000pt;}
._16{width:12.973013pt;}
._10{width:14.225280pt;}
._f{width:15.139200pt;}
._c{width:16.414080pt;}
._b{width:17.575253pt;}
._11{width:18.796373pt;}
._17{width:20.016000pt;}
._19{width:21.085440pt;}
._18{width:22.128000pt;}
._1a{width:23.357227pt;}
._15{width:25.632000pt;}
._14{width:26.640000pt;}
._e{width:46.880000pt;}
._13{width:49.010560pt;}
._12{width:50.064000pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs7{font-size:61.440000pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:2.560000pt;}
.yb7{bottom:2.720000pt;}
.yd8{bottom:16.320000pt;}
.yfa{bottom:16.346667pt;}
.y109{bottom:16.360000pt;}
.yd6{bottom:16.480000pt;}
.ye0{bottom:16.506667pt;}
.ye2{bottom:30.080000pt;}
.yf9{bottom:30.106667pt;}
.ye9{bottom:30.120000pt;}
.ydc{bottom:30.240000pt;}
.y108{bottom:30.280000pt;}
.ye6{bottom:44.000000pt;}
.yf8{bottom:44.026667pt;}
.ya3{bottom:198.906667pt;}
.yee{bottom:199.866667pt;}
.y97{bottom:202.106667pt;}
.ya2{bottom:202.906667pt;}
.y78{bottom:203.226667pt;}
.y104{bottom:203.386667pt;}
.y24{bottom:205.466667pt;}
.yae{bottom:208.826667pt;}
.y4f{bottom:212.826667pt;}
.ya1{bottom:213.946667pt;}
.yed{bottom:217.786667pt;}
.y96{bottom:218.106667pt;}
.y77{bottom:219.226667pt;}
.y103{bottom:221.146667pt;}
.y23{bottom:221.466667pt;}
.yd1{bottom:223.386667pt;}
.yad{bottom:224.826667pt;}
.y4e{bottom:228.826667pt;}
.ya0{bottom:231.546667pt;}
.yb1{bottom:233.146667pt;}
.y95{bottom:234.106667pt;}
.yb4{bottom:234.586667pt;}
.y76{bottom:235.226667pt;}
.y22{bottom:237.466667pt;}
.yd0{bottom:239.386667pt;}
.yac{bottom:240.826667pt;}
.y4d{bottom:244.826667pt;}
.y9f{bottom:247.546667pt;}
.yec{bottom:249.306667pt;}
.y94{bottom:250.106667pt;}
.y75{bottom:251.226667pt;}
.y102{bottom:252.666667pt;}
.y21{bottom:253.466667pt;}
.ycf{bottom:255.386667pt;}
.yab{bottom:256.826667pt;}
.y4c{bottom:260.826667pt;}
.y9e{bottom:263.546667pt;}
.y74{bottom:267.226667pt;}
.y20{bottom:269.466667pt;}
.yce{bottom:271.386667pt;}
.yaa{bottom:272.826667pt;}
.y4b{bottom:276.826667pt;}
.y9d{bottom:279.546667pt;}
.yeb{bottom:280.986667pt;}
.y93{bottom:282.746667pt;}
.y73{bottom:283.226667pt;}
.y1f{bottom:285.466667pt;}
.ycd{bottom:287.386667pt;}
.ya9{bottom:288.826667pt;}
.y4a{bottom:292.826667pt;}
.y9c{bottom:295.546667pt;}
.y101{bottom:298.106667pt;}
.y72{bottom:299.226667pt;}
.y1e{bottom:301.466667pt;}
.ycc{bottom:303.386667pt;}
.ya8{bottom:304.826667pt;}
.y49{bottom:308.826667pt;}
.y9b{bottom:311.546667pt;}
.yea{bottom:312.506667pt;}
.y71{bottom:315.226667pt;}
.y1d{bottom:317.466667pt;}
.ycb{bottom:319.386667pt;}
.ya7{bottom:320.826667pt;}
.y61{bottom:324.826667pt;}
.y92{bottom:326.106667pt;}
.y70{bottom:331.226667pt;}
.yca{bottom:335.386667pt;}
.ya6{bottom:336.826667pt;}
.y9a{bottom:338.266667pt;}
.y60{bottom:340.826667pt;}
.y48{bottom:341.466667pt;}
.y91{bottom:342.106667pt;}
.y100{bottom:343.546667pt;}
.ye8{bottom:344.186667pt;}
.y6f{bottom:347.226667pt;}
.y1c{bottom:350.106667pt;}
.yc9{bottom:351.386667pt;}
.ya5{bottom:352.826667pt;}
.y5f{bottom:356.826667pt;}
.y90{bottom:358.106667pt;}
.y6e{bottom:363.226667pt;}
.yc8{bottom:367.426667pt;}
.ya4{bottom:368.866667pt;}
.y5e{bottom:372.866667pt;}
.y8f{bottom:374.146667pt;}
.yff{bottom:375.106667pt;}
.y99{bottom:377.986667pt;}
.y6d{bottom:379.266667pt;}
.yc7{bottom:383.426667pt;}
.y47{bottom:384.866667pt;}
.y5d{bottom:388.866667pt;}
.ye7{bottom:389.506667pt;}
.y8e{bottom:390.146667pt;}
.y1b{bottom:393.186667pt;}
.y6c{bottom:395.266667pt;}
.yc6{bottom:399.426667pt;}
.y46{bottom:400.866667pt;}
.y5c{bottom:404.866667pt;}
.y8d{bottom:406.146667pt;}
.yfe{bottom:406.786667pt;}
.y1a{bottom:407.906667pt;}
.y6b{bottom:411.266667pt;}
.yc5{bottom:415.426667pt;}
.y45{bottom:416.866667pt;}
.y5b{bottom:420.866667pt;}
.ye5{bottom:421.186667pt;}
.y8c{bottom:422.146667pt;}
.y6a{bottom:427.266667pt;}
.yc4{bottom:431.426667pt;}
.y44{bottom:432.866667pt;}
.y5a{bottom:436.866667pt;}
.y8b{bottom:438.146667pt;}
.yfd{bottom:438.306667pt;}
.y19{bottom:446.466667pt;}
.yc3{bottom:447.426667pt;}
.y43{bottom:448.866667pt;}
.y59{bottom:452.866667pt;}
.y8a{bottom:454.146667pt;}
.y69{bottom:458.946667pt;}
.y18{bottom:461.186667pt;}
.yc2{bottom:463.426667pt;}
.yb0{bottom:464.706667pt;}
.y42{bottom:464.866667pt;}
.yb3{bottom:465.826667pt;}
.y58{bottom:468.866667pt;}
.y89{bottom:470.146667pt;}
.y17{bottom:475.906667pt;}
.y68{bottom:479.106667pt;}
.yc1{bottom:479.426667pt;}
.ye4{bottom:480.386667pt;}
.y41{bottom:480.866667pt;}
.yfc{bottom:483.746667pt;}
.y57{bottom:484.866667pt;}
.y88{bottom:486.146667pt;}
.y16{bottom:490.466667pt;}
.yc0{bottom:495.426667pt;}
.y40{bottom:496.866667pt;}
.ye3{bottom:498.146667pt;}
.y56{bottom:500.866667pt;}
.y87{bottom:502.146667pt;}
.y15{bottom:505.186667pt;}
.ybf{bottom:511.426667pt;}
.y3f{bottom:512.866667pt;}
.y55{bottom:516.866667pt;}
.y86{bottom:518.146667pt;}
.y14{bottom:519.906667pt;}
.ybe{bottom:527.426667pt;}
.y3e{bottom:528.866667pt;}
.ye1{bottom:529.826667pt;}
.y54{bottom:532.866667pt;}
.y85{bottom:534.146667pt;}
.y13{bottom:534.466667pt;}
.yfb{bottom:542.946667pt;}
.ybd{bottom:543.426667pt;}
.y3d{bottom:544.866667pt;}
.y53{bottom:548.866667pt;}
.y12{bottom:549.186667pt;}
.y84{bottom:550.146667pt;}
.ybc{bottom:559.426667pt;}
.y3c{bottom:560.866667pt;}
.y11{bottom:563.906667pt;}
.y52{bottom:564.866667pt;}
.y83{bottom:566.146667pt;}
.yf7{bottom:574.626667pt;}
.ydf{bottom:575.106667pt;}
.ybb{bottom:575.426667pt;}
.y3b{bottom:576.866667pt;}
.y10{bottom:578.466667pt;}
.y51{bottom:580.866667pt;}
.y82{bottom:582.146667pt;}
.yba{bottom:591.453333pt;}
.y10e{bottom:592.573333pt;}
.y3a{bottom:592.893333pt;}
.yf{bottom:593.213333pt;}
.y81{bottom:598.173333pt;}
.yde{bottom:606.813333pt;}
.yb9{bottom:607.453333pt;}
.ye{bottom:607.933333pt;}
.y39{bottom:608.893333pt;}
.y50{bottom:613.533333pt;}
.y80{bottom:614.173333pt;}
.yd{bottom:622.493333pt;}
.y10d{bottom:623.933333pt;}
.y38{bottom:624.893333pt;}
.y7f{bottom:630.173333pt;}
.yf6{bottom:633.853333pt;}
.yc{bottom:637.213333pt;}
.ydd{bottom:638.333333pt;}
.yb8{bottom:640.093333pt;}
.y37{bottom:640.893333pt;}
.y67{bottom:644.893333pt;}
.y7e{bottom:646.173333pt;}
.yb{bottom:651.933333pt;}
.y10c{bottom:655.613333pt;}
.y36{bottom:656.893333pt;}
.y66{bottom:660.893333pt;}
.y7d{bottom:662.173333pt;}
.yf5{bottom:665.373333pt;}
.ya{bottom:666.493333pt;}
.y35{bottom:672.893333pt;}
.y65{bottom:676.893333pt;}
.y7c{bottom:678.173333pt;}
.yb6{bottom:680.573333pt;}
.y9{bottom:681.213333pt;}
.ydb{bottom:683.773333pt;}
.y34{bottom:688.893333pt;}
.y64{bottom:692.893333pt;}
.y7b{bottom:694.173333pt;}
.yb5{bottom:694.493333pt;}
.yb2{bottom:696.413333pt;}
.yaf{bottom:696.573333pt;}
.yf4{bottom:697.053333pt;}
.y10b{bottom:701.053333pt;}
.y33{bottom:704.893333pt;}
.y63{bottom:708.893333pt;}
.y7a{bottom:710.173333pt;}
.y32{bottom:720.893333pt;}
.y79{bottom:726.173333pt;}
.yda{bottom:729.213333pt;}
.y8{bottom:735.773333pt;}
.y31{bottom:736.893333pt;}
.y62{bottom:741.533333pt;}
.yf3{bottom:742.333333pt;}
.y10a{bottom:746.333333pt;}
.yd7{bottom:746.973333pt;}
.y30{bottom:752.893333pt;}
.y7{bottom:754.493333pt;}
.y2f{bottom:768.893333pt;}
.yf2{bottom:774.013333pt;}
.yd5{bottom:778.493333pt;}
.y6{bottom:778.813333pt;}
.y2e{bottom:784.893333pt;}
.y107{bottom:791.773333pt;}
.y5{bottom:794.173333pt;}
.y2d{bottom:800.893333pt;}
.y4{bottom:809.573333pt;}
.yd4{bottom:812.773333pt;}
.y2c{bottom:816.933333pt;}
.yf1{bottom:819.333333pt;}
.y2b{bottom:832.933333pt;}
.y106{bottom:837.253333pt;}
.yd3{bottom:846.533333pt;}
.y2a{bottom:848.933333pt;}
.y3{bottom:858.053333pt;}
.yd2{bottom:863.173333pt;}
.yf0{bottom:864.773333pt;}
.y29{bottom:864.933333pt;}
.y28{bottom:880.933333pt;}
.y2{bottom:882.053333pt;}
.y105{bottom:882.533333pt;}
.yef{bottom:896.453333pt;}
.y27{bottom:896.933333pt;}
.y1{bottom:906.053333pt;}
.y26{bottom:912.933333pt;}
.y98{bottom:917.573333pt;}
.y25{bottom:950.373333pt;}
.h18{height:13.760000pt;}
.h14{height:13.920000pt;}
.h17{height:27.520000pt;}
.h21{height:27.552000pt;}
.h1b{height:27.680000pt;}
.h16{height:27.712000pt;}
.h4{height:31.406250pt;}
.hb{height:33.918750pt;}
.h1d{height:34.710938pt;}
.h1a{height:41.280000pt;}
.h1e{height:41.312000pt;}
.h19{height:41.440000pt;}
.h22{height:41.472000pt;}
.h20{height:47.085938pt;}
.h5{height:47.109375pt;}
.h6{height:48.375000pt;}
.hc{height:52.108438pt;}
.h8{height:52.134375pt;}
.h3{height:52.478750pt;}
.h9{height:53.535000pt;}
.ha{height:54.598989pt;}
.h1c{height:55.200000pt;}
.h1f{height:55.232000pt;}
.hd{height:55.298750pt;}
.h15{height:64.500000pt;}
.h7{height:66.625000pt;}
.h2{height:75.465000pt;}
.he{height:229.466667pt;}
.h11{height:229.626667pt;}
.h12{height:230.586667pt;}
.h13{height:231.226667pt;}
.h10{height:231.546667pt;}
.hf{height:231.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:21.920000pt;}
.w6{width:439.293333pt;}
.w4{width:475.773333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:0.960000pt;}
.x16{left:44.480000pt;}
.x14{left:159.066667pt;}
.x18{left:165.306667pt;}
.x9{left:166.266655pt;}
.xe{left:167.546655pt;}
.x1{left:169.786655pt;}
.x2{left:171.706655pt;}
.x12{left:175.546655pt;}
.x6{left:179.226655pt;}
.xa{left:181.466655pt;}
.x4{left:184.506655pt;}
.x1a{left:189.306667pt;}
.x8{left:204.026655pt;}
.xd{left:233.146655pt;}
.x5{left:278.466655pt;}
.x3{left:318.786655pt;}
.x13{left:358.306655pt;}
.x7{left:370.146655pt;}
.x15{left:430.826667pt;}
.xf{left:521.693310pt;}
.x10{left:526.013322pt;}
.x11{left:603.333322pt;}
.x17{left:615.493322pt;}
.xb{left:621.413322pt;}
.xc{left:652.773322pt;}
}




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