
    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_8127fe77431617079f9d2fa7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_64e901eeb8a86fe3e66a36e2.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_637b3e97dac0d98bb316b428.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0f49c1d67fb08344b144a657.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_0649a25c7ca96ce50029b237.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_832032ea13421d05ce21de8b.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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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;}
.ls12{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-1.422000px;}
.ls11{letter-spacing:-1.296000px;}
.ls14{letter-spacing:-1.134000px;}
.ls8{letter-spacing:-0.972000px;}
.ls13{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.498000px;}
.lse{letter-spacing:-0.486600px;}
.lsf{letter-spacing:-0.288000px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.200160px;}
.ls2{letter-spacing:0.423360px;}
.ls7{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.498240px;}
.ls17{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.507000px;}
.lsc{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.840000px;}
.ls1d{letter-spacing:2.160000px;}
.ls15{letter-spacing:5.040000px;}
.ls1b{letter-spacing:13.265280px;}
.ls1a{letter-spacing:15.120000px;}
.ls1c{letter-spacing:33.437280px;}
.ls10{letter-spacing:62.208000px;}
.lsb{letter-spacing:73.728000px;}
.ls19{letter-spacing:193.836000px;}
.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;}
}
.ws8{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.ws7{word-spacing:-17.352000px;}
.ws6{word-spacing:-17.064000px;}
.ws9{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.633400px;}
.ws0{word-spacing:-13.182000px;}
.ws3{word-spacing:0.000000px;}
._1d{margin-left:-5.276160px;}
._9{margin-left:-3.896640px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._8{width:3.507840px;}
._7{width:5.382720px;}
._b{width:6.740160px;}
._c{width:7.956480px;}
._d{width:9.792000px;}
._12{width:10.872000px;}
._11{width:11.952000px;}
._a{width:13.910400px;}
._f{width:15.336000px;}
._e{width:16.632000px;}
._10{width:19.800000px;}
._1a{width:21.096000px;}
._19{width:22.104000px;}
._17{width:23.184000px;}
._18{width:24.451200px;}
._16{width:25.848000px;}
._15{width:27.072000px;}
._1c{width:28.584000px;}
._1b{width:29.592000px;}
._1e{width:31.476000px;}
._14{width:75.240000px;}
._13{width:76.392000px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc7{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(37,37,37);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y3a{bottom:3.234000px;}
.y39{bottom:29.154000px;}
.ye{bottom:43.560000px;}
.y38{bottom:55.119000px;}
.yc{bottom:68.400000px;}
.y37{bottom:72.399000px;}
.y36{bottom:89.319000px;}
.ya{bottom:94.716000px;}
.y35{bottom:106.599000px;}
.y34{bottom:123.879000px;}
.y92{bottom:139.716000px;}
.y33{bottom:141.159000px;}
.y68{bottom:142.236000px;}
.y88{bottom:143.676000px;}
.y16{bottom:149.076000px;}
.y8e{bottom:150.870000px;}
.y32{bottom:158.439000px;}
.y91{bottom:163.470000px;}
.y87{bottom:167.430000px;}
.y8d{bottom:172.830000px;}
.y31{bottom:175.749000px;}
.y67{bottom:176.790000px;}
.y90{bottom:187.230000px;}
.y86{bottom:191.190000px;}
.y30{bottom:193.029000px;}
.y8c{bottom:194.790000px;}
.y2f{bottom:210.309000px;}
.y66{bottom:211.035000px;}
.y85{bottom:214.995000px;}
.y8b{bottom:216.435000px;}
.y2e{bottom:227.589000px;}
.y65{bottom:234.795000px;}
.yb2{bottom:237.675000px;}
.y8a{bottom:238.395000px;}
.y84{bottom:238.755000px;}
.y2d{bottom:244.869000px;}
.y64{bottom:258.555000px;}
.y89{bottom:259.995000px;}
.yb1{bottom:261.435000px;}
.y2c{bottom:262.149000px;}
.y83{bottom:262.515000px;}
.y2b{bottom:279.069000px;}
.y63{bottom:282.315000px;}
.yb0{bottom:285.195000px;}
.y82{bottom:286.635000px;}
.y2a{bottom:296.349000px;}
.y62{bottom:306.435000px;}
.y81{bottom:310.395000px;}
.y29{bottom:313.674000px;}
.yaf{bottom:317.955000px;}
.y61{bottom:330.225000px;}
.y28{bottom:330.954000px;}
.y80{bottom:334.185000px;}
.yae{bottom:341.745000px;}
.y27{bottom:348.234000px;}
.y60{bottom:353.985000px;}
.y7f{bottom:357.945000px;}
.y26{bottom:365.514000px;}
.yad{bottom:374.505000px;}
.y5f{bottom:377.745000px;}
.y7e{bottom:381.705000px;}
.y25{bottom:382.794000px;}
.yac{bottom:398.265000px;}
.y24{bottom:400.074000px;}
.y5e{bottom:401.505000px;}
.y7d{bottom:405.465000px;}
.y23{bottom:417.354000px;}
.y5d{bottom:425.265000px;}
.y8f{bottom:428.145000px;}
.y7c{bottom:429.225000px;}
.yab{bottom:431.385000px;}
.y22{bottom:434.664000px;}
.y5c{bottom:449.025000px;}
.y21{bottom:451.944000px;}
.y7b{bottom:453.030000px;}
.yaa{bottom:455.190000px;}
.y20{bottom:469.224000px;}
.y5b{bottom:472.830000px;}
.y7a{bottom:476.790000px;}
.y1f{bottom:486.144000px;}
.ya9{bottom:487.950000px;}
.y5a{bottom:496.950000px;}
.y79{bottom:500.910000px;}
.y1e{bottom:503.424000px;}
.y1d{bottom:520.704000px;}
.y59{bottom:520.710000px;}
.y78{bottom:524.670000px;}
.y1c{bottom:537.984000px;}
.y58{bottom:544.470000px;}
.y77{bottom:548.430000px;}
.y1b{bottom:555.294000px;}
.y57{bottom:568.230000px;}
.y76{bottom:572.190000px;}
.y1a{bottom:572.574000px;}
.ya8{bottom:577.260000px;}
.y19{bottom:589.854000px;}
.y56{bottom:592.020000px;}
.y75{bottom:595.980000px;}
.ya7{bottom:601.020000px;}
.y18{bottom:607.134000px;}
.y55{bottom:615.780000px;}
.y74{bottom:619.740000px;}
.y17{bottom:624.414000px;}
.ya6{bottom:633.780000px;}
.y54{bottom:639.540000px;}
.y73{bottom:643.500000px;}
.ya5{bottom:657.540000px;}
.y53{bottom:663.300000px;}
.y72{bottom:667.260000px;}
.y52{bottom:687.420000px;}
.ya4{bottom:690.660000px;}
.y71{bottom:691.380000px;}
.y51{bottom:711.210000px;}
.ya3{bottom:714.450000px;}
.y70{bottom:715.170000px;}
.y50{bottom:734.970000px;}
.ya2{bottom:738.210000px;}
.y6f{bottom:738.930000px;}
.y4f{bottom:758.730000px;}
.ya1{bottom:761.970000px;}
.y6e{bottom:762.690000px;}
.y4e{bottom:782.490000px;}
.ya0{bottom:785.730000px;}
.y6d{bottom:786.450000px;}
.y15{bottom:792.930000px;}
.y4d{bottom:806.250000px;}
.y6c{bottom:810.210000px;}
.y14{bottom:810.930000px;}
.y9f{bottom:818.490000px;}
.y4c{bottom:830.055000px;}
.y13{bottom:831.855000px;}
.y6b{bottom:834.015000px;}
.y9e{bottom:842.295000px;}
.y12{bottom:852.375000px;}
.y4b{bottom:853.815000px;}
.y6a{bottom:857.775000px;}
.y11{bottom:873.255000px;}
.y9d{bottom:875.055000px;}
.y4a{bottom:877.575000px;}
.y69{bottom:880.455000px;}
.y10{bottom:894.495000px;}
.y9c{bottom:899.175000px;}
.y49{bottom:901.695000px;}
.yf{bottom:918.615000px;}
.y48{bottom:925.455000px;}
.y9b{bottom:931.935000px;}
.y9{bottom:941.295000px;}
.y47{bottom:949.215000px;}
.y9a{bottom:955.725000px;}
.y8{bottom:958.605000px;}
.y7{bottom:972.645000px;}
.y46{bottom:973.005000px;}
.y99{bottom:988.485000px;}
.y45{bottom:996.765000px;}
.y44{bottom:1020.525000px;}
.y98{bottom:1021.245000px;}
.y6{bottom:1027.365000px;}
.y43{bottom:1044.285000px;}
.y97{bottom:1045.005000px;}
.y5{bottom:1052.205000px;}
.y42{bottom:1068.045000px;}
.y4{bottom:1072.725000px;}
.y96{bottom:1077.765000px;}
.y41{bottom:1092.210000px;}
.y3{bottom:1094.010000px;}
.y95{bottom:1101.570000px;}
.y2{bottom:1114.530000px;}
.y40{bottom:1115.970000px;}
.y94{bottom:1121.730000px;}
.y1{bottom:1131.450000px;}
.y3f{bottom:1139.730000px;}
.y93{bottom:1140.090000px;}
.y3e{bottom:1166.370000px;}
.y3d{bottom:1180.410000px;}
.y3c{bottom:1201.290000px;}
.y3b{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h5{height:39.997969px;}
.h2{height:44.828437px;}
.h7{height:48.013594px;}
.hd{height:52.628906px;}
.h4{height:53.067656px;}
.h3{height:53.367188px;}
.hc{height:58.121719px;}
.h9{height:61.905938px;}
.ha{height:63.175781px;}
.hb{height:638.460000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:8.640000px;}
.x7{left:106.235987px;}
.xb{left:113.435987px;}
.x14{left:118.835987px;}
.x15{left:145.871987px;}
.x13{left:160.274987px;}
.x11{left:180.794987px;}
.xe{left:200.594987px;}
.xf{left:222.584987px;}
.x2{left:254.264987px;}
.x6{left:274.064987px;}
.xa{left:304.350000px;}
.xc{left:316.229987px;}
.xd{left:335.669987px;}
.x10{left:339.984000px;}
.x5{left:355.829987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.x12{left:447.660000px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-1.264000pt;}
.ls11{letter-spacing:-1.152000pt;}
.ls14{letter-spacing:-1.008000pt;}
.ls8{letter-spacing:-0.864000pt;}
.ls13{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.442667pt;}
.lse{letter-spacing:-0.432533pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.177920pt;}
.ls2{letter-spacing:0.376320pt;}
.ls7{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.442880pt;}
.ls17{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.450667pt;}
.lsc{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.746667pt;}
.ls1d{letter-spacing:1.920000pt;}
.ls15{letter-spacing:4.480000pt;}
.ls1b{letter-spacing:11.791360pt;}
.ls1a{letter-spacing:13.440000pt;}
.ls1c{letter-spacing:29.722027pt;}
.ls10{letter-spacing:55.296000pt;}
.lsb{letter-spacing:65.536000pt;}
.ls19{letter-spacing:172.298667pt;}
.ws8{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws7{word-spacing:-15.424000pt;}
.ws6{word-spacing:-15.168000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.007467pt;}
.ws0{word-spacing:-11.717333pt;}
.ws3{word-spacing:0.000000pt;}
._1d{margin-left:-4.689920pt;}
._9{margin-left:-3.463680pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._8{width:3.118080pt;}
._7{width:4.784640pt;}
._b{width:5.991253pt;}
._c{width:7.072427pt;}
._d{width:8.704000pt;}
._12{width:9.664000pt;}
._11{width:10.624000pt;}
._a{width:12.364800pt;}
._f{width:13.632000pt;}
._e{width:14.784000pt;}
._10{width:17.600000pt;}
._1a{width:18.752000pt;}
._19{width:19.648000pt;}
._17{width:20.608000pt;}
._18{width:21.734400pt;}
._16{width:22.976000pt;}
._15{width:24.064000pt;}
._1c{width:25.408000pt;}
._1b{width:26.304000pt;}
._1e{width:27.978667pt;}
._14{width:66.880000pt;}
._13{width:67.904000pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y3a{bottom:2.874667pt;}
.y39{bottom:25.914667pt;}
.ye{bottom:38.720000pt;}
.y38{bottom:48.994667pt;}
.yc{bottom:60.800000pt;}
.y37{bottom:64.354667pt;}
.y36{bottom:79.394667pt;}
.ya{bottom:84.192000pt;}
.y35{bottom:94.754667pt;}
.y34{bottom:110.114667pt;}
.y92{bottom:124.192000pt;}
.y33{bottom:125.474667pt;}
.y68{bottom:126.432000pt;}
.y88{bottom:127.712000pt;}
.y16{bottom:132.512000pt;}
.y8e{bottom:134.106667pt;}
.y32{bottom:140.834667pt;}
.y91{bottom:145.306667pt;}
.y87{bottom:148.826667pt;}
.y8d{bottom:153.626667pt;}
.y31{bottom:156.221333pt;}
.y67{bottom:157.146667pt;}
.y90{bottom:166.426667pt;}
.y86{bottom:169.946667pt;}
.y30{bottom:171.581333pt;}
.y8c{bottom:173.146667pt;}
.y2f{bottom:186.941333pt;}
.y66{bottom:187.586667pt;}
.y85{bottom:191.106667pt;}
.y8b{bottom:192.386667pt;}
.y2e{bottom:202.301333pt;}
.y65{bottom:208.706667pt;}
.yb2{bottom:211.266667pt;}
.y8a{bottom:211.906667pt;}
.y84{bottom:212.226667pt;}
.y2d{bottom:217.661333pt;}
.y64{bottom:229.826667pt;}
.y89{bottom:231.106667pt;}
.yb1{bottom:232.386667pt;}
.y2c{bottom:233.021333pt;}
.y83{bottom:233.346667pt;}
.y2b{bottom:248.061333pt;}
.y63{bottom:250.946667pt;}
.yb0{bottom:253.506667pt;}
.y82{bottom:254.786667pt;}
.y2a{bottom:263.421333pt;}
.y62{bottom:272.386667pt;}
.y81{bottom:275.906667pt;}
.y29{bottom:278.821333pt;}
.yaf{bottom:282.626667pt;}
.y61{bottom:293.533333pt;}
.y28{bottom:294.181333pt;}
.y80{bottom:297.053333pt;}
.yae{bottom:303.773333pt;}
.y27{bottom:309.541333pt;}
.y60{bottom:314.653333pt;}
.y7f{bottom:318.173333pt;}
.y26{bottom:324.901333pt;}
.yad{bottom:332.893333pt;}
.y5f{bottom:335.773333pt;}
.y7e{bottom:339.293333pt;}
.y25{bottom:340.261333pt;}
.yac{bottom:354.013333pt;}
.y24{bottom:355.621333pt;}
.y5e{bottom:356.893333pt;}
.y7d{bottom:360.413333pt;}
.y23{bottom:370.981333pt;}
.y5d{bottom:378.013333pt;}
.y8f{bottom:380.573333pt;}
.y7c{bottom:381.533333pt;}
.yab{bottom:383.453333pt;}
.y22{bottom:386.368000pt;}
.y5c{bottom:399.133333pt;}
.y21{bottom:401.728000pt;}
.y7b{bottom:402.693333pt;}
.yaa{bottom:404.613333pt;}
.y20{bottom:417.088000pt;}
.y5b{bottom:420.293333pt;}
.y7a{bottom:423.813333pt;}
.y1f{bottom:432.128000pt;}
.ya9{bottom:433.733333pt;}
.y5a{bottom:441.733333pt;}
.y79{bottom:445.253333pt;}
.y1e{bottom:447.488000pt;}
.y1d{bottom:462.848000pt;}
.y59{bottom:462.853333pt;}
.y78{bottom:466.373333pt;}
.y1c{bottom:478.208000pt;}
.y58{bottom:483.973333pt;}
.y77{bottom:487.493333pt;}
.y1b{bottom:493.594667pt;}
.y57{bottom:505.093333pt;}
.y76{bottom:508.613333pt;}
.y1a{bottom:508.954667pt;}
.ya8{bottom:513.120000pt;}
.y19{bottom:524.314667pt;}
.y56{bottom:526.240000pt;}
.y75{bottom:529.760000pt;}
.ya7{bottom:534.240000pt;}
.y18{bottom:539.674667pt;}
.y55{bottom:547.360000pt;}
.y74{bottom:550.880000pt;}
.y17{bottom:555.034667pt;}
.ya6{bottom:563.360000pt;}
.y54{bottom:568.480000pt;}
.y73{bottom:572.000000pt;}
.ya5{bottom:584.480000pt;}
.y53{bottom:589.600000pt;}
.y72{bottom:593.120000pt;}
.y52{bottom:611.040000pt;}
.ya4{bottom:613.920000pt;}
.y71{bottom:614.560000pt;}
.y51{bottom:632.186667pt;}
.ya3{bottom:635.066667pt;}
.y70{bottom:635.706667pt;}
.y50{bottom:653.306667pt;}
.ya2{bottom:656.186667pt;}
.y6f{bottom:656.826667pt;}
.y4f{bottom:674.426667pt;}
.ya1{bottom:677.306667pt;}
.y6e{bottom:677.946667pt;}
.y4e{bottom:695.546667pt;}
.ya0{bottom:698.426667pt;}
.y6d{bottom:699.066667pt;}
.y15{bottom:704.826667pt;}
.y4d{bottom:716.666667pt;}
.y6c{bottom:720.186667pt;}
.y14{bottom:720.826667pt;}
.y9f{bottom:727.546667pt;}
.y4c{bottom:737.826667pt;}
.y13{bottom:739.426667pt;}
.y6b{bottom:741.346667pt;}
.y9e{bottom:748.706667pt;}
.y12{bottom:757.666667pt;}
.y4b{bottom:758.946667pt;}
.y6a{bottom:762.466667pt;}
.y11{bottom:776.226667pt;}
.y9d{bottom:777.826667pt;}
.y4a{bottom:780.066667pt;}
.y69{bottom:782.626667pt;}
.y10{bottom:795.106667pt;}
.y9c{bottom:799.266667pt;}
.y49{bottom:801.506667pt;}
.yf{bottom:816.546667pt;}
.y48{bottom:822.626667pt;}
.y9b{bottom:828.386667pt;}
.y9{bottom:836.706667pt;}
.y47{bottom:843.746667pt;}
.y9a{bottom:849.533333pt;}
.y8{bottom:852.093333pt;}
.y7{bottom:864.573333pt;}
.y46{bottom:864.893333pt;}
.y99{bottom:878.653333pt;}
.y45{bottom:886.013333pt;}
.y44{bottom:907.133333pt;}
.y98{bottom:907.773333pt;}
.y6{bottom:913.213333pt;}
.y43{bottom:928.253333pt;}
.y97{bottom:928.893333pt;}
.y5{bottom:935.293333pt;}
.y42{bottom:949.373333pt;}
.y4{bottom:953.533333pt;}
.y96{bottom:958.013333pt;}
.y41{bottom:970.853333pt;}
.y3{bottom:972.453333pt;}
.y95{bottom:979.173333pt;}
.y2{bottom:990.693333pt;}
.y40{bottom:991.973333pt;}
.y94{bottom:997.093333pt;}
.y1{bottom:1005.733333pt;}
.y3f{bottom:1013.093333pt;}
.y93{bottom:1013.413333pt;}
.y3e{bottom:1036.773333pt;}
.y3d{bottom:1049.253333pt;}
.y3c{bottom:1067.813333pt;}
.y3b{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h5{height:35.553750pt;}
.h2{height:39.847500pt;}
.h7{height:42.678750pt;}
.hd{height:46.781250pt;}
.h4{height:47.171250pt;}
.h3{height:47.437500pt;}
.hc{height:51.663750pt;}
.h9{height:55.027500pt;}
.ha{height:56.156250pt;}
.hb{height:567.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.680000pt;}
.x7{left:94.431988pt;}
.xb{left:100.831988pt;}
.x14{left:105.631988pt;}
.x15{left:129.663988pt;}
.x13{left:142.466655pt;}
.x11{left:160.706655pt;}
.xe{left:178.306655pt;}
.xf{left:197.853322pt;}
.x2{left:226.013322pt;}
.x6{left:243.613322pt;}
.xa{left:270.533333pt;}
.xc{left:281.093322pt;}
.xd{left:298.373322pt;}
.x10{left:302.208000pt;}
.x5{left:316.293322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.x12{left:397.920000pt;}
.x1{left:699.493322pt;}
}




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