
    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_ae8ec88ad7c593270ef9fe97.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.030273;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_e920f4f28defe6b1f9c8ee58.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_2f6450c015896ed1c7fcbd33.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091309;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_7f45e173984392dbb8ccfb78.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dbaa4cd7d358692818fb9a04.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d20e662cad92fb74413e312d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_e83350607c3608dcd69a93aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_a8c2fe39bb333abe12ceff59.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.897461;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls4{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.014400px;}
.ls7{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.152400px;}
.ls9{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.360000px;}
.lsa{letter-spacing:1.080000px;}
.lsc{letter-spacing:3.060000px;}
.lsb{letter-spacing:3.780000px;}
.ls1{letter-spacing:6.660000px;}
.ls8{letter-spacing:13.626720px;}
.ls10{letter-spacing:14.346720px;}
.lse{letter-spacing:44.586720px;}
.ls6{letter-spacing:64.026720px;}
.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:-16.560000px;}
.ws8{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws2{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.446720px;}
.ws1{word-spacing:-13.140000px;}
.ws3{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
.ws0{word-spacing:1.042560px;}
._5{margin-left:-6.249600px;}
._3{margin-left:-4.860000px;}
._11{margin-left:-3.824640px;}
._1{margin-left:-2.808000px;}
._4{margin-left:-1.036800px;}
._2{width:1.356000px;}
._b{width:2.876400px;}
._d{width:3.900240px;}
._10{width:5.142000px;}
._12{width:6.142080px;}
._a{width:7.847040px;}
._c{width:9.046560px;}
._f{width:10.546800px;}
._6{width:12.191040px;}
._7{width:13.703520px;}
._15{width:16.277520px;}
._e{width:17.289120px;}
._0{width:18.869760px;}
._8{width:20.874720px;}
._9{width:21.907920px;}
._16{width:23.384640px;}
._14{width:26.669280px;}
._13{width:28.019520px;}
._17{width:2001.616800px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:66.384000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:36.825000px;}
.y98{bottom:43.020000px;}
.y9a{bottom:55.005000px;}
.y97{bottom:61.020000px;}
.y3{bottom:68.436000px;}
.y99{bottom:73.005000px;}
.y2{bottom:87.336000px;}
.y92{bottom:97.095000px;}
.y77{bottom:112.356000px;}
.y91{bottom:115.095000px;}
.y4f{bottom:119.016000px;}
.y28{bottom:122.256000px;}
.y8f{bottom:127.476000px;}
.y56{bottom:130.356000px;}
.y96{bottom:133.095000px;}
.y76{bottom:138.096000px;}
.y4e{bottom:144.936000px;}
.y27{bottom:148.176000px;}
.y8e{bottom:153.210000px;}
.y55{bottom:156.270000px;}
.y93{bottom:160.050000px;}
.y75{bottom:164.010000px;}
.y4d{bottom:170.850000px;}
.y26{bottom:173.910000px;}
.y8d{bottom:179.130000px;}
.y54{bottom:182.010000px;}
.y95{bottom:187.170000px;}
.y74{bottom:189.930000px;}
.y4c{bottom:196.590000px;}
.y25{bottom:199.830000px;}
.y8c{bottom:205.050000px;}
.y94{bottom:205.170000px;}
.y53{bottom:207.930000px;}
.y73{bottom:215.670000px;}
.y4b{bottom:222.510000px;}
.y24{bottom:225.750000px;}
.y8b{bottom:230.970000px;}
.y52{bottom:233.850000px;}
.y72{bottom:241.590000px;}
.y4a{bottom:248.430000px;}
.y23{bottom:251.490000px;}
.y8a{bottom:256.710000px;}
.y51{bottom:259.770000px;}
.y71{bottom:267.510000px;}
.y49{bottom:274.350000px;}
.y22{bottom:277.410000px;}
.y50{bottom:286.815000px;}
.y70{bottom:293.475000px;}
.y48{bottom:300.135000px;}
.y21{bottom:303.375000px;}
.y89{bottom:316.695000px;}
.y6f{bottom:319.215000px;}
.y47{bottom:326.055000px;}
.y20{bottom:329.295000px;}
.yb0{bottom:342.975000px;}
.y6e{bottom:345.135000px;}
.y46{bottom:351.975000px;}
.y88{bottom:354.495000px;}
.y1f{bottom:355.035000px;}
.y6d{bottom:371.055000px;}
.y45{bottom:377.895000px;}
.y87{bottom:380.415000px;}
.yaf{bottom:383.655000px;}
.y1e{bottom:387.615000px;}
.y6c{bottom:396.975000px;}
.y44{bottom:403.635000px;}
.y86{bottom:406.335000px;}
.yae{bottom:409.395000px;}
.y6b{bottom:422.715000px;}
.y1d{bottom:428.115000px;}
.y43{bottom:429.555000px;}
.y85{bottom:432.255000px;}
.yad{bottom:435.315000px;}
.y6a{bottom:448.635000px;}
.y42{bottom:455.475000px;}
.y1c{bottom:456.555000px;}
.y84{bottom:457.995000px;}
.yac{bottom:461.235000px;}
.y69{bottom:474.555000px;}
.y41{bottom:481.395000px;}
.y83{bottom:483.915000px;}
.y1b{bottom:484.995000px;}
.yab{bottom:487.155000px;}
.y68{bottom:500.475000px;}
.y40{bottom:507.135000px;}
.y82{bottom:509.835000px;}
.yaa{bottom:512.895000px;}
.y1a{bottom:524.415000px;}
.y67{bottom:526.215000px;}
.y3f{bottom:533.055000px;}
.y81{bottom:535.575000px;}
.ya9{bottom:538.815000px;}
.y19{bottom:550.155000px;}
.y66{bottom:552.135000px;}
.y3e{bottom:558.975000px;}
.y80{bottom:561.495000px;}
.ya8{bottom:564.765000px;}
.y18{bottom:576.105000px;}
.y65{bottom:578.085000px;}
.y3d{bottom:584.925000px;}
.y7f{bottom:587.445000px;}
.ya7{bottom:590.685000px;}
.y64{bottom:598.605000px;}
.y17{bottom:602.025000px;}
.y3c{bottom:610.665000px;}
.y7e{bottom:613.365000px;}
.ya6{bottom:616.425000px;}
.y63{bottom:625.965000px;}
.y16{bottom:627.945000px;}
.y3b{bottom:636.585000px;}
.y7d{bottom:639.105000px;}
.ya5{bottom:642.345000px;}
.y62{bottom:651.705000px;}
.y15{bottom:653.685000px;}
.y3a{bottom:662.505000px;}
.y7c{bottom:665.025000px;}
.ya4{bottom:668.265000px;}
.y61{bottom:677.625000px;}
.y14{bottom:679.605000px;}
.y39{bottom:688.245000px;}
.y7b{bottom:690.945000px;}
.ya3{bottom:694.185000px;}
.y60{bottom:697.605000px;}
.y13{bottom:705.525000px;}
.y38{bottom:714.165000px;}
.y7a{bottom:716.865000px;}
.ya2{bottom:719.925000px;}
.y5f{bottom:724.605000px;}
.y12{bottom:731.265000px;}
.y37{bottom:740.085000px;}
.ya1{bottom:745.845000px;}
.y5e{bottom:750.525000px;}
.y79{bottom:754.665000px;}
.y11{bottom:757.185000px;}
.y36{bottom:766.005000px;}
.y90{bottom:768.780000px;}
.ya0{bottom:771.765000px;}
.y5d{bottom:776.265000px;}
.y10{bottom:783.105000px;}
.y78{bottom:789.405000px;}
.y35{bottom:791.745000px;}
.y9f{bottom:797.505000px;}
.y5c{bottom:802.185000px;}
.yf{bottom:809.025000px;}
.y34{bottom:817.665000px;}
.y9e{bottom:823.425000px;}
.y5b{bottom:828.105000px;}
.ye{bottom:834.765000px;}
.y33{bottom:843.585000px;}
.y5a{bottom:848.130000px;}
.y9d{bottom:849.390000px;}
.yd{bottom:860.730000px;}
.y32{bottom:869.550000px;}
.y59{bottom:881.070000px;}
.y9c{bottom:881.970000px;}
.yc{bottom:886.650000px;}
.y31{bottom:895.290000px;}
.y58{bottom:901.050000px;}
.yb{bottom:912.570000px;}
.y30{bottom:921.210000px;}
.y57{bottom:933.630000px;}
.ya{bottom:944.970000px;}
.y2f{bottom:947.130000px;}
.y2e{bottom:973.050000px;}
.y9{bottom:978.990000px;}
.y2d{bottom:998.790000px;}
.y8{bottom:1000.950000px;}
.y7{bottom:1022.910000px;}
.y2c{bottom:1024.710000px;}
.y6{bottom:1046.850000px;}
.y2b{bottom:1050.630000px;}
.y5{bottom:1070.610000px;}
.y2a{bottom:1076.550000px;}
.y4{bottom:1090.950000px;}
.y29{bottom:1102.290000px;}
.y1{bottom:1121.370000px;}
.h5{height:29.464453px;}
.h9{height:46.736719px;}
.ha{height:52.319180px;}
.h8{height:54.596250px;}
.hc{height:55.987031px;}
.hd{height:56.108742px;}
.h3{height:57.992344px;}
.h2{height:60.855469px;}
.h7{height:61.779375px;}
.he{height:63.035156px;}
.h6{height:68.340586px;}
.h4{height:76.201172px;}
.hb{height:232.200000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959987px;}
.x9{left:89.999987px;}
.xa{left:100.475987px;}
.x17{left:117.035987px;}
.x3{left:124.595987px;}
.xd{left:172.334987px;}
.xc{left:189.614987px;}
.xb{left:247.889987px;}
.x7{left:258.149987px;}
.x6{left:267.329987px;}
.x8{left:282.809987px;}
.x5{left:301.034987px;}
.xe{left:339.374987px;}
.x13{left:348.014987px;}
.x14{left:364.754987px;}
.x4{left:451.694987px;}
.xf{left:513.434987px;}
.x16{left:521.024987px;}
.x12{left:522.794987px;}
.x15{left:523.904987px;}
.x11{left:539.354987px;}
.x10{left:544.574987px;}
.x2{left:732.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.012800pt;}
.ls7{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.135467pt;}
.ls9{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.960000pt;}
.lsc{letter-spacing:2.720000pt;}
.lsb{letter-spacing:3.360000pt;}
.ls1{letter-spacing:5.920000pt;}
.ls8{letter-spacing:12.112640pt;}
.ls10{letter-spacing:12.752640pt;}
.lse{letter-spacing:39.632640pt;}
.ls6{letter-spacing:56.912640pt;}
.ws4{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.952640pt;}
.ws1{word-spacing:-11.680000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
.ws0{word-spacing:0.926720pt;}
._5{margin-left:-5.555200pt;}
._3{margin-left:-4.320000pt;}
._11{margin-left:-3.399680pt;}
._1{margin-left:-2.496000pt;}
._4{margin-left:-0.921600pt;}
._2{width:1.205333pt;}
._b{width:2.556800pt;}
._d{width:3.466880pt;}
._10{width:4.570667pt;}
._12{width:5.459627pt;}
._a{width:6.975147pt;}
._c{width:8.041387pt;}
._f{width:9.374933pt;}
._6{width:10.836480pt;}
._7{width:12.180907pt;}
._15{width:14.468907pt;}
._e{width:15.368107pt;}
._0{width:16.773120pt;}
._8{width:18.555307pt;}
._9{width:19.473707pt;}
._16{width:20.786347pt;}
._14{width:23.706027pt;}
._13{width:24.906240pt;}
._17{width:1779.214933pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:59.008000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:32.733333pt;}
.y98{bottom:38.240000pt;}
.y9a{bottom:48.893333pt;}
.y97{bottom:54.240000pt;}
.y3{bottom:60.832000pt;}
.y99{bottom:64.893333pt;}
.y2{bottom:77.632000pt;}
.y92{bottom:86.306667pt;}
.y77{bottom:99.872000pt;}
.y91{bottom:102.306667pt;}
.y4f{bottom:105.792000pt;}
.y28{bottom:108.672000pt;}
.y8f{bottom:113.312000pt;}
.y56{bottom:115.872000pt;}
.y96{bottom:118.306667pt;}
.y76{bottom:122.752000pt;}
.y4e{bottom:128.832000pt;}
.y27{bottom:131.712000pt;}
.y8e{bottom:136.186667pt;}
.y55{bottom:138.906667pt;}
.y93{bottom:142.266667pt;}
.y75{bottom:145.786667pt;}
.y4d{bottom:151.866667pt;}
.y26{bottom:154.586667pt;}
.y8d{bottom:159.226667pt;}
.y54{bottom:161.786667pt;}
.y95{bottom:166.373333pt;}
.y74{bottom:168.826667pt;}
.y4c{bottom:174.746667pt;}
.y25{bottom:177.626667pt;}
.y8c{bottom:182.266667pt;}
.y94{bottom:182.373333pt;}
.y53{bottom:184.826667pt;}
.y73{bottom:191.706667pt;}
.y4b{bottom:197.786667pt;}
.y24{bottom:200.666667pt;}
.y8b{bottom:205.306667pt;}
.y52{bottom:207.866667pt;}
.y72{bottom:214.746667pt;}
.y4a{bottom:220.826667pt;}
.y23{bottom:223.546667pt;}
.y8a{bottom:228.186667pt;}
.y51{bottom:230.906667pt;}
.y71{bottom:237.786667pt;}
.y49{bottom:243.866667pt;}
.y22{bottom:246.586667pt;}
.y50{bottom:254.946667pt;}
.y70{bottom:260.866667pt;}
.y48{bottom:266.786667pt;}
.y21{bottom:269.666667pt;}
.y89{bottom:281.506667pt;}
.y6f{bottom:283.746667pt;}
.y47{bottom:289.826667pt;}
.y20{bottom:292.706667pt;}
.yb0{bottom:304.866667pt;}
.y6e{bottom:306.786667pt;}
.y46{bottom:312.866667pt;}
.y88{bottom:315.106667pt;}
.y1f{bottom:315.586667pt;}
.y6d{bottom:329.826667pt;}
.y45{bottom:335.906667pt;}
.y87{bottom:338.146667pt;}
.yaf{bottom:341.026667pt;}
.y1e{bottom:344.546667pt;}
.y6c{bottom:352.866667pt;}
.y44{bottom:358.786667pt;}
.y86{bottom:361.186667pt;}
.yae{bottom:363.906667pt;}
.y6b{bottom:375.746667pt;}
.y1d{bottom:380.546667pt;}
.y43{bottom:381.826667pt;}
.y85{bottom:384.226667pt;}
.yad{bottom:386.946667pt;}
.y6a{bottom:398.786667pt;}
.y42{bottom:404.866667pt;}
.y1c{bottom:405.826667pt;}
.y84{bottom:407.106667pt;}
.yac{bottom:409.986667pt;}
.y69{bottom:421.826667pt;}
.y41{bottom:427.906667pt;}
.y83{bottom:430.146667pt;}
.y1b{bottom:431.106667pt;}
.yab{bottom:433.026667pt;}
.y68{bottom:444.866667pt;}
.y40{bottom:450.786667pt;}
.y82{bottom:453.186667pt;}
.yaa{bottom:455.906667pt;}
.y1a{bottom:466.146667pt;}
.y67{bottom:467.746667pt;}
.y3f{bottom:473.826667pt;}
.y81{bottom:476.066667pt;}
.ya9{bottom:478.946667pt;}
.y19{bottom:489.026667pt;}
.y66{bottom:490.786667pt;}
.y3e{bottom:496.866667pt;}
.y80{bottom:499.106667pt;}
.ya8{bottom:502.013333pt;}
.y18{bottom:512.093333pt;}
.y65{bottom:513.853333pt;}
.y3d{bottom:519.933333pt;}
.y7f{bottom:522.173333pt;}
.ya7{bottom:525.053333pt;}
.y64{bottom:532.093333pt;}
.y17{bottom:535.133333pt;}
.y3c{bottom:542.813333pt;}
.y7e{bottom:545.213333pt;}
.ya6{bottom:547.933333pt;}
.y63{bottom:556.413333pt;}
.y16{bottom:558.173333pt;}
.y3b{bottom:565.853333pt;}
.y7d{bottom:568.093333pt;}
.ya5{bottom:570.973333pt;}
.y62{bottom:579.293333pt;}
.y15{bottom:581.053333pt;}
.y3a{bottom:588.893333pt;}
.y7c{bottom:591.133333pt;}
.ya4{bottom:594.013333pt;}
.y61{bottom:602.333333pt;}
.y14{bottom:604.093333pt;}
.y39{bottom:611.773333pt;}
.y7b{bottom:614.173333pt;}
.ya3{bottom:617.053333pt;}
.y60{bottom:620.093333pt;}
.y13{bottom:627.133333pt;}
.y38{bottom:634.813333pt;}
.y7a{bottom:637.213333pt;}
.ya2{bottom:639.933333pt;}
.y5f{bottom:644.093333pt;}
.y12{bottom:650.013333pt;}
.y37{bottom:657.853333pt;}
.ya1{bottom:662.973333pt;}
.y5e{bottom:667.133333pt;}
.y79{bottom:670.813333pt;}
.y11{bottom:673.053333pt;}
.y36{bottom:680.893333pt;}
.y90{bottom:683.360000pt;}
.ya0{bottom:686.013333pt;}
.y5d{bottom:690.013333pt;}
.y10{bottom:696.093333pt;}
.y78{bottom:701.693333pt;}
.y35{bottom:703.773333pt;}
.y9f{bottom:708.893333pt;}
.y5c{bottom:713.053333pt;}
.yf{bottom:719.133333pt;}
.y34{bottom:726.813333pt;}
.y9e{bottom:731.933333pt;}
.y5b{bottom:736.093333pt;}
.ye{bottom:742.013333pt;}
.y33{bottom:749.853333pt;}
.y5a{bottom:753.893333pt;}
.y9d{bottom:755.013333pt;}
.yd{bottom:765.093333pt;}
.y32{bottom:772.933333pt;}
.y59{bottom:783.173333pt;}
.y9c{bottom:783.973333pt;}
.yc{bottom:788.133333pt;}
.y31{bottom:795.813333pt;}
.y58{bottom:800.933333pt;}
.yb{bottom:811.173333pt;}
.y30{bottom:818.853333pt;}
.y57{bottom:829.893333pt;}
.ya{bottom:839.973333pt;}
.y2f{bottom:841.893333pt;}
.y2e{bottom:864.933333pt;}
.y9{bottom:870.213333pt;}
.y2d{bottom:887.813333pt;}
.y8{bottom:889.733333pt;}
.y7{bottom:909.253333pt;}
.y2c{bottom:910.853333pt;}
.y6{bottom:930.533333pt;}
.y2b{bottom:933.893333pt;}
.y5{bottom:951.653333pt;}
.y2a{bottom:956.933333pt;}
.y4{bottom:969.733333pt;}
.y29{bottom:979.813333pt;}
.y1{bottom:996.773333pt;}
.h5{height:26.190625pt;}
.h9{height:41.543750pt;}
.ha{height:46.505938pt;}
.h8{height:48.530000pt;}
.hc{height:49.766250pt;}
.hd{height:49.874437pt;}
.h3{height:51.548750pt;}
.h2{height:54.093750pt;}
.h7{height:54.915000pt;}
.he{height:56.031250pt;}
.h6{height:60.747187pt;}
.h4{height:67.734375pt;}
.hb{height:206.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519988pt;}
.x9{left:79.999988pt;}
.xa{left:89.311988pt;}
.x17{left:104.031988pt;}
.x3{left:110.751988pt;}
.xd{left:153.186655pt;}
.xc{left:168.546655pt;}
.xb{left:220.346655pt;}
.x7{left:229.466655pt;}
.x6{left:237.626655pt;}
.x8{left:251.386655pt;}
.x5{left:267.586655pt;}
.xe{left:301.666655pt;}
.x13{left:309.346655pt;}
.x14{left:324.226655pt;}
.x4{left:401.506655pt;}
.xf{left:456.386655pt;}
.x16{left:463.133322pt;}
.x12{left:464.706655pt;}
.x15{left:465.693322pt;}
.x11{left:479.426655pt;}
.x10{left:484.066655pt;}
.x2{left:650.853322pt;}
}




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