
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e03fa9844849a73dfebd9367.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_874131d18710ec3a443ac816.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_0e1a91fd2f50a914bfb2939c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.915527;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_65af09bee9a2702c1f0a0a55.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fbca0a35294b8bdf3e156a84.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_2554dd2def53964c66661b3d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_40c7c7dc3121f8a7638cb056.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5da6b17f18ff6799663df434.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_89886ef13e0b2665c5f02701.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bb4239d43b4d0e761230b045.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9396d32e13358ba9b29cb9e5.woff2')format("woff");}.ffd{font-family:ffd;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);}
.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);}
.v2{vertical-align:-81.360000px;}
.v1{vertical-align:-79.200000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.180000px;}
.ls12{letter-spacing:-0.018720px;}
.ls8{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.238200px;}
.ls11{letter-spacing:0.252720px;}
.ls1{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.341400px;}
.ls6{letter-spacing:0.350400px;}
.ls5{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.504000px;}
.ls4{letter-spacing:6.480000px;}
.ls10{letter-spacing:14.940000px;}
.ls7{letter-spacing:17.820000px;}
.ls13{letter-spacing:29.340000px;}
.ls15{letter-spacing:34.128000px;}
.ls2{letter-spacing:127.020000px;}
.ls14{letter-spacing:906.276000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.410400px;}
.ws9{word-spacing:-21.401400px;}
.wsc{word-spacing:-21.312720px;}
.ws6{word-spacing:-21.060000px;}
.wsd{word-spacing:-21.041280px;}
.ws8{word-spacing:-20.700000px;}
.ws4{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.712000px;}
.ws2{word-spacing:-17.208000px;}
.ws0{word-spacing:-0.358440px;}
.wsb{word-spacing:0.000000px;}
._1a{margin-left:-2.148000px;}
._0{margin-left:-1.126080px;}
._1{width:1.092000px;}
._d{width:2.124000px;}
._17{width:3.298320px;}
._9{width:4.369920px;}
._4{width:5.614080px;}
._3{width:6.912000px;}
._11{width:8.521920px;}
._16{width:10.392480px;}
._b{width:11.736000px;}
._c{width:13.176000px;}
._2{width:14.664000px;}
._14{width:16.010640px;}
._13{width:17.101920px;}
._15{width:18.468240px;}
._5{width:19.560000px;}
._6{width:21.384000px;}
._a{width:22.656000px;}
._8{width:24.504000px;}
._7{width:25.824000px;}
._28{width:27.402960px;}
._1c{width:28.557360px;}
._18{width:29.736720px;}
._23{width:31.135440px;}
._e{width:32.160000px;}
._12{width:33.390480px;}
._19{width:34.485120px;}
._1e{width:35.847120px;}
._10{width:37.292160px;}
._f{width:38.712000px;}
._1b{width:40.244880px;}
._1f{width:41.266800px;}
._22{width:43.225920px;}
._1d{width:44.639040px;}
._29{width:47.413440px;}
._2a{width:48.865680px;}
._24{width:52.565760px;}
._25{width:53.615520px;}
._2b{width:55.935360px;}
._2d{width:57.075600px;}
._2c{width:58.936080px;}
._26{width:63.180000px;}
._27{width:64.657200px;}
._20{width:68.195280px;}
._21{width:69.344880px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.400000px;}
.y4{bottom:8.100000px;}
.y7{bottom:9.000000px;}
.y5{bottom:15.660000px;}
.y2{bottom:57.600000px;}
.y36{bottom:96.696000px;}
.y5c{bottom:99.396000px;}
.y85{bottom:101.916000px;}
.y5b{bottom:123.516000px;}
.y35{bottom:124.416000px;}
.y84{bottom:126.036000px;}
.y94{bottom:127.656000px;}
.y5a{bottom:147.816000px;}
.y83{bottom:150.150000px;}
.y93{bottom:151.950000px;}
.y34{bottom:152.310000px;}
.y59{bottom:171.930000px;}
.y82{bottom:174.270000px;}
.y92{bottom:179.670000px;}
.y33{bottom:180.030000px;}
.y81{bottom:198.390000px;}
.y58{bottom:199.650000px;}
.y91{bottom:203.250000px;}
.y32{bottom:207.750000px;}
.y80{bottom:222.690000px;}
.y90{bottom:223.950000px;}
.y57{bottom:227.370000px;}
.y31{bottom:235.470000px;}
.y8f{bottom:244.650000px;}
.y7f{bottom:246.810000px;}
.y56{bottom:255.270000px;}
.y30{bottom:263.370000px;}
.y8e{bottom:265.350000px;}
.y7e{bottom:270.930000px;}
.y55{bottom:282.990000px;}
.y8d{bottom:286.050000px;}
.y2f{bottom:291.090000px;}
.y7d{bottom:295.050000px;}
.y8c{bottom:306.750000px;}
.y54{bottom:310.710000px;}
.y2e{bottom:318.810000px;}
.y7c{bottom:319.170000px;}
.y8b{bottom:327.495000px;}
.y53{bottom:338.475000px;}
.y7b{bottom:343.335000px;}
.y2d{bottom:346.575000px;}
.y8a{bottom:348.195000px;}
.y52{bottom:366.375000px;}
.y7a{bottom:367.455000px;}
.y89{bottom:368.895000px;}
.y2c{bottom:374.475000px;}
.y88{bottom:389.595000px;}
.y79{bottom:391.755000px;}
.y51{bottom:394.095000px;}
.y2b{bottom:398.055000px;}
.y87{bottom:410.295000px;}
.y78{bottom:415.875000px;}
.y2a{bottom:418.755000px;}
.y50{bottom:421.815000px;}
.y29{bottom:439.455000px;}
.y77{bottom:439.995000px;}
.y4f{bottom:449.715000px;}
.y86{bottom:450.975000px;}
.y28{bottom:460.155000px;}
.y76{bottom:464.115000px;}
.y4e{bottom:477.435000px;}
.y27{bottom:480.855000px;}
.y75{bottom:488.235000px;}
.y26{bottom:501.555000px;}
.y4d{bottom:505.155000px;}
.y74{bottom:512.355000px;}
.y25{bottom:522.255000px;}
.y4c{bottom:532.875000px;}
.y73{bottom:536.655000px;}
.y24{bottom:542.955000px;}
.y4b{bottom:560.775000px;}
.y23{bottom:562.395000px;}
.y22{bottom:579.135000px;}
.y72{bottom:584.895000px;}
.y4a{bottom:588.495000px;}
.y21{bottom:599.865000px;}
.y71{bottom:609.045000px;}
.y49{bottom:616.245000px;}
.y20{bottom:620.565000px;}
.y70{bottom:633.165000px;}
.y1f{bottom:641.265000px;}
.y48{bottom:644.145000px;}
.y6f{bottom:657.285000px;}
.y1e{bottom:661.965000px;}
.y47{bottom:671.865000px;}
.y6e{bottom:681.405000px;}
.y1d{bottom:682.665000px;}
.y46{bottom:699.585000px;}
.y1c{bottom:703.365000px;}
.y6d{bottom:705.705000px;}
.y1b{bottom:724.065000px;}
.y45{bottom:727.305000px;}
.y6c{bottom:729.825000px;}
.y1a{bottom:744.765000px;}
.y6b{bottom:753.945000px;}
.y44{bottom:755.205000px;}
.y19{bottom:765.465000px;}
.y6a{bottom:778.065000px;}
.y43{bottom:782.925000px;}
.y18{bottom:786.165000px;}
.y69{bottom:802.185000px;}
.y17{bottom:806.865000px;}
.y42{bottom:810.645000px;}
.y68{bottom:826.305000px;}
.y16{bottom:827.565000px;}
.y41{bottom:838.365000px;}
.y15{bottom:848.265000px;}
.y67{bottom:850.605000px;}
.y40{bottom:866.310000px;}
.y14{bottom:869.010000px;}
.y66{bottom:874.770000px;}
.y13{bottom:888.450000px;}
.y3f{bottom:894.030000px;}
.y65{bottom:898.890000px;}
.y3e{bottom:921.750000px;}
.y64{bottom:923.010000px;}
.y12{bottom:924.630000px;}
.y11{bottom:941.370000px;}
.y63{bottom:947.130000px;}
.y3d{bottom:949.650000px;}
.y10{bottom:962.070000px;}
.y62{bottom:971.250000px;}
.y3c{bottom:977.370000px;}
.yf{bottom:982.410000px;}
.y61{bottom:995.370000px;}
.ye{bottom:1002.030000px;}
.y3b{bottom:1005.090000px;}
.yd{bottom:1017.330000px;}
.y60{bottom:1019.670000px;}
.y3a{bottom:1032.810000px;}
.yc{bottom:1038.030000px;}
.y5f{bottom:1043.790000px;}
.yb{bottom:1058.370000px;}
.y39{bottom:1060.710000px;}
.y5e{bottom:1067.910000px;}
.ya{bottom:1077.450000px;}
.y38{bottom:1088.430000px;}
.y9{bottom:1091.670000px;}
.y5d{bottom:1092.030000px;}
.y8{bottom:1115.790000px;}
.y37{bottom:1116.150000px;}
.y3{bottom:1173.960000px;}
.y1{bottom:1194.300000px;}
.h3{height:33.120000px;}
.h13{height:35.332031px;}
.h7{height:38.697900px;}
.ha{height:40.985156px;}
.h5{height:44.098500px;}
.hd{height:47.344922px;}
.hf{height:52.628906px;}
.he{height:52.971680px;}
.h12{height:58.819922px;}
.h2{height:65.884219px;}
.hc{height:70.628906px;}
.h10{height:70.664062px;}
.hb{height:72.562500px;}
.h14{height:74.004654px;}
.h8{height:78.626953px;}
.h11{height:82.676953px;}
.h9{height:84.898125px;}
.h6{height:102.832031px;}
.h4{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:57.276000px;}
.w2{width:66.225000px;}
.w4{width:66.270000px;}
.w5{width:95.601000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.620000px;}
.x8{left:25.185000px;}
.x3{left:26.460000px;}
.x1{left:63.900000px;}
.x13{left:68.940000px;}
.xd{left:81.000000px;}
.x9{left:89.280000px;}
.x14{left:95.976000px;}
.x12{left:106.416000px;}
.x10{left:131.976000px;}
.x7{left:195.165000px;}
.xe{left:277.770000px;}
.xa{left:299.955000px;}
.x11{left:304.275000px;}
.xc{left:315.075000px;}
.xf{left:325.155000px;}
.x4{left:447.915000px;}
.xb{left:452.055000px;}
.x2{left:714.390000px;}
.x6{left:821.850000px;}
@media print{
.v2{vertical-align:-72.320000pt;}
.v1{vertical-align:-70.400000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls12{letter-spacing:-0.016640pt;}
.ls8{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.211733pt;}
.ls11{letter-spacing:0.224640pt;}
.ls1{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.303467pt;}
.ls6{letter-spacing:0.311467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.448000pt;}
.ls4{letter-spacing:5.760000pt;}
.ls10{letter-spacing:13.280000pt;}
.ls7{letter-spacing:15.840000pt;}
.ls13{letter-spacing:26.080000pt;}
.ls15{letter-spacing:30.336000pt;}
.ls2{letter-spacing:112.906667pt;}
.ls14{letter-spacing:805.578667pt;}
.ws7{word-spacing:-19.040000pt;}
.wsa{word-spacing:-19.031467pt;}
.ws9{word-spacing:-19.023467pt;}
.wsc{word-spacing:-18.944640pt;}
.ws6{word-spacing:-18.720000pt;}
.wsd{word-spacing:-18.703360pt;}
.ws8{word-spacing:-18.400000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws2{word-spacing:-15.296000pt;}
.ws0{word-spacing:-0.318613pt;}
.wsb{word-spacing:0.000000pt;}
._1a{margin-left:-1.909333pt;}
._0{margin-left:-1.000960pt;}
._1{width:0.970667pt;}
._d{width:1.888000pt;}
._17{width:2.931840pt;}
._9{width:3.884373pt;}
._4{width:4.990293pt;}
._3{width:6.144000pt;}
._11{width:7.575040pt;}
._16{width:9.237760pt;}
._b{width:10.432000pt;}
._c{width:11.712000pt;}
._2{width:13.034667pt;}
._14{width:14.231680pt;}
._13{width:15.201707pt;}
._15{width:16.416213pt;}
._5{width:17.386667pt;}
._6{width:19.008000pt;}
._a{width:20.138667pt;}
._8{width:21.781333pt;}
._7{width:22.954667pt;}
._28{width:24.358187pt;}
._1c{width:25.384320pt;}
._18{width:26.432640pt;}
._23{width:27.675947pt;}
._e{width:28.586667pt;}
._12{width:29.680427pt;}
._19{width:30.653440pt;}
._1e{width:31.864107pt;}
._10{width:33.148587pt;}
._f{width:34.410667pt;}
._1b{width:35.773227pt;}
._1f{width:36.681600pt;}
._22{width:38.423040pt;}
._1d{width:39.679147pt;}
._29{width:42.145280pt;}
._2a{width:43.436160pt;}
._24{width:46.725120pt;}
._25{width:47.658240pt;}
._2b{width:49.720320pt;}
._2d{width:50.733867pt;}
._2c{width:52.387627pt;}
._26{width:56.160000pt;}
._27{width:57.473067pt;}
._20{width:60.618027pt;}
._21{width:61.639893pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.800000pt;}
.y4{bottom:7.200000pt;}
.y7{bottom:8.000000pt;}
.y5{bottom:13.920000pt;}
.y2{bottom:51.200000pt;}
.y36{bottom:85.952000pt;}
.y5c{bottom:88.352000pt;}
.y85{bottom:90.592000pt;}
.y5b{bottom:109.792000pt;}
.y35{bottom:110.592000pt;}
.y84{bottom:112.032000pt;}
.y94{bottom:113.472000pt;}
.y5a{bottom:131.392000pt;}
.y83{bottom:133.466667pt;}
.y93{bottom:135.066667pt;}
.y34{bottom:135.386667pt;}
.y59{bottom:152.826667pt;}
.y82{bottom:154.906667pt;}
.y92{bottom:159.706667pt;}
.y33{bottom:160.026667pt;}
.y81{bottom:176.346667pt;}
.y58{bottom:177.466667pt;}
.y91{bottom:180.666667pt;}
.y32{bottom:184.666667pt;}
.y80{bottom:197.946667pt;}
.y90{bottom:199.066667pt;}
.y57{bottom:202.106667pt;}
.y31{bottom:209.306667pt;}
.y8f{bottom:217.466667pt;}
.y7f{bottom:219.386667pt;}
.y56{bottom:226.906667pt;}
.y30{bottom:234.106667pt;}
.y8e{bottom:235.866667pt;}
.y7e{bottom:240.826667pt;}
.y55{bottom:251.546667pt;}
.y8d{bottom:254.266667pt;}
.y2f{bottom:258.746667pt;}
.y7d{bottom:262.266667pt;}
.y8c{bottom:272.666667pt;}
.y54{bottom:276.186667pt;}
.y2e{bottom:283.386667pt;}
.y7c{bottom:283.706667pt;}
.y8b{bottom:291.106667pt;}
.y53{bottom:300.866667pt;}
.y7b{bottom:305.186667pt;}
.y2d{bottom:308.066667pt;}
.y8a{bottom:309.506667pt;}
.y52{bottom:325.666667pt;}
.y7a{bottom:326.626667pt;}
.y89{bottom:327.906667pt;}
.y2c{bottom:332.866667pt;}
.y88{bottom:346.306667pt;}
.y79{bottom:348.226667pt;}
.y51{bottom:350.306667pt;}
.y2b{bottom:353.826667pt;}
.y87{bottom:364.706667pt;}
.y78{bottom:369.666667pt;}
.y2a{bottom:372.226667pt;}
.y50{bottom:374.946667pt;}
.y29{bottom:390.626667pt;}
.y77{bottom:391.106667pt;}
.y4f{bottom:399.746667pt;}
.y86{bottom:400.866667pt;}
.y28{bottom:409.026667pt;}
.y76{bottom:412.546667pt;}
.y4e{bottom:424.386667pt;}
.y27{bottom:427.426667pt;}
.y75{bottom:433.986667pt;}
.y26{bottom:445.826667pt;}
.y4d{bottom:449.026667pt;}
.y74{bottom:455.426667pt;}
.y25{bottom:464.226667pt;}
.y4c{bottom:473.666667pt;}
.y73{bottom:477.026667pt;}
.y24{bottom:482.626667pt;}
.y4b{bottom:498.466667pt;}
.y23{bottom:499.906667pt;}
.y22{bottom:514.786667pt;}
.y72{bottom:519.906667pt;}
.y4a{bottom:523.106667pt;}
.y21{bottom:533.213333pt;}
.y71{bottom:541.373333pt;}
.y49{bottom:547.773333pt;}
.y20{bottom:551.613333pt;}
.y70{bottom:562.813333pt;}
.y1f{bottom:570.013333pt;}
.y48{bottom:572.573333pt;}
.y6f{bottom:584.253333pt;}
.y1e{bottom:588.413333pt;}
.y47{bottom:597.213333pt;}
.y6e{bottom:605.693333pt;}
.y1d{bottom:606.813333pt;}
.y46{bottom:621.853333pt;}
.y1c{bottom:625.213333pt;}
.y6d{bottom:627.293333pt;}
.y1b{bottom:643.613333pt;}
.y45{bottom:646.493333pt;}
.y6c{bottom:648.733333pt;}
.y1a{bottom:662.013333pt;}
.y6b{bottom:670.173333pt;}
.y44{bottom:671.293333pt;}
.y19{bottom:680.413333pt;}
.y6a{bottom:691.613333pt;}
.y43{bottom:695.933333pt;}
.y18{bottom:698.813333pt;}
.y69{bottom:713.053333pt;}
.y17{bottom:717.213333pt;}
.y42{bottom:720.573333pt;}
.y68{bottom:734.493333pt;}
.y16{bottom:735.613333pt;}
.y41{bottom:745.213333pt;}
.y15{bottom:754.013333pt;}
.y67{bottom:756.093333pt;}
.y40{bottom:770.053333pt;}
.y14{bottom:772.453333pt;}
.y66{bottom:777.573333pt;}
.y13{bottom:789.733333pt;}
.y3f{bottom:794.693333pt;}
.y65{bottom:799.013333pt;}
.y3e{bottom:819.333333pt;}
.y64{bottom:820.453333pt;}
.y12{bottom:821.893333pt;}
.y11{bottom:836.773333pt;}
.y63{bottom:841.893333pt;}
.y3d{bottom:844.133333pt;}
.y10{bottom:855.173333pt;}
.y62{bottom:863.333333pt;}
.y3c{bottom:868.773333pt;}
.yf{bottom:873.253333pt;}
.y61{bottom:884.773333pt;}
.ye{bottom:890.693333pt;}
.y3b{bottom:893.413333pt;}
.yd{bottom:904.293333pt;}
.y60{bottom:906.373333pt;}
.y3a{bottom:918.053333pt;}
.yc{bottom:922.693333pt;}
.y5f{bottom:927.813333pt;}
.yb{bottom:940.773333pt;}
.y39{bottom:942.853333pt;}
.y5e{bottom:949.253333pt;}
.ya{bottom:957.733333pt;}
.y38{bottom:967.493333pt;}
.y9{bottom:970.373333pt;}
.y5d{bottom:970.693333pt;}
.y8{bottom:991.813333pt;}
.y37{bottom:992.133333pt;}
.y3{bottom:1043.520000pt;}
.y1{bottom:1061.600000pt;}
.h3{height:29.440000pt;}
.h13{height:31.406250pt;}
.h7{height:34.398133pt;}
.ha{height:36.431250pt;}
.h5{height:39.198667pt;}
.hd{height:42.084375pt;}
.hf{height:46.781250pt;}
.he{height:47.085938pt;}
.h12{height:52.284375pt;}
.h2{height:58.563750pt;}
.hc{height:62.781250pt;}
.h10{height:62.812500pt;}
.hb{height:64.500000pt;}
.h14{height:65.781915pt;}
.h8{height:69.890625pt;}
.h11{height:73.490625pt;}
.h9{height:75.465000pt;}
.h6{height:91.406250pt;}
.h4{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:50.912000pt;}
.w2{width:58.866667pt;}
.w4{width:58.906667pt;}
.w5{width:84.978667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.440000pt;}
.x8{left:22.386667pt;}
.x3{left:23.520000pt;}
.x1{left:56.800000pt;}
.x13{left:61.280000pt;}
.xd{left:72.000000pt;}
.x9{left:79.360000pt;}
.x14{left:85.312000pt;}
.x12{left:94.592000pt;}
.x10{left:117.312000pt;}
.x7{left:173.480000pt;}
.xe{left:246.906667pt;}
.xa{left:266.626667pt;}
.x11{left:270.466667pt;}
.xc{left:280.066667pt;}
.xf{left:289.026667pt;}
.x4{left:398.146667pt;}
.xb{left:401.826667pt;}
.x2{left:635.013333pt;}
.x6{left:730.533333pt;}
}




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