
    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_1889a418a08b3bfdc8a96fdf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_72083c93bbeda254fd08e4cf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_72eb6fd0b5be0a994462676b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f46c0c8e468dbda5168fe0cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.977539;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_f0c2f4a0fe101182f9b3a145.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.977539;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_9ab2a176af3be15875b70cff.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.738770;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_7b2038fb29f045625bb9499f.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_9638c476a6abafbbb4a49197.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.600000px;}
.lsf{letter-spacing:-1.440000px;}
.ls14{letter-spacing:-1.422000px;}
.ls7{letter-spacing:-0.972000px;}
.ls4{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.498000px;}
.lsa{letter-spacing:-0.486600px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.020160px;}
.ls13{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.466800px;}
.lsd{letter-spacing:0.486600px;}
.lsc{letter-spacing:0.486720px;}
.ls0{letter-spacing:0.498240px;}
.ls10{letter-spacing:0.507000px;}
.ls1{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.840000px;}
.ls12{letter-spacing:13.265280px;}
.ls11{letter-spacing:46.558560px;}
.ls2{letter-spacing:82.690560px;}
.lse{letter-spacing:93.024000px;}
.lsb{letter-spacing:196.716000px;}
.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;}
}
.ws1{word-spacing:-119.520000px;}
.ws2{word-spacing:-23.425920px;}
.ws9{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.627000px;}
.ws6{word-spacing:-15.606600px;}
.ws3{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.633400px;}
.ws7{word-spacing:-13.680000px;}
.ws0{word-spacing:-13.182000px;}
.ws4{word-spacing:0.000000px;}
._f{margin-left:-4.226400px;}
._2{margin-left:-2.303040px;}
._0{margin-left:-1.028160px;}
._1{width:1.816800px;}
._6{width:2.858880px;}
._a{width:3.972480px;}
._e{width:5.238720px;}
._9{width:6.297120px;}
._7{width:7.378560px;}
._8{width:8.663040px;}
._d{width:10.566720px;}
._4{width:11.712960px;}
._5{width:13.218720px;}
._c{width:16.283520px;}
._b{width:17.306880px;}
._12{width:18.654240px;}
._11{width:20.321280px;}
._13{width:21.639840px;}
._16{width:23.584800px;}
._15{width:24.924960px;}
._14{width:196.716000px;}
._3{width:393.960000px;}
._10{width:1069.656000px;}
.fc7{color:rgb(112,173,71);}
.fc6{color:transparent;}
.fc5{color:rgb(118,113,113);}
.fc4{color:rgb(83,129,53);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(192,0,0);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:96.480000px;}
.fs3{font-size:119.520000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.ye{bottom:2.880000px;}
.y14{bottom:7.200000px;}
.yf{bottom:11.556000px;}
.yd{bottom:19.836000px;}
.y13{bottom:42.840000px;}
.y10{bottom:43.560000px;}
.yc{bottom:68.400000px;}
.y12{bottom:78.480000px;}
.y42{bottom:94.716000px;}
.ya{bottom:111.636000px;}
.y95{bottom:132.516000px;}
.yb3{bottom:133.236000px;}
.yd1{bottom:141.156000px;}
.yfb{bottom:153.030000px;}
.y3e{bottom:153.390000px;}
.y94{bottom:158.430000px;}
.yb2{bottom:159.150000px;}
.yd0{bottom:167.070000px;}
.y70{bottom:171.030000px;}
.yfa{bottom:172.830000px;}
.y3d{bottom:173.550000px;}
.yed{bottom:175.710000px;}
.y93{bottom:184.350000px;}
.yb1{bottom:185.070000px;}
.ycf{bottom:192.990000px;}
.y3c{bottom:193.350000px;}
.yf9{bottom:194.070000px;}
.y6f{bottom:196.950000px;}
.yec{bottom:201.315000px;}
.y92{bottom:209.955000px;}
.yb0{bottom:211.035000px;}
.y3b{bottom:213.195000px;}
.yf8{bottom:213.915000px;}
.yce{bottom:218.595000px;}
.y6e{bottom:222.915000px;}
.yeb{bottom:227.235000px;}
.y3a{bottom:232.995000px;}
.yf7{bottom:233.715000px;}
.y91{bottom:235.875000px;}
.yaf{bottom:236.595000px;}
.ycd{bottom:244.515000px;}
.y6d{bottom:248.835000px;}
.y39{bottom:252.795000px;}
.yea{bottom:253.155000px;}
.yf6{bottom:254.955000px;}
.y90{bottom:261.795000px;}
.yae{bottom:262.515000px;}
.ycc{bottom:270.435000px;}
.y6c{bottom:274.755000px;}
.yf5{bottom:276.195000px;}
.ye9{bottom:279.075000px;}
.y38{bottom:287.715000px;}
.yad{bottom:288.435000px;}
.ycb{bottom:296.355000px;}
.yf4{bottom:297.435000px;}
.y6b{bottom:300.675000px;}
.ye8{bottom:304.995000px;}
.y8f{bottom:313.635000px;}
.yac{bottom:314.355000px;}
.y37{bottom:315.795000px;}
.yf3{bottom:318.675000px;}
.yca{bottom:322.275000px;}
.y6a{bottom:326.625000px;}
.ye7{bottom:330.945000px;}
.yf2{bottom:338.505000px;}
.y8e{bottom:339.585000px;}
.yab{bottom:340.305000px;}
.y36{bottom:344.265000px;}
.yc9{bottom:348.225000px;}
.y69{bottom:352.185000px;}
.ye6{bottom:356.865000px;}
.y35{bottom:361.545000px;}
.y8d{bottom:365.505000px;}
.yaa{bottom:366.225000px;}
.yf1{bottom:368.745000px;}
.yc8{bottom:374.145000px;}
.y68{bottom:378.105000px;}
.ye5{bottom:382.785000px;}
.y34{bottom:387.105000px;}
.yf0{bottom:388.545000px;}
.y8c{bottom:391.425000px;}
.ya9{bottom:392.145000px;}
.yc7{bottom:399.705000px;}
.y67{bottom:404.025000px;}
.ye4{bottom:408.345000px;}
.y33{bottom:413.025000px;}
.y8b{bottom:416.985000px;}
.ya8{bottom:417.705000px;}
.yc6{bottom:425.625000px;}
.y66{bottom:429.945000px;}
.y32{bottom:430.305000px;}
.yb6{bottom:434.265000px;}
.y8a{bottom:442.905000px;}
.ya7{bottom:443.625000px;}
.y31{bottom:447.585000px;}
.yb5{bottom:451.590000px;}
.y65{bottom:455.910000px;}
.ye3{bottom:460.230000px;}
.y30{bottom:464.910000px;}
.y89{bottom:468.870000px;}
.ya6{bottom:469.590000px;}
.yc5{bottom:477.510000px;}
.y64{bottom:481.830000px;}
.y2f{bottom:482.190000px;}
.ye2{bottom:486.150000px;}
.yb4{bottom:486.510000px;}
.y88{bottom:494.790000px;}
.ya5{bottom:495.510000px;}
.y2e{bottom:499.470000px;}
.yc4{bottom:503.430000px;}
.y63{bottom:507.750000px;}
.ye1{bottom:512.070000px;}
.y2d{bottom:516.750000px;}
.y87{bottom:520.710000px;}
.ya4{bottom:521.430000px;}
.y62{bottom:527.550000px;}
.yc3{bottom:529.350000px;}
.y2c{bottom:534.030000px;}
.ye0{bottom:537.990000px;}
.y86{bottom:546.630000px;}
.y61{bottom:547.350000px;}
.y2b{bottom:551.310000px;}
.yc2{bottom:555.270000px;}
.ydf{bottom:563.910000px;}
.y60{bottom:567.150000px;}
.y85{bottom:572.550000px;}
.ya3{bottom:573.270000px;}
.y2a{bottom:577.260000px;}
.yc1{bottom:581.220000px;}
.y5f{bottom:586.980000px;}
.yde{bottom:589.860000px;}
.y84{bottom:598.140000px;}
.ya2{bottom:599.220000px;}
.y29{bottom:602.820000px;}
.y5e{bottom:606.780000px;}
.ydd{bottom:615.420000px;}
.y28{bottom:620.100000px;}
.y83{bottom:624.060000px;}
.ya1{bottom:624.780000px;}
.y5d{bottom:626.580000px;}
.yc0{bottom:632.700000px;}
.y27{bottom:637.380000px;}
.ydc{bottom:641.340000px;}
.y5c{bottom:646.380000px;}
.y82{bottom:649.980000px;}
.ya0{bottom:650.700000px;}
.y26{bottom:654.660000px;}
.ybf{bottom:658.620000px;}
.y5b{bottom:666.180000px;}
.ydb{bottom:667.260000px;}
.y25{bottom:671.940000px;}
.y81{bottom:675.900000px;}
.y9f{bottom:676.620000px;}
.ybe{bottom:684.540000px;}
.y5a{bottom:686.340000px;}
.y24{bottom:689.220000px;}
.yda{bottom:693.180000px;}
.y80{bottom:701.850000px;}
.y9e{bottom:702.570000px;}
.y59{bottom:706.170000px;}
.y23{bottom:706.530000px;}
.ybd{bottom:710.490000px;}
.yd9{bottom:719.130000px;}
.y22{bottom:723.810000px;}
.y58{bottom:725.970000px;}
.y7f{bottom:727.770000px;}
.y9d{bottom:728.490000px;}
.ybc{bottom:736.410000px;}
.y21{bottom:741.090000px;}
.yd8{bottom:745.050000px;}
.y57{bottom:745.770000px;}
.y7e{bottom:753.690000px;}
.y9c{bottom:754.410000px;}
.y20{bottom:758.370000px;}
.ybb{bottom:762.330000px;}
.y56{bottom:765.570000px;}
.yd7{bottom:770.970000px;}
.y1f{bottom:775.650000px;}
.y7d{bottom:779.610000px;}
.yef{bottom:779.970000px;}
.y9b{bottom:780.330000px;}
.y55{bottom:785.370000px;}
.yba{bottom:787.890000px;}
.yd6{bottom:796.530000px;}
.y1e{bottom:796.890000px;}
.y54{bottom:805.170000px;}
.y9a{bottom:805.890000px;}
.yee{bottom:806.250000px;}
.y10c{bottom:806.970000px;}
.yd5{bottom:822.450000px;}
.yb9{bottom:823.170000px;}
.y53{bottom:824.970000px;}
.y7c{bottom:831.135000px;}
.y1d{bottom:831.495000px;}
.y99{bottom:831.855000px;}
.y10b{bottom:832.935000px;}
.yb8{bottom:840.495000px;}
.y52{bottom:844.815000px;}
.yd4{bottom:848.415000px;}
.y7b{bottom:857.055000px;}
.y1c{bottom:857.415000px;}
.y98{bottom:857.775000px;}
.y10a{bottom:858.855000px;}
.y51{bottom:864.615000px;}
.yb7{bottom:875.055000px;}
.y109{bottom:876.135000px;}
.y1b{bottom:883.335000px;}
.y97{bottom:883.695000px;}
.y50{bottom:884.415000px;}
.y7a{bottom:892.335000px;}
.y108{bottom:893.415000px;}
.y1a{bottom:900.615000px;}
.yd3{bottom:900.975000px;}
.y4f{bottom:904.575000px;}
.y79{bottom:909.615000px;}
.y19{bottom:917.895000px;}
.yd2{bottom:918.255000px;}
.y107{bottom:919.335000px;}
.y4e{bottom:924.375000px;}
.y78{bottom:926.895000px;}
.y18{bottom:935.175000px;}
.y96{bottom:935.535000px;}
.y4d{bottom:944.175000px;}
.y106{bottom:945.255000px;}
.y17{bottom:961.125000px;}
.y77{bottom:961.485000px;}
.y4c{bottom:964.005000px;}
.y105{bottom:965.085000px;}
.y4b{bottom:983.805000px;}
.y104{bottom:984.885000px;}
.y16{bottom:987.045000px;}
.y76{bottom:987.405000px;}
.y4a{bottom:1003.605000px;}
.y103{bottom:1004.685000px;}
.y15{bottom:1006.125000px;}
.y75{bottom:1012.965000px;}
.y102{bottom:1021.965000px;}
.y49{bottom:1023.405000px;}
.y9{bottom:1031.685000px;}
.y74{bottom:1038.885000px;}
.y101{bottom:1039.245000px;}
.y48{bottom:1043.205000px;}
.y8{bottom:1048.965000px;}
.y100{bottom:1059.045000px;}
.y47{bottom:1063.005000px;}
.y73{bottom:1064.805000px;}
.y7{bottom:1066.245000px;}
.yff{bottom:1080.330000px;}
.y46{bottom:1082.850000px;}
.y6{bottom:1083.570000px;}
.y72{bottom:1090.770000px;}
.yfe{bottom:1100.130000px;}
.y11{bottom:1101.930000px;}
.y45{bottom:1103.010000px;}
.y5{bottom:1104.450000px;}
.y71{bottom:1116.690000px;}
.yfd{bottom:1121.370000px;}
.y44{bottom:1122.810000px;}
.y4{bottom:1128.210000px;}
.yfc{bottom:1141.170000px;}
.y43{bottom:1142.610000px;}
.y3{bottom:1151.610000px;}
.y41{bottom:1167.090000px;}
.y2{bottom:1175.370000px;}
.y40{bottom:1181.130000px;}
.y1{bottom:1199.130000px;}
.y3f{bottom:1202.010000px;}
.h4{height:8.640000px;}
.hd{height:15.516000px;}
.h6{height:32.436000px;}
.hc{height:40.959844px;}
.h7{height:45.101250px;}
.h5{height:48.013594px;}
.h3{height:53.067656px;}
.hb{height:53.717344px;}
.h10{height:55.714922px;}
.hf{height:58.121719px;}
.he{height:63.175781px;}
.h2{height:63.949219px;}
.ha{height:85.691953px;}
.h9{height:95.300859px;}
.h8{height:108.036000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:181.875000px;}
.w9{width:333.510000px;}
.w7{width:339.270000px;}
.w6{width:341.430000px;}
.w8{width:347.190000px;}
.w3{width:498.810000px;}
.w5{width:566.130000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3{left:8.640000px;}
.x9{left:10.800000px;}
.x1{left:106.235987px;}
.xa{left:108.035987px;}
.x10{left:119.915987px;}
.x1b{left:123.155987px;}
.x5{left:127.869000px;}
.x1d{left:131.831987px;}
.x17{left:133.271987px;}
.x15{left:136.151987px;}
.x1a{left:138.671987px;}
.x14{left:140.471987px;}
.x7{left:146.595000px;}
.x18{left:148.751987px;}
.x19{left:159.194987px;}
.x1c{left:160.274987px;}
.x16{left:169.994987px;}
.xd{left:222.584987px;}
.x8{left:249.225000px;}
.xf{left:258.584987px;}
.x13{left:298.230000px;}
.x6{left:308.664000px;}
.xe{left:337.469987px;}
.xc{left:356.189987px;}
.xb{left:409.499987px;}
.x2{left:446.579987px;}
.x11{left:447.660000px;}
.x12{left:453.420000px;}
.x4{left:605.055000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.200000pt;}
.lsf{letter-spacing:-1.280000pt;}
.ls14{letter-spacing:-1.264000pt;}
.ls7{letter-spacing:-0.864000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.442667pt;}
.lsa{letter-spacing:-0.432533pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.017920pt;}
.ls13{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.414933pt;}
.lsd{letter-spacing:0.432533pt;}
.lsc{letter-spacing:0.432640pt;}
.ls0{letter-spacing:0.442880pt;}
.ls10{letter-spacing:0.450667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.746667pt;}
.ls12{letter-spacing:11.791360pt;}
.ls11{letter-spacing:41.385387pt;}
.ls2{letter-spacing:73.502720pt;}
.lse{letter-spacing:82.688000pt;}
.lsb{letter-spacing:174.858667pt;}
.ws1{word-spacing:-106.240000pt;}
.ws2{word-spacing:-20.823040pt;}
.ws9{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.890667pt;}
.ws6{word-spacing:-13.872533pt;}
.ws3{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.007467pt;}
.ws7{word-spacing:-12.160000pt;}
.ws0{word-spacing:-11.717333pt;}
.ws4{word-spacing:0.000000pt;}
._f{margin-left:-3.756800pt;}
._2{margin-left:-2.047147pt;}
._0{margin-left:-0.913920pt;}
._1{width:1.614933pt;}
._6{width:2.541227pt;}
._a{width:3.531093pt;}
._e{width:4.656640pt;}
._9{width:5.597440pt;}
._7{width:6.558720pt;}
._8{width:7.700480pt;}
._d{width:9.392640pt;}
._4{width:10.411520pt;}
._5{width:11.749973pt;}
._c{width:14.474240pt;}
._b{width:15.383893pt;}
._12{width:16.581547pt;}
._11{width:18.063360pt;}
._13{width:19.235413pt;}
._16{width:20.964267pt;}
._15{width:22.155520pt;}
._14{width:174.858667pt;}
._3{width:350.186667pt;}
._10{width:950.805333pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:85.760000pt;}
.fs3{font-size:106.240000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:2.560000pt;}
.y14{bottom:6.400000pt;}
.yf{bottom:10.272000pt;}
.yd{bottom:17.632000pt;}
.y13{bottom:38.080000pt;}
.y10{bottom:38.720000pt;}
.yc{bottom:60.800000pt;}
.y12{bottom:69.760000pt;}
.y42{bottom:84.192000pt;}
.ya{bottom:99.232000pt;}
.y95{bottom:117.792000pt;}
.yb3{bottom:118.432000pt;}
.yd1{bottom:125.472000pt;}
.yfb{bottom:136.026667pt;}
.y3e{bottom:136.346667pt;}
.y94{bottom:140.826667pt;}
.yb2{bottom:141.466667pt;}
.yd0{bottom:148.506667pt;}
.y70{bottom:152.026667pt;}
.yfa{bottom:153.626667pt;}
.y3d{bottom:154.266667pt;}
.yed{bottom:156.186667pt;}
.y93{bottom:163.866667pt;}
.yb1{bottom:164.506667pt;}
.ycf{bottom:171.546667pt;}
.y3c{bottom:171.866667pt;}
.yf9{bottom:172.506667pt;}
.y6f{bottom:175.066667pt;}
.yec{bottom:178.946667pt;}
.y92{bottom:186.626667pt;}
.yb0{bottom:187.586667pt;}
.y3b{bottom:189.506667pt;}
.yf8{bottom:190.146667pt;}
.yce{bottom:194.306667pt;}
.y6e{bottom:198.146667pt;}
.yeb{bottom:201.986667pt;}
.y3a{bottom:207.106667pt;}
.yf7{bottom:207.746667pt;}
.y91{bottom:209.666667pt;}
.yaf{bottom:210.306667pt;}
.ycd{bottom:217.346667pt;}
.y6d{bottom:221.186667pt;}
.y39{bottom:224.706667pt;}
.yea{bottom:225.026667pt;}
.yf6{bottom:226.626667pt;}
.y90{bottom:232.706667pt;}
.yae{bottom:233.346667pt;}
.ycc{bottom:240.386667pt;}
.y6c{bottom:244.226667pt;}
.yf5{bottom:245.506667pt;}
.ye9{bottom:248.066667pt;}
.y38{bottom:255.746667pt;}
.yad{bottom:256.386667pt;}
.ycb{bottom:263.426667pt;}
.yf4{bottom:264.386667pt;}
.y6b{bottom:267.266667pt;}
.ye8{bottom:271.106667pt;}
.y8f{bottom:278.786667pt;}
.yac{bottom:279.426667pt;}
.y37{bottom:280.706667pt;}
.yf3{bottom:283.266667pt;}
.yca{bottom:286.466667pt;}
.y6a{bottom:290.333333pt;}
.ye7{bottom:294.173333pt;}
.yf2{bottom:300.893333pt;}
.y8e{bottom:301.853333pt;}
.yab{bottom:302.493333pt;}
.y36{bottom:306.013333pt;}
.yc9{bottom:309.533333pt;}
.y69{bottom:313.053333pt;}
.ye6{bottom:317.213333pt;}
.y35{bottom:321.373333pt;}
.y8d{bottom:324.893333pt;}
.yaa{bottom:325.533333pt;}
.yf1{bottom:327.773333pt;}
.yc8{bottom:332.573333pt;}
.y68{bottom:336.093333pt;}
.ye5{bottom:340.253333pt;}
.y34{bottom:344.093333pt;}
.yf0{bottom:345.373333pt;}
.y8c{bottom:347.933333pt;}
.ya9{bottom:348.573333pt;}
.yc7{bottom:355.293333pt;}
.y67{bottom:359.133333pt;}
.ye4{bottom:362.973333pt;}
.y33{bottom:367.133333pt;}
.y8b{bottom:370.653333pt;}
.ya8{bottom:371.293333pt;}
.yc6{bottom:378.333333pt;}
.y66{bottom:382.173333pt;}
.y32{bottom:382.493333pt;}
.yb6{bottom:386.013333pt;}
.y8a{bottom:393.693333pt;}
.ya7{bottom:394.333333pt;}
.y31{bottom:397.853333pt;}
.yb5{bottom:401.413333pt;}
.y65{bottom:405.253333pt;}
.ye3{bottom:409.093333pt;}
.y30{bottom:413.253333pt;}
.y89{bottom:416.773333pt;}
.ya6{bottom:417.413333pt;}
.yc5{bottom:424.453333pt;}
.y64{bottom:428.293333pt;}
.y2f{bottom:428.613333pt;}
.ye2{bottom:432.133333pt;}
.yb4{bottom:432.453333pt;}
.y88{bottom:439.813333pt;}
.ya5{bottom:440.453333pt;}
.y2e{bottom:443.973333pt;}
.yc4{bottom:447.493333pt;}
.y63{bottom:451.333333pt;}
.ye1{bottom:455.173333pt;}
.y2d{bottom:459.333333pt;}
.y87{bottom:462.853333pt;}
.ya4{bottom:463.493333pt;}
.y62{bottom:468.933333pt;}
.yc3{bottom:470.533333pt;}
.y2c{bottom:474.693333pt;}
.ye0{bottom:478.213333pt;}
.y86{bottom:485.893333pt;}
.y61{bottom:486.533333pt;}
.y2b{bottom:490.053333pt;}
.yc2{bottom:493.573333pt;}
.ydf{bottom:501.253333pt;}
.y60{bottom:504.133333pt;}
.y85{bottom:508.933333pt;}
.ya3{bottom:509.573333pt;}
.y2a{bottom:513.120000pt;}
.yc1{bottom:516.640000pt;}
.y5f{bottom:521.760000pt;}
.yde{bottom:524.320000pt;}
.y84{bottom:531.680000pt;}
.ya2{bottom:532.640000pt;}
.y29{bottom:535.840000pt;}
.y5e{bottom:539.360000pt;}
.ydd{bottom:547.040000pt;}
.y28{bottom:551.200000pt;}
.y83{bottom:554.720000pt;}
.ya1{bottom:555.360000pt;}
.y5d{bottom:556.960000pt;}
.yc0{bottom:562.400000pt;}
.y27{bottom:566.560000pt;}
.ydc{bottom:570.080000pt;}
.y5c{bottom:574.560000pt;}
.y82{bottom:577.760000pt;}
.ya0{bottom:578.400000pt;}
.y26{bottom:581.920000pt;}
.ybf{bottom:585.440000pt;}
.y5b{bottom:592.160000pt;}
.ydb{bottom:593.120000pt;}
.y25{bottom:597.280000pt;}
.y81{bottom:600.800000pt;}
.y9f{bottom:601.440000pt;}
.ybe{bottom:608.480000pt;}
.y5a{bottom:610.080000pt;}
.y24{bottom:612.640000pt;}
.yda{bottom:616.160000pt;}
.y80{bottom:623.866667pt;}
.y9e{bottom:624.506667pt;}
.y59{bottom:627.706667pt;}
.y23{bottom:628.026667pt;}
.ybd{bottom:631.546667pt;}
.yd9{bottom:639.226667pt;}
.y22{bottom:643.386667pt;}
.y58{bottom:645.306667pt;}
.y7f{bottom:646.906667pt;}
.y9d{bottom:647.546667pt;}
.ybc{bottom:654.586667pt;}
.y21{bottom:658.746667pt;}
.yd8{bottom:662.266667pt;}
.y57{bottom:662.906667pt;}
.y7e{bottom:669.946667pt;}
.y9c{bottom:670.586667pt;}
.y20{bottom:674.106667pt;}
.ybb{bottom:677.626667pt;}
.y56{bottom:680.506667pt;}
.yd7{bottom:685.306667pt;}
.y1f{bottom:689.466667pt;}
.y7d{bottom:692.986667pt;}
.yef{bottom:693.306667pt;}
.y9b{bottom:693.626667pt;}
.y55{bottom:698.106667pt;}
.yba{bottom:700.346667pt;}
.yd6{bottom:708.026667pt;}
.y1e{bottom:708.346667pt;}
.y54{bottom:715.706667pt;}
.y9a{bottom:716.346667pt;}
.yee{bottom:716.666667pt;}
.y10c{bottom:717.306667pt;}
.yd5{bottom:731.066667pt;}
.yb9{bottom:731.706667pt;}
.y53{bottom:733.306667pt;}
.y7c{bottom:738.786667pt;}
.y1d{bottom:739.106667pt;}
.y99{bottom:739.426667pt;}
.y10b{bottom:740.386667pt;}
.yb8{bottom:747.106667pt;}
.y52{bottom:750.946667pt;}
.yd4{bottom:754.146667pt;}
.y7b{bottom:761.826667pt;}
.y1c{bottom:762.146667pt;}
.y98{bottom:762.466667pt;}
.y10a{bottom:763.426667pt;}
.y51{bottom:768.546667pt;}
.yb7{bottom:777.826667pt;}
.y109{bottom:778.786667pt;}
.y1b{bottom:785.186667pt;}
.y97{bottom:785.506667pt;}
.y50{bottom:786.146667pt;}
.y7a{bottom:793.186667pt;}
.y108{bottom:794.146667pt;}
.y1a{bottom:800.546667pt;}
.yd3{bottom:800.866667pt;}
.y4f{bottom:804.066667pt;}
.y79{bottom:808.546667pt;}
.y19{bottom:815.906667pt;}
.yd2{bottom:816.226667pt;}
.y107{bottom:817.186667pt;}
.y4e{bottom:821.666667pt;}
.y78{bottom:823.906667pt;}
.y18{bottom:831.266667pt;}
.y96{bottom:831.586667pt;}
.y4d{bottom:839.266667pt;}
.y106{bottom:840.226667pt;}
.y17{bottom:854.333333pt;}
.y77{bottom:854.653333pt;}
.y4c{bottom:856.893333pt;}
.y105{bottom:857.853333pt;}
.y4b{bottom:874.493333pt;}
.y104{bottom:875.453333pt;}
.y16{bottom:877.373333pt;}
.y76{bottom:877.693333pt;}
.y4a{bottom:892.093333pt;}
.y103{bottom:893.053333pt;}
.y15{bottom:894.333333pt;}
.y75{bottom:900.413333pt;}
.y102{bottom:908.413333pt;}
.y49{bottom:909.693333pt;}
.y9{bottom:917.053333pt;}
.y74{bottom:923.453333pt;}
.y101{bottom:923.773333pt;}
.y48{bottom:927.293333pt;}
.y8{bottom:932.413333pt;}
.y100{bottom:941.373333pt;}
.y47{bottom:944.893333pt;}
.y73{bottom:946.493333pt;}
.y7{bottom:947.773333pt;}
.yff{bottom:960.293333pt;}
.y46{bottom:962.533333pt;}
.y6{bottom:963.173333pt;}
.y72{bottom:969.573333pt;}
.yfe{bottom:977.893333pt;}
.y11{bottom:979.493333pt;}
.y45{bottom:980.453333pt;}
.y5{bottom:981.733333pt;}
.y71{bottom:992.613333pt;}
.yfd{bottom:996.773333pt;}
.y44{bottom:998.053333pt;}
.y4{bottom:1002.853333pt;}
.yfc{bottom:1014.373333pt;}
.y43{bottom:1015.653333pt;}
.y3{bottom:1023.653333pt;}
.y41{bottom:1037.413333pt;}
.y2{bottom:1044.773333pt;}
.y40{bottom:1049.893333pt;}
.y1{bottom:1065.893333pt;}
.y3f{bottom:1068.453333pt;}
.h4{height:7.680000pt;}
.hd{height:13.792000pt;}
.h6{height:28.832000pt;}
.hc{height:36.408750pt;}
.h7{height:40.090000pt;}
.h5{height:42.678750pt;}
.h3{height:47.171250pt;}
.hb{height:47.748750pt;}
.h10{height:49.524375pt;}
.hf{height:51.663750pt;}
.he{height:56.156250pt;}
.h2{height:56.843750pt;}
.ha{height:76.170625pt;}
.h9{height:84.711875pt;}
.h8{height:96.032000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:161.666667pt;}
.w9{width:296.453333pt;}
.w7{width:301.573333pt;}
.w6{width:303.493333pt;}
.w8{width:308.613333pt;}
.w3{width:443.386667pt;}
.w5{width:503.226667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3{left:7.680000pt;}
.x9{left:9.600000pt;}
.x1{left:94.431988pt;}
.xa{left:96.031988pt;}
.x10{left:106.591988pt;}
.x1b{left:109.471988pt;}
.x5{left:113.661333pt;}
.x1d{left:117.183988pt;}
.x17{left:118.463988pt;}
.x15{left:121.023988pt;}
.x1a{left:123.263988pt;}
.x14{left:124.863988pt;}
.x7{left:130.306667pt;}
.x18{left:132.223988pt;}
.x19{left:141.506655pt;}
.x1c{left:142.466655pt;}
.x16{left:151.106655pt;}
.xd{left:197.853322pt;}
.x8{left:221.533333pt;}
.xf{left:229.853322pt;}
.x13{left:265.093333pt;}
.x6{left:274.368000pt;}
.xe{left:299.973322pt;}
.xc{left:316.613322pt;}
.xb{left:363.999988pt;}
.x2{left:396.959988pt;}
.x11{left:397.920000pt;}
.x12{left:403.040000pt;}
.x4{left:537.826667pt;}
}




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