
    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_cdc8737bb4b549f029ab6f6f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.109375;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_8951d7fc8525bb96fdb2ecd6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.030762;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_bd400ae6603d9fbda584cc38.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_ba9c422073721289df298912.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.109375;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_6711ad4df408f6821998ce81.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.037598;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_6193fc93719873dbca485474.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-2.064000px;}
.ls1c{letter-spacing:-2.016000px;}
.lsf{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.624000px;}
.ls11{letter-spacing:-0.573000px;}
.ls2{letter-spacing:-0.406200px;}
.ls6{letter-spacing:-0.380400px;}
.ls8{letter-spacing:-0.339600px;}
.lsd{letter-spacing:-0.262200px;}
.ls3{letter-spacing:-0.164400px;}
.ls12{letter-spacing:-0.097800px;}
.ls17{letter-spacing:-0.057600px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.057600px;}
.ls4{letter-spacing:0.115200px;}
.ls1e{letter-spacing:0.120000px;}
.ls1f{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.253200px;}
.lsa{letter-spacing:0.302400px;}
.ls14{letter-spacing:0.466800px;}
.ls16{letter-spacing:0.564600px;}
.ls1d{letter-spacing:0.613440px;}
.ls5{letter-spacing:0.702000px;}
.ls1{letter-spacing:0.768000px;}
.lsc{letter-spacing:0.816000px;}
.ls15{letter-spacing:0.864000px;}
.ls13{letter-spacing:0.878880px;}
.ls19{letter-spacing:0.936000px;}
.ls7{letter-spacing:1.062000px;}
.ls18{letter-spacing:1.176000px;}
.ls1b{letter-spacing:1.342080px;}
.lsb{letter-spacing:69.545280px;}
.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;}
}
.wsc{word-spacing:-15.768000px;}
.wsd{word-spacing:-15.468600px;}
.wsb{word-spacing:-15.370800px;}
.wsf{word-spacing:-15.157200px;}
.ws6{word-spacing:-14.904000px;}
.wse{word-spacing:-14.846400px;}
.wsa{word-spacing:-14.806200px;}
.ws9{word-spacing:-14.331000px;}
.ws8{word-spacing:-14.244000px;}
.ws4{word-spacing:-13.608000px;}
.ws5{word-spacing:-13.268400px;}
.ws2{word-spacing:-10.692000px;}
.ws3{word-spacing:-10.527600px;}
.ws1{word-spacing:-9.396000px;}
.ws0{word-spacing:-8.989800px;}
.ws7{word-spacing:0.000000px;}
._b{margin-left:-5.314560px;}
._4{margin-left:-4.187040px;}
._5{margin-left:-3.119520px;}
._0{margin-left:-1.252800px;}
._1{width:1.586880px;}
._3{width:2.704800px;}
._6{width:3.869760px;}
._7{width:4.882560px;}
._2{width:6.018480px;}
._8{width:7.104960px;}
._9{width:8.833440px;}
._a{width:10.180320px;}
._13{width:11.459520px;}
._10{width:12.525120px;}
._f{width:13.849920px;}
._11{width:16.027200px;}
._e{width:17.395200px;}
._c{width:18.480960px;}
._d{width:19.612800px;}
._12{width:21.061440px;}
._14{width:22.325760px;}
._15{width:24.387840px;}
._1d{width:35.015040px;}
._1c{width:36.034560px;}
._19{width:58.680000px;}
._1a{width:165.931200px;}
._1b{width:167.117760px;}
._1e{width:346.599480px;}
._16{width:354.913920px;}
._1f{width:391.147200px;}
._17{width:429.500160px;}
._20{width:443.211840px;}
._18{width:467.389440px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs3{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y101{bottom:5.400000px;}
.y102{bottom:9.360000px;}
.y106{bottom:9.390000px;}
.y104{bottom:9.720000px;}
.y3{bottom:46.116000px;}
.yad{bottom:92.196000px;}
.ye2{bottom:94.716000px;}
.yee{bottom:97.596000px;}
.y8f{bottom:100.836000px;}
.yae{bottom:105.156000px;}
.yc0{bottom:105.516000px;}
.y3f{bottom:106.236000px;}
.yac{bottom:111.276000px;}
.ye1{bottom:113.796000px;}
.yed{bottom:116.316000px;}
.y8e{bottom:119.556000px;}
.y73{bottom:123.876000px;}
.yff{bottom:124.236000px;}
.ybf{bottom:124.596000px;}
.y3e{bottom:124.956000px;}
.yab{bottom:129.996000px;}
.ye0{bottom:132.516000px;}
.yec{bottom:135.396000px;}
.y8d{bottom:138.636000px;}
.y72{bottom:142.956000px;}
.ybe{bottom:143.316000px;}
.y3d{bottom:144.036000px;}
.yaa{bottom:149.112000px;}
.ydf{bottom:151.635000px;}
.yeb{bottom:154.155000px;}
.y8c{bottom:157.395000px;}
.y71{bottom:161.715000px;}
.yfe{bottom:162.075000px;}
.ybd{bottom:162.435000px;}
.y3c{bottom:162.795000px;}
.ya9{bottom:167.835000px;}
.yde{bottom:170.355000px;}
.yea{bottom:173.235000px;}
.y8b{bottom:176.475000px;}
.y70{bottom:180.795000px;}
.ybc{bottom:181.515000px;}
.y3b{bottom:181.875000px;}
.ya8{bottom:186.915000px;}
.ydd{bottom:189.435000px;}
.ye9{bottom:191.955000px;}
.y8a{bottom:195.195000px;}
.y6f{bottom:199.515000px;}
.yfd{bottom:199.875000px;}
.ybb{bottom:200.235000px;}
.y3a{bottom:200.595000px;}
.ya7{bottom:205.995000px;}
.ydc{bottom:208.155000px;}
.ye8{bottom:211.035000px;}
.y89{bottom:214.275000px;}
.y6e{bottom:218.595000px;}
.yba{bottom:219.315000px;}
.y39{bottom:219.675000px;}
.ya6{bottom:224.715000px;}
.ydb{bottom:227.235000px;}
.ye7{bottom:229.755000px;}
.y88{bottom:232.995000px;}
.y6d{bottom:237.675000px;}
.yb9{bottom:238.035000px;}
.y38{bottom:238.395000px;}
.ya5{bottom:243.795000px;}
.yda{bottom:245.955000px;}
.ye6{bottom:248.835000px;}
.y87{bottom:252.075000px;}
.y6c{bottom:256.395000px;}
.yb8{bottom:257.115000px;}
.y37{bottom:257.475000px;}
.ya4{bottom:262.515000px;}
.yd9{bottom:265.035000px;}
.ye5{bottom:267.555000px;}
.y86{bottom:270.795000px;}
.y6b{bottom:275.475000px;}
.yb7{bottom:275.835000px;}
.y36{bottom:276.195000px;}
.ya3{bottom:281.625000px;}
.yd8{bottom:283.785000px;}
.ye4{bottom:286.665000px;}
.y85{bottom:289.905000px;}
.y6a{bottom:294.225000px;}
.yb6{bottom:294.945000px;}
.y35{bottom:295.305000px;}
.ya2{bottom:300.345000px;}
.yd7{bottom:302.865000px;}
.ye3{bottom:304.305000px;}
.y84{bottom:308.625000px;}
.y69{bottom:313.305000px;}
.yb5{bottom:313.665000px;}
.y34{bottom:314.025000px;}
.ya1{bottom:319.425000px;}
.yd6{bottom:321.585000px;}
.y83{bottom:327.705000px;}
.y68{bottom:332.025000px;}
.yb4{bottom:332.745000px;}
.y33{bottom:333.105000px;}
.ya0{bottom:338.145000px;}
.yd5{bottom:340.665000px;}
.y82{bottom:346.785000px;}
.y67{bottom:351.105000px;}
.yb3{bottom:351.465000px;}
.y32{bottom:351.825000px;}
.y9f{bottom:357.225000px;}
.yd4{bottom:359.385000px;}
.y81{bottom:365.505000px;}
.y66{bottom:369.825000px;}
.yfc{bottom:370.185000px;}
.yb2{bottom:370.545000px;}
.y31{bottom:370.905000px;}
.y9e{bottom:375.945000px;}
.yd3{bottom:378.465000px;}
.y80{bottom:384.585000px;}
.y65{bottom:388.905000px;}
.yb1{bottom:389.265000px;}
.y30{bottom:389.625000px;}
.y9d{bottom:395.025000px;}
.yd2{bottom:397.185000px;}
.y7f{bottom:403.305000px;}
.yb0{bottom:406.905000px;}
.y64{bottom:407.625000px;}
.yfb{bottom:407.985000px;}
.y2f{bottom:408.705000px;}
.y9c{bottom:413.790000px;}
.yd1{bottom:416.310000px;}
.yaf{bottom:422.070000px;}
.y7e{bottom:422.430000px;}
.y63{bottom:426.750000px;}
.y2e{bottom:427.470000px;}
.y9b{bottom:432.870000px;}
.yd0{bottom:435.030000px;}
.y7d{bottom:441.150000px;}
.y62{bottom:445.470000px;}
.yfa{bottom:445.830000px;}
.y2d{bottom:446.550000px;}
.y9a{bottom:451.590000px;}
.ycf{bottom:454.110000px;}
.y7c{bottom:460.230000px;}
.y61{bottom:464.550000px;}
.y2c{bottom:465.270000px;}
.y99{bottom:470.670000px;}
.yce{bottom:473.190000px;}
.y7b{bottom:478.950000px;}
.y60{bottom:483.270000px;}
.yf9{bottom:483.630000px;}
.y2b{bottom:484.350000px;}
.y98{bottom:489.390000px;}
.ycd{bottom:491.910000px;}
.y7a{bottom:498.030000px;}
.y5f{bottom:502.350000px;}
.y2a{bottom:503.430000px;}
.y97{bottom:508.470000px;}
.ycc{bottom:510.990000px;}
.y79{bottom:516.750000px;}
.y5e{bottom:521.070000px;}
.yf8{bottom:521.430000px;}
.y29{bottom:521.790000px;}
.y96{bottom:527.190000px;}
.ycb{bottom:529.710000px;}
.y105{bottom:534.750000px;}
.y78{bottom:535.830000px;}
.y28{bottom:539.070000px;}
.y5d{bottom:540.150000px;}
.y95{bottom:546.300000px;}
.yca{bottom:548.820000px;}
.y103{bottom:553.500000px;}
.y77{bottom:554.580000px;}
.y27{bottom:556.380000px;}
.y5c{bottom:558.900000px;}
.yf7{bottom:559.260000px;}
.y94{bottom:565.380000px;}
.yc9{bottom:567.540000px;}
.y100{bottom:572.580000px;}
.y26{bottom:573.300000px;}
.y76{bottom:575.820000px;}
.y5b{bottom:577.980000px;}
.y93{bottom:582.660000px;}
.yc8{bottom:586.620000px;}
.y25{bottom:591.300000px;}
.y75{bottom:594.540000px;}
.y92{bottom:596.340000px;}
.y5a{bottom:596.700000px;}
.yf6{bottom:597.060000px;}
.yc7{bottom:605.340000px;}
.y24{bottom:608.580000px;}
.y91{bottom:610.380000px;}
.y74{bottom:613.620000px;}
.y59{bottom:615.780000px;}
.yc6{bottom:624.420000px;}
.y90{bottom:625.500000px;}
.y23{bottom:625.860000px;}
.y58{bottom:634.860000px;}
.y22{bottom:642.780000px;}
.yc5{bottom:643.140000px;}
.y57{bottom:653.580000px;}
.y21{bottom:660.060000px;}
.yc4{bottom:662.220000px;}
.y56{bottom:672.660000px;}
.y20{bottom:677.370000px;}
.yc3{bottom:680.970000px;}
.y55{bottom:691.410000px;}
.y1f{bottom:694.650000px;}
.yc2{bottom:698.610000px;}
.y54{bottom:710.490000px;}
.y1e{bottom:711.570000px;}
.yc1{bottom:713.730000px;}
.y1d{bottom:728.850000px;}
.y53{bottom:729.210000px;}
.yf5{bottom:729.570000px;}
.y1c{bottom:746.130000px;}
.y52{bottom:748.290000px;}
.y1b{bottom:763.410000px;}
.y51{bottom:767.010000px;}
.yf4{bottom:767.370000px;}
.y1a{bottom:780.330000px;}
.y50{bottom:786.090000px;}
.y19{bottom:797.610000px;}
.y4f{bottom:804.810000px;}
.yf3{bottom:805.215000px;}
.y18{bottom:814.935000px;}
.y4e{bottom:823.935000px;}
.y17{bottom:832.215000px;}
.y4d{bottom:842.655000px;}
.yf2{bottom:843.015000px;}
.y16{bottom:849.135000px;}
.y4c{bottom:861.735000px;}
.y15{bottom:866.415000px;}
.y4b{bottom:880.455000px;}
.yf1{bottom:880.815000px;}
.y14{bottom:883.695000px;}
.y4a{bottom:899.535000px;}
.y13{bottom:900.975000px;}
.yf0{bottom:917.175000px;}
.y12{bottom:917.895000px;}
.y49{bottom:918.255000px;}
.yef{bottom:932.295000px;}
.y11{bottom:935.175000px;}
.y48{bottom:937.365000px;}
.y10{bottom:952.485000px;}
.y47{bottom:956.085000px;}
.yf{bottom:969.765000px;}
.y46{bottom:975.165000px;}
.ye{bottom:986.685000px;}
.y45{bottom:994.245000px;}
.yd{bottom:1003.965000px;}
.y44{bottom:1012.965000px;}
.yc{bottom:1021.245000px;}
.y43{bottom:1032.045000px;}
.yb{bottom:1038.525000px;}
.y42{bottom:1050.765000px;}
.ya{bottom:1055.445000px;}
.y41{bottom:1069.890000px;}
.y9{bottom:1072.770000px;}
.y40{bottom:1088.610000px;}
.y8{bottom:1090.050000px;}
.y7{bottom:1107.690000px;}
.y6{bottom:1126.410000px;}
.y5{bottom:1145.490000px;}
.y4{bottom:1164.210000px;}
.y2{bottom:1199.490000px;}
.y1{bottom:1211.760000px;}
.h8{height:18.720000px;}
.ha{height:18.756000px;}
.h9{height:19.080000px;}
.h3{height:38.308359px;}
.h2{height:41.535703px;}
.h6{height:45.360000px;}
.h5{height:48.756094px;}
.h4{height:49.680000px;}
.h7{height:53.399531px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:0.719970px;}
.w6{width:0.720060px;}
.w4{width:156.315000px;}
.w5{width:221.835000px;}
.w3{width:343.590000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1d{left:2.880000px;}
.x17{left:3.960000px;}
.x1b{left:6.840000px;}
.x1c{left:80.679000px;}
.x1{left:84.995987px;}
.x2{left:92.195987px;}
.xe{left:94.355987px;}
.x1a{left:101.919000px;}
.x8{left:106.235987px;}
.x15{left:114.879000px;}
.x13{left:134.351987px;}
.x11{left:174.674987px;}
.xf{left:228.344987px;}
.x5{left:240.584987px;}
.x6{left:248.864987px;}
.xd{left:260.384987px;}
.x10{left:270.824987px;}
.x4{left:310.424987px;}
.x3{left:381.029987px;}
.x16{left:428.580000px;}
.x7{left:446.579987px;}
.x9{left:457.379987px;}
.xa{left:478.619987px;}
.xb{left:505.649987px;}
.x12{left:536.969987px;}
.x14{left:548.489987px;}
.x18{left:584.895000px;}
.xc{left:643.214987px;}
.x19{left:806.730000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.834667pt;}
.ls1c{letter-spacing:-1.792000pt;}
.lsf{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.554667pt;}
.ls11{letter-spacing:-0.509333pt;}
.ls2{letter-spacing:-0.361067pt;}
.ls6{letter-spacing:-0.338133pt;}
.ls8{letter-spacing:-0.301867pt;}
.lsd{letter-spacing:-0.233067pt;}
.ls3{letter-spacing:-0.146133pt;}
.ls12{letter-spacing:-0.086933pt;}
.ls17{letter-spacing:-0.051200pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.051200pt;}
.ls4{letter-spacing:0.102400pt;}
.ls1e{letter-spacing:0.106667pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.225067pt;}
.lsa{letter-spacing:0.268800pt;}
.ls14{letter-spacing:0.414933pt;}
.ls16{letter-spacing:0.501867pt;}
.ls1d{letter-spacing:0.545280pt;}
.ls5{letter-spacing:0.624000pt;}
.ls1{letter-spacing:0.682667pt;}
.lsc{letter-spacing:0.725333pt;}
.ls15{letter-spacing:0.768000pt;}
.ls13{letter-spacing:0.781227pt;}
.ls19{letter-spacing:0.832000pt;}
.ls7{letter-spacing:0.944000pt;}
.ls18{letter-spacing:1.045333pt;}
.ls1b{letter-spacing:1.192960pt;}
.lsb{letter-spacing:61.818027pt;}
.wsc{word-spacing:-14.016000pt;}
.wsd{word-spacing:-13.749867pt;}
.wsb{word-spacing:-13.662933pt;}
.wsf{word-spacing:-13.473067pt;}
.ws6{word-spacing:-13.248000pt;}
.wse{word-spacing:-13.196800pt;}
.wsa{word-spacing:-13.161067pt;}
.ws9{word-spacing:-12.738667pt;}
.ws8{word-spacing:-12.661333pt;}
.ws4{word-spacing:-12.096000pt;}
.ws5{word-spacing:-11.794133pt;}
.ws2{word-spacing:-9.504000pt;}
.ws3{word-spacing:-9.357867pt;}
.ws1{word-spacing:-8.352000pt;}
.ws0{word-spacing:-7.990933pt;}
.ws7{word-spacing:0.000000pt;}
._b{margin-left:-4.724053pt;}
._4{margin-left:-3.721813pt;}
._5{margin-left:-2.772907pt;}
._0{margin-left:-1.113600pt;}
._1{width:1.410560pt;}
._3{width:2.404267pt;}
._6{width:3.439787pt;}
._7{width:4.340053pt;}
._2{width:5.349760pt;}
._8{width:6.315520pt;}
._9{width:7.851947pt;}
._a{width:9.049173pt;}
._13{width:10.186240pt;}
._10{width:11.133440pt;}
._f{width:12.311040pt;}
._11{width:14.246400pt;}
._e{width:15.462400pt;}
._c{width:16.427520pt;}
._d{width:17.433600pt;}
._12{width:18.721280pt;}
._14{width:19.845120pt;}
._15{width:21.678080pt;}
._1d{width:31.124480pt;}
._1c{width:32.030720pt;}
._19{width:52.160000pt;}
._1a{width:147.494400pt;}
._1b{width:148.549120pt;}
._1e{width:308.088427pt;}
._16{width:315.479040pt;}
._1f{width:347.686400pt;}
._17{width:381.777920pt;}
._20{width:393.966080pt;}
._18{width:415.457280pt;}
.fs0{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs3{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y101{bottom:4.800000pt;}
.y102{bottom:8.320000pt;}
.y106{bottom:8.346667pt;}
.y104{bottom:8.640000pt;}
.y3{bottom:40.992000pt;}
.yad{bottom:81.952000pt;}
.ye2{bottom:84.192000pt;}
.yee{bottom:86.752000pt;}
.y8f{bottom:89.632000pt;}
.yae{bottom:93.472000pt;}
.yc0{bottom:93.792000pt;}
.y3f{bottom:94.432000pt;}
.yac{bottom:98.912000pt;}
.ye1{bottom:101.152000pt;}
.yed{bottom:103.392000pt;}
.y8e{bottom:106.272000pt;}
.y73{bottom:110.112000pt;}
.yff{bottom:110.432000pt;}
.ybf{bottom:110.752000pt;}
.y3e{bottom:111.072000pt;}
.yab{bottom:115.552000pt;}
.ye0{bottom:117.792000pt;}
.yec{bottom:120.352000pt;}
.y8d{bottom:123.232000pt;}
.y72{bottom:127.072000pt;}
.ybe{bottom:127.392000pt;}
.y3d{bottom:128.032000pt;}
.yaa{bottom:132.544000pt;}
.ydf{bottom:134.786667pt;}
.yeb{bottom:137.026667pt;}
.y8c{bottom:139.906667pt;}
.y71{bottom:143.746667pt;}
.yfe{bottom:144.066667pt;}
.ybd{bottom:144.386667pt;}
.y3c{bottom:144.706667pt;}
.ya9{bottom:149.186667pt;}
.yde{bottom:151.426667pt;}
.yea{bottom:153.986667pt;}
.y8b{bottom:156.866667pt;}
.y70{bottom:160.706667pt;}
.ybc{bottom:161.346667pt;}
.y3b{bottom:161.666667pt;}
.ya8{bottom:166.146667pt;}
.ydd{bottom:168.386667pt;}
.ye9{bottom:170.626667pt;}
.y8a{bottom:173.506667pt;}
.y6f{bottom:177.346667pt;}
.yfd{bottom:177.666667pt;}
.ybb{bottom:177.986667pt;}
.y3a{bottom:178.306667pt;}
.ya7{bottom:183.106667pt;}
.ydc{bottom:185.026667pt;}
.ye8{bottom:187.586667pt;}
.y89{bottom:190.466667pt;}
.y6e{bottom:194.306667pt;}
.yba{bottom:194.946667pt;}
.y39{bottom:195.266667pt;}
.ya6{bottom:199.746667pt;}
.ydb{bottom:201.986667pt;}
.ye7{bottom:204.226667pt;}
.y88{bottom:207.106667pt;}
.y6d{bottom:211.266667pt;}
.yb9{bottom:211.586667pt;}
.y38{bottom:211.906667pt;}
.ya5{bottom:216.706667pt;}
.yda{bottom:218.626667pt;}
.ye6{bottom:221.186667pt;}
.y87{bottom:224.066667pt;}
.y6c{bottom:227.906667pt;}
.yb8{bottom:228.546667pt;}
.y37{bottom:228.866667pt;}
.ya4{bottom:233.346667pt;}
.yd9{bottom:235.586667pt;}
.ye5{bottom:237.826667pt;}
.y86{bottom:240.706667pt;}
.y6b{bottom:244.866667pt;}
.yb7{bottom:245.186667pt;}
.y36{bottom:245.506667pt;}
.ya3{bottom:250.333333pt;}
.yd8{bottom:252.253333pt;}
.ye4{bottom:254.813333pt;}
.y85{bottom:257.693333pt;}
.y6a{bottom:261.533333pt;}
.yb6{bottom:262.173333pt;}
.y35{bottom:262.493333pt;}
.ya2{bottom:266.973333pt;}
.yd7{bottom:269.213333pt;}
.ye3{bottom:270.493333pt;}
.y84{bottom:274.333333pt;}
.y69{bottom:278.493333pt;}
.yb5{bottom:278.813333pt;}
.y34{bottom:279.133333pt;}
.ya1{bottom:283.933333pt;}
.yd6{bottom:285.853333pt;}
.y83{bottom:291.293333pt;}
.y68{bottom:295.133333pt;}
.yb4{bottom:295.773333pt;}
.y33{bottom:296.093333pt;}
.ya0{bottom:300.573333pt;}
.yd5{bottom:302.813333pt;}
.y82{bottom:308.253333pt;}
.y67{bottom:312.093333pt;}
.yb3{bottom:312.413333pt;}
.y32{bottom:312.733333pt;}
.y9f{bottom:317.533333pt;}
.yd4{bottom:319.453333pt;}
.y81{bottom:324.893333pt;}
.y66{bottom:328.733333pt;}
.yfc{bottom:329.053333pt;}
.yb2{bottom:329.373333pt;}
.y31{bottom:329.693333pt;}
.y9e{bottom:334.173333pt;}
.yd3{bottom:336.413333pt;}
.y80{bottom:341.853333pt;}
.y65{bottom:345.693333pt;}
.yb1{bottom:346.013333pt;}
.y30{bottom:346.333333pt;}
.y9d{bottom:351.133333pt;}
.yd2{bottom:353.053333pt;}
.y7f{bottom:358.493333pt;}
.yb0{bottom:361.693333pt;}
.y64{bottom:362.333333pt;}
.yfb{bottom:362.653333pt;}
.y2f{bottom:363.293333pt;}
.y9c{bottom:367.813333pt;}
.yd1{bottom:370.053333pt;}
.yaf{bottom:375.173333pt;}
.y7e{bottom:375.493333pt;}
.y63{bottom:379.333333pt;}
.y2e{bottom:379.973333pt;}
.y9b{bottom:384.773333pt;}
.yd0{bottom:386.693333pt;}
.y7d{bottom:392.133333pt;}
.y62{bottom:395.973333pt;}
.yfa{bottom:396.293333pt;}
.y2d{bottom:396.933333pt;}
.y9a{bottom:401.413333pt;}
.ycf{bottom:403.653333pt;}
.y7c{bottom:409.093333pt;}
.y61{bottom:412.933333pt;}
.y2c{bottom:413.573333pt;}
.y99{bottom:418.373333pt;}
.yce{bottom:420.613333pt;}
.y7b{bottom:425.733333pt;}
.y60{bottom:429.573333pt;}
.yf9{bottom:429.893333pt;}
.y2b{bottom:430.533333pt;}
.y98{bottom:435.013333pt;}
.ycd{bottom:437.253333pt;}
.y7a{bottom:442.693333pt;}
.y5f{bottom:446.533333pt;}
.y2a{bottom:447.493333pt;}
.y97{bottom:451.973333pt;}
.ycc{bottom:454.213333pt;}
.y79{bottom:459.333333pt;}
.y5e{bottom:463.173333pt;}
.yf8{bottom:463.493333pt;}
.y29{bottom:463.813333pt;}
.y96{bottom:468.613333pt;}
.ycb{bottom:470.853333pt;}
.y105{bottom:475.333333pt;}
.y78{bottom:476.293333pt;}
.y28{bottom:479.173333pt;}
.y5d{bottom:480.133333pt;}
.y95{bottom:485.600000pt;}
.yca{bottom:487.840000pt;}
.y103{bottom:492.000000pt;}
.y77{bottom:492.960000pt;}
.y27{bottom:494.560000pt;}
.y5c{bottom:496.800000pt;}
.yf7{bottom:497.120000pt;}
.y94{bottom:502.560000pt;}
.yc9{bottom:504.480000pt;}
.y100{bottom:508.960000pt;}
.y26{bottom:509.600000pt;}
.y76{bottom:511.840000pt;}
.y5b{bottom:513.760000pt;}
.y93{bottom:517.920000pt;}
.yc8{bottom:521.440000pt;}
.y25{bottom:525.600000pt;}
.y75{bottom:528.480000pt;}
.y92{bottom:530.080000pt;}
.y5a{bottom:530.400000pt;}
.yf6{bottom:530.720000pt;}
.yc7{bottom:538.080000pt;}
.y24{bottom:540.960000pt;}
.y91{bottom:542.560000pt;}
.y74{bottom:545.440000pt;}
.y59{bottom:547.360000pt;}
.yc6{bottom:555.040000pt;}
.y90{bottom:556.000000pt;}
.y23{bottom:556.320000pt;}
.y58{bottom:564.320000pt;}
.y22{bottom:571.360000pt;}
.yc5{bottom:571.680000pt;}
.y57{bottom:580.960000pt;}
.y21{bottom:586.720000pt;}
.yc4{bottom:588.640000pt;}
.y56{bottom:597.920000pt;}
.y20{bottom:602.106667pt;}
.yc3{bottom:605.306667pt;}
.y55{bottom:614.586667pt;}
.y1f{bottom:617.466667pt;}
.yc2{bottom:620.986667pt;}
.y54{bottom:631.546667pt;}
.y1e{bottom:632.506667pt;}
.yc1{bottom:634.426667pt;}
.y1d{bottom:647.866667pt;}
.y53{bottom:648.186667pt;}
.yf5{bottom:648.506667pt;}
.y1c{bottom:663.226667pt;}
.y52{bottom:665.146667pt;}
.y1b{bottom:678.586667pt;}
.y51{bottom:681.786667pt;}
.yf4{bottom:682.106667pt;}
.y1a{bottom:693.626667pt;}
.y50{bottom:698.746667pt;}
.y19{bottom:708.986667pt;}
.y4f{bottom:715.386667pt;}
.yf3{bottom:715.746667pt;}
.y18{bottom:724.386667pt;}
.y4e{bottom:732.386667pt;}
.y17{bottom:739.746667pt;}
.y4d{bottom:749.026667pt;}
.yf2{bottom:749.346667pt;}
.y16{bottom:754.786667pt;}
.y4c{bottom:765.986667pt;}
.y15{bottom:770.146667pt;}
.y4b{bottom:782.626667pt;}
.yf1{bottom:782.946667pt;}
.y14{bottom:785.506667pt;}
.y4a{bottom:799.586667pt;}
.y13{bottom:800.866667pt;}
.yf0{bottom:815.266667pt;}
.y12{bottom:815.906667pt;}
.y49{bottom:816.226667pt;}
.yef{bottom:828.706667pt;}
.y11{bottom:831.266667pt;}
.y48{bottom:833.213333pt;}
.y10{bottom:846.653333pt;}
.y47{bottom:849.853333pt;}
.yf{bottom:862.013333pt;}
.y46{bottom:866.813333pt;}
.ye{bottom:877.053333pt;}
.y45{bottom:883.773333pt;}
.yd{bottom:892.413333pt;}
.y44{bottom:900.413333pt;}
.yc{bottom:907.773333pt;}
.y43{bottom:917.373333pt;}
.yb{bottom:923.133333pt;}
.y42{bottom:934.013333pt;}
.ya{bottom:938.173333pt;}
.y41{bottom:951.013333pt;}
.y9{bottom:953.573333pt;}
.y40{bottom:967.653333pt;}
.y8{bottom:968.933333pt;}
.y7{bottom:984.613333pt;}
.y6{bottom:1001.253333pt;}
.y5{bottom:1018.213333pt;}
.y4{bottom:1034.853333pt;}
.y2{bottom:1066.213333pt;}
.y1{bottom:1077.120000pt;}
.h8{height:16.640000pt;}
.ha{height:16.672000pt;}
.h9{height:16.960000pt;}
.h3{height:34.051875pt;}
.h2{height:36.920625pt;}
.h6{height:40.320000pt;}
.h5{height:43.338750pt;}
.h4{height:44.160000pt;}
.h7{height:47.466250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:0.639973pt;}
.w6{width:0.640053pt;}
.w4{width:138.946667pt;}
.w5{width:197.186667pt;}
.w3{width:305.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1d{left:2.560000pt;}
.x17{left:3.520000pt;}
.x1b{left:6.080000pt;}
.x1c{left:71.714667pt;}
.x1{left:75.551988pt;}
.x2{left:81.951988pt;}
.xe{left:83.871988pt;}
.x1a{left:90.594667pt;}
.x8{left:94.431988pt;}
.x15{left:102.114667pt;}
.x13{left:119.423988pt;}
.x11{left:155.266655pt;}
.xf{left:202.973322pt;}
.x5{left:213.853322pt;}
.x6{left:221.213322pt;}
.xd{left:231.453322pt;}
.x10{left:240.733322pt;}
.x4{left:275.933322pt;}
.x3{left:338.693322pt;}
.x16{left:380.960000pt;}
.x7{left:396.959988pt;}
.x9{left:406.559988pt;}
.xa{left:425.439988pt;}
.xb{left:449.466655pt;}
.x12{left:477.306655pt;}
.x14{left:487.546655pt;}
.x18{left:519.906667pt;}
.xc{left:571.746655pt;}
.x19{left:717.093333pt;}
}




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