
    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_e1573003ca21eebe7a1804cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_4a136cb81764b7c0c11ba299.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.768555;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_cfb9ea1be97afdd8e9cf06e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.981934;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_13f1275ff17d6953a6c20513.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.982910;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_ff3c12d8478fc6e1462859c6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cfcd0dc9fd4f7f4945b16274.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.973145;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_6843c3b604fcdf840c44b98e.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v1{vertical-align:-20.160000px;}
.v2{vertical-align:-8.460000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:8.460000px;}
.ls14{letter-spacing:-2.100000px;}
.ls9{letter-spacing:-0.361200px;}
.ls1b{letter-spacing:-0.350400px;}
.ls11{letter-spacing:-0.302400px;}
.lsa{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.229800px;}
.ls7{letter-spacing:-0.167400px;}
.ls4{letter-spacing:-0.096000px;}
.ls6{letter-spacing:-0.094200px;}
.ls3{letter-spacing:-0.087000px;}
.ls1c{letter-spacing:-0.037440px;}
.ls5{letter-spacing:-0.024480px;}
.ls13{letter-spacing:-0.010080px;}
.ls0{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.041040px;}
.ls15{letter-spacing:0.061200px;}
.ls8{letter-spacing:0.068400px;}
.ls16{letter-spacing:0.123000px;}
.ls17{letter-spacing:0.157200px;}
.lsd{letter-spacing:0.157800px;}
.ls19{letter-spacing:0.165600px;}
.lse{letter-spacing:0.195000px;}
.ls10{letter-spacing:0.208200px;}
.lsc{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.238200px;}
.lsb{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.301200px;}
.ls2{letter-spacing:49.233600px;}
.ls1{letter-spacing:49.284000px;}
.ls18{letter-spacing:49.428000px;}
.ls1d{letter-spacing:53.316000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-59.718240px;}
.ws3a{word-spacing:-54.218304px;}
.ws3d{word-spacing:-42.014304px;}
.wsd{word-spacing:-37.946304px;}
.ws3{word-spacing:-37.913760px;}
.ws10{word-spacing:-32.576544px;}
.ws16{word-spacing:-32.544000px;}
.ws1{word-spacing:-29.777760px;}
.ws2d{word-spacing:-27.372384px;}
.ws2e{word-spacing:-27.206784px;}
.ws30{word-spacing:-27.174240px;}
.ws3e{word-spacing:-24.408000px;}
.ws24{word-spacing:-19.070784px;}
.ws23{word-spacing:-19.038240px;}
.ws0{word-spacing:-6.618384px;}
.ws26{word-spacing:-2.958048px;}
.ws28{word-spacing:-1.270320px;}
.ws2c{word-spacing:-1.219776px;}
.ws2a{word-spacing:-1.207440px;}
.ws29{word-spacing:-1.176840px;}
.ws1e{word-spacing:-1.126320px;}
.ws13{word-spacing:-0.972000px;}
.ws12{word-spacing:-0.720000px;}
.ws1f{word-spacing:-0.708000px;}
.ws19{word-spacing:-0.683856px;}
.wsf{word-spacing:-0.680064px;}
.wse{word-spacing:-0.382320px;}
.ws14{word-spacing:-0.276000px;}
.ws1b{word-spacing:-0.230208px;}
.ws8{word-spacing:-0.182688px;}
.ws3b{word-spacing:-0.156384px;}
.ws20{word-spacing:-0.144000px;}
.ws22{word-spacing:-0.131760px;}
.ws39{word-spacing:-0.084240px;}
.ws38{word-spacing:-0.046800px;}
.ws2{word-spacing:0.000000px;}
.ws15{word-spacing:0.156000px;}
.ws27{word-spacing:0.322560px;}
.ws25{word-spacing:0.393120px;}
.wsc{word-spacing:0.420192px;}
.wsb{word-spacing:0.781200px;}
.ws9{word-spacing:0.815904px;}
.ws7{word-spacing:0.979488px;}
.ws6{word-spacing:0.996840px;}
.ws5{word-spacing:1.391040px;}
.wsa{word-spacing:6.824448px;}
.ws36{word-spacing:20.018880px;}
.ws33{word-spacing:20.328480px;}
.ws35{word-spacing:20.995200px;}
.ws31{word-spacing:21.356400px;}
.ws34{word-spacing:21.529440px;}
.ws1c{word-spacing:22.464000px;}
.ws1d{word-spacing:22.534608px;}
.ws32{word-spacing:23.618880px;}
.ws37{word-spacing:23.725440px;}
.ws18{word-spacing:31.574352px;}
.ws11{word-spacing:95.184000px;}
.ws1a{word-spacing:95.254416px;}
.ws21{word-spacing:113.103000px;}
.ws17{word-spacing:127.686816px;}
.ws3c{word-spacing:519.256224px;}
.ws2b{word-spacing:812.146464px;}
.ws2f{word-spacing:1065.247920px;}
._e{margin-left:-23.265792px;}
._d{margin-left:-20.999232px;}
._14{margin-left:-13.449024px;}
._b{margin-left:-11.522304px;}
._5{margin-left:-9.720000px;}
._4{margin-left:-8.640000px;}
._f{margin-left:-7.172640px;}
._2{margin-left:-5.400000px;}
._3{margin-left:-4.320000px;}
._1{margin-left:-3.240000px;}
._0{margin-left:-1.800000px;}
._a{width:1.020000px;}
._6{width:2.063520px;}
._c{width:3.423600px;}
._13{width:21.716640px;}
._12{width:22.809600px;}
._9{width:30.528480px;}
._7{width:39.064800px;}
._8{width:40.473840px;}
._15{width:787.637952px;}
._10{width:1032.178848px;}
._11{width:1181.640360px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:84.240000px;}
.fsd{font-size:84.384000px;}
.fs16{font-size:95.760000px;}
.fs7{font-size:108.000000px;}
.fsf{font-size:120.240000px;}
.fse{font-size:120.384000px;}
.fs2{font-size:131.760000px;}
.fsa{font-size:131.904000px;}
.fs6{font-size:134.784000px;}
.fs9{font-size:144.000000px;}
.fs8{font-size:144.144000px;}
.fs12{font-size:156.240000px;}
.fs13{font-size:156.384000px;}
.fs4{font-size:167.760000px;}
.fs5{font-size:167.904000px;}
.fs15{font-size:185.904000px;}
.fs14{font-size:192.240000px;}
.fs10{font-size:239.760000px;}
.fs11{font-size:239.904000px;}
.fs3{font-size:264.240000px;}
.fsb{font-size:264.384000px;}
.fs0{font-size:360.000000px;}
.fs1{font-size:360.144000px;}
.y0{bottom:0.000000px;}
.y58{bottom:16.200000px;}
.y12{bottom:19.908000px;}
.y5d{bottom:25.380000px;}
.y81{bottom:37.440000px;}
.y51{bottom:54.000000px;}
.y20{bottom:60.768000px;}
.y5c{bottom:63.180000px;}
.y80{bottom:84.060000px;}
.y67{bottom:86.220000px;}
.y54{bottom:91.800000px;}
.y49{bottom:94.035000px;}
.y5b{bottom:101.016000px;}
.y5{bottom:103.248000px;}
.y1f{bottom:105.948000px;}
.y2f{bottom:116.100000px;}
.y55{bottom:122.610000px;}
.y59{bottom:122.616000px;}
.y4b{bottom:122.655000px;}
.y40{bottom:122.685000px;}
.y37{bottom:122.730000px;}
.y32{bottom:122.760000px;}
.y75{bottom:126.396000px;}
.y5a{bottom:138.816000px;}
.y2e{bottom:143.820000px;}
.y7a{bottom:146.592000px;}
.y4{bottom:149.868000px;}
.y1e{bottom:151.170000px;}
.y7c{bottom:156.525000px;}
.y74{bottom:163.830000px;}
.y78{bottom:166.395000px;}
.y66{bottom:173.520000px;}
.y57{bottom:176.610000px;}
.y79{bottom:183.135000px;}
.y2d{bottom:186.480000px;}
.y7b{bottom:193.065000px;}
.y1d{bottom:196.530000px;}
.y73{bottom:201.315000px;}
.y2c{bottom:214.200000px;}
.y56{bottom:214.410000px;}
.y53{bottom:236.055000px;}
.y1c{bottom:241.710000px;}
.y4c{bottom:243.000000px;}
.y50{bottom:252.210000px;}
.y72{bottom:253.695000px;}
.y2b{bottom:256.890000px;}
.y68{bottom:268.170000px;}
.y52{bottom:273.855000px;}
.y4a{bottom:280.800000px;}
.y2a{bottom:284.610000px;}
.y1b{bottom:286.890000px;}
.y4f{bottom:290.055000px;}
.y71{bottom:291.135000px;}
.y48{bottom:316.080000px;}
.y46{bottom:318.600000px;}
.y29{bottom:327.450000px;}
.y4e{bottom:327.855000px;}
.y1a{bottom:332.280000px;}
.y65{bottom:341.310000px;}
.y70{bottom:343.515000px;}
.y7e{bottom:354.390000px;}
.y28{bottom:355.170000px;}
.y44{bottom:356.400000px;}
.y4d{bottom:365.655000px;}
.y19{bottom:377.460000px;}
.y6f{bottom:380.985000px;}
.y64{bottom:386.670000px;}
.y7d{bottom:387.510000px;}
.y42{bottom:394.200000px;}
.y27{bottom:397.875000px;}
.y18{bottom:422.640000px;}
.y26{bottom:425.595000px;}
.y3f{bottom:432.000000px;}
.y63{bottom:432.030000px;}
.yc{bottom:432.690000px;}
.y6e{bottom:433.545000px;}
.y47{bottom:441.285000px;}
.y11{bottom:449.535000px;}
.y17{bottom:468.030000px;}
.y25{bottom:468.255000px;}
.y3d{bottom:469.800000px;}
.y6d{bottom:470.985000px;}
.y62{bottom:477.435000px;}
.y45{bottom:479.085000px;}
.y3{bottom:486.000000px;}
.yb{bottom:492.990000px;}
.y10{bottom:494.895000px;}
.y24{bottom:495.975000px;}
.y3b{bottom:507.600000px;}
.y9{bottom:507.930000px;}
.y6c{bottom:508.425000px;}
.y16{bottom:513.210000px;}
.y43{bottom:516.885000px;}
.y61{bottom:522.795000px;}
.y23{bottom:538.815000px;}
.y39{bottom:545.400000px;}
.ya{bottom:553.290000px;}
.y41{bottom:554.685000px;}
.yf{bottom:555.375000px;}
.y15{bottom:558.390000px;}
.y6b{bottom:560.850000px;}
.y8{bottom:568.410000px;}
.y60{bottom:583.095000px;}
.y36{bottom:583.200000px;}
.y2{bottom:583.230000px;}
.y3e{bottom:592.530000px;}
.ye{bottom:600.765000px;}
.y14{bottom:603.750000px;}
.y7{bottom:613.800000px;}
.y77{bottom:618.585000px;}
.y34{bottom:621.000000px;}
.y22{bottom:624.165000px;}
.y30{bottom:627.330000px;}
.y3c{bottom:630.330000px;}
.y5f{bottom:643.425000px;}
.yd{bottom:646.125000px;}
.y13{bottom:648.975000px;}
.y7f{bottom:657.180000px;}
.y31{bottom:658.800000px;}
.y3a{bottom:668.130000px;}
.y6a{bottom:672.015000px;}
.y1{bottom:680.430000px;}
.y21{bottom:696.960000px;}
.y5e{bottom:703.905000px;}
.y38{bottom:705.930000px;}
.y6{bottom:713.520000px;}
.y69{bottom:736.815000px;}
.y76{bottom:743.655000px;}
.y35{bottom:743.760000px;}
.y33{bottom:781.560000px;}
.h10{height:67.704609px;}
.h15{height:67.786875px;}
.h12{height:67.820344px;}
.h13{height:67.902750px;}
.h24{height:77.056875px;}
.h9{height:86.906250px;}
.h1d{height:87.859687px;}
.h1c{height:96.755625px;}
.h1b{height:96.871500px;}
.h3{height:105.896953px;}
.hc{height:106.025625px;}
.hd{height:106.141500px;}
.hb{height:115.875000px;}
.ha{height:115.990875px;}
.h20{height:125.724375px;}
.h21{height:125.840250px;}
.h6{height:134.830547px;}
.h7{height:134.946281px;}
.h5{height:134.994375px;}
.h8{height:135.110250px;}
.h23{height:149.594625px;}
.hf{height:151.200000px;}
.h22{height:154.505391px;}
.h11{height:189.000000px;}
.h1e{height:197.731758px;}
.h1f{height:197.850516px;}
.h17{height:202.860000px;}
.h4{height:217.920586px;}
.he{height:218.039344px;}
.h14{height:226.800000px;}
.h16{height:264.600000px;}
.h1{height:296.894531px;}
.h2{height:297.013289px;}
.h1a{height:469.800000px;}
.h19{height:529.200000px;}
.h18{height:696.600000px;}
.h0{height:810.000000px;}
.w3{width:192.600000px;}
.w5{width:311.040000px;}
.w2{width:311.760000px;}
.w4{width:312.660000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xf{left:5.795995px;}
.x7{left:10.799979px;}
.x1{left:13.751979px;}
.x1d{left:29.195979px;}
.xb{left:34.055979px;}
.x9{left:38.375979px;}
.x8{left:43.343979px;}
.x1e{left:44.855979px;}
.x1c{left:51.515979px;}
.x19{left:57.455979px;}
.x23{left:65.699979px;}
.x6{left:69.947979px;}
.xc{left:73.943979px;}
.x2a{left:75.563979px;}
.x20{left:77.255979px;}
.x10{left:81.791979px;}
.x2b{left:86.183979px;}
.x2{left:92.411979px;}
.x1f{left:106.811979px;}
.xe{left:109.799979px;}
.xd{left:134.783979px;}
.x3{left:160.844979px;}
.x24{left:203.009979px;}
.x2e{left:280.724979px;}
.x21{left:305.174979px;}
.x11{left:311.580000px;}
.x22{left:312.914979px;}
.x29{left:427.289979px;}
.x2f{left:440.069979px;}
.x28{left:471.209979px;}
.x12{left:504.000000px;}
.xa{left:516.599979px;}
.x18{left:539.024979px;}
.x30{left:612.539979px;}
.x13{left:627.224979px;}
.x2c{left:707.759979px;}
.x2d{left:740.699979px;}
.x27{left:801.794979px;}
.x14{left:816.480000px;}
.x26{left:842.294979px;}
.x1a{left:851.549979px;}
.x4{left:896.504979px;}
.x15{left:939.749979px;}
.x5{left:1068.944979px;}
.x16{left:1128.960000px;}
.x1b{left:1164.059979px;}
.x25{left:1217.669979px;}
.x17{left:1252.259979px;}
@media print{
.v1{vertical-align:-17.920000pt;}
.v2{vertical-align:-7.520000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.520000pt;}
.ls14{letter-spacing:-1.866667pt;}
.ls9{letter-spacing:-0.321067pt;}
.ls1b{letter-spacing:-0.311467pt;}
.ls11{letter-spacing:-0.268800pt;}
.lsa{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.204267pt;}
.ls7{letter-spacing:-0.148800pt;}
.ls4{letter-spacing:-0.085333pt;}
.ls6{letter-spacing:-0.083733pt;}
.ls3{letter-spacing:-0.077333pt;}
.ls1c{letter-spacing:-0.033280pt;}
.ls5{letter-spacing:-0.021760pt;}
.ls13{letter-spacing:-0.008960pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.036480pt;}
.ls15{letter-spacing:0.054400pt;}
.ls8{letter-spacing:0.060800pt;}
.ls16{letter-spacing:0.109333pt;}
.ls17{letter-spacing:0.139733pt;}
.lsd{letter-spacing:0.140267pt;}
.ls19{letter-spacing:0.147200pt;}
.lse{letter-spacing:0.173333pt;}
.ls10{letter-spacing:0.185067pt;}
.lsc{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.211733pt;}
.lsb{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.267733pt;}
.ls2{letter-spacing:43.763200pt;}
.ls1{letter-spacing:43.808000pt;}
.ls18{letter-spacing:43.936000pt;}
.ls1d{letter-spacing:47.392000pt;}
.ws4{word-spacing:-53.082880pt;}
.ws3a{word-spacing:-48.194048pt;}
.ws3d{word-spacing:-37.346048pt;}
.wsd{word-spacing:-33.730048pt;}
.ws3{word-spacing:-33.701120pt;}
.ws10{word-spacing:-28.956928pt;}
.ws16{word-spacing:-28.928000pt;}
.ws1{word-spacing:-26.469120pt;}
.ws2d{word-spacing:-24.331008pt;}
.ws2e{word-spacing:-24.183808pt;}
.ws30{word-spacing:-24.154880pt;}
.ws3e{word-spacing:-21.696000pt;}
.ws24{word-spacing:-16.951808pt;}
.ws23{word-spacing:-16.922880pt;}
.ws0{word-spacing:-5.883008pt;}
.ws26{word-spacing:-2.629376pt;}
.ws28{word-spacing:-1.129173pt;}
.ws2c{word-spacing:-1.084245pt;}
.ws2a{word-spacing:-1.073280pt;}
.ws29{word-spacing:-1.046080pt;}
.ws1e{word-spacing:-1.001173pt;}
.ws13{word-spacing:-0.864000pt;}
.ws12{word-spacing:-0.640000pt;}
.ws1f{word-spacing:-0.629333pt;}
.ws19{word-spacing:-0.607872pt;}
.wsf{word-spacing:-0.604501pt;}
.wse{word-spacing:-0.339840pt;}
.ws14{word-spacing:-0.245333pt;}
.ws1b{word-spacing:-0.204629pt;}
.ws8{word-spacing:-0.162389pt;}
.ws3b{word-spacing:-0.139008pt;}
.ws20{word-spacing:-0.128000pt;}
.ws22{word-spacing:-0.117120pt;}
.ws39{word-spacing:-0.074880pt;}
.ws38{word-spacing:-0.041600pt;}
.ws2{word-spacing:0.000000pt;}
.ws15{word-spacing:0.138667pt;}
.ws27{word-spacing:0.286720pt;}
.ws25{word-spacing:0.349440pt;}
.wsc{word-spacing:0.373504pt;}
.wsb{word-spacing:0.694400pt;}
.ws9{word-spacing:0.725248pt;}
.ws7{word-spacing:0.870656pt;}
.ws6{word-spacing:0.886080pt;}
.ws5{word-spacing:1.236480pt;}
.wsa{word-spacing:6.066176pt;}
.ws36{word-spacing:17.794560pt;}
.ws33{word-spacing:18.069760pt;}
.ws35{word-spacing:18.662400pt;}
.ws31{word-spacing:18.983467pt;}
.ws34{word-spacing:19.137280pt;}
.ws1c{word-spacing:19.968000pt;}
.ws1d{word-spacing:20.030763pt;}
.ws32{word-spacing:20.994560pt;}
.ws37{word-spacing:21.089280pt;}
.ws18{word-spacing:28.066091pt;}
.ws11{word-spacing:84.608000pt;}
.ws1a{word-spacing:84.670592pt;}
.ws21{word-spacing:100.536000pt;}
.ws17{word-spacing:113.499392pt;}
.ws3c{word-spacing:461.561088pt;}
.ws2b{word-spacing:721.907968pt;}
.ws2f{word-spacing:946.887040pt;}
._e{margin-left:-20.680704pt;}
._d{margin-left:-18.665984pt;}
._14{margin-left:-11.954688pt;}
._b{margin-left:-10.242048pt;}
._5{margin-left:-8.640000pt;}
._4{margin-left:-7.680000pt;}
._f{margin-left:-6.375680pt;}
._2{margin-left:-4.800000pt;}
._3{margin-left:-3.840000pt;}
._1{margin-left:-2.880000pt;}
._0{margin-left:-1.600000pt;}
._a{width:0.906667pt;}
._6{width:1.834240pt;}
._c{width:3.043200pt;}
._13{width:19.303680pt;}
._12{width:20.275200pt;}
._9{width:27.136427pt;}
._7{width:34.724267pt;}
._8{width:35.976747pt;}
._15{width:700.122624pt;}
._10{width:917.492309pt;}
._11{width:1050.346987pt;}
.fsc{font-size:74.880000pt;}
.fsd{font-size:75.008000pt;}
.fs16{font-size:85.120000pt;}
.fs7{font-size:96.000000pt;}
.fsf{font-size:106.880000pt;}
.fse{font-size:107.008000pt;}
.fs2{font-size:117.120000pt;}
.fsa{font-size:117.248000pt;}
.fs6{font-size:119.808000pt;}
.fs9{font-size:128.000000pt;}
.fs8{font-size:128.128000pt;}
.fs12{font-size:138.880000pt;}
.fs13{font-size:139.008000pt;}
.fs4{font-size:149.120000pt;}
.fs5{font-size:149.248000pt;}
.fs15{font-size:165.248000pt;}
.fs14{font-size:170.880000pt;}
.fs10{font-size:213.120000pt;}
.fs11{font-size:213.248000pt;}
.fs3{font-size:234.880000pt;}
.fsb{font-size:235.008000pt;}
.fs0{font-size:320.000000pt;}
.fs1{font-size:320.128000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:14.400000pt;}
.y12{bottom:17.696000pt;}
.y5d{bottom:22.560000pt;}
.y81{bottom:33.280000pt;}
.y51{bottom:48.000000pt;}
.y20{bottom:54.016000pt;}
.y5c{bottom:56.160000pt;}
.y80{bottom:74.720000pt;}
.y67{bottom:76.640000pt;}
.y54{bottom:81.600000pt;}
.y49{bottom:83.586667pt;}
.y5b{bottom:89.792000pt;}
.y5{bottom:91.776000pt;}
.y1f{bottom:94.176000pt;}
.y2f{bottom:103.200000pt;}
.y55{bottom:108.986667pt;}
.y59{bottom:108.992000pt;}
.y4b{bottom:109.026667pt;}
.y40{bottom:109.053333pt;}
.y37{bottom:109.093333pt;}
.y32{bottom:109.120000pt;}
.y75{bottom:112.352000pt;}
.y5a{bottom:123.392000pt;}
.y2e{bottom:127.840000pt;}
.y7a{bottom:130.304000pt;}
.y4{bottom:133.216000pt;}
.y1e{bottom:134.373333pt;}
.y7c{bottom:139.133333pt;}
.y74{bottom:145.626667pt;}
.y78{bottom:147.906667pt;}
.y66{bottom:154.240000pt;}
.y57{bottom:156.986667pt;}
.y79{bottom:162.786667pt;}
.y2d{bottom:165.760000pt;}
.y7b{bottom:171.613333pt;}
.y1d{bottom:174.693333pt;}
.y73{bottom:178.946667pt;}
.y2c{bottom:190.400000pt;}
.y56{bottom:190.586667pt;}
.y53{bottom:209.826667pt;}
.y1c{bottom:214.853333pt;}
.y4c{bottom:216.000000pt;}
.y50{bottom:224.186667pt;}
.y72{bottom:225.506667pt;}
.y2b{bottom:228.346667pt;}
.y68{bottom:238.373333pt;}
.y52{bottom:243.426667pt;}
.y4a{bottom:249.600000pt;}
.y2a{bottom:252.986667pt;}
.y1b{bottom:255.013333pt;}
.y4f{bottom:257.826667pt;}
.y71{bottom:258.786667pt;}
.y48{bottom:280.960000pt;}
.y46{bottom:283.200000pt;}
.y29{bottom:291.066667pt;}
.y4e{bottom:291.426667pt;}
.y1a{bottom:295.360000pt;}
.y65{bottom:303.386667pt;}
.y70{bottom:305.346667pt;}
.y7e{bottom:315.013333pt;}
.y28{bottom:315.706667pt;}
.y44{bottom:316.800000pt;}
.y4d{bottom:325.026667pt;}
.y19{bottom:335.520000pt;}
.y6f{bottom:338.653333pt;}
.y64{bottom:343.706667pt;}
.y7d{bottom:344.453333pt;}
.y42{bottom:350.400000pt;}
.y27{bottom:353.666667pt;}
.y18{bottom:375.680000pt;}
.y26{bottom:378.306667pt;}
.y3f{bottom:384.000000pt;}
.y63{bottom:384.026667pt;}
.yc{bottom:384.613333pt;}
.y6e{bottom:385.373333pt;}
.y47{bottom:392.253333pt;}
.y11{bottom:399.586667pt;}
.y17{bottom:416.026667pt;}
.y25{bottom:416.226667pt;}
.y3d{bottom:417.600000pt;}
.y6d{bottom:418.653333pt;}
.y62{bottom:424.386667pt;}
.y45{bottom:425.853333pt;}
.y3{bottom:432.000000pt;}
.yb{bottom:438.213333pt;}
.y10{bottom:439.906667pt;}
.y24{bottom:440.866667pt;}
.y3b{bottom:451.200000pt;}
.y9{bottom:451.493333pt;}
.y6c{bottom:451.933333pt;}
.y16{bottom:456.186667pt;}
.y43{bottom:459.453333pt;}
.y61{bottom:464.706667pt;}
.y23{bottom:478.946667pt;}
.y39{bottom:484.800000pt;}
.ya{bottom:491.813333pt;}
.y41{bottom:493.053333pt;}
.yf{bottom:493.666667pt;}
.y15{bottom:496.346667pt;}
.y6b{bottom:498.533333pt;}
.y8{bottom:505.253333pt;}
.y60{bottom:518.306667pt;}
.y36{bottom:518.400000pt;}
.y2{bottom:518.426667pt;}
.y3e{bottom:526.693333pt;}
.ye{bottom:534.013333pt;}
.y14{bottom:536.666667pt;}
.y7{bottom:545.600000pt;}
.y77{bottom:549.853333pt;}
.y34{bottom:552.000000pt;}
.y22{bottom:554.813333pt;}
.y30{bottom:557.626667pt;}
.y3c{bottom:560.293333pt;}
.y5f{bottom:571.933333pt;}
.yd{bottom:574.333333pt;}
.y13{bottom:576.866667pt;}
.y7f{bottom:584.160000pt;}
.y31{bottom:585.600000pt;}
.y3a{bottom:593.893333pt;}
.y6a{bottom:597.346667pt;}
.y1{bottom:604.826667pt;}
.y21{bottom:619.520000pt;}
.y5e{bottom:625.693333pt;}
.y38{bottom:627.493333pt;}
.y6{bottom:634.240000pt;}
.y69{bottom:654.946667pt;}
.y76{bottom:661.026667pt;}
.y35{bottom:661.120000pt;}
.y33{bottom:694.720000pt;}
.h10{height:60.181875pt;}
.h15{height:60.255000pt;}
.h12{height:60.284750pt;}
.h13{height:60.358000pt;}
.h24{height:68.495000pt;}
.h9{height:77.250000pt;}
.h1d{height:78.097500pt;}
.h1c{height:86.005000pt;}
.h1b{height:86.108000pt;}
.h3{height:94.130625pt;}
.hc{height:94.245000pt;}
.hd{height:94.348000pt;}
.hb{height:103.000000pt;}
.ha{height:103.103000pt;}
.h20{height:111.755000pt;}
.h21{height:111.858000pt;}
.h6{height:119.849375pt;}
.h7{height:119.952250pt;}
.h5{height:119.995000pt;}
.h8{height:120.098000pt;}
.h23{height:132.973000pt;}
.hf{height:134.400000pt;}
.h22{height:137.338125pt;}
.h11{height:168.000000pt;}
.h1e{height:175.761562pt;}
.h1f{height:175.867125pt;}
.h17{height:180.320000pt;}
.h4{height:193.707188pt;}
.he{height:193.812750pt;}
.h14{height:201.600000pt;}
.h16{height:235.200000pt;}
.h1{height:263.906250pt;}
.h2{height:264.011813pt;}
.h1a{height:417.600000pt;}
.h19{height:470.400000pt;}
.h18{height:619.200000pt;}
.h0{height:720.000000pt;}
.w3{width:171.200000pt;}
.w5{width:276.480000pt;}
.w2{width:277.120000pt;}
.w4{width:277.920000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xf{left:5.151996pt;}
.x7{left:9.599981pt;}
.x1{left:12.223981pt;}
.x1d{left:25.951981pt;}
.xb{left:30.271981pt;}
.x9{left:34.111981pt;}
.x8{left:38.527981pt;}
.x1e{left:39.871981pt;}
.x1c{left:45.791981pt;}
.x19{left:51.071981pt;}
.x23{left:58.399981pt;}
.x6{left:62.175981pt;}
.xc{left:65.727981pt;}
.x2a{left:67.167981pt;}
.x20{left:68.671981pt;}
.x10{left:72.703981pt;}
.x2b{left:76.607981pt;}
.x2{left:82.143981pt;}
.x1f{left:94.943981pt;}
.xe{left:97.599981pt;}
.xd{left:119.807981pt;}
.x3{left:142.973314pt;}
.x24{left:180.453314pt;}
.x2e{left:249.533314pt;}
.x21{left:271.266648pt;}
.x11{left:276.960000pt;}
.x22{left:278.146648pt;}
.x29{left:379.813314pt;}
.x2f{left:391.173314pt;}
.x28{left:418.853314pt;}
.x12{left:448.000000pt;}
.xa{left:459.199981pt;}
.x18{left:479.133314pt;}
.x30{left:544.479981pt;}
.x13{left:557.533314pt;}
.x2c{left:629.119981pt;}
.x2d{left:658.399981pt;}
.x27{left:712.706648pt;}
.x14{left:725.760000pt;}
.x26{left:748.706648pt;}
.x1a{left:756.933314pt;}
.x4{left:796.893314pt;}
.x15{left:835.333314pt;}
.x5{left:950.173314pt;}
.x16{left:1003.520000pt;}
.x1b{left:1034.719981pt;}
.x25{left:1082.373314pt;}
.x17{left:1113.119981pt;}
}




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