
    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_f321e76b986cb0b333bdd98d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_1bd032fe4de3dc12aeaf4c9f.woff')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_bb3f8236f41bbeceb2b2ad03.woff')format("woff");}.ff3{font-family:ff3;line-height:0.912109;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_f4208dc8749fa6294331fc72.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_217d15d9838f5f8669b6e1c0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_779b5dde2cc4cd5be99cefdb.woff')format("woff");}.ff6{font-family:ff6;line-height:1.084473;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_3160b8f7eaa2701ea7a611d9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084473;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_6de3e16bde1edc8108c3cf99.woff')format("woff");}.ff8{font-family:ff8;line-height:1.024902;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_05c376140b81b249daaffd6e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.024902;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_cf4ec5d49a8dbdd6205b892a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.061035;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_7baa2f145dfec601f6de9e56.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls5{letter-spacing:-0.036000px;}
.ls7{letter-spacing:-0.000003px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:11.160000px;}
.ls3{letter-spacing:14.760000px;}
.ls2{letter-spacing:20.160000px;}
.lsc{letter-spacing:38.880000px;}
.lsb{letter-spacing:95.664000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws0{word-spacing:-16.650000px;}
.ws6{word-spacing:-15.912000px;}
.ws3{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.768000px;}
.ws7{word-spacing:-15.696000px;}
.ws2{word-spacing:-11.844000px;}
.ws1{word-spacing:-10.533600px;}
.ws5{word-spacing:0.000000px;}
._b{margin-left:-4.507080px;}
._a{margin-left:-3.168000px;}
._1e{margin-left:-2.087400px;}
._1{margin-left:-1.036920px;}
._0{width:1.172280px;}
._4{width:2.880000px;}
._5{width:3.888000px;}
._8{width:4.896000px;}
._17{width:6.508920px;}
._16{width:7.560000px;}
._18{width:8.784000px;}
._21{width:10.008000px;}
._c{width:11.160000px;}
._15{width:12.600000px;}
._13{width:13.680000px;}
._1f{width:14.832000px;}
._19{width:16.947720px;}
._1a{width:18.720000px;}
._d{width:20.232000px;}
._7{width:22.420920px;}
._3{width:24.264000px;}
._2{width:25.272000px;}
._1b{width:31.104000px;}
._f{width:32.760000px;}
._1d{width:35.928000px;}
._1c{width:36.936000px;}
._20{width:38.808000px;}
._9{width:41.184000px;}
._11{width:43.632000px;}
._10{width:44.712000px;}
._e{width:46.224000px;}
._12{width:48.384000px;}
._14{width:64.416000px;}
._6{width:91.368000px;}
.fc1{color:rgb(56,86,35);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(237,125,49);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:47.880000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.ya{bottom:1.350000px;}
.ye{bottom:2.250000px;}
.y10{bottom:2.520000px;}
.y4{bottom:3.600000px;}
.y6{bottom:4.590000px;}
.y12{bottom:5.220000px;}
.y52{bottom:7.020000px;}
.y79{bottom:7.050000px;}
.y55{bottom:7.110000px;}
.y8{bottom:7.380000px;}
.y77{bottom:10.800000px;}
.yd{bottom:16.290000px;}
.y59{bottom:19.170000px;}
.y56{bottom:19.260000px;}
.yc{bottom:30.420000px;}
.y50{bottom:31.320000px;}
.y6b{bottom:31.410000px;}
.y7{bottom:43.020000px;}
.y6a{bottom:43.560000px;}
.y5{bottom:45.720000px;}
.y3{bottom:46.620000px;}
.y2{bottom:51.030000px;}
.y51{bottom:55.620000px;}
.y8f{bottom:94.950000px;}
.y3d{bottom:106.560000px;}
.y68{bottom:112.770000px;}
.y8e{bottom:119.250000px;}
.y3c{bottom:130.860000px;}
.y67{bottom:137.070000px;}
.y8d{bottom:143.460000px;}
.y3b{bottom:155.070000px;}
.y66{bottom:161.370000px;}
.y8c{bottom:167.760000px;}
.y3a{bottom:179.370000px;}
.y65{bottom:185.580000px;}
.y8b{bottom:192.060000px;}
.y39{bottom:203.670000px;}
.y64{bottom:209.880000px;}
.y8a{bottom:216.270000px;}
.y38{bottom:227.910000px;}
.y63{bottom:234.210000px;}
.y89{bottom:240.600000px;}
.y37{bottom:252.210000px;}
.y62{bottom:258.420000px;}
.y88{bottom:264.900000px;}
.y36{bottom:276.420000px;}
.y61{bottom:282.720000px;}
.y87{bottom:289.110000px;}
.y35{bottom:300.720000px;}
.y60{bottom:307.020000px;}
.y86{bottom:313.410000px;}
.y34{bottom:322.590000px;}
.y5f{bottom:331.230000px;}
.y85{bottom:337.710000px;}
.y33{bottom:347.250000px;}
.y5e{bottom:355.530000px;}
.y84{bottom:361.920000px;}
.y32{bottom:374.250000px;}
.y5d{bottom:379.740000px;}
.y83{bottom:386.220000px;}
.y31{bottom:398.550000px;}
.y5c{bottom:404.040000px;}
.y82{bottom:410.520000px;}
.y30{bottom:422.760000px;}
.y5b{bottom:428.340000px;}
.y81{bottom:434.730000px;}
.y2f{bottom:447.060000px;}
.y5a{bottom:449.670000px;}
.y80{bottom:459.030000px;}
.y2e{bottom:471.270000px;}
.y58{bottom:479.190000px;}
.y7f{bottom:483.240000px;}
.y2d{bottom:495.570000px;}
.y7e{bottom:507.540000px;}
.y2c{bottom:519.870000px;}
.y7d{bottom:531.840000px;}
.y57{bottom:532.920000px;}
.y2b{bottom:544.080000px;}
.y7c{bottom:553.170000px;}
.y54{bottom:562.440000px;}
.y2a{bottom:568.380000px;}
.y7b{bottom:582.690000px;}
.y29{bottom:592.680000px;}
.y7a{bottom:612.210000px;}
.y53{bottom:616.260000px;}
.y28{bottom:616.890000px;}
.y27{bottom:641.190000px;}
.y78{bottom:641.730000px;}
.y4f{bottom:645.810000px;}
.y26{bottom:665.520000px;}
.y76{bottom:671.280000px;}
.y25{bottom:687.390000px;}
.y75{bottom:708.360000px;}
.y24{bottom:711.960000px;}
.y4e{bottom:729.780000px;}
.y23{bottom:738.960000px;}
.y74{bottom:743.820000px;}
.y9c{bottom:753.720000px;}
.y4d{bottom:754.080000px;}
.y22{bottom:763.260000px;}
.y73{bottom:768.120000px;}
.y9b{bottom:778.020000px;}
.y4c{bottom:778.290000px;}
.y21{bottom:787.560000px;}
.y72{bottom:792.330000px;}
.y9a{bottom:802.230000px;}
.y4b{bottom:802.590000px;}
.y20{bottom:811.770000px;}
.y71{bottom:816.630000px;}
.y99{bottom:826.530000px;}
.y4a{bottom:826.890000px;}
.y1f{bottom:836.070000px;}
.y70{bottom:837.960000px;}
.y98{bottom:850.740000px;}
.y49{bottom:851.100000px;}
.y1e{bottom:860.370000px;}
.y6f{bottom:867.480000px;}
.y97{bottom:875.040000px;}
.y48{bottom:875.400000px;}
.y1d{bottom:884.580000px;}
.y96{bottom:899.340000px;}
.y47{bottom:899.700000px;}
.y1c{bottom:908.880000px;}
.y6e{bottom:921.300000px;}
.y95{bottom:923.550000px;}
.y46{bottom:923.910000px;}
.y1b{bottom:933.180000px;}
.y94{bottom:947.850000px;}
.y45{bottom:948.210000px;}
.y6d{bottom:950.730000px;}
.y1a{bottom:957.390000px;}
.y93{bottom:972.150000px;}
.y44{bottom:972.510000px;}
.y6c{bottom:980.250000px;}
.y19{bottom:981.690000px;}
.y92{bottom:996.360000px;}
.y43{bottom:996.720000px;}
.y18{bottom:1005.900000px;}
.y69{bottom:1009.770000px;}
.y91{bottom:1020.660000px;}
.y42{bottom:1021.020000px;}
.y17{bottom:1027.140000px;}
.y90{bottom:1042.530000px;}
.y41{bottom:1045.320000px;}
.y16{bottom:1048.200000px;}
.y15{bottom:1069.200000px;}
.y40{bottom:1069.560000px;}
.y14{bottom:1090.710000px;}
.y3f{bottom:1093.860000px;}
.y13{bottom:1115.370000px;}
.y3e{bottom:1118.070000px;}
.y11{bottom:1150.740000px;}
.yf{bottom:1156.050000px;}
.yb{bottom:1173.600000px;}
.y9{bottom:1213.650000px;}
.y1{bottom:1245.780000px;}
.hc{height:13.950000px;}
.hd{height:18.090000px;}
.h4{height:18.900000px;}
.h6{height:19.980000px;}
.h7{height:22.770000px;}
.h8{height:24.210000px;}
.h18{height:24.240000px;}
.h14{height:24.300000px;}
.h17{height:31.860000px;}
.hb{height:40.539023px;}
.ha{height:41.850000px;}
.he{height:45.720703px;}
.h13{height:48.510000px;}
.h15{height:60.679688px;}
.h2{height:60.960938px;}
.h11{height:62.367188px;}
.h5{height:64.657617px;}
.h3{height:70.664062px;}
.hf{height:71.019492px;}
.h10{height:72.562500px;}
.h12{height:72.810000px;}
.h16{height:72.840000px;}
.h19{height:74.004654px;}
.h9{height:81.382852px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:66.330000px;}
.w13{width:97.200000px;}
.w11{width:120.330000px;}
.w9{width:124.920000px;}
.w6{width:147.510000px;}
.w5{width:149.760000px;}
.we{width:155.370000px;}
.wd{width:165.600000px;}
.wc{width:168.420000px;}
.wb{width:173.190000px;}
.w10{width:176.340000px;}
.w8{width:192.540000px;}
.wa{width:200.100000px;}
.wf{width:255.090000px;}
.w7{width:270.840000px;}
.w4{width:340.530000px;}
.w12{width:403.410000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:1.440000px;}
.x16{left:6.660000px;}
.x5{left:10.800000px;}
.x33{left:12.060000px;}
.x31{left:14.130000px;}
.x2e{left:15.570000px;}
.x8{left:17.550000px;}
.x37{left:19.440000px;}
.x3{left:20.790000px;}
.x30{left:22.950000px;}
.x1f{left:26.550000px;}
.x2d{left:28.170000px;}
.x21{left:29.460000px;}
.x18{left:31.500000px;}
.x20{left:34.020000px;}
.x2b{left:36.450000px;}
.x28{left:37.710000px;}
.x26{left:42.330000px;}
.x1e{left:47.880000px;}
.x1c{left:50.130000px;}
.x32{left:57.810000px;}
.x24{left:66.060000px;}
.x1a{left:70.500000px;}
.x25{left:72.900000px;}
.x23{left:74.250000px;}
.x22{left:76.710000px;}
.x4{left:77.850000px;}
.x1{left:85.049987px;}
.x15{left:88.380000px;}
.x11{left:94.139987px;}
.x13{left:102.059987px;}
.x2f{left:115.770000px;}
.x29{left:118.560000px;}
.x10{left:127.649987px;}
.xb{left:133.319987px;}
.x35{left:151.020000px;}
.x7{left:164.010000px;}
.x9{left:171.210000px;}
.x34{left:194.700000px;}
.x12{left:201.989987px;}
.x27{left:246.810000px;}
.xc{left:248.249987px;}
.x14{left:255.089987px;}
.xf{left:278.039987px;}
.x17{left:291.450000px;}
.xe{left:295.769987px;}
.xd{left:373.289987px;}
.x38{left:390.029987px;}
.x2{left:438.180000px;}
.x1b{left:467.610000px;}
.x2a{left:504.870000px;}
.x36{left:601.200000px;}
.x1d{left:639.000000px;}
.x6{left:676.080000px;}
.x2c{left:684.270000px;}
.xa{left:708.210000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:-0.032000pt;}
.ls7{letter-spacing:-0.000003pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:9.920000pt;}
.ls3{letter-spacing:13.120000pt;}
.ls2{letter-spacing:17.920000pt;}
.lsc{letter-spacing:34.560000pt;}
.lsb{letter-spacing:85.034667pt;}
.ws4{word-spacing:-64.000000pt;}
.ws0{word-spacing:-14.800000pt;}
.ws6{word-spacing:-14.144000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws8{word-spacing:-14.016000pt;}
.ws7{word-spacing:-13.952000pt;}
.ws2{word-spacing:-10.528000pt;}
.ws1{word-spacing:-9.363200pt;}
.ws5{word-spacing:0.000000pt;}
._b{margin-left:-4.006293pt;}
._a{margin-left:-2.816000pt;}
._1e{margin-left:-1.855467pt;}
._1{margin-left:-0.921707pt;}
._0{width:1.042027pt;}
._4{width:2.560000pt;}
._5{width:3.456000pt;}
._8{width:4.352000pt;}
._17{width:5.785707pt;}
._16{width:6.720000pt;}
._18{width:7.808000pt;}
._21{width:8.896000pt;}
._c{width:9.920000pt;}
._15{width:11.200000pt;}
._13{width:12.160000pt;}
._1f{width:13.184000pt;}
._19{width:15.064640pt;}
._1a{width:16.640000pt;}
._d{width:17.984000pt;}
._7{width:19.929707pt;}
._3{width:21.568000pt;}
._2{width:22.464000pt;}
._1b{width:27.648000pt;}
._f{width:29.120000pt;}
._1d{width:31.936000pt;}
._1c{width:32.832000pt;}
._20{width:34.496000pt;}
._9{width:36.608000pt;}
._11{width:38.784000pt;}
._10{width:39.744000pt;}
._e{width:41.088000pt;}
._12{width:43.008000pt;}
._14{width:57.258667pt;}
._6{width:81.216000pt;}
.fs3{font-size:42.560000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:1.200000pt;}
.ye{bottom:2.000000pt;}
.y10{bottom:2.240000pt;}
.y4{bottom:3.200000pt;}
.y6{bottom:4.080000pt;}
.y12{bottom:4.640000pt;}
.y52{bottom:6.240000pt;}
.y79{bottom:6.266667pt;}
.y55{bottom:6.320000pt;}
.y8{bottom:6.560000pt;}
.y77{bottom:9.600000pt;}
.yd{bottom:14.480000pt;}
.y59{bottom:17.040000pt;}
.y56{bottom:17.120000pt;}
.yc{bottom:27.040000pt;}
.y50{bottom:27.840000pt;}
.y6b{bottom:27.920000pt;}
.y7{bottom:38.240000pt;}
.y6a{bottom:38.720000pt;}
.y5{bottom:40.640000pt;}
.y3{bottom:41.440000pt;}
.y2{bottom:45.360000pt;}
.y51{bottom:49.440000pt;}
.y8f{bottom:84.400000pt;}
.y3d{bottom:94.720000pt;}
.y68{bottom:100.240000pt;}
.y8e{bottom:106.000000pt;}
.y3c{bottom:116.320000pt;}
.y67{bottom:121.840000pt;}
.y8d{bottom:127.520000pt;}
.y3b{bottom:137.840000pt;}
.y66{bottom:143.440000pt;}
.y8c{bottom:149.120000pt;}
.y3a{bottom:159.440000pt;}
.y65{bottom:164.960000pt;}
.y8b{bottom:170.720000pt;}
.y39{bottom:181.040000pt;}
.y64{bottom:186.560000pt;}
.y8a{bottom:192.240000pt;}
.y38{bottom:202.586667pt;}
.y63{bottom:208.186667pt;}
.y89{bottom:213.866667pt;}
.y37{bottom:224.186667pt;}
.y62{bottom:229.706667pt;}
.y88{bottom:235.466667pt;}
.y36{bottom:245.706667pt;}
.y61{bottom:251.306667pt;}
.y87{bottom:256.986667pt;}
.y35{bottom:267.306667pt;}
.y60{bottom:272.906667pt;}
.y86{bottom:278.586667pt;}
.y34{bottom:286.746667pt;}
.y5f{bottom:294.426667pt;}
.y85{bottom:300.186667pt;}
.y33{bottom:308.666667pt;}
.y5e{bottom:316.026667pt;}
.y84{bottom:321.706667pt;}
.y32{bottom:332.666667pt;}
.y5d{bottom:337.546667pt;}
.y83{bottom:343.306667pt;}
.y31{bottom:354.266667pt;}
.y5c{bottom:359.146667pt;}
.y82{bottom:364.906667pt;}
.y30{bottom:375.786667pt;}
.y5b{bottom:380.746667pt;}
.y81{bottom:386.426667pt;}
.y2f{bottom:397.386667pt;}
.y5a{bottom:399.706667pt;}
.y80{bottom:408.026667pt;}
.y2e{bottom:418.906667pt;}
.y58{bottom:425.946667pt;}
.y7f{bottom:429.546667pt;}
.y2d{bottom:440.506667pt;}
.y7e{bottom:451.146667pt;}
.y2c{bottom:462.106667pt;}
.y7d{bottom:472.746667pt;}
.y57{bottom:473.706667pt;}
.y2b{bottom:483.626667pt;}
.y7c{bottom:491.706667pt;}
.y54{bottom:499.946667pt;}
.y2a{bottom:505.226667pt;}
.y7b{bottom:517.946667pt;}
.y29{bottom:526.826667pt;}
.y7a{bottom:544.186667pt;}
.y53{bottom:547.786667pt;}
.y28{bottom:548.346667pt;}
.y27{bottom:569.946667pt;}
.y78{bottom:570.426667pt;}
.y4f{bottom:574.053333pt;}
.y26{bottom:591.573333pt;}
.y76{bottom:596.693333pt;}
.y25{bottom:611.013333pt;}
.y75{bottom:629.653333pt;}
.y24{bottom:632.853333pt;}
.y4e{bottom:648.693333pt;}
.y23{bottom:656.853333pt;}
.y74{bottom:661.173333pt;}
.y9c{bottom:669.973333pt;}
.y4d{bottom:670.293333pt;}
.y22{bottom:678.453333pt;}
.y73{bottom:682.773333pt;}
.y9b{bottom:691.573333pt;}
.y4c{bottom:691.813333pt;}
.y21{bottom:700.053333pt;}
.y72{bottom:704.293333pt;}
.y9a{bottom:713.093333pt;}
.y4b{bottom:713.413333pt;}
.y20{bottom:721.573333pt;}
.y71{bottom:725.893333pt;}
.y99{bottom:734.693333pt;}
.y4a{bottom:735.013333pt;}
.y1f{bottom:743.173333pt;}
.y70{bottom:744.853333pt;}
.y98{bottom:756.213333pt;}
.y49{bottom:756.533333pt;}
.y1e{bottom:764.773333pt;}
.y6f{bottom:771.093333pt;}
.y97{bottom:777.813333pt;}
.y48{bottom:778.133333pt;}
.y1d{bottom:786.293333pt;}
.y96{bottom:799.413333pt;}
.y47{bottom:799.733333pt;}
.y1c{bottom:807.893333pt;}
.y6e{bottom:818.933333pt;}
.y95{bottom:820.933333pt;}
.y46{bottom:821.253333pt;}
.y1b{bottom:829.493333pt;}
.y94{bottom:842.533333pt;}
.y45{bottom:842.853333pt;}
.y6d{bottom:845.093333pt;}
.y1a{bottom:851.013333pt;}
.y93{bottom:864.133333pt;}
.y44{bottom:864.453333pt;}
.y6c{bottom:871.333333pt;}
.y19{bottom:872.613333pt;}
.y92{bottom:885.653333pt;}
.y43{bottom:885.973333pt;}
.y18{bottom:894.133333pt;}
.y69{bottom:897.573333pt;}
.y91{bottom:907.253333pt;}
.y42{bottom:907.573333pt;}
.y17{bottom:913.013333pt;}
.y90{bottom:926.693333pt;}
.y41{bottom:929.173333pt;}
.y16{bottom:931.733333pt;}
.y15{bottom:950.400000pt;}
.y40{bottom:950.720000pt;}
.y14{bottom:969.520000pt;}
.y3f{bottom:972.320000pt;}
.y13{bottom:991.440000pt;}
.y3e{bottom:993.840000pt;}
.y11{bottom:1022.880000pt;}
.yf{bottom:1027.600000pt;}
.yb{bottom:1043.200000pt;}
.y9{bottom:1078.800000pt;}
.y1{bottom:1107.360000pt;}
.hc{height:12.400000pt;}
.hd{height:16.080000pt;}
.h4{height:16.800000pt;}
.h6{height:17.760000pt;}
.h7{height:20.240000pt;}
.h8{height:21.520000pt;}
.h18{height:21.546667pt;}
.h14{height:21.600000pt;}
.h17{height:28.320000pt;}
.hb{height:36.034687pt;}
.ha{height:37.200000pt;}
.he{height:40.640625pt;}
.h13{height:43.120000pt;}
.h15{height:53.937500pt;}
.h2{height:54.187500pt;}
.h11{height:55.437500pt;}
.h5{height:57.473437pt;}
.h3{height:62.812500pt;}
.hf{height:63.128437pt;}
.h10{height:64.500000pt;}
.h12{height:64.720000pt;}
.h16{height:64.746667pt;}
.h19{height:65.781915pt;}
.h9{height:72.340312pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:58.960000pt;}
.w13{width:86.400000pt;}
.w11{width:106.960000pt;}
.w9{width:111.040000pt;}
.w6{width:131.120000pt;}
.w5{width:133.120000pt;}
.we{width:138.106667pt;}
.wd{width:147.200000pt;}
.wc{width:149.706667pt;}
.wb{width:153.946667pt;}
.w10{width:156.746667pt;}
.w8{width:171.146667pt;}
.wa{width:177.866667pt;}
.wf{width:226.746667pt;}
.w7{width:240.746667pt;}
.w4{width:302.693333pt;}
.w12{width:358.586667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:1.280000pt;}
.x16{left:5.920000pt;}
.x5{left:9.600000pt;}
.x33{left:10.720000pt;}
.x31{left:12.560000pt;}
.x2e{left:13.840000pt;}
.x8{left:15.600000pt;}
.x37{left:17.280000pt;}
.x3{left:18.480000pt;}
.x30{left:20.400000pt;}
.x1f{left:23.600000pt;}
.x2d{left:25.040000pt;}
.x21{left:26.186667pt;}
.x18{left:28.000000pt;}
.x20{left:30.240000pt;}
.x2b{left:32.400000pt;}
.x28{left:33.520000pt;}
.x26{left:37.626667pt;}
.x1e{left:42.560000pt;}
.x1c{left:44.560000pt;}
.x32{left:51.386667pt;}
.x24{left:58.720000pt;}
.x1a{left:62.666667pt;}
.x25{left:64.800000pt;}
.x23{left:66.000000pt;}
.x22{left:68.186667pt;}
.x4{left:69.200000pt;}
.x1{left:75.599988pt;}
.x15{left:78.560000pt;}
.x11{left:83.679988pt;}
.x13{left:90.719988pt;}
.x2f{left:102.906667pt;}
.x29{left:105.386667pt;}
.x10{left:113.466655pt;}
.xb{left:118.506655pt;}
.x35{left:134.240000pt;}
.x7{left:145.786667pt;}
.x9{left:152.186667pt;}
.x34{left:173.066667pt;}
.x12{left:179.546655pt;}
.x27{left:219.386667pt;}
.xc{left:220.666655pt;}
.x14{left:226.746655pt;}
.xf{left:247.146655pt;}
.x17{left:259.066667pt;}
.xe{left:262.906655pt;}
.xd{left:331.813322pt;}
.x38{left:346.693322pt;}
.x2{left:389.493333pt;}
.x1b{left:415.653333pt;}
.x2a{left:448.773333pt;}
.x36{left:534.400000pt;}
.x1d{left:568.000000pt;}
.x6{left:600.960000pt;}
.x2c{left:608.240000pt;}
.xa{left:629.520000pt;}
}




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