
    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_d7f43a494e5bc3d19a1b467d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.073242;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_79dc035367f44a9b194b62a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.073242;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_6e7fa51dc9f127179078f9f7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.073242;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_34e3f22591fb7905e0962e2a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073242;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1c3330250df5e54b1e929953.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_924b07b9b964d1a12d783293.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.288000px;}
.lse{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.836640px;}
.ls13{letter-spacing:2.880000px;}
.ls12{letter-spacing:3.600000px;}
.ls3{letter-spacing:10.944000px;}
.ls2{letter-spacing:13.680000px;}
.ls6{letter-spacing:31.080000px;}
.ls11{letter-spacing:35.280000px;}
.ls7{letter-spacing:41.880000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.712000px;}
.ws5{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws1{word-spacing:0.000000px;}
._11{margin-left:-4.608000px;}
._7{margin-left:-2.952000px;}
._0{margin-left:-1.152000px;}
._1{width:1.248000px;}
._2{width:2.664000px;}
._3{width:4.008000px;}
._a{width:5.112000px;}
._8{width:6.552000px;}
._9{width:8.208000px;}
._6{width:10.008000px;}
._4{width:11.736000px;}
._5{width:13.584000px;}
._e{width:15.696000px;}
._f{width:16.704000px;}
._13{width:19.008000px;}
._12{width:20.232000px;}
._1f{width:21.672000px;}
._b{width:22.752000px;}
._14{width:23.808000px;}
._1e{width:25.776000px;}
._c{width:27.072000px;}
._d{width:28.956000px;}
._18{width:31.971600px;}
._1c{width:34.776000px;}
._1d{width:35.892000px;}
._10{width:39.528000px;}
._17{width:60.058800px;}
._15{width:69.142320px;}
._19{width:99.380880px;}
._16{width:128.962080px;}
._1a{width:140.794560px;}
._1b{width:158.490480px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:3.240000px;}
.y8{bottom:4.680000px;}
.y6{bottom:5.400000px;}
.y95{bottom:12.060000px;}
.y76{bottom:12.240000px;}
.y87{bottom:12.270000px;}
.y10{bottom:12.600000px;}
.ye{bottom:12.780000px;}
.y12{bottom:12.960000px;}
.y8c{bottom:20.520000px;}
.y3{bottom:21.960000px;}
.y7{bottom:24.300000px;}
.y5{bottom:26.100000px;}
.y94{bottom:29.340000px;}
.y75{bottom:29.520000px;}
.y86{bottom:29.550000px;}
.ya7{bottom:29.565000px;}
.y90{bottom:34.560000px;}
.y8b{bottom:37.800000px;}
.y2{bottom:42.660000px;}
.y93{bottom:46.620000px;}
.y85{bottom:46.650000px;}
.y74{bottom:46.800000px;}
.y9d{bottom:46.830000px;}
.ya6{bottom:46.845000px;}
.y8f{bottom:51.840000px;}
.y8a{bottom:55.080000px;}
.yc{bottom:56.700000px;}
.y9b{bottom:63.900000px;}
.y88{bottom:63.930000px;}
.yb9{bottom:64.080000px;}
.y73{bottom:64.110000px;}
.yaf{bottom:64.125000px;}
.yb{bottom:72.180000px;}
.yb8{bottom:81.180000px;}
.yb2{bottom:81.210000px;}
.y9a{bottom:81.225000px;}
.yc9{bottom:81.360000px;}
.ya4{bottom:81.390000px;}
.yae{bottom:81.405000px;}
.yb7{bottom:98.460000px;}
.ya3{bottom:98.490000px;}
.y99{bottom:98.505000px;}
.y89{bottom:109.440000px;}
.y38{bottom:110.160000px;}
.y98{bottom:115.605000px;}
.yb6{bottom:115.740000px;}
.ya2{bottom:115.770000px;}
.yad{bottom:115.785000px;}
.y63{bottom:122.400000px;}
.yd2{bottom:125.820000px;}
.y37{bottom:130.860000px;}
.y97{bottom:132.885000px;}
.yb5{bottom:133.020000px;}
.ya1{bottom:133.050000px;}
.yac{bottom:133.065000px;}
.y62{bottom:143.100000px;}
.yc6{bottom:147.240000px;}
.y96{bottom:150.165000px;}
.yb4{bottom:150.300000px;}
.ya0{bottom:150.330000px;}
.yab{bottom:150.345000px;}
.y36{bottom:151.560000px;}
.yd1{bottom:152.280000px;}
.y61{bottom:163.800000px;}
.yb1{bottom:167.400000px;}
.y9f{bottom:167.610000px;}
.yaa{bottom:167.625000px;}
.y35{bottom:172.260000px;}
.y60{bottom:184.500000px;}
.ya9{bottom:184.725000px;}
.y9e{bottom:184.890000px;}
.y84{bottom:188.280000px;}
.y34{bottom:201.990000px;}
.ya8{bottom:202.005000px;}
.y5f{bottom:214.230000px;}
.yc5{bottom:217.830000px;}
.yd0{bottom:222.690000px;}
.y33{bottom:231.690000px;}
.y5e{bottom:234.930000px;}
.y5d{bottom:255.630000px;}
.y32{bottom:261.390000px;}
.y5c{bottom:276.330000px;}
.y83{bottom:288.930000px;}
.y31{bottom:291.090000px;}
.ycf{bottom:293.250000px;}
.y5b{bottom:297.030000px;}
.y82{bottom:309.630000px;}
.y30{bottom:311.790000px;}
.y5a{bottom:317.730000px;}
.y2f{bottom:332.490000px;}
.y59{bottom:338.430000px;}
.y81{bottom:339.330000px;}
.yc4{bottom:340.050000px;}
.yb0{bottom:341.490000px;}
.y58{bottom:359.130000px;}
.y80{bottom:360.030000px;}
.y2e{bottom:362.190000px;}
.yce{bottom:363.810000px;}
.y57{bottom:379.830000px;}
.y7f{bottom:380.730000px;}
.y2d{bottom:382.890000px;}
.y56{bottom:400.530000px;}
.y7e{bottom:401.430000px;}
.y2c{bottom:403.590000px;}
.ya5{bottom:411.870000px;}
.yed{bottom:417.090000px;}
.y7d{bottom:422.130000px;}
.y55{bottom:430.230000px;}
.y2b{bottom:433.290000px;}
.yc3{bottom:440.895000px;}
.y7c{bottom:442.875000px;}
.yec{bottom:446.835000px;}
.y54{bottom:459.975000px;}
.yc2{bottom:461.595000px;}
.y2a{bottom:463.035000px;}
.y7b{bottom:463.575000px;}
.yeb{bottom:476.535000px;}
.ycd{bottom:486.075000px;}
.y53{bottom:489.675000px;}
.yc1{bottom:491.115000px;}
.y29{bottom:492.735000px;}
.y7a{bottom:493.275000px;}
.yea{bottom:497.235000px;}
.yc0{bottom:511.815000px;}
.y52{bottom:519.375000px;}
.y28{bottom:522.435000px;}
.y79{bottom:522.975000px;}
.ye9{bottom:526.935000px;}
.ybf{bottom:541.515000px;}
.y27{bottom:543.135000px;}
.ye8{bottom:547.635000px;}
.y51{bottom:549.075000px;}
.y78{bottom:549.435000px;}
.ycc{bottom:563.295000px;}
.y26{bottom:563.835000px;}
.ybe{bottom:571.215000px;}
.ye7{bottom:577.335000px;}
.y50{bottom:578.775000px;}
.y25{bottom:584.535000px;}
.y77{bottom:585.435000px;}
.ybd{bottom:597.855000px;}
.ye6{bottom:598.035000px;}
.y4f{bottom:608.475000px;}
.y24{bottom:614.235000px;}
.yf{bottom:617.295000px;}
.yd{bottom:617.475000px;}
.y72{bottom:621.435000px;}
.ye5{bottom:627.735000px;}
.y4e{bottom:629.175000px;}
.y23{bottom:634.935000px;}
.y9c{bottom:637.635000px;}
.y22{bottom:655.635000px;}
.ye4{bottom:657.435000px;}
.y4d{bottom:658.875000px;}
.y21{bottom:676.365000px;}
.ye3{bottom:687.165000px;}
.y4c{bottom:688.605000px;}
.y20{bottom:706.065000px;}
.ye2{bottom:707.865000px;}
.y4b{bottom:718.305000px;}
.ybc{bottom:720.105000px;}
.y71{bottom:722.265000px;}
.ye1{bottom:728.565000px;}
.y1f{bottom:735.765000px;}
.ycb{bottom:737.385000px;}
.y4a{bottom:739.005000px;}
.ye0{bottom:749.265000px;}
.y70{bottom:751.965000px;}
.y49{bottom:769.965000px;}
.y1e{bottom:772.305000px;}
.y6f{bottom:781.665000px;}
.ybb{bottom:790.485000px;}
.ydf{bottom:790.665000px;}
.y48{bottom:801.105000px;}
.y1d{bottom:802.005000px;}
.y6e{bottom:802.365000px;}
.yca{bottom:807.765000px;}
.yde{bottom:811.365000px;}
.y47{bottom:821.805000px;}
.y6d{bottom:823.065000px;}
.y1c{bottom:824.865000px;}
.ydd{bottom:832.065000px;}
.y46{bottom:842.505000px;}
.y6c{bottom:843.765000px;}
.y92{bottom:846.285000px;}
.y1b{bottom:852.405000px;}
.ydc{bottom:852.765000px;}
.yba{bottom:861.045000px;}
.y6b{bottom:864.465000px;}
.y45{bottom:873.465000px;}
.y1a{bottom:875.265000px;}
.y6a{bottom:885.165000px;}
.ydb{bottom:894.165000px;}
.y19{bottom:902.805000px;}
.y44{bottom:903.165000px;}
.y69{bottom:905.865000px;}
.yda{bottom:914.910000px;}
.y18{bottom:925.710000px;}
.y68{bottom:926.610000px;}
.yc8{bottom:930.030000px;}
.y43{bottom:932.910000px;}
.yd9{bottom:944.610000px;}
.y67{bottom:947.310000px;}
.y42{bottom:953.610000px;}
.y17{bottom:955.410000px;}
.yd8{bottom:965.310000px;}
.y66{bottom:968.010000px;}
.y41{bottom:974.310000px;}
.yb3{bottom:983.310000px;}
.y16{bottom:985.110000px;}
.yd7{bottom:986.010000px;}
.y40{bottom:995.010000px;}
.y65{bottom:997.710000px;}
.yd6{bottom:1006.710000px;}
.y15{bottom:1014.810000px;}
.y3f{bottom:1015.710000px;}
.y91{bottom:1020.210000px;}
.y64{bottom:1027.410000px;}
.yc7{bottom:1035.150000px;}
.y3e{bottom:1036.410000px;}
.y14{bottom:1040.550000px;}
.yd5{bottom:1048.110000px;}
.y3d{bottom:1057.110000px;}
.yd4{bottom:1068.810000px;}
.y3c{bottom:1077.810000px;}
.y13{bottom:1079.250000px;}
.yd3{bottom:1089.510000px;}
.y8e{bottom:1090.770000px;}
.y3b{bottom:1098.510000px;}
.y11{bottom:1117.950000px;}
.y3a{bottom:1119.210000px;}
.y39{bottom:1139.910000px;}
.y1{bottom:1182.060000px;}
.ya{bottom:1193.400000px;}
.y4{bottom:1198.080000px;}
.y9{bottom:1208.880000px;}
.h5{height:19.620000px;}
.h9{height:28.080000px;}
.h8{height:28.260000px;}
.hf{height:35.280000px;}
.hb{height:38.700000px;}
.ha{height:38.736000px;}
.hd{height:41.362031px;}
.h4{height:43.560000px;}
.h6{height:51.239531px;}
.h7{height:56.795625px;}
.h20{height:59.343750px;}
.h2{height:60.120000px;}
.h3{height:61.734375px;}
.hc{height:65.122031px;}
.h12{height:65.916000px;}
.h17{height:69.660000px;}
.h1f{height:69.696000px;}
.h13{height:69.840000px;}
.h1c{height:69.876000px;}
.h1e{height:76.500000px;}
.h11{height:78.120000px;}
.h1a{height:86.940000px;}
.h10{height:86.976000px;}
.he{height:87.156000px;}
.h1d{height:104.220000px;}
.h1b{height:121.500000px;}
.h19{height:121.536000px;}
.h14{height:173.190000px;}
.h18{height:173.370000px;}
.h15{height:207.750000px;}
.h16{height:225.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:34.416000px;}
.w18{width:36.756000px;}
.wc{width:41.220000px;}
.w12{width:56.340000px;}
.w17{width:58.140000px;}
.w8{width:84.990000px;}
.w13{width:91.080000px;}
.w19{width:95.040000px;}
.w15{width:95.220000px;}
.w3{width:101.376000px;}
.w11{width:103.320000px;}
.we{width:104.400000px;}
.wf{width:117.576000px;}
.w10{width:121.176000px;}
.w6{width:124.416000px;}
.wd{width:187.590000px;}
.w5{width:188.130000px;}
.w4{width:196.050000px;}
.w9{width:223.770000px;}
.wb{width:279.930000px;}
.wa{width:286.095000px;}
.w1a{width:416.415000px;}
.w16{width:419.475000px;}
.w2{width:618.450000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.x23{left:4.860000px;}
.x1c{left:7.740000px;}
.xc{left:10.800000px;}
.xe{left:14.940000px;}
.x5{left:20.340000px;}
.x3{left:23.436000px;}
.x7{left:29.340000px;}
.xd{left:52.200000px;}
.x1{left:67.500000px;}
.x11{left:90.900000px;}
.xa{left:106.235987px;}
.x19{left:109.655987px;}
.x22{left:111.276000px;}
.x18{left:112.715987px;}
.x15{left:115.595987px;}
.x1b{left:116.855987px;}
.x16{left:123.695987px;}
.x13{left:131.075987px;}
.x1a{left:138.275987px;}
.x1d{left:149.076000px;}
.x24{left:167.970000px;}
.x28{left:169.770000px;}
.x12{left:184.185000px;}
.x25{left:259.410000px;}
.x29{left:261.210000px;}
.x2{left:270.435000px;}
.xf{left:275.970000px;}
.x26{left:294.195000px;}
.x2a{left:298.515000px;}
.x1e{left:337.395000px;}
.x27{left:389.775000px;}
.x2b{left:393.915000px;}
.x17{left:407.414987px;}
.x1f{left:442.515000px;}
.x14{left:446.474987px;}
.x8{left:451.155000px;}
.x20{left:560.805000px;}
.x10{left:562.065000px;}
.x21{left:682.710000px;}
.x9{left:737.610000px;}
.x4{left:761.010000px;}
.xb{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.743680pt;}
.ls13{letter-spacing:2.560000pt;}
.ls12{letter-spacing:3.200000pt;}
.ls3{letter-spacing:9.728000pt;}
.ls2{letter-spacing:12.160000pt;}
.ls6{letter-spacing:27.626667pt;}
.ls11{letter-spacing:31.360000pt;}
.ls7{letter-spacing:37.226667pt;}
.ws2{word-spacing:-64.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws1{word-spacing:0.000000pt;}
._11{margin-left:-4.096000pt;}
._7{margin-left:-2.624000pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.109333pt;}
._2{width:2.368000pt;}
._3{width:3.562667pt;}
._a{width:4.544000pt;}
._8{width:5.824000pt;}
._9{width:7.296000pt;}
._6{width:8.896000pt;}
._4{width:10.432000pt;}
._5{width:12.074667pt;}
._e{width:13.952000pt;}
._f{width:14.848000pt;}
._13{width:16.896000pt;}
._12{width:17.984000pt;}
._1f{width:19.264000pt;}
._b{width:20.224000pt;}
._14{width:21.162667pt;}
._1e{width:22.912000pt;}
._c{width:24.064000pt;}
._d{width:25.738667pt;}
._18{width:28.419200pt;}
._1c{width:30.912000pt;}
._1d{width:31.904000pt;}
._10{width:35.136000pt;}
._17{width:53.385600pt;}
._15{width:61.459840pt;}
._19{width:88.338560pt;}
._16{width:114.632960pt;}
._1a{width:125.150720pt;}
._1b{width:140.880427pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:2.880000pt;}
.y8{bottom:4.160000pt;}
.y6{bottom:4.800000pt;}
.y95{bottom:10.720000pt;}
.y76{bottom:10.880000pt;}
.y87{bottom:10.906667pt;}
.y10{bottom:11.200000pt;}
.ye{bottom:11.360000pt;}
.y12{bottom:11.520000pt;}
.y8c{bottom:18.240000pt;}
.y3{bottom:19.520000pt;}
.y7{bottom:21.600000pt;}
.y5{bottom:23.200000pt;}
.y94{bottom:26.080000pt;}
.y75{bottom:26.240000pt;}
.y86{bottom:26.266667pt;}
.ya7{bottom:26.280000pt;}
.y90{bottom:30.720000pt;}
.y8b{bottom:33.600000pt;}
.y2{bottom:37.920000pt;}
.y93{bottom:41.440000pt;}
.y85{bottom:41.466667pt;}
.y74{bottom:41.600000pt;}
.y9d{bottom:41.626667pt;}
.ya6{bottom:41.640000pt;}
.y8f{bottom:46.080000pt;}
.y8a{bottom:48.960000pt;}
.yc{bottom:50.400000pt;}
.y9b{bottom:56.800000pt;}
.y88{bottom:56.826667pt;}
.yb9{bottom:56.960000pt;}
.y73{bottom:56.986667pt;}
.yaf{bottom:57.000000pt;}
.yb{bottom:64.160000pt;}
.yb8{bottom:72.160000pt;}
.yb2{bottom:72.186667pt;}
.y9a{bottom:72.200000pt;}
.yc9{bottom:72.320000pt;}
.ya4{bottom:72.346667pt;}
.yae{bottom:72.360000pt;}
.yb7{bottom:87.520000pt;}
.ya3{bottom:87.546667pt;}
.y99{bottom:87.560000pt;}
.y89{bottom:97.280000pt;}
.y38{bottom:97.920000pt;}
.y98{bottom:102.760000pt;}
.yb6{bottom:102.880000pt;}
.ya2{bottom:102.906667pt;}
.yad{bottom:102.920000pt;}
.y63{bottom:108.800000pt;}
.yd2{bottom:111.840000pt;}
.y37{bottom:116.320000pt;}
.y97{bottom:118.120000pt;}
.yb5{bottom:118.240000pt;}
.ya1{bottom:118.266667pt;}
.yac{bottom:118.280000pt;}
.y62{bottom:127.200000pt;}
.yc6{bottom:130.880000pt;}
.y96{bottom:133.480000pt;}
.yb4{bottom:133.600000pt;}
.ya0{bottom:133.626667pt;}
.yab{bottom:133.640000pt;}
.y36{bottom:134.720000pt;}
.yd1{bottom:135.360000pt;}
.y61{bottom:145.600000pt;}
.yb1{bottom:148.800000pt;}
.y9f{bottom:148.986667pt;}
.yaa{bottom:149.000000pt;}
.y35{bottom:153.120000pt;}
.y60{bottom:164.000000pt;}
.ya9{bottom:164.200000pt;}
.y9e{bottom:164.346667pt;}
.y84{bottom:167.360000pt;}
.y34{bottom:179.546667pt;}
.ya8{bottom:179.560000pt;}
.y5f{bottom:190.426667pt;}
.yc5{bottom:193.626667pt;}
.yd0{bottom:197.946667pt;}
.y33{bottom:205.946667pt;}
.y5e{bottom:208.826667pt;}
.y5d{bottom:227.226667pt;}
.y32{bottom:232.346667pt;}
.y5c{bottom:245.626667pt;}
.y83{bottom:256.826667pt;}
.y31{bottom:258.746667pt;}
.ycf{bottom:260.666667pt;}
.y5b{bottom:264.026667pt;}
.y82{bottom:275.226667pt;}
.y30{bottom:277.146667pt;}
.y5a{bottom:282.426667pt;}
.y2f{bottom:295.546667pt;}
.y59{bottom:300.826667pt;}
.y81{bottom:301.626667pt;}
.yc4{bottom:302.266667pt;}
.yb0{bottom:303.546667pt;}
.y58{bottom:319.226667pt;}
.y80{bottom:320.026667pt;}
.y2e{bottom:321.946667pt;}
.yce{bottom:323.386667pt;}
.y57{bottom:337.626667pt;}
.y7f{bottom:338.426667pt;}
.y2d{bottom:340.346667pt;}
.y56{bottom:356.026667pt;}
.y7e{bottom:356.826667pt;}
.y2c{bottom:358.746667pt;}
.ya5{bottom:366.106667pt;}
.yed{bottom:370.746667pt;}
.y7d{bottom:375.226667pt;}
.y55{bottom:382.426667pt;}
.y2b{bottom:385.146667pt;}
.yc3{bottom:391.906667pt;}
.y7c{bottom:393.666667pt;}
.yec{bottom:397.186667pt;}
.y54{bottom:408.866667pt;}
.yc2{bottom:410.306667pt;}
.y2a{bottom:411.586667pt;}
.y7b{bottom:412.066667pt;}
.yeb{bottom:423.586667pt;}
.ycd{bottom:432.066667pt;}
.y53{bottom:435.266667pt;}
.yc1{bottom:436.546667pt;}
.y29{bottom:437.986667pt;}
.y7a{bottom:438.466667pt;}
.yea{bottom:441.986667pt;}
.yc0{bottom:454.946667pt;}
.y52{bottom:461.666667pt;}
.y28{bottom:464.386667pt;}
.y79{bottom:464.866667pt;}
.ye9{bottom:468.386667pt;}
.ybf{bottom:481.346667pt;}
.y27{bottom:482.786667pt;}
.ye8{bottom:486.786667pt;}
.y51{bottom:488.066667pt;}
.y78{bottom:488.386667pt;}
.ycc{bottom:500.706667pt;}
.y26{bottom:501.186667pt;}
.ybe{bottom:507.746667pt;}
.ye7{bottom:513.186667pt;}
.y50{bottom:514.466667pt;}
.y25{bottom:519.586667pt;}
.y77{bottom:520.386667pt;}
.ybd{bottom:531.426667pt;}
.ye6{bottom:531.586667pt;}
.y4f{bottom:540.866667pt;}
.y24{bottom:545.986667pt;}
.yf{bottom:548.706667pt;}
.yd{bottom:548.866667pt;}
.y72{bottom:552.386667pt;}
.ye5{bottom:557.986667pt;}
.y4e{bottom:559.266667pt;}
.y23{bottom:564.386667pt;}
.y9c{bottom:566.786667pt;}
.y22{bottom:582.786667pt;}
.ye4{bottom:584.386667pt;}
.y4d{bottom:585.666667pt;}
.y21{bottom:601.213333pt;}
.ye3{bottom:610.813333pt;}
.y4c{bottom:612.093333pt;}
.y20{bottom:627.613333pt;}
.ye2{bottom:629.213333pt;}
.y4b{bottom:638.493333pt;}
.ybc{bottom:640.093333pt;}
.y71{bottom:642.013333pt;}
.ye1{bottom:647.613333pt;}
.y1f{bottom:654.013333pt;}
.ycb{bottom:655.453333pt;}
.y4a{bottom:656.893333pt;}
.ye0{bottom:666.013333pt;}
.y70{bottom:668.413333pt;}
.y49{bottom:684.413333pt;}
.y1e{bottom:686.493333pt;}
.y6f{bottom:694.813333pt;}
.ybb{bottom:702.653333pt;}
.ydf{bottom:702.813333pt;}
.y48{bottom:712.093333pt;}
.y1d{bottom:712.893333pt;}
.y6e{bottom:713.213333pt;}
.yca{bottom:718.013333pt;}
.yde{bottom:721.213333pt;}
.y47{bottom:730.493333pt;}
.y6d{bottom:731.613333pt;}
.y1c{bottom:733.213333pt;}
.ydd{bottom:739.613333pt;}
.y46{bottom:748.893333pt;}
.y6c{bottom:750.013333pt;}
.y92{bottom:752.253333pt;}
.y1b{bottom:757.693333pt;}
.ydc{bottom:758.013333pt;}
.yba{bottom:765.373333pt;}
.y6b{bottom:768.413333pt;}
.y45{bottom:776.413333pt;}
.y1a{bottom:778.013333pt;}
.y6a{bottom:786.813333pt;}
.ydb{bottom:794.813333pt;}
.y19{bottom:802.493333pt;}
.y44{bottom:802.813333pt;}
.y69{bottom:805.213333pt;}
.yda{bottom:813.253333pt;}
.y18{bottom:822.853333pt;}
.y68{bottom:823.653333pt;}
.yc8{bottom:826.693333pt;}
.y43{bottom:829.253333pt;}
.yd9{bottom:839.653333pt;}
.y67{bottom:842.053333pt;}
.y42{bottom:847.653333pt;}
.y17{bottom:849.253333pt;}
.yd8{bottom:858.053333pt;}
.y66{bottom:860.453333pt;}
.y41{bottom:866.053333pt;}
.yb3{bottom:874.053333pt;}
.y16{bottom:875.653333pt;}
.yd7{bottom:876.453333pt;}
.y40{bottom:884.453333pt;}
.y65{bottom:886.853333pt;}
.yd6{bottom:894.853333pt;}
.y15{bottom:902.053333pt;}
.y3f{bottom:902.853333pt;}
.y91{bottom:906.853333pt;}
.y64{bottom:913.253333pt;}
.yc7{bottom:920.133333pt;}
.y3e{bottom:921.253333pt;}
.y14{bottom:924.933333pt;}
.yd5{bottom:931.653333pt;}
.y3d{bottom:939.653333pt;}
.yd4{bottom:950.053333pt;}
.y3c{bottom:958.053333pt;}
.y13{bottom:959.333333pt;}
.yd3{bottom:968.453333pt;}
.y8e{bottom:969.573333pt;}
.y3b{bottom:976.453333pt;}
.y11{bottom:993.733333pt;}
.y3a{bottom:994.853333pt;}
.y39{bottom:1013.253333pt;}
.y1{bottom:1050.720000pt;}
.ya{bottom:1060.800000pt;}
.y4{bottom:1064.960000pt;}
.y9{bottom:1074.560000pt;}
.h5{height:17.440000pt;}
.h9{height:24.960000pt;}
.h8{height:25.120000pt;}
.hf{height:31.360000pt;}
.hb{height:34.400000pt;}
.ha{height:34.432000pt;}
.hd{height:36.766250pt;}
.h4{height:38.720000pt;}
.h6{height:45.546250pt;}
.h7{height:50.485000pt;}
.h20{height:52.750000pt;}
.h2{height:53.440000pt;}
.h3{height:54.875000pt;}
.hc{height:57.886250pt;}
.h12{height:58.592000pt;}
.h17{height:61.920000pt;}
.h1f{height:61.952000pt;}
.h13{height:62.080000pt;}
.h1c{height:62.112000pt;}
.h1e{height:68.000000pt;}
.h11{height:69.440000pt;}
.h1a{height:77.280000pt;}
.h10{height:77.312000pt;}
.he{height:77.472000pt;}
.h1d{height:92.640000pt;}
.h1b{height:108.000000pt;}
.h19{height:108.032000pt;}
.h14{height:153.946667pt;}
.h18{height:154.106667pt;}
.h15{height:184.666667pt;}
.h16{height:200.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:30.592000pt;}
.w18{width:32.672000pt;}
.wc{width:36.640000pt;}
.w12{width:50.080000pt;}
.w17{width:51.680000pt;}
.w8{width:75.546667pt;}
.w13{width:80.960000pt;}
.w19{width:84.480000pt;}
.w15{width:84.640000pt;}
.w3{width:90.112000pt;}
.w11{width:91.840000pt;}
.we{width:92.800000pt;}
.wf{width:104.512000pt;}
.w10{width:107.712000pt;}
.w6{width:110.592000pt;}
.wd{width:166.746667pt;}
.w5{width:167.226667pt;}
.w4{width:174.266667pt;}
.w9{width:198.906667pt;}
.wb{width:248.826667pt;}
.wa{width:254.306667pt;}
.w1a{width:370.146667pt;}
.w16{width:372.866667pt;}
.w2{width:549.733333pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.x23{left:4.320000pt;}
.x1c{left:6.880000pt;}
.xc{left:9.600000pt;}
.xe{left:13.280000pt;}
.x5{left:18.080000pt;}
.x3{left:20.832000pt;}
.x7{left:26.080000pt;}
.xd{left:46.400000pt;}
.x1{left:60.000000pt;}
.x11{left:80.800000pt;}
.xa{left:94.431988pt;}
.x19{left:97.471988pt;}
.x22{left:98.912000pt;}
.x18{left:100.191988pt;}
.x15{left:102.751988pt;}
.x1b{left:103.871988pt;}
.x16{left:109.951988pt;}
.x13{left:116.511988pt;}
.x1a{left:122.911988pt;}
.x1d{left:132.512000pt;}
.x24{left:149.306667pt;}
.x28{left:150.906667pt;}
.x12{left:163.720000pt;}
.x25{left:230.586667pt;}
.x29{left:232.186667pt;}
.x2{left:240.386667pt;}
.xf{left:245.306667pt;}
.x26{left:261.506667pt;}
.x2a{left:265.346667pt;}
.x1e{left:299.906667pt;}
.x27{left:346.466667pt;}
.x2b{left:350.146667pt;}
.x17{left:362.146655pt;}
.x1f{left:393.346667pt;}
.x14{left:396.866655pt;}
.x8{left:401.026667pt;}
.x20{left:498.493333pt;}
.x10{left:499.613333pt;}
.x21{left:606.853333pt;}
.x9{left:655.653333pt;}
.x4{left:676.453333pt;}
.xb{left:718.213333pt;}
}




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