
    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_922a5dec3d8271ce9a26201c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c6e9ffeb98007a60d84c87a0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3f8c3ae0deb026c049a303e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.692383;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_58ff670b343b6d28bed277c0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b3f319d0d4eff31f6c0ef2c0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5a1bba5f5a34c6e516983797.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_4b58ca0ec2fc8a2cb49a0c52.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5616030fd1c708ce828a5161.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b10ea968b835721c65b5a385.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_65ec8cad7c0c2b24a714b765.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1a02c564fa64e7c3c0f31296.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-70.560000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-1.080000px;}
.ls1c{letter-spacing:-0.990000px;}
.ls14{letter-spacing:-0.822000px;}
.ls17{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.053400px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.053400px;}
.ls11{letter-spacing:0.106560px;}
.lsc{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.153600px;}
.lsd{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.181440px;}
.ls5{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.828000px;}
.ls12{letter-spacing:5.940000px;}
.ls10{letter-spacing:8.076000px;}
.ls3{letter-spacing:9.306720px;}
.ls7{letter-spacing:18.666720px;}
.ls19{letter-spacing:30.906720px;}
.ls18{letter-spacing:31.626720px;}
.ls1a{letter-spacing:38.549280px;}
.ls2{letter-spacing:45.684000px;}
.ls15{letter-spacing:61.986720px;}
.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;}
}
.ws6{word-spacing:-15.768000px;}
.wsa{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.093600px;}
.ws8{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993400px;}
.ws9{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886600px;}
.wsf{word-spacing:-14.680200px;}
.wse{word-spacing:-14.118000px;}
.ws1{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.284000px;}
.ws5{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.700000px;}
.ws11{word-spacing:-10.980000px;}
.ws0{word-spacing:-0.059760px;}
.wsc{word-spacing:0.000000px;}
._1e{margin-left:-12.208800px;}
._11{margin-left:-10.932840px;}
._1d{margin-left:-6.105600px;}
._1c{margin-left:-3.456000px;}
._2{margin-left:-1.836000px;}
._0{width:1.804800px;}
._1{width:3.009600px;}
._5{width:4.419600px;}
._6{width:6.162000px;}
._7{width:7.567200px;}
._c{width:8.688240px;}
._b{width:9.905760px;}
._4{width:11.070000px;}
._3{width:12.348000px;}
._1f{width:13.395840px;}
._8{width:14.598000px;}
._a{width:16.012800px;}
._9{width:17.035200px;}
._1b{width:18.103680px;}
._21{width:19.327440px;}
._24{width:20.676960px;}
._15{width:21.740640px;}
._14{width:23.186880px;}
._20{width:24.429840px;}
._12{width:25.457760px;}
._1a{width:26.538000px;}
._13{width:27.609120px;}
._10{width:28.804320px;}
._f{width:30.150240px;}
._18{width:31.194720px;}
._19{width:32.449680px;}
._27{width:33.465600px;}
._d{width:34.601040px;}
._e{width:36.066480px;}
._2d{width:37.230480px;}
._2e{width:38.903760px;}
._17{width:42.059040px;}
._16{width:43.624800px;}
._2a{width:46.883040px;}
._25{width:47.975280px;}
._26{width:49.122720px;}
._28{width:59.970480px;}
._29{width:61.225440px;}
._22{width:69.978960px;}
._23{width:70.994880px;}
._2b{width:78.584400px;}
._2c{width:80.843280px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y64{bottom:3.060000px;}
.y60{bottom:8.280000px;}
.y63{bottom:16.740000px;}
.y62{bottom:30.960000px;}
.y65{bottom:43.921500px;}
.y5f{bottom:49.680000px;}
.y6b{bottom:54.166500px;}
.y2{bottom:54.540000px;}
.y6a{bottom:71.806500px;}
.y5d{bottom:89.460000px;}
.yb6{bottom:102.600000px;}
.y2e{bottom:105.300000px;}
.y5c{bottom:107.460000px;}
.y8c{bottom:107.640000px;}
.yb5{bottom:120.600000px;}
.y2d{bottom:123.300000px;}
.y5b{bottom:125.640000px;}
.yb4{bottom:138.780000px;}
.y2c{bottom:141.480000px;}
.y5a{bottom:143.640000px;}
.y8b{bottom:143.820000px;}
.yb3{bottom:156.960000px;}
.y2b{bottom:159.660000px;}
.y59{bottom:161.820000px;}
.y8a{bottom:162.000000px;}
.yb2{bottom:174.960000px;}
.y2a{bottom:177.660000px;}
.y58{bottom:180.000000px;}
.yb1{bottom:193.140000px;}
.y29{bottom:195.840000px;}
.y57{bottom:198.000000px;}
.y89{bottom:198.180000px;}
.yb0{bottom:211.320000px;}
.y28{bottom:214.020000px;}
.y56{bottom:216.180000px;}
.yaf{bottom:229.320000px;}
.y55{bottom:234.390000px;}
.y27{bottom:237.090000px;}
.yae{bottom:247.530000px;}
.y54{bottom:252.390000px;}
.y88{bottom:252.570000px;}
.yad{bottom:265.530000px;}
.y53{bottom:270.570000px;}
.y26{bottom:273.270000px;}
.yac{bottom:283.710000px;}
.y52{bottom:288.570000px;}
.y87{bottom:288.750000px;}
.y25{bottom:291.450000px;}
.yab{bottom:301.890000px;}
.y51{bottom:306.750000px;}
.y86{bottom:306.930000px;}
.y24{bottom:309.630000px;}
.yaa{bottom:319.890000px;}
.y50{bottom:324.930000px;}
.y23{bottom:327.630000px;}
.ya9{bottom:338.070000px;}
.y4f{bottom:342.930000px;}
.y85{bottom:343.110000px;}
.y22{bottom:345.810000px;}
.ya8{bottom:356.070000px;}
.y4e{bottom:361.110000px;}
.y21{bottom:363.810000px;}
.ya7{bottom:374.250000px;}
.y4d{bottom:379.290000px;}
.y20{bottom:381.990000px;}
.ya6{bottom:392.430000px;}
.y4c{bottom:397.290000px;}
.y84{bottom:397.470000px;}
.y1f{bottom:400.170000px;}
.ya5{bottom:410.430000px;}
.y4b{bottom:415.470000px;}
.yd1{bottom:416.550000px;}
.y1e{bottom:418.170000px;}
.ya4{bottom:428.610000px;}
.yd0{bottom:430.410000px;}
.y4a{bottom:433.470000px;}
.y83{bottom:433.650000px;}
.y1d{bottom:436.350000px;}
.ycf{bottom:444.270000px;}
.ya3{bottom:446.790000px;}
.y49{bottom:451.650000px;}
.y1c{bottom:454.350000px;}
.yce{bottom:457.950000px;}
.ya2{bottom:464.835000px;}
.y48{bottom:469.875000px;}
.ycd{bottom:471.855000px;}
.y1b{bottom:472.575000px;}
.ya1{bottom:483.015000px;}
.ycc{bottom:485.715000px;}
.y47{bottom:487.875000px;}
.y82{bottom:488.055000px;}
.y1a{bottom:490.755000px;}
.ycb{bottom:499.395000px;}
.ya0{bottom:501.015000px;}
.y46{bottom:506.055000px;}
.y19{bottom:508.755000px;}
.yca{bottom:513.255000px;}
.y9f{bottom:519.195000px;}
.y45{bottom:524.055000px;}
.y81{bottom:524.235000px;}
.y18{bottom:526.935000px;}
.yc9{bottom:527.115000px;}
.y9e{bottom:537.375000px;}
.yc8{bottom:540.795000px;}
.y44{bottom:542.235000px;}
.y80{bottom:542.415000px;}
.y17{bottom:545.115000px;}
.yc7{bottom:554.655000px;}
.y9d{bottom:555.375000px;}
.y43{bottom:560.415000px;}
.y16{bottom:563.115000px;}
.yc6{bottom:568.515000px;}
.y9c{bottom:573.555000px;}
.y42{bottom:578.415000px;}
.y7f{bottom:578.595000px;}
.y15{bottom:581.295000px;}
.yc5{bottom:582.195000px;}
.y9b{bottom:591.555000px;}
.yc4{bottom:596.055000px;}
.y41{bottom:596.595000px;}
.y14{bottom:599.295000px;}
.y9a{bottom:609.735000px;}
.yc3{bottom:609.915000px;}
.y40{bottom:614.775000px;}
.y13{bottom:617.475000px;}
.yc2{bottom:623.595000px;}
.y99{bottom:627.915000px;}
.y3f{bottom:632.775000px;}
.y7e{bottom:632.955000px;}
.y12{bottom:635.655000px;}
.yc1{bottom:637.455000px;}
.y98{bottom:645.915000px;}
.y3e{bottom:650.955000px;}
.yc0{bottom:651.315000px;}
.y11{bottom:658.695000px;}
.y97{bottom:664.095000px;}
.ybf{bottom:664.995000px;}
.y3d{bottom:668.955000px;}
.y7d{bottom:669.135000px;}
.ybe{bottom:678.855000px;}
.y96{bottom:682.275000px;}
.y3c{bottom:687.135000px;}
.ybd{bottom:692.745000px;}
.y10{bottom:693.645000px;}
.y95{bottom:700.305000px;}
.y3b{bottom:705.345000px;}
.ybc{bottom:706.425000px;}
.y94{bottom:718.485000px;}
.ybb{bottom:720.285000px;}
.y3a{bottom:723.345000px;}
.y7c{bottom:723.525000px;}
.yf{bottom:726.945000px;}
.yba{bottom:734.145000px;}
.y93{bottom:736.485000px;}
.y39{bottom:741.525000px;}
.ye{bottom:743.685000px;}
.yb9{bottom:747.825000px;}
.y92{bottom:754.665000px;}
.yd{bottom:759.165000px;}
.y38{bottom:759.525000px;}
.y7b{bottom:759.705000px;}
.yb8{bottom:761.685000px;}
.y91{bottom:772.845000px;}
.yc{bottom:774.645000px;}
.yb7{bottom:775.545000px;}
.y37{bottom:777.705000px;}
.y7a{bottom:777.885000px;}
.yb{bottom:790.305000px;}
.y90{bottom:790.845000px;}
.y36{bottom:795.885000px;}
.ya{bottom:805.785000px;}
.y8f{bottom:809.025000px;}
.y35{bottom:813.885000px;}
.y79{bottom:814.065000px;}
.y9{bottom:821.265000px;}
.y8e{bottom:827.025000px;}
.y34{bottom:832.065000px;}
.y8{bottom:836.745000px;}
.y8d{bottom:845.205000px;}
.y33{bottom:850.245000px;}
.y7{bottom:852.405000px;}
.y6{bottom:867.885000px;}
.y32{bottom:868.245000px;}
.y78{bottom:868.425000px;}
.y5{bottom:883.365000px;}
.y31{bottom:886.425000px;}
.y4{bottom:898.845000px;}
.y30{bottom:904.425000px;}
.y77{bottom:904.605000px;}
.y3{bottom:919.950000px;}
.y2f{bottom:922.650000px;}
.y76{bottom:940.830000px;}
.y61{bottom:950.190000px;}
.y75{bottom:959.010000px;}
.y74{bottom:977.010000px;}
.y73{bottom:995.190000px;}
.y72{bottom:1013.370000px;}
.y5e{bottom:1030.830000px;}
.y71{bottom:1031.370000px;}
.y70{bottom:1049.550000px;}
.y6f{bottom:1067.550000px;}
.y6e{bottom:1085.730000px;}
.y6d{bottom:1103.910000px;}
.y6c{bottom:1121.910000px;}
.y69{bottom:1144.756500px;}
.y68{bottom:1162.426500px;}
.y67{bottom:1180.066500px;}
.y66{bottom:1197.706500px;}
.y1{bottom:1198.620000px;}
.he{height:41.493516px;}
.ha{height:44.820000px;}
.hc{height:47.344922px;}
.hf{height:49.583118px;}
.h5{height:52.998047px;}
.h4{height:58.621992px;}
.h2{height:58.651172px;}
.hd{height:58.886719px;}
.h7{height:59.614102px;}
.h6{height:61.423863px;}
.hb{height:62.211094px;}
.h3{height:70.664062px;}
.h8{height:82.800000px;}
.h9{height:141.328125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:708.630000px;}
.w2{width:730.230000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:38.556000px;}
.xb{left:61.956000px;}
.x9{left:81.540000px;}
.x1{left:84.960000px;}
.x14{left:87.951000px;}
.xc{left:92.340000px;}
.x5{left:97.596000px;}
.x3{left:100.116000px;}
.x17{left:106.236000px;}
.x19{left:117.036000px;}
.xe{left:192.630000px;}
.x1a{left:203.250000px;}
.x4{left:204.690000px;}
.x13{left:269.781000px;}
.x12{left:280.401000px;}
.xf{left:301.395000px;}
.xd{left:309.495000px;}
.x11{left:311.586000px;}
.x10{left:406.041000px;}
.x15{left:441.906000px;}
.x2{left:446.475000px;}
.x16{left:449.466000px;}
.x6{left:461.415000px;}
.x7{left:476.715000px;}
.x8{left:482.655000px;}
.x1c{left:488.445000px;}
.x18{left:493.485000px;}
.x1b{left:595.905000px;}
@media print{
.v1{vertical-align:-62.720000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-0.960000pt;}
.ls1c{letter-spacing:-0.880000pt;}
.ls14{letter-spacing:-0.730667pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.047467pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.047467pt;}
.ls11{letter-spacing:0.094720pt;}
.lsc{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.136533pt;}
.lsd{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.161280pt;}
.ls5{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.736000pt;}
.ls12{letter-spacing:5.280000pt;}
.ls10{letter-spacing:7.178667pt;}
.ls3{letter-spacing:8.272640pt;}
.ls7{letter-spacing:16.592640pt;}
.ls19{letter-spacing:27.472640pt;}
.ls18{letter-spacing:28.112640pt;}
.ls1a{letter-spacing:34.266027pt;}
.ls2{letter-spacing:40.608000pt;}
.ls15{letter-spacing:55.099307pt;}
.ws6{word-spacing:-14.016000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.416533pt;}
.ws8{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327467pt;}
.ws9{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232533pt;}
.wsf{word-spacing:-13.049067pt;}
.wse{word-spacing:-12.549333pt;}
.ws1{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.808000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.400000pt;}
.ws11{word-spacing:-9.760000pt;}
.ws0{word-spacing:-0.053120pt;}
.wsc{word-spacing:0.000000pt;}
._1e{margin-left:-10.852267pt;}
._11{margin-left:-9.718080pt;}
._1d{margin-left:-5.427200pt;}
._1c{margin-left:-3.072000pt;}
._2{margin-left:-1.632000pt;}
._0{width:1.604267pt;}
._1{width:2.675200pt;}
._5{width:3.928533pt;}
._6{width:5.477333pt;}
._7{width:6.726400pt;}
._c{width:7.722880pt;}
._b{width:8.805120pt;}
._4{width:9.840000pt;}
._3{width:10.976000pt;}
._1f{width:11.907413pt;}
._8{width:12.976000pt;}
._a{width:14.233600pt;}
._9{width:15.142400pt;}
._1b{width:16.092160pt;}
._21{width:17.179947pt;}
._24{width:18.379520pt;}
._15{width:19.325013pt;}
._14{width:20.610560pt;}
._20{width:21.715413pt;}
._12{width:22.629120pt;}
._1a{width:23.589333pt;}
._13{width:24.541440pt;}
._10{width:25.603840pt;}
._f{width:26.800213pt;}
._18{width:27.728640pt;}
._19{width:28.844160pt;}
._27{width:29.747200pt;}
._d{width:30.756480pt;}
._e{width:32.059093pt;}
._2d{width:33.093760pt;}
._2e{width:34.581120pt;}
._17{width:37.385813pt;}
._16{width:38.777600pt;}
._2a{width:41.673813pt;}
._25{width:42.644693pt;}
._26{width:43.664640pt;}
._28{width:53.307093pt;}
._29{width:54.422613pt;}
._22{width:62.203520pt;}
._23{width:63.106560pt;}
._2b{width:69.852800pt;}
._2c{width:71.860693pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:2.720000pt;}
.y60{bottom:7.360000pt;}
.y63{bottom:14.880000pt;}
.y62{bottom:27.520000pt;}
.y65{bottom:39.041333pt;}
.y5f{bottom:44.160000pt;}
.y6b{bottom:48.148000pt;}
.y2{bottom:48.480000pt;}
.y6a{bottom:63.828000pt;}
.y5d{bottom:79.520000pt;}
.yb6{bottom:91.200000pt;}
.y2e{bottom:93.600000pt;}
.y5c{bottom:95.520000pt;}
.y8c{bottom:95.680000pt;}
.yb5{bottom:107.200000pt;}
.y2d{bottom:109.600000pt;}
.y5b{bottom:111.680000pt;}
.yb4{bottom:123.360000pt;}
.y2c{bottom:125.760000pt;}
.y5a{bottom:127.680000pt;}
.y8b{bottom:127.840000pt;}
.yb3{bottom:139.520000pt;}
.y2b{bottom:141.920000pt;}
.y59{bottom:143.840000pt;}
.y8a{bottom:144.000000pt;}
.yb2{bottom:155.520000pt;}
.y2a{bottom:157.920000pt;}
.y58{bottom:160.000000pt;}
.yb1{bottom:171.680000pt;}
.y29{bottom:174.080000pt;}
.y57{bottom:176.000000pt;}
.y89{bottom:176.160000pt;}
.yb0{bottom:187.840000pt;}
.y28{bottom:190.240000pt;}
.y56{bottom:192.160000pt;}
.yaf{bottom:203.840000pt;}
.y55{bottom:208.346667pt;}
.y27{bottom:210.746667pt;}
.yae{bottom:220.026667pt;}
.y54{bottom:224.346667pt;}
.y88{bottom:224.506667pt;}
.yad{bottom:236.026667pt;}
.y53{bottom:240.506667pt;}
.y26{bottom:242.906667pt;}
.yac{bottom:252.186667pt;}
.y52{bottom:256.506667pt;}
.y87{bottom:256.666667pt;}
.y25{bottom:259.066667pt;}
.yab{bottom:268.346667pt;}
.y51{bottom:272.666667pt;}
.y86{bottom:272.826667pt;}
.y24{bottom:275.226667pt;}
.yaa{bottom:284.346667pt;}
.y50{bottom:288.826667pt;}
.y23{bottom:291.226667pt;}
.ya9{bottom:300.506667pt;}
.y4f{bottom:304.826667pt;}
.y85{bottom:304.986667pt;}
.y22{bottom:307.386667pt;}
.ya8{bottom:316.506667pt;}
.y4e{bottom:320.986667pt;}
.y21{bottom:323.386667pt;}
.ya7{bottom:332.666667pt;}
.y4d{bottom:337.146667pt;}
.y20{bottom:339.546667pt;}
.ya6{bottom:348.826667pt;}
.y4c{bottom:353.146667pt;}
.y84{bottom:353.306667pt;}
.y1f{bottom:355.706667pt;}
.ya5{bottom:364.826667pt;}
.y4b{bottom:369.306667pt;}
.yd1{bottom:370.266667pt;}
.y1e{bottom:371.706667pt;}
.ya4{bottom:380.986667pt;}
.yd0{bottom:382.586667pt;}
.y4a{bottom:385.306667pt;}
.y83{bottom:385.466667pt;}
.y1d{bottom:387.866667pt;}
.ycf{bottom:394.906667pt;}
.ya3{bottom:397.146667pt;}
.y49{bottom:401.466667pt;}
.y1c{bottom:403.866667pt;}
.yce{bottom:407.066667pt;}
.ya2{bottom:413.186667pt;}
.y48{bottom:417.666667pt;}
.ycd{bottom:419.426667pt;}
.y1b{bottom:420.066667pt;}
.ya1{bottom:429.346667pt;}
.ycc{bottom:431.746667pt;}
.y47{bottom:433.666667pt;}
.y82{bottom:433.826667pt;}
.y1a{bottom:436.226667pt;}
.ycb{bottom:443.906667pt;}
.ya0{bottom:445.346667pt;}
.y46{bottom:449.826667pt;}
.y19{bottom:452.226667pt;}
.yca{bottom:456.226667pt;}
.y9f{bottom:461.506667pt;}
.y45{bottom:465.826667pt;}
.y81{bottom:465.986667pt;}
.y18{bottom:468.386667pt;}
.yc9{bottom:468.546667pt;}
.y9e{bottom:477.666667pt;}
.yc8{bottom:480.706667pt;}
.y44{bottom:481.986667pt;}
.y80{bottom:482.146667pt;}
.y17{bottom:484.546667pt;}
.yc7{bottom:493.026667pt;}
.y9d{bottom:493.666667pt;}
.y43{bottom:498.146667pt;}
.y16{bottom:500.546667pt;}
.yc6{bottom:505.346667pt;}
.y9c{bottom:509.826667pt;}
.y42{bottom:514.146667pt;}
.y7f{bottom:514.306667pt;}
.y15{bottom:516.706667pt;}
.yc5{bottom:517.506667pt;}
.y9b{bottom:525.826667pt;}
.yc4{bottom:529.826667pt;}
.y41{bottom:530.306667pt;}
.y14{bottom:532.706667pt;}
.y9a{bottom:541.986667pt;}
.yc3{bottom:542.146667pt;}
.y40{bottom:546.466667pt;}
.y13{bottom:548.866667pt;}
.yc2{bottom:554.306667pt;}
.y99{bottom:558.146667pt;}
.y3f{bottom:562.466667pt;}
.y7e{bottom:562.626667pt;}
.y12{bottom:565.026667pt;}
.yc1{bottom:566.626667pt;}
.y98{bottom:574.146667pt;}
.y3e{bottom:578.626667pt;}
.yc0{bottom:578.946667pt;}
.y11{bottom:585.506667pt;}
.y97{bottom:590.306667pt;}
.ybf{bottom:591.106667pt;}
.y3d{bottom:594.626667pt;}
.y7d{bottom:594.786667pt;}
.ybe{bottom:603.426667pt;}
.y96{bottom:606.466667pt;}
.y3c{bottom:610.786667pt;}
.ybd{bottom:615.773333pt;}
.y10{bottom:616.573333pt;}
.y95{bottom:622.493333pt;}
.y3b{bottom:626.973333pt;}
.ybc{bottom:627.933333pt;}
.y94{bottom:638.653333pt;}
.ybb{bottom:640.253333pt;}
.y3a{bottom:642.973333pt;}
.y7c{bottom:643.133333pt;}
.yf{bottom:646.173333pt;}
.yba{bottom:652.573333pt;}
.y93{bottom:654.653333pt;}
.y39{bottom:659.133333pt;}
.ye{bottom:661.053333pt;}
.yb9{bottom:664.733333pt;}
.y92{bottom:670.813333pt;}
.yd{bottom:674.813333pt;}
.y38{bottom:675.133333pt;}
.y7b{bottom:675.293333pt;}
.yb8{bottom:677.053333pt;}
.y91{bottom:686.973333pt;}
.yc{bottom:688.573333pt;}
.yb7{bottom:689.373333pt;}
.y37{bottom:691.293333pt;}
.y7a{bottom:691.453333pt;}
.yb{bottom:702.493333pt;}
.y90{bottom:702.973333pt;}
.y36{bottom:707.453333pt;}
.ya{bottom:716.253333pt;}
.y8f{bottom:719.133333pt;}
.y35{bottom:723.453333pt;}
.y79{bottom:723.613333pt;}
.y9{bottom:730.013333pt;}
.y8e{bottom:735.133333pt;}
.y34{bottom:739.613333pt;}
.y8{bottom:743.773333pt;}
.y8d{bottom:751.293333pt;}
.y33{bottom:755.773333pt;}
.y7{bottom:757.693333pt;}
.y6{bottom:771.453333pt;}
.y32{bottom:771.773333pt;}
.y78{bottom:771.933333pt;}
.y5{bottom:785.213333pt;}
.y31{bottom:787.933333pt;}
.y4{bottom:798.973333pt;}
.y30{bottom:803.933333pt;}
.y77{bottom:804.093333pt;}
.y3{bottom:817.733333pt;}
.y2f{bottom:820.133333pt;}
.y76{bottom:836.293333pt;}
.y61{bottom:844.613333pt;}
.y75{bottom:852.453333pt;}
.y74{bottom:868.453333pt;}
.y73{bottom:884.613333pt;}
.y72{bottom:900.773333pt;}
.y5e{bottom:916.293333pt;}
.y71{bottom:916.773333pt;}
.y70{bottom:932.933333pt;}
.y6f{bottom:948.933333pt;}
.y6e{bottom:965.093333pt;}
.y6d{bottom:981.253333pt;}
.y6c{bottom:997.253333pt;}
.y69{bottom:1017.561333pt;}
.y68{bottom:1033.268000pt;}
.y67{bottom:1048.948000pt;}
.y66{bottom:1064.628000pt;}
.y1{bottom:1065.440000pt;}
.he{height:36.883125pt;}
.ha{height:39.840000pt;}
.hc{height:42.084375pt;}
.hf{height:44.073883pt;}
.h5{height:47.109375pt;}
.h4{height:52.108438pt;}
.h2{height:52.134375pt;}
.hd{height:52.343750pt;}
.h7{height:52.990313pt;}
.h6{height:54.598989pt;}
.hb{height:55.298750pt;}
.h3{height:62.812500pt;}
.h8{height:73.600000pt;}
.h9{height:125.625000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:629.893333pt;}
.w2{width:649.093333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:34.272000pt;}
.xb{left:55.072000pt;}
.x9{left:72.480000pt;}
.x1{left:75.520000pt;}
.x14{left:78.178667pt;}
.xc{left:82.080000pt;}
.x5{left:86.752000pt;}
.x3{left:88.992000pt;}
.x17{left:94.432000pt;}
.x19{left:104.032000pt;}
.xe{left:171.226667pt;}
.x1a{left:180.666667pt;}
.x4{left:181.946667pt;}
.x13{left:239.805333pt;}
.x12{left:249.245333pt;}
.xf{left:267.906667pt;}
.xd{left:275.106667pt;}
.x11{left:276.965333pt;}
.x10{left:360.925333pt;}
.x15{left:392.805333pt;}
.x2{left:396.866667pt;}
.x16{left:399.525333pt;}
.x6{left:410.146667pt;}
.x7{left:423.746667pt;}
.x8{left:429.026667pt;}
.x1c{left:434.173333pt;}
.x18{left:438.653333pt;}
.x1b{left:529.693333pt;}
}




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