
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6ac4db204f8aa2be79ef8f85.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_6ac2514e158f6b9bbe7a5953.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_64ef5982a7856f2247ca90a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_3706a0ffed0f2e61730fba16.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937988;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_23dda9f4b4db0a409d542060.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_bd7e5326924a49ad4dc9bf9c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9cb331bbcbc82e7c5653cd83.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_88f5b9b2e56d41118c5a49b8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.050293;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_b82af7e56bc0ef52dbeefbed.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.050293;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);}
.v1{vertical-align:-62.640000px;}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-5.220000px;}
.ls4{letter-spacing:-0.900000px;}
.ls18{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028080px;}
.lsd{letter-spacing:0.037440px;}
.ls9{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:4.140000px;}
.ls13{letter-spacing:11.340000px;}
.ls19{letter-spacing:12.060000px;}
.ls17{letter-spacing:27.900000px;}
.ls16{letter-spacing:28.620000px;}
.ls15{letter-spacing:37.980000px;}
.ls14{letter-spacing:38.700000px;}
.lse{letter-spacing:45.180000px;}
.ls12{letter-spacing:58.860000px;}
.ls11{letter-spacing:59.004000px;}
.ls10{letter-spacing:77.580000px;}
.lsf{letter-spacing:77.724000px;}
.ls5{letter-spacing:191.484000px;}
.ls0{letter-spacing:1466.369760px;}
.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:-21.420000px;}
.ws1{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws3{word-spacing:-14.940000px;}
.ws0{word-spacing:-0.322440px;}
.ws2{word-spacing:0.000000px;}
._2e{margin-left:-8.064000px;}
._25{margin-left:-6.624000px;}
._b{margin-left:-5.124240px;}
._6{margin-left:-4.081680px;}
._8{margin-left:-2.527200px;}
._0{margin-left:-1.432080px;}
._1{width:1.944240px;}
._c{width:2.970960px;}
._19{width:4.637760px;}
._d{width:5.812560px;}
._9{width:6.823440px;}
._18{width:8.087040px;}
._5{width:9.350640px;}
._4{width:10.614240px;}
._3{width:12.569280px;}
._2{width:14.548080px;}
._e{width:15.603120px;}
._11{width:16.763760px;}
._a{width:18.027360px;}
._1c{width:19.796400px;}
._1d{width:22.239360px;}
._28{width:23.250240px;}
._2d{width:24.682320px;}
._f{width:25.693200px;}
._10{width:27.041040px;}
._20{width:28.305600px;}
._1f{width:29.399760px;}
._1e{width:30.410640px;}
._34{width:32.937840px;}
._30{width:35.212320px;}
._1b{width:36.411600px;}
._1a{width:37.655280px;}
._38{width:39.506160px;}
._2b{width:40.619760px;}
._7{width:41.698800px;}
._17{width:42.871440px;}
._16{width:44.141760px;}
._2f{width:45.489600px;}
._31{width:46.837440px;}
._29{width:48.101040px;}
._2a{width:49.196160px;}
._15{width:53.328480px;}
._14{width:54.503280px;}
._2c{width:55.935360px;}
._37{width:58.933440px;}
._35{width:60.464880px;}
._13{width:61.495200px;}
._21{width:68.487120px;}
._32{width:72.614880px;}
._33{width:73.710000px;}
._27{width:75.198000px;}
._26{width:76.405680px;}
._36{width:77.550480px;}
._23{width:84.913920px;}
._24{width:86.244000px;}
._12{width:191.484000px;}
._22{width:224.078400px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.fs5{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y8{bottom:2.880000px;}
.y45{bottom:3.240000px;}
.y5f{bottom:3.960000px;}
.y92{bottom:4.500000px;}
.y6{bottom:5.796000px;}
.y70{bottom:14.220000px;}
.y8a{bottom:14.400000px;}
.y4{bottom:20.016000px;}
.y44{bottom:20.340000px;}
.y4c{bottom:20.520000px;}
.y51{bottom:21.240000px;}
.y5{bottom:23.580000px;}
.y5e{bottom:24.660000px;}
.y91{bottom:28.800000px;}
.y6f{bottom:34.920000px;}
.y89{bottom:35.100000px;}
.y4b{bottom:37.800000px;}
.y50{bottom:41.940000px;}
.y5d{bottom:45.360000px;}
.y90{bottom:52.920000px;}
.y3{bottom:53.856000px;}
.y4a{bottom:55.080000px;}
.y7a{bottom:55.620000px;}
.y67{bottom:55.650000px;}
.y88{bottom:55.800000px;}
.y4f{bottom:62.640000px;}
.y94{bottom:63.180000px;}
.y5c{bottom:66.060000px;}
.y6c{bottom:66.090000px;}
.y86{bottom:66.105000px;}
.y2{bottom:69.336000px;}
.y49{bottom:72.180000px;}
.y71{bottom:75.270000px;}
.y76{bottom:76.320000px;}
.y66{bottom:76.350000px;}
.y8f{bottom:77.040000px;}
.y4e{bottom:83.370000px;}
.y5b{bottom:86.760000px;}
.y6b{bottom:86.790000px;}
.y48{bottom:89.490000px;}
.y93{bottom:94.500000px;}
.y75{bottom:97.020000px;}
.y65{bottom:97.050000px;}
.y8e{bottom:101.190000px;}
.y62{bottom:103.320000px;}
.yae{bottom:103.896000px;}
.y4d{bottom:104.070000px;}
.y7c{bottom:106.200000px;}
.y47{bottom:106.770000px;}
.y5a{bottom:107.460000px;}
.y6a{bottom:107.490000px;}
.y9f{bottom:107.496000px;}
.y74{bottom:117.720000px;}
.y6e{bottom:117.750000px;}
.y56{bottom:120.600000px;}
.y9e{bottom:122.256000px;}
.y8d{bottom:125.310000px;}
.y43{bottom:126.396000px;}
.y59{bottom:128.160000px;}
.y69{bottom:128.190000px;}
.y55{bottom:137.700000px;}
.y73{bottom:138.420000px;}
.y6d{bottom:138.450000px;}
.yad{bottom:141.876000px;}
.y42{bottom:143.856000px;}
.y26{bottom:146.376000px;}
.y58{bottom:148.860000px;}
.y68{bottom:148.890000px;}
.y81{bottom:153.930000px;}
.y54{bottom:154.980000px;}
.y80{bottom:158.250000px;}
.y9d{bottom:158.430000px;}
.y79{bottom:159.120000px;}
.y57{bottom:169.560000px;}
.y63{bottom:169.605000px;}
.y53{bottom:172.260000px;}
.y61{bottom:172.305000px;}
.yac{bottom:178.230000px;}
.y7b{bottom:179.820000px;}
.y41{bottom:180.030000px;}
.y25{bottom:182.550000px;}
.y77{bottom:190.260000px;}
.y7f{bottom:194.430000px;}
.y9c{bottom:194.610000px;}
.y78{bottom:210.960000px;}
.yab{bottom:214.410000px;}
.y40{bottom:216.210000px;}
.y24{bottom:218.730000px;}
.y7e{bottom:230.610000px;}
.y9b{bottom:230.970000px;}
.yaa{bottom:250.590000px;}
.y3f{bottom:252.390000px;}
.y23{bottom:255.090000px;}
.y7d{bottom:266.970000px;}
.y9a{bottom:267.150000px;}
.ya9{bottom:286.815000px;}
.y72{bottom:287.355000px;}
.y3e{bottom:288.615000px;}
.y22{bottom:291.315000px;}
.y99{bottom:303.375000px;}
.ya8{bottom:323.175000px;}
.y3d{bottom:324.975000px;}
.y21{bottom:327.495000px;}
.y98{bottom:339.555000px;}
.ya7{bottom:359.355000px;}
.y3c{bottom:361.155000px;}
.y20{bottom:363.675000px;}
.y97{bottom:375.915000px;}
.ya6{bottom:395.535000px;}
.y3b{bottom:397.335000px;}
.y1f{bottom:400.035000px;}
.y96{bottom:412.095000px;}
.ya5{bottom:431.715000px;}
.y3a{bottom:433.515000px;}
.y1e{bottom:436.215000px;}
.y95{bottom:448.275000px;}
.ya4{bottom:467.895000px;}
.y8c{bottom:468.615000px;}
.y39{bottom:469.875000px;}
.y1d{bottom:472.395000px;}
.ya3{bottom:504.255000px;}
.y38{bottom:506.055000px;}
.y1c{bottom:508.575000px;}
.y64{bottom:515.775000px;}
.ya2{bottom:540.435000px;}
.y37{bottom:542.235000px;}
.y1b{bottom:544.935000px;}
.ya1{bottom:576.645000px;}
.y36{bottom:578.445000px;}
.y1a{bottom:581.145000px;}
.ya0{bottom:612.825000px;}
.y8b{bottom:614.265000px;}
.y35{bottom:614.805000px;}
.y19{bottom:617.325000px;}
.y34{bottom:650.985000px;}
.y18{bottom:653.505000px;}
.y60{bottom:682.125000px;}
.y33{bottom:687.165000px;}
.y17{bottom:689.685000px;}
.y87{bottom:697.785000px;}
.y32{bottom:723.345000px;}
.y16{bottom:726.045000px;}
.y31{bottom:759.705000px;}
.y15{bottom:762.225000px;}
.y85{bottom:781.485000px;}
.y30{bottom:795.885000px;}
.y14{bottom:798.405000px;}
.y2f{bottom:832.065000px;}
.y13{bottom:834.585000px;}
.y84{bottom:865.050000px;}
.y2e{bottom:868.290000px;}
.y52{bottom:869.190000px;}
.y12{bottom:870.990000px;}
.y2d{bottom:904.470000px;}
.y11{bottom:907.170000px;}
.y2c{bottom:940.830000px;}
.y10{bottom:943.350000px;}
.y83{bottom:948.570000px;}
.y2b{bottom:977.010000px;}
.yf{bottom:979.530000px;}
.y2a{bottom:1013.190000px;}
.ye{bottom:1015.890000px;}
.yd{bottom:1041.810000px;}
.y29{bottom:1049.370000px;}
.y82{bottom:1052.790000px;}
.y46{bottom:1056.210000px;}
.yc{bottom:1067.910000px;}
.y28{bottom:1085.730000px;}
.yb{bottom:1094.010000px;}
.y27{bottom:1121.910000px;}
.ya{bottom:1132.020000px;}
.y9{bottom:1158.120000px;}
.y1{bottom:1184.040000px;}
.y7{bottom:1228.500000px;}
.h3{height:21.780000px;}
.h4{height:28.260000px;}
.ha{height:34.380000px;}
.hb{height:49.868086px;}
.hd{height:50.800781px;}
.h14{height:52.417969px;}
.h6{height:59.436914px;}
.he{height:60.082031px;}
.h7{height:60.835430px;}
.h8{height:61.575820px;}
.h2{height:65.884219px;}
.h9{height:70.295977px;}
.h5{height:76.201172px;}
.h16{height:82.800000px;}
.h17{height:82.836000px;}
.h15{height:103.500000px;}
.hc{height:120.816000px;}
.h13{height:124.236000px;}
.h18{height:144.936000px;}
.h11{height:165.630000px;}
.h19{height:180.246094px;}
.hf{height:186.300000px;}
.h10{height:186.330000px;}
.h12{height:227.700000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.680000px;}
.w5{width:73.836000px;}
.w10{width:83.520000px;}
.wd{width:88.380000px;}
.we{width:88.416000px;}
.wf{width:88.560000px;}
.w7{width:94.860000px;}
.w6{width:95.040000px;}
.wa{width:105.480000px;}
.w9{width:105.516000px;}
.w8{width:105.696000px;}
.w11{width:109.656000px;}
.wc{width:126.576000px;}
.wb{width:127.836000px;}
.w4{width:261.075000px;}
.w12{width:344.235000px;}
.w13{width:372.315000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x1c{left:9.360000px;}
.x1a{left:10.980000px;}
.x25{left:12.285000px;}
.x1b{left:13.320000px;}
.x27{left:14.580000px;}
.x6{left:16.635000px;}
.x29{left:18.180000px;}
.x12{left:19.440000px;}
.x1d{left:21.060000px;}
.x1e{left:23.220000px;}
.x22{left:25.020000px;}
.x36{left:26.460000px;}
.x23{left:27.720000px;}
.x21{left:29.340000px;}
.x1f{left:30.420000px;}
.x34{left:31.896000px;}
.x8{left:33.690000px;}
.x24{left:34.785000px;}
.x35{left:36.900000px;}
.x28{left:38.010000px;}
.x20{left:39.960000px;}
.x30{left:41.760000px;}
.x26{left:45.000000px;}
.x32{left:49.185000px;}
.x33{left:54.765000px;}
.xf{left:63.899987px;}
.x9{left:91.079987px;}
.x10{left:94.535987px;}
.xe{left:117.035987px;}
.x11{left:119.555987px;}
.x39{left:152.310000px;}
.x37{left:156.270000px;}
.x38{left:172.110000px;}
.x3a{left:185.970000px;}
.x14{left:189.750000px;}
.x2b{left:193.170000px;}
.x2a{left:274.529987px;}
.x15{left:285.330000px;}
.x3b{left:286.949987px;}
.x2c{left:320.475000px;}
.xa{left:329.294987px;}
.x16{left:391.755000px;}
.x5{left:400.140000px;}
.xc{left:403.274987px;}
.x2d{left:409.575000px;}
.x3{left:425.414987px;}
.x4{left:459.074987px;}
.x7{left:469.155000px;}
.xb{left:483.374987px;}
.x17{left:487.515000px;}
.x2e{left:498.705000px;}
.x2f{left:587.985000px;}
.x18{left:593.745000px;}
.xd{left:639.104987px;}
.x31{left:672.225000px;}
.x19{left:700.170000px;}
.x2{left:872.069987px;}
.x1{left:891.719987px;}
@media print{
.v1{vertical-align:-55.680000pt;}
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-4.640000pt;}
.ls4{letter-spacing:-0.800000pt;}
.ls18{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.024960pt;}
.lsd{letter-spacing:0.033280pt;}
.ls9{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:3.680000pt;}
.ls13{letter-spacing:10.080000pt;}
.ls19{letter-spacing:10.720000pt;}
.ls17{letter-spacing:24.800000pt;}
.ls16{letter-spacing:25.440000pt;}
.ls15{letter-spacing:33.760000pt;}
.ls14{letter-spacing:34.400000pt;}
.lse{letter-spacing:40.160000pt;}
.ls12{letter-spacing:52.320000pt;}
.ls11{letter-spacing:52.448000pt;}
.ls10{letter-spacing:68.960000pt;}
.lsf{letter-spacing:69.088000pt;}
.ls5{letter-spacing:170.208000pt;}
.ls0{letter-spacing:1303.439787pt;}
.ws6{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws0{word-spacing:-0.286613pt;}
.ws2{word-spacing:0.000000pt;}
._2e{margin-left:-7.168000pt;}
._25{margin-left:-5.888000pt;}
._b{margin-left:-4.554880pt;}
._6{margin-left:-3.628160pt;}
._8{margin-left:-2.246400pt;}
._0{margin-left:-1.272960pt;}
._1{width:1.728213pt;}
._c{width:2.640853pt;}
._19{width:4.122453pt;}
._d{width:5.166720pt;}
._9{width:6.065280pt;}
._18{width:7.188480pt;}
._5{width:8.311680pt;}
._4{width:9.434880pt;}
._3{width:11.172693pt;}
._2{width:12.931627pt;}
._e{width:13.869440pt;}
._11{width:14.901120pt;}
._a{width:16.024320pt;}
._1c{width:17.596800pt;}
._1d{width:19.768320pt;}
._28{width:20.666880pt;}
._2d{width:21.939840pt;}
._f{width:22.838400pt;}
._10{width:24.036480pt;}
._20{width:25.160533pt;}
._1f{width:26.133120pt;}
._1e{width:27.031680pt;}
._34{width:29.278080pt;}
._30{width:31.299840pt;}
._1b{width:32.365867pt;}
._1a{width:33.471360pt;}
._38{width:35.116587pt;}
._2b{width:36.106453pt;}
._7{width:37.065600pt;}
._17{width:38.107947pt;}
._16{width:39.237120pt;}
._2f{width:40.435200pt;}
._31{width:41.633280pt;}
._29{width:42.756480pt;}
._2a{width:43.729920pt;}
._15{width:47.403093pt;}
._14{width:48.447360pt;}
._2c{width:49.720320pt;}
._37{width:52.385280pt;}
._35{width:53.746560pt;}
._13{width:54.662400pt;}
._21{width:60.877440pt;}
._32{width:64.546560pt;}
._33{width:65.520000pt;}
._27{width:66.842667pt;}
._26{width:67.916160pt;}
._36{width:68.933760pt;}
._23{width:75.479040pt;}
._24{width:76.661333pt;}
._12{width:170.208000pt;}
._22{width:199.180800pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.fs5{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:2.560000pt;}
.y45{bottom:2.880000pt;}
.y5f{bottom:3.520000pt;}
.y92{bottom:4.000000pt;}
.y6{bottom:5.152000pt;}
.y70{bottom:12.640000pt;}
.y8a{bottom:12.800000pt;}
.y4{bottom:17.792000pt;}
.y44{bottom:18.080000pt;}
.y4c{bottom:18.240000pt;}
.y51{bottom:18.880000pt;}
.y5{bottom:20.960000pt;}
.y5e{bottom:21.920000pt;}
.y91{bottom:25.600000pt;}
.y6f{bottom:31.040000pt;}
.y89{bottom:31.200000pt;}
.y4b{bottom:33.600000pt;}
.y50{bottom:37.280000pt;}
.y5d{bottom:40.320000pt;}
.y90{bottom:47.040000pt;}
.y3{bottom:47.872000pt;}
.y4a{bottom:48.960000pt;}
.y7a{bottom:49.440000pt;}
.y67{bottom:49.466667pt;}
.y88{bottom:49.600000pt;}
.y4f{bottom:55.680000pt;}
.y94{bottom:56.160000pt;}
.y5c{bottom:58.720000pt;}
.y6c{bottom:58.746667pt;}
.y86{bottom:58.760000pt;}
.y2{bottom:61.632000pt;}
.y49{bottom:64.160000pt;}
.y71{bottom:66.906667pt;}
.y76{bottom:67.840000pt;}
.y66{bottom:67.866667pt;}
.y8f{bottom:68.480000pt;}
.y4e{bottom:74.106667pt;}
.y5b{bottom:77.120000pt;}
.y6b{bottom:77.146667pt;}
.y48{bottom:79.546667pt;}
.y93{bottom:84.000000pt;}
.y75{bottom:86.240000pt;}
.y65{bottom:86.266667pt;}
.y8e{bottom:89.946667pt;}
.y62{bottom:91.840000pt;}
.yae{bottom:92.352000pt;}
.y4d{bottom:92.506667pt;}
.y7c{bottom:94.400000pt;}
.y47{bottom:94.906667pt;}
.y5a{bottom:95.520000pt;}
.y6a{bottom:95.546667pt;}
.y9f{bottom:95.552000pt;}
.y74{bottom:104.640000pt;}
.y6e{bottom:104.666667pt;}
.y56{bottom:107.200000pt;}
.y9e{bottom:108.672000pt;}
.y8d{bottom:111.386667pt;}
.y43{bottom:112.352000pt;}
.y59{bottom:113.920000pt;}
.y69{bottom:113.946667pt;}
.y55{bottom:122.400000pt;}
.y73{bottom:123.040000pt;}
.y6d{bottom:123.066667pt;}
.yad{bottom:126.112000pt;}
.y42{bottom:127.872000pt;}
.y26{bottom:130.112000pt;}
.y58{bottom:132.320000pt;}
.y68{bottom:132.346667pt;}
.y81{bottom:136.826667pt;}
.y54{bottom:137.760000pt;}
.y80{bottom:140.666667pt;}
.y9d{bottom:140.826667pt;}
.y79{bottom:141.440000pt;}
.y57{bottom:150.720000pt;}
.y63{bottom:150.760000pt;}
.y53{bottom:153.120000pt;}
.y61{bottom:153.160000pt;}
.yac{bottom:158.426667pt;}
.y7b{bottom:159.840000pt;}
.y41{bottom:160.026667pt;}
.y25{bottom:162.266667pt;}
.y77{bottom:169.120000pt;}
.y7f{bottom:172.826667pt;}
.y9c{bottom:172.986667pt;}
.y78{bottom:187.520000pt;}
.yab{bottom:190.586667pt;}
.y40{bottom:192.186667pt;}
.y24{bottom:194.426667pt;}
.y7e{bottom:204.986667pt;}
.y9b{bottom:205.306667pt;}
.yaa{bottom:222.746667pt;}
.y3f{bottom:224.346667pt;}
.y23{bottom:226.746667pt;}
.y7d{bottom:237.306667pt;}
.y9a{bottom:237.466667pt;}
.ya9{bottom:254.946667pt;}
.y72{bottom:255.426667pt;}
.y3e{bottom:256.546667pt;}
.y22{bottom:258.946667pt;}
.y99{bottom:269.666667pt;}
.ya8{bottom:287.266667pt;}
.y3d{bottom:288.866667pt;}
.y21{bottom:291.106667pt;}
.y98{bottom:301.826667pt;}
.ya7{bottom:319.426667pt;}
.y3c{bottom:321.026667pt;}
.y20{bottom:323.266667pt;}
.y97{bottom:334.146667pt;}
.ya6{bottom:351.586667pt;}
.y3b{bottom:353.186667pt;}
.y1f{bottom:355.586667pt;}
.y96{bottom:366.306667pt;}
.ya5{bottom:383.746667pt;}
.y3a{bottom:385.346667pt;}
.y1e{bottom:387.746667pt;}
.y95{bottom:398.466667pt;}
.ya4{bottom:415.906667pt;}
.y8c{bottom:416.546667pt;}
.y39{bottom:417.666667pt;}
.y1d{bottom:419.906667pt;}
.ya3{bottom:448.226667pt;}
.y38{bottom:449.826667pt;}
.y1c{bottom:452.066667pt;}
.y64{bottom:458.466667pt;}
.ya2{bottom:480.386667pt;}
.y37{bottom:481.986667pt;}
.y1b{bottom:484.386667pt;}
.ya1{bottom:512.573333pt;}
.y36{bottom:514.173333pt;}
.y1a{bottom:516.573333pt;}
.ya0{bottom:544.733333pt;}
.y8b{bottom:546.013333pt;}
.y35{bottom:546.493333pt;}
.y19{bottom:548.733333pt;}
.y34{bottom:578.653333pt;}
.y18{bottom:580.893333pt;}
.y60{bottom:606.333333pt;}
.y33{bottom:610.813333pt;}
.y17{bottom:613.053333pt;}
.y87{bottom:620.253333pt;}
.y32{bottom:642.973333pt;}
.y16{bottom:645.373333pt;}
.y31{bottom:675.293333pt;}
.y15{bottom:677.533333pt;}
.y85{bottom:694.653333pt;}
.y30{bottom:707.453333pt;}
.y14{bottom:709.693333pt;}
.y2f{bottom:739.613333pt;}
.y13{bottom:741.853333pt;}
.y84{bottom:768.933333pt;}
.y2e{bottom:771.813333pt;}
.y52{bottom:772.613333pt;}
.y12{bottom:774.213333pt;}
.y2d{bottom:803.973333pt;}
.y11{bottom:806.373333pt;}
.y2c{bottom:836.293333pt;}
.y10{bottom:838.533333pt;}
.y83{bottom:843.173333pt;}
.y2b{bottom:868.453333pt;}
.yf{bottom:870.693333pt;}
.y2a{bottom:900.613333pt;}
.ye{bottom:903.013333pt;}
.yd{bottom:926.053333pt;}
.y29{bottom:932.773333pt;}
.y82{bottom:935.813333pt;}
.y46{bottom:938.853333pt;}
.yc{bottom:949.253333pt;}
.y28{bottom:965.093333pt;}
.yb{bottom:972.453333pt;}
.y27{bottom:997.253333pt;}
.ya{bottom:1006.240000pt;}
.y9{bottom:1029.440000pt;}
.y1{bottom:1052.480000pt;}
.y7{bottom:1092.000000pt;}
.h3{height:19.360000pt;}
.h4{height:25.120000pt;}
.ha{height:30.560000pt;}
.hb{height:44.327188pt;}
.hd{height:45.156250pt;}
.h14{height:46.593750pt;}
.h6{height:52.832812pt;}
.he{height:53.406250pt;}
.h7{height:54.075937pt;}
.h8{height:54.734062pt;}
.h2{height:58.563750pt;}
.h9{height:62.485312pt;}
.h5{height:67.734375pt;}
.h16{height:73.600000pt;}
.h17{height:73.632000pt;}
.h15{height:92.000000pt;}
.hc{height:107.392000pt;}
.h13{height:110.432000pt;}
.h18{height:128.832000pt;}
.h11{height:147.226667pt;}
.h19{height:160.218750pt;}
.hf{height:165.600000pt;}
.h10{height:165.626667pt;}
.h12{height:202.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.160000pt;}
.w5{width:65.632000pt;}
.w10{width:74.240000pt;}
.wd{width:78.560000pt;}
.we{width:78.592000pt;}
.wf{width:78.720000pt;}
.w7{width:84.320000pt;}
.w6{width:84.480000pt;}
.wa{width:93.760000pt;}
.w9{width:93.792000pt;}
.w8{width:93.952000pt;}
.w11{width:97.472000pt;}
.wc{width:112.512000pt;}
.wb{width:113.632000pt;}
.w4{width:232.066667pt;}
.w12{width:305.986667pt;}
.w13{width:330.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x1c{left:8.320000pt;}
.x1a{left:9.760000pt;}
.x25{left:10.920000pt;}
.x1b{left:11.840000pt;}
.x27{left:12.960000pt;}
.x6{left:14.786667pt;}
.x29{left:16.160000pt;}
.x12{left:17.280000pt;}
.x1d{left:18.720000pt;}
.x1e{left:20.640000pt;}
.x22{left:22.240000pt;}
.x36{left:23.520000pt;}
.x23{left:24.640000pt;}
.x21{left:26.080000pt;}
.x1f{left:27.040000pt;}
.x34{left:28.352000pt;}
.x8{left:29.946667pt;}
.x24{left:30.920000pt;}
.x35{left:32.800000pt;}
.x28{left:33.786667pt;}
.x20{left:35.520000pt;}
.x30{left:37.120000pt;}
.x26{left:40.000000pt;}
.x32{left:43.720000pt;}
.x33{left:48.680000pt;}
.xf{left:56.799988pt;}
.x9{left:80.959988pt;}
.x10{left:84.031988pt;}
.xe{left:104.031988pt;}
.x11{left:106.271988pt;}
.x39{left:135.386667pt;}
.x37{left:138.906667pt;}
.x38{left:152.986667pt;}
.x3a{left:165.306667pt;}
.x14{left:168.666667pt;}
.x2b{left:171.706667pt;}
.x2a{left:244.026655pt;}
.x15{left:253.626667pt;}
.x3b{left:255.066655pt;}
.x2c{left:284.866667pt;}
.xa{left:292.706655pt;}
.x16{left:348.226667pt;}
.x5{left:355.680000pt;}
.xc{left:358.466655pt;}
.x2d{left:364.066667pt;}
.x3{left:378.146655pt;}
.x4{left:408.066655pt;}
.x7{left:417.026667pt;}
.xb{left:429.666655pt;}
.x17{left:433.346667pt;}
.x2e{left:443.293333pt;}
.x2f{left:522.653333pt;}
.x18{left:527.773333pt;}
.xd{left:568.093322pt;}
.x31{left:597.533333pt;}
.x19{left:622.373333pt;}
.x2{left:775.173322pt;}
.x1{left:792.639988pt;}
}




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