
    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_a4ece37a0bee801d41375f0b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b9c78801c6d2bbc7e02b050a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_8de1925606dc045108155666.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_dd6c8434fb4065f0cdc9626f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_fb6439e9f877e6a83036d1b9.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_7aad64ccce8d2b4fffef8e71.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ea9db7e19439d3fb8b38dfc0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.109375;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_a64b9381f193335b663b3c3f.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d28e2c22d2d49dc1a3361121.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.118652;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_ea47a5ae0115f13e69086f72.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.998535;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_5e93dadb7cb810ef365d54c5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v11{vertical-align:-96.480000px;}
.v9{vertical-align:-18.000000px;}
.vd{vertical-align:-15.120000px;}
.v4{vertical-align:-13.680000px;}
.v2{vertical-align:-11.520000px;}
.va{vertical-align:-8.640000px;}
.vf{vertical-align:-6.480000px;}
.v7{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.ve{vertical-align:5.040000px;}
.v10{vertical-align:6.480000px;}
.vb{vertical-align:8.640000px;}
.v3{vertical-align:10.080000px;}
.v1{vertical-align:11.520000px;}
.v5{vertical-align:12.960000px;}
.vc{vertical-align:15.120000px;}
.v8{vertical-align:18.000000px;}
.ls28{letter-spacing:-21.780000px;}
.ls26{letter-spacing:-3.060000px;}
.ls39{letter-spacing:-0.390000px;}
.ls37{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.282000px;}
.lse{letter-spacing:-0.276000px;}
.ls38{letter-spacing:-0.180000px;}
.ls29{letter-spacing:-0.028080px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls30{letter-spacing:0.112800px;}
.lsc{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.246000px;}
.ls2a{letter-spacing:0.252000px;}
.lsd{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.291600px;}
.ls4{letter-spacing:0.321600px;}
.ls24{letter-spacing:0.324000px;}
.ls2d{letter-spacing:0.325440px;}
.ls18{letter-spacing:0.328320px;}
.ls27{letter-spacing:0.341400px;}
.ls2{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.649440px;}
.ls11{letter-spacing:0.720000px;}
.ls21{letter-spacing:1.045440px;}
.ls16{letter-spacing:1.440000px;}
.ls2b{letter-spacing:1.586880px;}
.ls19{letter-spacing:2.002320px;}
.ls10{letter-spacing:3.446640px;}
.ls23{letter-spacing:3.925440px;}
.ls1a{letter-spacing:4.252320px;}
.ls1c{letter-spacing:5.204880px;}
.ls17{letter-spacing:7.020000px;}
.ls2e{letter-spacing:7.108560px;}
.ls15{letter-spacing:7.410960px;}
.ls2f{letter-spacing:7.849440px;}
.ls32{letter-spacing:8.460000px;}
.ls13{letter-spacing:8.604000px;}
.ls1f{letter-spacing:9.900000px;}
.ls9{letter-spacing:10.620000px;}
.lsb{letter-spacing:11.340000px;}
.ls1e{letter-spacing:14.220000px;}
.ls6{letter-spacing:17.100000px;}
.ls8{letter-spacing:17.820000px;}
.ls5{letter-spacing:18.000000px;}
.ls1d{letter-spacing:21.420000px;}
.lsa{letter-spacing:23.580000px;}
.ls2c{letter-spacing:25.525440px;}
.ls31{letter-spacing:27.900000px;}
.ls1{letter-spacing:30.060000px;}
.ls33{letter-spacing:33.660000px;}
.ls14{letter-spacing:41.004000px;}
.ls34{letter-spacing:56.700000px;}
.ls22{letter-spacing:132.300000px;}
.ls20{letter-spacing:175.088640px;}
.ls35{letter-spacing:187.716000px;}
.ls36{letter-spacing:1106.640000px;}
.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;}
}
.wsa{word-spacing:-33.120000px;}
.ws4{word-spacing:-21.420000px;}
.ws1{word-spacing:-21.381600px;}
.ws5{word-spacing:-21.351600px;}
.ws9{word-spacing:-21.088080px;}
.ws0{word-spacing:-21.060000px;}
.wsc{word-spacing:-21.031920px;}
.ws3{word-spacing:-20.784000px;}
.wse{word-spacing:-20.700000px;}
.wsf{word-spacing:-20.670000px;}
.wsd{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.278000px;}
.wsb{word-spacing:-15.186000px;}
.ws6{word-spacing:-14.940000px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:46.924320px;}
._22{margin-left:-185.401920px;}
._34{margin-left:-152.510640px;}
._35{margin-left:-135.696480px;}
._20{margin-left:-21.818160px;}
._37{margin-left:-12.499200px;}
._30{margin-left:-7.785600px;}
._1a{margin-left:-5.812560px;}
._1b{margin-left:-4.632000px;}
._7{margin-left:-3.538080px;}
._29{margin-left:-2.527200px;}
._0{margin-left:-1.516320px;}
._1{width:1.010880px;}
._9{width:2.559120px;}
._6{width:3.690480px;}
._5{width:4.717440px;}
._1f{width:5.981040px;}
._14{width:7.160400px;}
._38{width:8.171280px;}
._4{width:9.266400px;}
._1d{width:10.683360px;}
._1e{width:11.724480px;}
._f{width:13.057200px;}
._12{width:14.657760px;}
._16{width:16.932240px;}
._15{width:18.448560px;}
._31{width:19.712160px;}
._2{width:22.997520px;}
._3{width:24.345360px;}
._e{width:25.945920px;}
._2a{width:27.041040px;}
._a{width:28.388880px;}
._8{width:29.905200px;}
._3c{width:31.248240px;}
._39{width:32.268720px;}
._10{width:34.117200px;}
._d{width:35.886240px;}
._17{width:37.065600px;}
._1c{width:38.581920px;}
._28{width:40.940640px;}
._19{width:42.878160px;}
._18{width:44.057520px;}
._13{width:45.573840px;}
._25{width:49.533120px;}
._24{width:51.217920px;}
._23{width:52.228800px;}
._3e{width:56.888400px;}
._3d{width:57.957120px;}
._2f{width:59.204640px;}
._27{width:60.668880px;}
._26{width:62.321520px;}
._2e{width:66.212640px;}
._2d{width:67.813200px;}
._11{width:73.635600px;}
._b{width:88.330080px;}
._c{width:89.332080px;}
._2c{width:91.163760px;}
._2b{width:92.226720px;}
._32{width:94.987200px;}
._33{width:96.315360px;}
._3b{width:111.281040px;}
._3a{width:112.291920px;}
._21{width:116.166960px;}
._36{width:137.520000px;}
.fc1{color:rgb(44,44,44);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:33.120000px;}
.fs2{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y38{bottom:88.416000px;}
.y45{bottom:101.736000px;}
.y2f{bottom:110.736000px;}
.y44{bottom:125.856000px;}
.y37{bottom:131.076000px;}
.y43{bottom:133.416000px;}
.y2e{bottom:134.856000px;}
.y36{bottom:138.636000px;}
.y42{bottom:148.716000px;}
.y35{bottom:153.930000px;}
.y2d{bottom:159.150000px;}
.y53{bottom:167.250000px;}
.y34{bottom:171.210000px;}
.y52{bottom:174.810000px;}
.y33{bottom:176.430000px;}
.y41{bottom:179.310000px;}
.y2c{bottom:183.270000px;}
.y32{bottom:189.750000px;}
.y40{bottom:203.430000px;}
.y2b{bottom:207.390000px;}
.y3f{bottom:210.990000px;}
.y3e{bottom:226.290000px;}
.y51{bottom:227.550000px;}
.y2a{bottom:231.510000px;}
.y50{bottom:235.110000px;}
.y3d{bottom:244.830000px;}
.y4f{bottom:250.410000px;}
.y29{bottom:255.630000px;}
.y28{bottom:279.795000px;}
.y4e{bottom:281.055000px;}
.y27{bottom:303.915000px;}
.y4d{bottom:305.175000px;}
.y4c{bottom:312.735000px;}
.y4b{bottom:328.035000px;}
.y26{bottom:328.215000px;}
.y4a{bottom:333.255000px;}
.y49{bottom:346.575000px;}
.y25{bottom:352.335000px;}
.y3c{bottom:359.895000px;}
.y24{bottom:376.455000px;}
.y23{bottom:400.575000px;}
.y3b{bottom:408.135000px;}
.y22{bottom:424.695000px;}
.y21{bottom:448.815000px;}
.y20{bottom:473.115000px;}
.y1f{bottom:497.235000px;}
.y3a{bottom:504.795000px;}
.y1e{bottom:521.355000px;}
.y1d{bottom:545.475000px;}
.y1c{bottom:569.625000px;}
.y1b{bottom:593.745000px;}
.y1a{bottom:618.045000px;}
.y19{bottom:642.165000px;}
.y48{bottom:649.725000px;}
.y18{bottom:666.285000px;}
.y17{bottom:690.405000px;}
.y31{bottom:697.965000px;}
.y16{bottom:714.525000px;}
.y15{bottom:738.645000px;}
.y14{bottom:762.765000px;}
.y39{bottom:770.325000px;}
.y13{bottom:787.065000px;}
.y12{bottom:811.185000px;}
.y11{bottom:835.305000px;}
.y30{bottom:842.910000px;}
.y10{bottom:859.470000px;}
.yf{bottom:883.590000px;}
.ye{bottom:907.710000px;}
.yd{bottom:932.010000px;}
.yc{bottom:956.130000px;}
.yb{bottom:980.250000px;}
.ya{bottom:1004.370000px;}
.y9{bottom:1028.490000px;}
.y8{bottom:1052.610000px;}
.y7{bottom:1076.730000px;}
.y6{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y47{bottom:1132.740000px;}
.y4{bottom:1149.300000px;}
.y46{bottom:1156.860000px;}
.y1{bottom:1190.160000px;}
.h9{height:38.158594px;}
.h7{height:52.998047px;}
.h5{height:58.531992px;}
.ha{height:58.651172px;}
.h3{height:72.846211px;}
.he{height:75.602109px;}
.h6{height:82.635820px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.hf{height:84.962109px;}
.h8{height:86.585445px;}
.hb{height:87.122109px;}
.hc{height:87.859687px;}
.hd{height:93.602109px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.319987px;}
.x14{left:95.039987px;}
.x15{left:98.999987px;}
.x4{left:117.035987px;}
.x3{left:125.135987px;}
.x8{left:128.735987px;}
.xe{left:139.355987px;}
.x1d{left:159.149973px;}
.x7{left:162.749987px;}
.x16{left:168.689987px;}
.x1e{left:172.829987px;}
.x27{left:201.629973px;}
.x28{left:215.309987px;}
.xc{left:236.369987px;}
.xb{left:237.449987px;}
.x25{left:276.509973px;}
.x26{left:290.189987px;}
.x2a{left:294.509987px;}
.x21{left:299.234973px;}
.x13{left:301.394987px;}
.x22{left:312.914987px;}
.x5{left:345.314987px;}
.xa{left:362.594987px;}
.x29{left:377.894987px;}
.x9{left:388.694987px;}
.x11{left:393.734973px;}
.x12{left:407.414987px;}
.x2{left:430.814987px;}
.xf{left:438.374973px;}
.x6{left:446.474987px;}
.x10{left:452.054987px;}
.xd{left:473.474987px;}
.x1f{left:533.984973px;}
.x20{left:547.664987px;}
.x23{left:602.384973px;}
.x19{left:610.304973px;}
.x24{left:616.064987px;}
.x1a{left:623.984987px;}
.x17{left:684.284973px;}
.x18{left:698.009987px;}
.x1b{left:774.329973px;}
.x1c{left:788.009987px;}
@media print{
.v11{vertical-align:-85.760000pt;}
.v9{vertical-align:-16.000000pt;}
.vd{vertical-align:-13.440000pt;}
.v4{vertical-align:-12.160000pt;}
.v2{vertical-align:-10.240000pt;}
.va{vertical-align:-7.680000pt;}
.vf{vertical-align:-5.760000pt;}
.v7{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.ve{vertical-align:4.480000pt;}
.v10{vertical-align:5.760000pt;}
.vb{vertical-align:7.680000pt;}
.v3{vertical-align:8.960000pt;}
.v1{vertical-align:10.240000pt;}
.v5{vertical-align:11.520000pt;}
.vc{vertical-align:13.440000pt;}
.v8{vertical-align:16.000000pt;}
.ls28{letter-spacing:-19.360000pt;}
.ls26{letter-spacing:-2.720000pt;}
.ls39{letter-spacing:-0.346667pt;}
.ls37{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.250667pt;}
.lse{letter-spacing:-0.245333pt;}
.ls38{letter-spacing:-0.160000pt;}
.ls29{letter-spacing:-0.024960pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls30{letter-spacing:0.100267pt;}
.lsc{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.218667pt;}
.ls2a{letter-spacing:0.224000pt;}
.lsd{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.259200pt;}
.ls4{letter-spacing:0.285867pt;}
.ls24{letter-spacing:0.288000pt;}
.ls2d{letter-spacing:0.289280pt;}
.ls18{letter-spacing:0.291840pt;}
.ls27{letter-spacing:0.303467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.577280pt;}
.ls11{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.929280pt;}
.ls16{letter-spacing:1.280000pt;}
.ls2b{letter-spacing:1.410560pt;}
.ls19{letter-spacing:1.779840pt;}
.ls10{letter-spacing:3.063680pt;}
.ls23{letter-spacing:3.489280pt;}
.ls1a{letter-spacing:3.779840pt;}
.ls1c{letter-spacing:4.626560pt;}
.ls17{letter-spacing:6.240000pt;}
.ls2e{letter-spacing:6.318720pt;}
.ls15{letter-spacing:6.587520pt;}
.ls2f{letter-spacing:6.977280pt;}
.ls32{letter-spacing:7.520000pt;}
.ls13{letter-spacing:7.648000pt;}
.ls1f{letter-spacing:8.800000pt;}
.ls9{letter-spacing:9.440000pt;}
.lsb{letter-spacing:10.080000pt;}
.ls1e{letter-spacing:12.640000pt;}
.ls6{letter-spacing:15.200000pt;}
.ls8{letter-spacing:15.840000pt;}
.ls5{letter-spacing:16.000000pt;}
.ls1d{letter-spacing:19.040000pt;}
.lsa{letter-spacing:20.960000pt;}
.ls2c{letter-spacing:22.689280pt;}
.ls31{letter-spacing:24.800000pt;}
.ls1{letter-spacing:26.720000pt;}
.ls33{letter-spacing:29.920000pt;}
.ls14{letter-spacing:36.448000pt;}
.ls34{letter-spacing:50.400000pt;}
.ls22{letter-spacing:117.600000pt;}
.ls20{letter-spacing:155.634347pt;}
.ls35{letter-spacing:166.858667pt;}
.ls36{letter-spacing:983.680000pt;}
.wsa{word-spacing:-29.440000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws1{word-spacing:-19.005867pt;}
.ws5{word-spacing:-18.979200pt;}
.ws9{word-spacing:-18.744960pt;}
.ws0{word-spacing:-18.720000pt;}
.wsc{word-spacing:-18.695040pt;}
.ws3{word-spacing:-18.474667pt;}
.wse{word-spacing:-18.400000pt;}
.wsf{word-spacing:-18.373333pt;}
.wsd{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.469333pt;}
.wsb{word-spacing:-13.498667pt;}
.ws6{word-spacing:-13.280000pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:41.710507pt;}
._22{margin-left:-164.801707pt;}
._34{margin-left:-135.565013pt;}
._35{margin-left:-120.619093pt;}
._20{margin-left:-19.393920pt;}
._37{margin-left:-11.110400pt;}
._30{margin-left:-6.920533pt;}
._1a{margin-left:-5.166720pt;}
._1b{margin-left:-4.117333pt;}
._7{margin-left:-3.144960pt;}
._29{margin-left:-2.246400pt;}
._0{margin-left:-1.347840pt;}
._1{width:0.898560pt;}
._9{width:2.274773pt;}
._6{width:3.280427pt;}
._5{width:4.193280pt;}
._1f{width:5.316480pt;}
._14{width:6.364800pt;}
._38{width:7.263360pt;}
._4{width:8.236800pt;}
._1d{width:9.496320pt;}
._1e{width:10.421760pt;}
._f{width:11.606400pt;}
._12{width:13.029120pt;}
._16{width:15.050880pt;}
._15{width:16.398720pt;}
._31{width:17.521920pt;}
._2{width:20.442240pt;}
._3{width:21.640320pt;}
._e{width:23.063040pt;}
._2a{width:24.036480pt;}
._a{width:25.234560pt;}
._8{width:26.582400pt;}
._3c{width:27.776213pt;}
._39{width:28.683307pt;}
._10{width:30.326400pt;}
._d{width:31.898880pt;}
._17{width:32.947200pt;}
._1c{width:34.295040pt;}
._28{width:36.391680pt;}
._19{width:38.113920pt;}
._18{width:39.162240pt;}
._13{width:40.510080pt;}
._25{width:44.029440pt;}
._24{width:45.527040pt;}
._23{width:46.425600pt;}
._3e{width:50.567467pt;}
._3d{width:51.517440pt;}
._2f{width:52.626347pt;}
._27{width:53.927893pt;}
._26{width:55.396907pt;}
._2e{width:58.855680pt;}
._2d{width:60.278400pt;}
._11{width:65.453867pt;}
._b{width:78.515627pt;}
._c{width:79.406293pt;}
._2c{width:81.034453pt;}
._2b{width:81.979307pt;}
._32{width:84.433067pt;}
._33{width:85.613653pt;}
._3b{width:98.916480pt;}
._3a{width:99.815040pt;}
._21{width:103.259520pt;}
._36{width:122.240000pt;}
.fs5{font-size:29.440000pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y38{bottom:78.592000pt;}
.y45{bottom:90.432000pt;}
.y2f{bottom:98.432000pt;}
.y44{bottom:111.872000pt;}
.y37{bottom:116.512000pt;}
.y43{bottom:118.592000pt;}
.y2e{bottom:119.872000pt;}
.y36{bottom:123.232000pt;}
.y42{bottom:132.192000pt;}
.y35{bottom:136.826667pt;}
.y2d{bottom:141.466667pt;}
.y53{bottom:148.666667pt;}
.y34{bottom:152.186667pt;}
.y52{bottom:155.386667pt;}
.y33{bottom:156.826667pt;}
.y41{bottom:159.386667pt;}
.y2c{bottom:162.906667pt;}
.y32{bottom:168.666667pt;}
.y40{bottom:180.826667pt;}
.y2b{bottom:184.346667pt;}
.y3f{bottom:187.546667pt;}
.y3e{bottom:201.146667pt;}
.y51{bottom:202.266667pt;}
.y2a{bottom:205.786667pt;}
.y50{bottom:208.986667pt;}
.y3d{bottom:217.626667pt;}
.y4f{bottom:222.586667pt;}
.y29{bottom:227.226667pt;}
.y28{bottom:248.706667pt;}
.y4e{bottom:249.826667pt;}
.y27{bottom:270.146667pt;}
.y4d{bottom:271.266667pt;}
.y4c{bottom:277.986667pt;}
.y4b{bottom:291.586667pt;}
.y26{bottom:291.746667pt;}
.y4a{bottom:296.226667pt;}
.y49{bottom:308.066667pt;}
.y25{bottom:313.186667pt;}
.y3c{bottom:319.906667pt;}
.y24{bottom:334.626667pt;}
.y23{bottom:356.066667pt;}
.y3b{bottom:362.786667pt;}
.y22{bottom:377.506667pt;}
.y21{bottom:398.946667pt;}
.y20{bottom:420.546667pt;}
.y1f{bottom:441.986667pt;}
.y3a{bottom:448.706667pt;}
.y1e{bottom:463.426667pt;}
.y1d{bottom:484.866667pt;}
.y1c{bottom:506.333333pt;}
.y1b{bottom:527.773333pt;}
.y1a{bottom:549.373333pt;}
.y19{bottom:570.813333pt;}
.y48{bottom:577.533333pt;}
.y18{bottom:592.253333pt;}
.y17{bottom:613.693333pt;}
.y31{bottom:620.413333pt;}
.y16{bottom:635.133333pt;}
.y15{bottom:656.573333pt;}
.y14{bottom:678.013333pt;}
.y39{bottom:684.733333pt;}
.y13{bottom:699.613333pt;}
.y12{bottom:721.053333pt;}
.y11{bottom:742.493333pt;}
.y30{bottom:749.253333pt;}
.y10{bottom:763.973333pt;}
.yf{bottom:785.413333pt;}
.ye{bottom:806.853333pt;}
.yd{bottom:828.453333pt;}
.yc{bottom:849.893333pt;}
.yb{bottom:871.333333pt;}
.ya{bottom:892.773333pt;}
.y9{bottom:914.213333pt;}
.y8{bottom:935.653333pt;}
.y7{bottom:957.093333pt;}
.y6{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y47{bottom:1006.880000pt;}
.y4{bottom:1021.600000pt;}
.y46{bottom:1028.320000pt;}
.y1{bottom:1057.920000pt;}
.h9{height:33.918750pt;}
.h7{height:47.109375pt;}
.h5{height:52.028437pt;}
.ha{height:52.134375pt;}
.h3{height:64.752187pt;}
.he{height:67.201875pt;}
.h6{height:73.454062pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.hf{height:75.521875pt;}
.h8{height:76.964840pt;}
.hb{height:77.441875pt;}
.hc{height:78.097500pt;}
.hd{height:83.201875pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.839988pt;}
.x14{left:84.479988pt;}
.x15{left:87.999988pt;}
.x4{left:104.031988pt;}
.x3{left:111.231988pt;}
.x8{left:114.431988pt;}
.xe{left:123.871988pt;}
.x1d{left:141.466643pt;}
.x7{left:144.666655pt;}
.x16{left:149.946655pt;}
.x1e{left:153.626655pt;}
.x27{left:179.226643pt;}
.x28{left:191.386655pt;}
.xc{left:210.106655pt;}
.xb{left:211.066655pt;}
.x25{left:245.786643pt;}
.x26{left:257.946655pt;}
.x2a{left:261.786655pt;}
.x21{left:265.986643pt;}
.x13{left:267.906655pt;}
.x22{left:278.146655pt;}
.x5{left:306.946655pt;}
.xa{left:322.306655pt;}
.x29{left:335.906655pt;}
.x9{left:345.506655pt;}
.x11{left:349.986643pt;}
.x12{left:362.146655pt;}
.x2{left:382.946655pt;}
.xf{left:389.666643pt;}
.x6{left:396.866655pt;}
.x10{left:401.826655pt;}
.xd{left:420.866655pt;}
.x1f{left:474.653310pt;}
.x20{left:486.813322pt;}
.x23{left:535.453310pt;}
.x19{left:542.493310pt;}
.x24{left:547.613322pt;}
.x1a{left:554.653322pt;}
.x17{left:608.253310pt;}
.x18{left:620.453322pt;}
.x1b{left:688.293310pt;}
.x1c{left:700.453322pt;}
}




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