
    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_f119f9fcf433fe73144337ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_b61cc71b48b9479a6614c921.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_e1dac6926c3db822bed28f01.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_daf00b7eaf64712c39ba1923.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8597e6ff4a4352ab9d17db12.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_430c8228942bed8d73d61b77.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:33.120000px;}
.ls3{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.457800px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.152400px;}
.ls5{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.924000px;}
.ls4{letter-spacing:1.152000px;}
.ls6{letter-spacing:1.296000px;}
.lsb{letter-spacing:17.424000px;}
.lsa{letter-spacing:53.424000px;}
.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;}
}
.ws5{word-spacing:-19.296000px;}
.ws2{word-spacing:-19.152000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.208000px;}
.ws7{word-spacing:-16.712400px;}
.ws6{word-spacing:-16.560000px;}
.ws3{word-spacing:-11.880000px;}
.ws4{word-spacing:0.000000px;}
._1e{margin-left:-5.054400px;}
._15{margin-left:-3.801600px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.229120px;}
._4{width:3.525120px;}
._14{width:4.680000px;}
._1c{width:5.699520px;}
._18{width:6.730560px;}
._e{width:8.244960px;}
._5{width:9.550560px;}
._6{width:10.656000px;}
._13{width:12.617280px;}
._10{width:13.714560px;}
._d{width:15.226560px;}
._12{width:16.514880px;}
._11{width:19.224000px;}
._16{width:20.301120px;}
._17{width:21.654720px;}
._f{width:23.506560px;}
._a{width:25.061760px;}
._9{width:26.314560px;}
._b{width:27.524160px;}
._c{width:28.679040px;}
._1d{width:29.942880px;}
._19{width:30.960000px;}
._1a{width:32.578560px;}
._1b{width:34.404480px;}
._7{width:42.010560px;}
._8{width:43.045440px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs4{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y91{bottom:2.880000px;}
.y9f{bottom:6.480000px;}
.y97{bottom:6.840000px;}
.y66{bottom:7.200000px;}
.y49{bottom:7.560000px;}
.y4e{bottom:9.000000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y5b{bottom:13.680000px;}
.y4f{bottom:14.040000px;}
.y50{bottom:14.400000px;}
.y46{bottom:14.760000px;}
.y53{bottom:17.685000px;}
.y57{bottom:18.000000px;}
.y63{bottom:22.710000px;}
.y40{bottom:23.040000px;}
.y44{bottom:25.920000px;}
.y55{bottom:28.080000px;}
.y9e{bottom:28.440000px;}
.ya1{bottom:28.470000px;}
.y9c{bottom:28.485000px;}
.y96{bottom:28.800000px;}
.y65{bottom:30.960000px;}
.y48{bottom:31.320000px;}
.y59{bottom:31.710000px;}
.yac{bottom:38.520000px;}
.y41{bottom:41.760000px;}
.y93{bottom:42.480000px;}
.ya5{bottom:42.510000px;}
.ya7{bottom:50.040000px;}
.ya3{bottom:50.400000px;}
.y95{bottom:50.430000px;}
.y9b{bottom:50.445000px;}
.y8{bottom:57.240000px;}
.yab{bottom:60.480000px;}
.y90{bottom:61.560000px;}
.y9a{bottom:72.405000px;}
.y5{bottom:73.476000px;}
.y8f{bottom:83.160000px;}
.y99{bottom:94.005000px;}
.y34{bottom:107.676000px;}
.y42{bottom:110.925000px;}
.y60{bottom:115.236000px;}
.y8d{bottom:122.436000px;}
.y33{bottom:131.436000px;}
.y5f{bottom:138.996000px;}
.y8c{bottom:146.196000px;}
.y86{bottom:146.556000px;}
.y32{bottom:155.190000px;}
.y5e{bottom:162.750000px;}
.y8b{bottom:169.950000px;}
.y85{bottom:170.310000px;}
.y31{bottom:179.310000px;}
.y5d{bottom:186.510000px;}
.y8a{bottom:193.755000px;}
.y84{bottom:194.115000px;}
.y30{bottom:203.115000px;}
.y5c{bottom:204.195000px;}
.y89{bottom:217.515000px;}
.y83{bottom:218.235000px;}
.y2f{bottom:226.875000px;}
.yaa{bottom:234.795000px;}
.y51{bottom:236.595000px;}
.y82{bottom:241.995000px;}
.y2e{bottom:250.635000px;}
.y81{bottom:265.755000px;}
.y5a{bottom:268.275000px;}
.y2d{bottom:274.395000px;}
.y80{bottom:289.515000px;}
.y2c{bottom:298.155000px;}
.y58{bottom:300.315000px;}
.ya4{bottom:311.115000px;}
.y7f{bottom:313.275000px;}
.y2b{bottom:321.945000px;}
.y7e{bottom:337.065000px;}
.y2a{bottom:345.705000px;}
.y56{bottom:349.665000px;}
.ya9{bottom:355.425000px;}
.y7d{bottom:360.825000px;}
.y29{bottom:369.825000px;}
.y7c{bottom:384.585000px;}
.y54{bottom:385.305000px;}
.y28{bottom:393.585000px;}
.y7b{bottom:408.345000px;}
.y27{bottom:417.345000px;}
.ya8{bottom:421.665000px;}
.y52{bottom:431.025000px;}
.y7a{bottom:432.465000px;}
.y26{bottom:441.105000px;}
.y79{bottom:456.270000px;}
.y25{bottom:464.910000px;}
.y43{bottom:466.350000px;}
.y78{bottom:480.030000px;}
.y24{bottom:488.670000px;}
.y4d{bottom:498.390000px;}
.y77{bottom:503.790000px;}
.y23{bottom:512.430000px;}
.y4c{bottom:525.390000px;}
.y76{bottom:527.550000px;}
.ya6{bottom:532.230000px;}
.y22{bottom:536.190000px;}
.y75{bottom:551.310000px;}
.y21{bottom:559.590000px;}
.y61{bottom:559.950000px;}
.y4b{bottom:574.380000px;}
.y74{bottom:575.100000px;}
.y92{bottom:576.900000px;}
.yad{bottom:583.740000px;}
.y20{bottom:584.100000px;}
.y73{bottom:598.860000px;}
.y1f{bottom:607.860000px;}
.ya2{bottom:621.180000px;}
.y72{bottom:622.980000px;}
.y4a{bottom:623.340000px;}
.y1e{bottom:631.620000px;}
.y71{bottom:646.740000px;}
.y47{bottom:651.780000px;}
.y1d{bottom:655.380000px;}
.y70{bottom:670.500000px;}
.y1c{bottom:679.140000px;}
.ya0{bottom:687.420000px;}
.y6f{bottom:694.260000px;}
.y45{bottom:701.130000px;}
.y1b{bottom:702.930000px;}
.y6e{bottom:718.050000px;}
.y1a{bottom:726.690000px;}
.y3f{bottom:733.530000px;}
.y6d{bottom:741.810000px;}
.y19{bottom:750.450000px;}
.y9d{bottom:753.690000px;}
.y6c{bottom:765.570000px;}
.y18{bottom:774.570000px;}
.y6b{bottom:789.330000px;}
.y98{bottom:797.970000px;}
.y17{bottom:798.330000px;}
.y6a{bottom:813.090000px;}
.y16{bottom:822.090000px;}
.y69{bottom:837.255000px;}
.y15{bottom:845.895000px;}
.y68{bottom:860.655000px;}
.y3e{bottom:869.295000px;}
.y14{bottom:869.655000px;}
.y67{bottom:884.415000px;}
.y3d{bottom:893.055000px;}
.y13{bottom:893.415000px;}
.y64{bottom:900.975000px;}
.y94{bottom:907.815000px;}
.y12{bottom:917.175000px;}
.y11{bottom:940.935000px;}
.y62{bottom:948.495000px;}
.y10{bottom:964.725000px;}
.y3c{bottom:965.085000px;}
.y8e{bottom:974.085000px;}
.yf{bottom:988.485000px;}
.y3b{bottom:988.845000px;}
.ye{bottom:1012.605000px;}
.yd{bottom:1036.005000px;}
.y3a{bottom:1036.365000px;}
.yc{bottom:1059.765000px;}
.y39{bottom:1060.125000px;}
.y88{bottom:1083.570000px;}
.y38{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.y87{bottom:1107.330000px;}
.y37{bottom:1107.690000px;}
.ya{bottom:1117.410000px;}
.y36{bottom:1131.450000px;}
.y9{bottom:1149.090000px;}
.y35{bottom:1155.210000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h19{height:25.200000px;}
.h5{height:27.000000px;}
.h20{height:29.880000px;}
.h1a{height:30.600000px;}
.h16{height:30.960000px;}
.h1c{height:33.876000px;}
.h1e{height:34.200000px;}
.h2c{height:43.560000px;}
.h31{height:43.596000px;}
.h2f{height:43.956000px;}
.h1d{height:44.280000px;}
.h18{height:47.520000px;}
.h17{height:47.556000px;}
.h1f{height:47.916000px;}
.h7{height:50.229844px;}
.h21{height:50.273438px;}
.h4{height:55.147500px;}
.h24{height:65.010938px;}
.h25{height:65.010949px;}
.h26{height:65.010958px;}
.h27{height:65.010959px;}
.h29{height:65.010980px;}
.h30{height:65.160000px;}
.h2d{height:65.520000px;}
.h2a{height:65.556000px;}
.h3{height:66.757500px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.hd{height:70.664075px;}
.h11{height:70.664078px;}
.he{height:70.664085px;}
.h13{height:70.664086px;}
.h10{height:70.664088px;}
.hf{height:70.664092px;}
.h12{height:70.664099px;}
.h15{height:70.664125px;}
.h2{height:72.562500px;}
.ha{height:73.998281px;}
.h33{height:74.004654px;}
.h9{height:75.251250px;}
.h32{height:75.600000px;}
.h8{height:97.233750px;}
.h23{height:98.280000px;}
.h2b{height:109.116000px;}
.hc{height:127.116000px;}
.h22{height:222.915000px;}
.h1b{height:228.315000px;}
.h2e{height:265.065000px;}
.h14{height:265.755000px;}
.h28{height:396.465000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:34.236000px;}
.wf{width:42.516000px;}
.w13{width:48.636000px;}
.w8{width:51.480000px;}
.wb{width:51.516000px;}
.wa{width:51.840000px;}
.w9{width:51.876000px;}
.w7{width:52.236000px;}
.w14{width:60.120000px;}
.w17{width:62.280000px;}
.w5{width:62.316000px;}
.w15{width:68.796000px;}
.wc{width:73.080000px;}
.w12{width:75.636000px;}
.w11{width:75.960000px;}
.w4{width:104.076000px;}
.w10{width:110.556000px;}
.w6{width:209.595000px;}
.wd{width:288.465000px;}
.we{width:288.825000px;}
.w3{width:298.905000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x17{left:7.200000px;}
.x29{left:23.040000px;}
.x14{left:24.120000px;}
.x1f{left:30.996000px;}
.x37{left:38.550000px;}
.x8{left:43.230000px;}
.x2a{left:45.756000px;}
.x15{left:48.639000px;}
.x35{left:50.076000px;}
.x5{left:95.796000px;}
.x23{left:99.030000px;}
.x24{left:100.470000px;}
.x28{left:103.715987px;}
.xb{left:107.675987px;}
.x13{left:113.076000px;}
.x12{left:121.355987px;}
.x36{left:127.835987px;}
.x25{left:137.915987px;}
.x2b{left:139.752000px;}
.x10{left:149.111987px;}
.x20{left:158.115000px;}
.x16{left:176.835000px;}
.xa{left:182.954987px;}
.x26{left:193.034987px;}
.x3{left:196.274987px;}
.x2c{left:251.025000px;}
.xc{left:267.224987px;}
.x21{left:273.705000px;}
.x6{left:290.634000px;}
.xe{left:314.024987px;}
.xd{left:319.784987px;}
.xf{left:322.664987px;}
.x2d{left:327.705000px;}
.x2{left:333.509987px;}
.x4{left:342.869987px;}
.x18{left:387.870000px;}
.x7{left:394.710000px;}
.x2e{left:404.070000px;}
.x19{left:441.540000px;}
.x22{left:446.580000px;}
.x2f{left:453.420000px;}
.x1a{left:494.460000px;}
.x9{left:498.780000px;}
.x30{left:514.620000px;}
.x1b{left:547.770000px;}
.x31{left:584.130000px;}
.x1c{left:601.050000px;}
.x32{left:636.375000px;}
.x1d{left:654.015000px;}
.x33{left:688.575000px;}
.x1e{left:707.325000px;}
.x34{left:723.525000px;}
.x27{left:737.564987px;}
.x11{left:741.524987px;}
.x1{left:797.684987px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:29.440000pt;}
.ls3{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.406933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.135467pt;}
.ls5{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.821333pt;}
.ls4{letter-spacing:1.024000pt;}
.ls6{letter-spacing:1.152000pt;}
.lsb{letter-spacing:15.488000pt;}
.lsa{letter-spacing:47.488000pt;}
.ws5{word-spacing:-17.152000pt;}
.ws2{word-spacing:-17.024000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.296000pt;}
.ws7{word-spacing:-14.855467pt;}
.ws6{word-spacing:-14.720000pt;}
.ws3{word-spacing:-10.560000pt;}
.ws4{word-spacing:0.000000pt;}
._1e{margin-left:-4.492800pt;}
._15{margin-left:-3.379200pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:1.981440pt;}
._4{width:3.133440pt;}
._14{width:4.160000pt;}
._1c{width:5.066240pt;}
._18{width:5.982720pt;}
._e{width:7.328853pt;}
._5{width:8.489387pt;}
._6{width:9.472000pt;}
._13{width:11.215360pt;}
._10{width:12.190720pt;}
._d{width:13.534720pt;}
._12{width:14.679893pt;}
._11{width:17.088000pt;}
._16{width:18.045440pt;}
._17{width:19.248640pt;}
._f{width:20.894720pt;}
._a{width:22.277120pt;}
._9{width:23.390720pt;}
._b{width:24.465920pt;}
._c{width:25.492480pt;}
._1d{width:26.615893pt;}
._19{width:27.520000pt;}
._1a{width:28.958720pt;}
._1b{width:30.581760pt;}
._7{width:37.342720pt;}
._8{width:38.262613pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs4{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:2.560000pt;}
.y9f{bottom:5.760000pt;}
.y97{bottom:6.080000pt;}
.y66{bottom:6.400000pt;}
.y49{bottom:6.720000pt;}
.y4e{bottom:8.000000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y5b{bottom:12.160000pt;}
.y4f{bottom:12.480000pt;}
.y50{bottom:12.800000pt;}
.y46{bottom:13.120000pt;}
.y53{bottom:15.720000pt;}
.y57{bottom:16.000000pt;}
.y63{bottom:20.186667pt;}
.y40{bottom:20.480000pt;}
.y44{bottom:23.040000pt;}
.y55{bottom:24.960000pt;}
.y9e{bottom:25.280000pt;}
.ya1{bottom:25.306667pt;}
.y9c{bottom:25.320000pt;}
.y96{bottom:25.600000pt;}
.y65{bottom:27.520000pt;}
.y48{bottom:27.840000pt;}
.y59{bottom:28.186667pt;}
.yac{bottom:34.240000pt;}
.y41{bottom:37.120000pt;}
.y93{bottom:37.760000pt;}
.ya5{bottom:37.786667pt;}
.ya7{bottom:44.480000pt;}
.ya3{bottom:44.800000pt;}
.y95{bottom:44.826667pt;}
.y9b{bottom:44.840000pt;}
.y8{bottom:50.880000pt;}
.yab{bottom:53.760000pt;}
.y90{bottom:54.720000pt;}
.y9a{bottom:64.360000pt;}
.y5{bottom:65.312000pt;}
.y8f{bottom:73.920000pt;}
.y99{bottom:83.560000pt;}
.y34{bottom:95.712000pt;}
.y42{bottom:98.600000pt;}
.y60{bottom:102.432000pt;}
.y8d{bottom:108.832000pt;}
.y33{bottom:116.832000pt;}
.y5f{bottom:123.552000pt;}
.y8c{bottom:129.952000pt;}
.y86{bottom:130.272000pt;}
.y32{bottom:137.946667pt;}
.y5e{bottom:144.666667pt;}
.y8b{bottom:151.066667pt;}
.y85{bottom:151.386667pt;}
.y31{bottom:159.386667pt;}
.y5d{bottom:165.786667pt;}
.y8a{bottom:172.226667pt;}
.y84{bottom:172.546667pt;}
.y30{bottom:180.546667pt;}
.y5c{bottom:181.506667pt;}
.y89{bottom:193.346667pt;}
.y83{bottom:193.986667pt;}
.y2f{bottom:201.666667pt;}
.yaa{bottom:208.706667pt;}
.y51{bottom:210.306667pt;}
.y82{bottom:215.106667pt;}
.y2e{bottom:222.786667pt;}
.y81{bottom:236.226667pt;}
.y5a{bottom:238.466667pt;}
.y2d{bottom:243.906667pt;}
.y80{bottom:257.346667pt;}
.y2c{bottom:265.026667pt;}
.y58{bottom:266.946667pt;}
.ya4{bottom:276.546667pt;}
.y7f{bottom:278.466667pt;}
.y2b{bottom:286.173333pt;}
.y7e{bottom:299.613333pt;}
.y2a{bottom:307.293333pt;}
.y56{bottom:310.813333pt;}
.ya9{bottom:315.933333pt;}
.y7d{bottom:320.733333pt;}
.y29{bottom:328.733333pt;}
.y7c{bottom:341.853333pt;}
.y54{bottom:342.493333pt;}
.y28{bottom:349.853333pt;}
.y7b{bottom:362.973333pt;}
.y27{bottom:370.973333pt;}
.ya8{bottom:374.813333pt;}
.y52{bottom:383.133333pt;}
.y7a{bottom:384.413333pt;}
.y26{bottom:392.093333pt;}
.y79{bottom:405.573333pt;}
.y25{bottom:413.253333pt;}
.y43{bottom:414.533333pt;}
.y78{bottom:426.693333pt;}
.y24{bottom:434.373333pt;}
.y4d{bottom:443.013333pt;}
.y77{bottom:447.813333pt;}
.y23{bottom:455.493333pt;}
.y4c{bottom:467.013333pt;}
.y76{bottom:468.933333pt;}
.ya6{bottom:473.093333pt;}
.y22{bottom:476.613333pt;}
.y75{bottom:490.053333pt;}
.y21{bottom:497.413333pt;}
.y61{bottom:497.733333pt;}
.y4b{bottom:510.560000pt;}
.y74{bottom:511.200000pt;}
.y92{bottom:512.800000pt;}
.yad{bottom:518.880000pt;}
.y20{bottom:519.200000pt;}
.y73{bottom:532.320000pt;}
.y1f{bottom:540.320000pt;}
.ya2{bottom:552.160000pt;}
.y72{bottom:553.760000pt;}
.y4a{bottom:554.080000pt;}
.y1e{bottom:561.440000pt;}
.y71{bottom:574.880000pt;}
.y47{bottom:579.360000pt;}
.y1d{bottom:582.560000pt;}
.y70{bottom:596.000000pt;}
.y1c{bottom:603.680000pt;}
.ya0{bottom:611.040000pt;}
.y6f{bottom:617.120000pt;}
.y45{bottom:623.226667pt;}
.y1b{bottom:624.826667pt;}
.y6e{bottom:638.266667pt;}
.y1a{bottom:645.946667pt;}
.y3f{bottom:652.026667pt;}
.y6d{bottom:659.386667pt;}
.y19{bottom:667.066667pt;}
.y9d{bottom:669.946667pt;}
.y6c{bottom:680.506667pt;}
.y18{bottom:688.506667pt;}
.y6b{bottom:701.626667pt;}
.y98{bottom:709.306667pt;}
.y17{bottom:709.626667pt;}
.y6a{bottom:722.746667pt;}
.y16{bottom:730.746667pt;}
.y69{bottom:744.226667pt;}
.y15{bottom:751.906667pt;}
.y68{bottom:765.026667pt;}
.y3e{bottom:772.706667pt;}
.y14{bottom:773.026667pt;}
.y67{bottom:786.146667pt;}
.y3d{bottom:793.826667pt;}
.y13{bottom:794.146667pt;}
.y64{bottom:800.866667pt;}
.y94{bottom:806.946667pt;}
.y12{bottom:815.266667pt;}
.y11{bottom:836.386667pt;}
.y62{bottom:843.106667pt;}
.y10{bottom:857.533333pt;}
.y3c{bottom:857.853333pt;}
.y8e{bottom:865.853333pt;}
.yf{bottom:878.653333pt;}
.y3b{bottom:878.973333pt;}
.ye{bottom:900.093333pt;}
.yd{bottom:920.893333pt;}
.y3a{bottom:921.213333pt;}
.yc{bottom:942.013333pt;}
.y39{bottom:942.333333pt;}
.y88{bottom:963.173333pt;}
.y38{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.y87{bottom:984.293333pt;}
.y37{bottom:984.613333pt;}
.ya{bottom:993.253333pt;}
.y36{bottom:1005.733333pt;}
.y9{bottom:1021.413333pt;}
.y35{bottom:1026.853333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h19{height:22.400000pt;}
.h5{height:24.000000pt;}
.h20{height:26.560000pt;}
.h1a{height:27.200000pt;}
.h16{height:27.520000pt;}
.h1c{height:30.112000pt;}
.h1e{height:30.400000pt;}
.h2c{height:38.720000pt;}
.h31{height:38.752000pt;}
.h2f{height:39.072000pt;}
.h1d{height:39.360000pt;}
.h18{height:42.240000pt;}
.h17{height:42.272000pt;}
.h1f{height:42.592000pt;}
.h7{height:44.648750pt;}
.h21{height:44.687500pt;}
.h4{height:49.020000pt;}
.h24{height:57.787500pt;}
.h25{height:57.787510pt;}
.h26{height:57.787518pt;}
.h27{height:57.787519pt;}
.h29{height:57.787538pt;}
.h30{height:57.920000pt;}
.h2d{height:58.240000pt;}
.h2a{height:58.272000pt;}
.h3{height:59.340000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.hd{height:62.812511pt;}
.h11{height:62.812514pt;}
.he{height:62.812520pt;}
.h13{height:62.812521pt;}
.h10{height:62.812523pt;}
.hf{height:62.812526pt;}
.h12{height:62.812532pt;}
.h15{height:62.812556pt;}
.h2{height:64.500000pt;}
.ha{height:65.776250pt;}
.h33{height:65.781915pt;}
.h9{height:66.890000pt;}
.h32{height:67.200000pt;}
.h8{height:86.430000pt;}
.h23{height:87.360000pt;}
.h2b{height:96.992000pt;}
.hc{height:112.992000pt;}
.h22{height:198.146667pt;}
.h1b{height:202.946667pt;}
.h2e{height:235.613333pt;}
.h14{height:236.226667pt;}
.h28{height:352.413333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:30.432000pt;}
.wf{width:37.792000pt;}
.w13{width:43.232000pt;}
.w8{width:45.760000pt;}
.wb{width:45.792000pt;}
.wa{width:46.080000pt;}
.w9{width:46.112000pt;}
.w7{width:46.432000pt;}
.w14{width:53.440000pt;}
.w17{width:55.360000pt;}
.w5{width:55.392000pt;}
.w15{width:61.152000pt;}
.wc{width:64.960000pt;}
.w12{width:67.232000pt;}
.w11{width:67.520000pt;}
.w4{width:92.512000pt;}
.w10{width:98.272000pt;}
.w6{width:186.306667pt;}
.wd{width:256.413333pt;}
.we{width:256.733333pt;}
.w3{width:265.693333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x17{left:6.400000pt;}
.x29{left:20.480000pt;}
.x14{left:21.440000pt;}
.x1f{left:27.552000pt;}
.x37{left:34.266667pt;}
.x8{left:38.426667pt;}
.x2a{left:40.672000pt;}
.x15{left:43.234667pt;}
.x35{left:44.512000pt;}
.x5{left:85.152000pt;}
.x23{left:88.026667pt;}
.x24{left:89.306667pt;}
.x28{left:92.191988pt;}
.xb{left:95.711988pt;}
.x13{left:100.512000pt;}
.x12{left:107.871988pt;}
.x36{left:113.631988pt;}
.x25{left:122.591988pt;}
.x2b{left:124.224000pt;}
.x10{left:132.543988pt;}
.x20{left:140.546667pt;}
.x16{left:157.186667pt;}
.xa{left:162.626655pt;}
.x26{left:171.586655pt;}
.x3{left:174.466655pt;}
.x2c{left:223.133333pt;}
.xc{left:237.533322pt;}
.x21{left:243.293333pt;}
.x6{left:258.341333pt;}
.xe{left:279.133322pt;}
.xd{left:284.253322pt;}
.xf{left:286.813322pt;}
.x2d{left:291.293333pt;}
.x2{left:296.453322pt;}
.x4{left:304.773322pt;}
.x18{left:344.773333pt;}
.x7{left:350.853333pt;}
.x2e{left:359.173333pt;}
.x19{left:392.480000pt;}
.x22{left:396.960000pt;}
.x2f{left:403.040000pt;}
.x1a{left:439.520000pt;}
.x9{left:443.360000pt;}
.x30{left:457.440000pt;}
.x1b{left:486.906667pt;}
.x31{left:519.226667pt;}
.x1c{left:534.266667pt;}
.x32{left:565.666667pt;}
.x1d{left:581.346667pt;}
.x33{left:612.066667pt;}
.x1e{left:628.733333pt;}
.x34{left:643.133333pt;}
.x27{left:655.613322pt;}
.x11{left:659.133322pt;}
.x1{left:709.053322pt;}
}




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