
    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_608732db1cb28afc5c9c4c5e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.864000;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_1083dd6a73bd261d6594fe7c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.974000;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_9f4602237fa87dec6ec66ac3.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.089000;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_5e2e1488fac4d3332bc6c1b6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.998000;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_fbdd2a30f0bcb42c364c6c9e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.996000;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_3717316f31901883a98a0950.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.982000;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_fbdd2a30f0bcb42c364c6c9e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.996000;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_86651b72a7c57e902efc0b9f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.995000;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_3fadc0ca65eeccfee2c70914.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.995000;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_5e2e1488fac4d3332bc6c1b6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.998000;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_f53cadd208e128fa45079ae5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.982000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:8.988000px;}
.ls7{letter-spacing:-0.900000px;}
.ls6{letter-spacing:-0.825000px;}
.ls5{letter-spacing:-0.750000px;}
.ls4{letter-spacing:-0.525000px;}
.ls3{letter-spacing:-0.375000px;}
.ls1{letter-spacing:-0.225000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008400px;}
.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;}
}
.ws0{word-spacing:-18.525000px;}
.ws1b{word-spacing:-10.500000px;}
.wsf{word-spacing:-4.425000px;}
.ws4{word-spacing:-3.525000px;}
.ws28{word-spacing:-3.150000px;}
.ws4f{word-spacing:-3.075000px;}
.wsd{word-spacing:-3.000000px;}
.ws25{word-spacing:-2.775000px;}
.ws44{word-spacing:-2.700000px;}
.ws58{word-spacing:-2.625000px;}
.ws16{word-spacing:-2.550000px;}
.ws24{word-spacing:-2.475000px;}
.ws5{word-spacing:-2.400000px;}
.ws21{word-spacing:-2.325000px;}
.ws10{word-spacing:-1.875000px;}
.wsb{word-spacing:-1.725000px;}
.ws22{word-spacing:-1.575000px;}
.ws6{word-spacing:-1.275000px;}
.ws31{word-spacing:-1.200000px;}
.ws26{word-spacing:-1.125000px;}
.ws52{word-spacing:-1.050000px;}
.ws2c{word-spacing:-0.975000px;}
.ws4e{word-spacing:-0.900000px;}
.ws14{word-spacing:-0.825000px;}
.ws15{word-spacing:-0.750000px;}
.ws51{word-spacing:-0.675000px;}
.ws23{word-spacing:-0.450000px;}
.wse{word-spacing:-0.375000px;}
.ws57{word-spacing:-0.300000px;}
.ws8{word-spacing:-0.225000px;}
.ws4d{word-spacing:-0.075000px;}
.ws1{word-spacing:0.000000px;}
.ws18{word-spacing:0.075000px;}
.ws11{word-spacing:0.225000px;}
.ws56{word-spacing:0.300000px;}
.ws53{word-spacing:0.375000px;}
.ws39{word-spacing:0.450000px;}
.ws3b{word-spacing:0.525000px;}
.ws43{word-spacing:0.750000px;}
.ws54{word-spacing:0.900000px;}
.ws1d{word-spacing:1.050000px;}
.ws3c{word-spacing:1.125000px;}
.ws2b{word-spacing:1.200000px;}
.ws4c{word-spacing:1.275000px;}
.ws3f{word-spacing:1.350000px;}
.ws46{word-spacing:1.500000px;}
.ws34{word-spacing:1.650000px;}
.ws50{word-spacing:1.725000px;}
.ws1a{word-spacing:1.950000px;}
.ws1e{word-spacing:2.100000px;}
.ws45{word-spacing:2.250000px;}
.ws2e{word-spacing:2.325000px;}
.ws13{word-spacing:2.550000px;}
.ws17{word-spacing:2.625000px;}
.ws35{word-spacing:2.850000px;}
.ws1c{word-spacing:2.925000px;}
.ws27{word-spacing:3.300000px;}
.ws30{word-spacing:3.375000px;}
.ws4a{word-spacing:3.450000px;}
.ws2d{word-spacing:3.525000px;}
.ws2{word-spacing:3.600000px;}
.ws48{word-spacing:3.750000px;}
.ws3e{word-spacing:3.825000px;}
.ws3{word-spacing:3.900000px;}
.ws33{word-spacing:3.975000px;}
.ws36{word-spacing:4.050000px;}
.ws1f{word-spacing:4.275000px;}
.ws42{word-spacing:4.500000px;}
.ws5a{word-spacing:4.800000px;}
.ws29{word-spacing:4.875000px;}
.ws59{word-spacing:4.950000px;}
.ws38{word-spacing:5.025000px;}
.ws40{word-spacing:5.325000px;}
.ws9{word-spacing:5.400000px;}
.ws20{word-spacing:6.000000px;}
.ws12{word-spacing:6.075000px;}
.ws47{word-spacing:6.375000px;}
.ws3a{word-spacing:6.825000px;}
.ws32{word-spacing:7.050000px;}
.wsa{word-spacing:7.350000px;}
.wsc{word-spacing:7.800000px;}
.ws5d{word-spacing:7.875000px;}
.ws3d{word-spacing:7.950000px;}
.ws19{word-spacing:8.025000px;}
.ws37{word-spacing:8.175000px;}
.ws4b{word-spacing:8.475000px;}
.ws55{word-spacing:8.775000px;}
.ws41{word-spacing:9.000000px;}
.ws5c{word-spacing:9.150000px;}
.ws7{word-spacing:10.500000px;}
.ws2f{word-spacing:10.575000px;}
.ws2a{word-spacing:10.650000px;}
.ws5b{word-spacing:12.075000px;}
.ws49{word-spacing:14.850000px;}
._2{margin-left:-7.500000px;}
._3{margin-left:-6.000000px;}
._5{margin-left:-4.208400px;}
._0{margin-left:-2.646600px;}
._1{margin-left:-1.350000px;}
._6{width:1.146600px;}
._4{width:6.546600px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,1,1);}
.fs7{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:75.000000px;}
.fs1{font-size:78.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:54.935550px;}
.y7d{bottom:131.963250px;}
.y53{bottom:137.513250px;}
.y24{bottom:146.976300px;}
.y7c{bottom:155.963250px;}
.y52{bottom:161.513250px;}
.y23{bottom:171.276300px;}
.y7b{bottom:179.513250px;}
.y51{bottom:185.513250px;}
.y95{bottom:192.653100px;}
.y22{bottom:195.576300px;}
.y7a{bottom:203.063250px;}
.y50{bottom:209.513250px;}
.y94{bottom:215.603100px;}
.y21{bottom:219.876300px;}
.y79{bottom:226.613250px;}
.y4f{bottom:233.513250px;}
.y20{bottom:244.176300px;}
.y78{bottom:250.163250px;}
.y4e{bottom:257.513250px;}
.y1f{bottom:268.476300px;}
.y77{bottom:273.713250px;}
.y4d{bottom:281.513250px;}
.y1e{bottom:292.776300px;}
.y76{bottom:297.263250px;}
.y4c{bottom:305.513250px;}
.y93{bottom:307.402950px;}
.y1d{bottom:317.076300px;}
.y75{bottom:320.813250px;}
.y4b{bottom:329.513250px;}
.y1c{bottom:341.376300px;}
.y74{bottom:344.363250px;}
.y4a{bottom:353.513250px;}
.y1b{bottom:365.676300px;}
.y73{bottom:367.913250px;}
.y49{bottom:377.513250px;}
.y92{bottom:379.402950px;}
.y1a{bottom:389.976300px;}
.y72{bottom:391.463250px;}
.y48{bottom:401.513250px;}
.y91{bottom:403.402950px;}
.y19{bottom:414.276300px;}
.y71{bottom:415.013250px;}
.y47{bottom:425.513250px;}
.y90{bottom:427.402950px;}
.y70{bottom:438.563250px;}
.y18{bottom:438.576300px;}
.y46{bottom:449.513250px;}
.y8f{bottom:451.402950px;}
.y6f{bottom:462.113250px;}
.y17{bottom:462.876300px;}
.y45{bottom:473.513250px;}
.y8e{bottom:475.402950px;}
.y6e{bottom:485.663250px;}
.y16{bottom:487.176300px;}
.y44{bottom:497.513250px;}
.y8d{bottom:499.402950px;}
.y6d{bottom:509.213250px;}
.y15{bottom:511.476300px;}
.y43{bottom:521.513250px;}
.y8c{bottom:531.906900px;}
.y6c{bottom:532.763250px;}
.y14{bottom:535.776300px;}
.y42{bottom:545.513250px;}
.y6b{bottom:556.313250px;}
.y13{bottom:560.076300px;}
.y41{bottom:569.513250px;}
.y6a{bottom:579.863250px;}
.y12{bottom:584.376300px;}
.y40{bottom:593.513250px;}
.y69{bottom:603.413250px;}
.y11{bottom:608.676300px;}
.y8b{bottom:609.426000px;}
.y3f{bottom:617.513250px;}
.y68{bottom:626.963250px;}
.y8a{bottom:627.426000px;}
.y10{bottom:632.976300px;}
.y3e{bottom:641.513250px;}
.y67{bottom:650.513250px;}
.yf{bottom:657.276300px;}
.y89{bottom:662.436000px;}
.y3d{bottom:665.513250px;}
.y66{bottom:674.063250px;}
.y88{bottom:680.436000px;}
.ye{bottom:681.576300px;}
.y3c{bottom:689.513250px;}
.y65{bottom:697.613250px;}
.yd{bottom:705.876300px;}
.y3b{bottom:713.513250px;}
.y87{bottom:715.446000px;}
.y64{bottom:721.163250px;}
.yc{bottom:730.176300px;}
.y86{bottom:733.446000px;}
.y3a{bottom:737.513250px;}
.y63{bottom:744.713250px;}
.yb{bottom:754.476300px;}
.y39{bottom:761.513250px;}
.y62{bottom:768.263250px;}
.y85{bottom:768.456000px;}
.ya{bottom:778.776300px;}
.y38{bottom:785.513250px;}
.y61{bottom:791.813250px;}
.y9{bottom:803.076300px;}
.y84{bottom:803.466000px;}
.y37{bottom:809.513250px;}
.y60{bottom:815.363250px;}
.y83{bottom:821.466000px;}
.y8{bottom:827.376300px;}
.y36{bottom:833.513250px;}
.y5f{bottom:838.913250px;}
.y82{bottom:847.969950px;}
.y7{bottom:851.676300px;}
.y35{bottom:857.513250px;}
.y5e{bottom:862.463250px;}
.y34{bottom:881.513250px;}
.y5d{bottom:886.013250px;}
.y6{bottom:899.376300px;}
.y33{bottom:905.513250px;}
.y81{bottom:908.489550px;}
.y5c{bottom:909.563250px;}
.y5{bottom:922.776300px;}
.y32{bottom:929.513250px;}
.y80{bottom:932.489550px;}
.y5b{bottom:933.113250px;}
.y31{bottom:953.513250px;}
.y7f{bottom:956.489550px;}
.y5a{bottom:956.663250px;}
.y30{bottom:977.513250px;}
.y59{bottom:980.213250px;}
.y7e{bottom:988.993500px;}
.y2f{bottom:1001.513250px;}
.y58{bottom:1003.763250px;}
.y4{bottom:1022.434200px;}
.y2e{bottom:1025.513250px;}
.y57{bottom:1027.313250px;}
.y3{bottom:1038.484200px;}
.y2d{bottom:1049.513250px;}
.y56{bottom:1050.863250px;}
.y2c{bottom:1073.513250px;}
.y55{bottom:1074.413250px;}
.y2{bottom:1075.794000px;}
.y2b{bottom:1097.513250px;}
.y54{bottom:1097.963250px;}
.y1{bottom:1105.794000px;}
.y2a{bottom:1121.513250px;}
.y26{bottom:1169.492250px;}
.y29{bottom:1182.844200px;}
.y25{bottom:1188.000150px;}
.y27{bottom:1199.948100px;}
.h8{height:34.992000px;}
.ha{height:35.472000px;}
.hb{height:39.606000px;}
.h9{height:39.960000px;}
.h7{height:44.400000px;}
.h5{height:44.982000px;}
.h4{height:48.114000px;}
.hc{height:49.968000px;}
.hd{height:49.980000px;}
.h3{height:54.132000px;}
.he{height:54.675000px;}
.hf{height:55.725000px;}
.h6{height:62.475000px;}
.h2{height:74.952000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:106.297350px;}
.x4{left:113.005200px;}
.xf{left:140.319150px;}
.x7{left:148.822350px;}
.x1{left:181.496250px;}
.x2{left:221.956950px;}
.x9{left:301.003200px;}
.x6{left:307.672350px;}
.x5{left:311.853600px;}
.xa{left:326.578950px;}
.x3{left:384.153750px;}
.xd{left:524.003100px;}
.xb{left:566.687700px;}
.xc{left:780.278100px;}
.xe{left:781.442100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:7.989333pt;}
.ls7{letter-spacing:-0.800000pt;}
.ls6{letter-spacing:-0.733333pt;}
.ls5{letter-spacing:-0.666667pt;}
.ls4{letter-spacing:-0.466667pt;}
.ls3{letter-spacing:-0.333333pt;}
.ls1{letter-spacing:-0.200000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007467pt;}
.ws0{word-spacing:-16.466667pt;}
.ws1b{word-spacing:-9.333333pt;}
.wsf{word-spacing:-3.933333pt;}
.ws4{word-spacing:-3.133333pt;}
.ws28{word-spacing:-2.800000pt;}
.ws4f{word-spacing:-2.733333pt;}
.wsd{word-spacing:-2.666667pt;}
.ws25{word-spacing:-2.466667pt;}
.ws44{word-spacing:-2.400000pt;}
.ws58{word-spacing:-2.333333pt;}
.ws16{word-spacing:-2.266667pt;}
.ws24{word-spacing:-2.200000pt;}
.ws5{word-spacing:-2.133333pt;}
.ws21{word-spacing:-2.066667pt;}
.ws10{word-spacing:-1.666667pt;}
.wsb{word-spacing:-1.533333pt;}
.ws22{word-spacing:-1.400000pt;}
.ws6{word-spacing:-1.133333pt;}
.ws31{word-spacing:-1.066667pt;}
.ws26{word-spacing:-1.000000pt;}
.ws52{word-spacing:-0.933333pt;}
.ws2c{word-spacing:-0.866667pt;}
.ws4e{word-spacing:-0.800000pt;}
.ws14{word-spacing:-0.733333pt;}
.ws15{word-spacing:-0.666667pt;}
.ws51{word-spacing:-0.600000pt;}
.ws23{word-spacing:-0.400000pt;}
.wse{word-spacing:-0.333333pt;}
.ws57{word-spacing:-0.266667pt;}
.ws8{word-spacing:-0.200000pt;}
.ws4d{word-spacing:-0.066667pt;}
.ws1{word-spacing:0.000000pt;}
.ws18{word-spacing:0.066667pt;}
.ws11{word-spacing:0.200000pt;}
.ws56{word-spacing:0.266667pt;}
.ws53{word-spacing:0.333333pt;}
.ws39{word-spacing:0.400000pt;}
.ws3b{word-spacing:0.466667pt;}
.ws43{word-spacing:0.666667pt;}
.ws54{word-spacing:0.800000pt;}
.ws1d{word-spacing:0.933333pt;}
.ws3c{word-spacing:1.000000pt;}
.ws2b{word-spacing:1.066667pt;}
.ws4c{word-spacing:1.133333pt;}
.ws3f{word-spacing:1.200000pt;}
.ws46{word-spacing:1.333333pt;}
.ws34{word-spacing:1.466667pt;}
.ws50{word-spacing:1.533333pt;}
.ws1a{word-spacing:1.733333pt;}
.ws1e{word-spacing:1.866667pt;}
.ws45{word-spacing:2.000000pt;}
.ws2e{word-spacing:2.066667pt;}
.ws13{word-spacing:2.266667pt;}
.ws17{word-spacing:2.333333pt;}
.ws35{word-spacing:2.533333pt;}
.ws1c{word-spacing:2.600000pt;}
.ws27{word-spacing:2.933333pt;}
.ws30{word-spacing:3.000000pt;}
.ws4a{word-spacing:3.066667pt;}
.ws2d{word-spacing:3.133333pt;}
.ws2{word-spacing:3.200000pt;}
.ws48{word-spacing:3.333333pt;}
.ws3e{word-spacing:3.400000pt;}
.ws3{word-spacing:3.466667pt;}
.ws33{word-spacing:3.533333pt;}
.ws36{word-spacing:3.600000pt;}
.ws1f{word-spacing:3.800000pt;}
.ws42{word-spacing:4.000000pt;}
.ws5a{word-spacing:4.266667pt;}
.ws29{word-spacing:4.333333pt;}
.ws59{word-spacing:4.400000pt;}
.ws38{word-spacing:4.466667pt;}
.ws40{word-spacing:4.733333pt;}
.ws9{word-spacing:4.800000pt;}
.ws20{word-spacing:5.333333pt;}
.ws12{word-spacing:5.400000pt;}
.ws47{word-spacing:5.666667pt;}
.ws3a{word-spacing:6.066667pt;}
.ws32{word-spacing:6.266667pt;}
.wsa{word-spacing:6.533333pt;}
.wsc{word-spacing:6.933333pt;}
.ws5d{word-spacing:7.000000pt;}
.ws3d{word-spacing:7.066667pt;}
.ws19{word-spacing:7.133333pt;}
.ws37{word-spacing:7.266667pt;}
.ws4b{word-spacing:7.533333pt;}
.ws55{word-spacing:7.800000pt;}
.ws41{word-spacing:8.000000pt;}
.ws5c{word-spacing:8.133333pt;}
.ws7{word-spacing:9.333333pt;}
.ws2f{word-spacing:9.400000pt;}
.ws2a{word-spacing:9.466667pt;}
.ws5b{word-spacing:10.733333pt;}
.ws49{word-spacing:13.200000pt;}
._2{margin-left:-6.666667pt;}
._3{margin-left:-5.333333pt;}
._5{margin-left:-3.740800pt;}
._0{margin-left:-2.352533pt;}
._1{margin-left:-1.200000pt;}
._6{width:1.019200pt;}
._4{width:5.819200pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:66.666667pt;}
.fs1{font-size:69.333333pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:48.831600pt;}
.y7d{bottom:117.300667pt;}
.y53{bottom:122.234000pt;}
.y24{bottom:130.645600pt;}
.y7c{bottom:138.634000pt;}
.y52{bottom:143.567333pt;}
.y23{bottom:152.245600pt;}
.y7b{bottom:159.567333pt;}
.y51{bottom:164.900667pt;}
.y95{bottom:171.247200pt;}
.y22{bottom:173.845600pt;}
.y7a{bottom:180.500667pt;}
.y50{bottom:186.234000pt;}
.y94{bottom:191.647200pt;}
.y21{bottom:195.445600pt;}
.y79{bottom:201.434000pt;}
.y4f{bottom:207.567333pt;}
.y20{bottom:217.045600pt;}
.y78{bottom:222.367333pt;}
.y4e{bottom:228.900667pt;}
.y1f{bottom:238.645600pt;}
.y77{bottom:243.300667pt;}
.y4d{bottom:250.234000pt;}
.y1e{bottom:260.245600pt;}
.y76{bottom:264.234000pt;}
.y4c{bottom:271.567333pt;}
.y93{bottom:273.247067pt;}
.y1d{bottom:281.845600pt;}
.y75{bottom:285.167333pt;}
.y4b{bottom:292.900667pt;}
.y1c{bottom:303.445600pt;}
.y74{bottom:306.100667pt;}
.y4a{bottom:314.234000pt;}
.y1b{bottom:325.045600pt;}
.y73{bottom:327.034000pt;}
.y49{bottom:335.567333pt;}
.y92{bottom:337.247067pt;}
.y1a{bottom:346.645600pt;}
.y72{bottom:347.967333pt;}
.y48{bottom:356.900667pt;}
.y91{bottom:358.580400pt;}
.y19{bottom:368.245600pt;}
.y71{bottom:368.900667pt;}
.y47{bottom:378.234000pt;}
.y90{bottom:379.913733pt;}
.y70{bottom:389.834000pt;}
.y18{bottom:389.845600pt;}
.y46{bottom:399.567333pt;}
.y8f{bottom:401.247067pt;}
.y6f{bottom:410.767333pt;}
.y17{bottom:411.445600pt;}
.y45{bottom:420.900667pt;}
.y8e{bottom:422.580400pt;}
.y6e{bottom:431.700667pt;}
.y16{bottom:433.045600pt;}
.y44{bottom:442.234000pt;}
.y8d{bottom:443.913733pt;}
.y6d{bottom:452.634000pt;}
.y15{bottom:454.645600pt;}
.y43{bottom:463.567333pt;}
.y8c{bottom:472.806133pt;}
.y6c{bottom:473.567333pt;}
.y14{bottom:476.245600pt;}
.y42{bottom:484.900667pt;}
.y6b{bottom:494.500667pt;}
.y13{bottom:497.845600pt;}
.y41{bottom:506.234000pt;}
.y6a{bottom:515.434000pt;}
.y12{bottom:519.445600pt;}
.y40{bottom:527.567333pt;}
.y69{bottom:536.367333pt;}
.y11{bottom:541.045600pt;}
.y8b{bottom:541.712000pt;}
.y3f{bottom:548.900667pt;}
.y68{bottom:557.300667pt;}
.y8a{bottom:557.712000pt;}
.y10{bottom:562.645600pt;}
.y3e{bottom:570.234000pt;}
.y67{bottom:578.234000pt;}
.yf{bottom:584.245600pt;}
.y89{bottom:588.832000pt;}
.y3d{bottom:591.567333pt;}
.y66{bottom:599.167333pt;}
.y88{bottom:604.832000pt;}
.ye{bottom:605.845600pt;}
.y3c{bottom:612.900667pt;}
.y65{bottom:620.100667pt;}
.yd{bottom:627.445600pt;}
.y3b{bottom:634.234000pt;}
.y87{bottom:635.952000pt;}
.y64{bottom:641.034000pt;}
.yc{bottom:649.045600pt;}
.y86{bottom:651.952000pt;}
.y3a{bottom:655.567333pt;}
.y63{bottom:661.967333pt;}
.yb{bottom:670.645600pt;}
.y39{bottom:676.900667pt;}
.y62{bottom:682.900667pt;}
.y85{bottom:683.072000pt;}
.ya{bottom:692.245600pt;}
.y38{bottom:698.234000pt;}
.y61{bottom:703.834000pt;}
.y9{bottom:713.845600pt;}
.y84{bottom:714.192000pt;}
.y37{bottom:719.567333pt;}
.y60{bottom:724.767333pt;}
.y83{bottom:730.192000pt;}
.y8{bottom:735.445600pt;}
.y36{bottom:740.900667pt;}
.y5f{bottom:745.700667pt;}
.y82{bottom:753.751067pt;}
.y7{bottom:757.045600pt;}
.y35{bottom:762.234000pt;}
.y5e{bottom:766.634000pt;}
.y34{bottom:783.567333pt;}
.y5d{bottom:787.567333pt;}
.y6{bottom:799.445600pt;}
.y33{bottom:804.900667pt;}
.y81{bottom:807.546267pt;}
.y5c{bottom:808.500667pt;}
.y5{bottom:820.245600pt;}
.y32{bottom:826.234000pt;}
.y80{bottom:828.879600pt;}
.y5b{bottom:829.434000pt;}
.y31{bottom:847.567333pt;}
.y7f{bottom:850.212933pt;}
.y5a{bottom:850.367333pt;}
.y30{bottom:868.900667pt;}
.y59{bottom:871.300667pt;}
.y7e{bottom:879.105333pt;}
.y2f{bottom:890.234000pt;}
.y58{bottom:892.234000pt;}
.y4{bottom:908.830400pt;}
.y2e{bottom:911.567333pt;}
.y57{bottom:913.167333pt;}
.y3{bottom:923.097067pt;}
.y2d{bottom:932.900667pt;}
.y56{bottom:934.100667pt;}
.y2c{bottom:954.234000pt;}
.y55{bottom:955.034000pt;}
.y2{bottom:956.261333pt;}
.y2b{bottom:975.567333pt;}
.y54{bottom:975.967333pt;}
.y1{bottom:982.928000pt;}
.y2a{bottom:996.900667pt;}
.y26{bottom:1039.548667pt;}
.y29{bottom:1051.417067pt;}
.y25{bottom:1056.000133pt;}
.y27{bottom:1066.620533pt;}
.h8{height:31.104000pt;}
.ha{height:31.530667pt;}
.hb{height:35.205333pt;}
.h9{height:35.520000pt;}
.h7{height:39.466667pt;}
.h5{height:39.984000pt;}
.h4{height:42.768000pt;}
.hc{height:44.416000pt;}
.hd{height:44.426667pt;}
.h3{height:48.117333pt;}
.he{height:48.600000pt;}
.hf{height:49.533333pt;}
.h6{height:55.533333pt;}
.h2{height:66.624000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:94.486533pt;}
.x4{left:100.449067pt;}
.xf{left:124.728133pt;}
.x7{left:132.286533pt;}
.x1{left:161.330000pt;}
.x2{left:197.295067pt;}
.x9{left:267.558400pt;}
.x6{left:273.486533pt;}
.x5{left:277.203200pt;}
.xa{left:290.292400pt;}
.x3{left:341.470000pt;}
.xd{left:465.780533pt;}
.xb{left:503.722400pt;}
.xc{left:693.580533pt;}
.xe{left:694.615200pt;}
}




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