
    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_bcfcab787622b011460e8a59.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_6050c15d001c3ed7c1b280ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_8bee8b49e5503701cb96f797.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_66417365734eab5524923b90.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_96806a322f3aa1bfb87ab443.woff2')format("woff");}.ff5{font-family:ff5;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.014400px;}
.ls9{letter-spacing:0.596160px;}
.ls2{letter-spacing:2.021400px;}
.ls4{letter-spacing:3.562800px;}
.ls3{letter-spacing:3.846600px;}
.ls7{letter-spacing:4.756800px;}
.ls5{letter-spacing:7.243800px;}
.ls8{letter-spacing:7.725600px;}
.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;}
}
.ws3{word-spacing:-18.014400px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.985600px;}
.ws5{word-spacing:-0.660960px;}
.ws6{word-spacing:-0.072000px;}
.ws0{word-spacing:-0.064800px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-1.000800px;}
._2{width:1.350840px;}
._8{width:2.367120px;}
._7{width:3.844800px;}
._5{width:5.731200px;}
._3{width:7.603200px;}
._9{width:8.707440px;}
._6{width:10.670400px;}
._4{width:12.513600px;}
._c{width:13.737600px;}
._d{width:15.055200px;}
._b{width:16.660800px;}
._18{width:19.296000px;}
._0{width:20.570400px;}
._15{width:21.873600px;}
._e{width:22.960800px;}
._13{width:23.961600px;}
._17{width:25.157640px;}
._a{width:26.316000px;}
._f{width:28.238400px;}
._1c{width:29.276160px;}
._1{width:30.764640px;}
._22{width:31.824480px;}
._24{width:32.954400px;}
._21{width:33.984000px;}
._19{width:35.006400px;}
._12{width:37.641600px;}
._1a{width:38.952000px;}
._1b{width:41.054400px;}
._20{width:43.495200px;}
._27{width:45.316800px;}
._11{width:49.701600px;}
._23{width:52.624800px;}
._1d{width:55.792800px;}
._16{width:56.815200px;}
._2a{width:64.866960px;}
._26{width:66.000240px;}
._29{width:68.774400px;}
._25{width:81.900000px;}
._1f{width:95.248800px;}
._1e{width:102.000240px;}
._28{width:129.909600px;}
._10{width:601.761600px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:64.800000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:18.368595px;}
.y4{bottom:39.177585px;}
.y3{bottom:58.977585px;}
.y78{bottom:98.937585px;}
.yf7{bottom:103.257585px;}
.y113{bottom:104.697585px;}
.yd3{bottom:105.057585px;}
.ybb{bottom:107.577585px;}
.y9d{bottom:113.697585px;}
.y8d{bottom:119.817585px;}
.y61{bottom:129.537585px;}
.y55{bottom:129.897585px;}
.yf6{bottom:134.217555px;}
.yd2{bottom:136.017555px;}
.yba{bottom:138.897555px;}
.y112{bottom:142.137555px;}
.y9c{bottom:145.017555px;}
.y8c{bottom:151.137555px;}
.y54{bottom:160.857555px;}
.y22{bottom:163.377555px;}
.yf5{bottom:165.177555px;}
.yd1{bottom:166.977555px;}
.yb9{bottom:169.857555px;}
.y111{bottom:172.737555px;}
.y121{bottom:173.097555px;}
.y8b{bottom:182.097555px;}
.y60{bottom:190.737555px;}
.y9b{bottom:191.097555px;}
.y53{bottom:191.817555px;}
.y21{bottom:194.337555px;}
.yd0{bottom:198.297555px;}
.yb8{bottom:200.817555px;}
.yf4{bottom:202.617555px;}
.y110{bottom:204.057555px;}
.y8a{bottom:213.057555px;}
.y5f{bottom:222.057555px;}
.y52{bottom:223.137555px;}
.y20{bottom:225.297555px;}
.ycf{bottom:229.257555px;}
.yb7{bottom:231.777555px;}
.yf3{bottom:233.217555px;}
.y10f{bottom:235.017555px;}
.y89{bottom:244.017555px;}
.yd9{bottom:252.297555px;}
.y5e{bottom:253.017555px;}
.y51{bottom:254.097555px;}
.y1f{bottom:256.617555px;}
.yce{bottom:260.217555px;}
.yb6{bottom:263.097555px;}
.yf2{bottom:264.177555px;}
.y120{bottom:265.977555px;}
.y9a{bottom:268.497555px;}
.y10e{bottom:272.457555px;}
.y88{bottom:275.337555px;}
.y5d{bottom:283.977555px;}
.y50{bottom:285.057555px;}
.y1e{bottom:287.577555px;}
.ycd{bottom:291.177555px;}
.yb5{bottom:294.057555px;}
.y99{bottom:299.097555px;}
.yf1{bottom:301.617555px;}
.y10d{bottom:303.057555px;}
.y11f{bottom:303.417555px;}
.y87{bottom:306.297555px;}
.y5c{bottom:314.937555px;}
.y4f{bottom:316.017555px;}
.y1d{bottom:318.537555px;}
.ycc{bottom:322.497555px;}
.yb4{bottom:325.017555px;}
.y98{bottom:330.057555px;}
.yf0{bottom:332.217555px;}
.y10c{bottom:334.017555px;}
.y86{bottom:337.257555px;}
.y5b{bottom:346.257555px;}
.y4e{bottom:347.337555px;}
.y1c{bottom:349.497555px;}
.ycb{bottom:353.457555px;}
.yb3{bottom:355.977555px;}
.y97{bottom:361.017555px;}
.y10b{bottom:365.337555px;}
.y85{bottom:368.217555px;}
.yd8{bottom:368.577555px;}
.yef{bottom:369.657555px;}
.y5a{bottom:377.217555px;}
.y4d{bottom:378.297555px;}
.y1b{bottom:380.817555px;}
.yca{bottom:384.417555px;}
.yb2{bottom:387.297555px;}
.y96{bottom:392.337555px;}
.y77{bottom:393.417555px;}
.y11e{bottom:396.297555px;}
.y84{bottom:399.537555px;}
.yee{bottom:400.617555px;}
.y10a{bottom:402.417555px;}
.yd7{bottom:407.457555px;}
.y59{bottom:408.177555px;}
.y4c{bottom:409.257555px;}
.y1a{bottom:411.777555px;}
.yc9{bottom:415.377555px;}
.yb1{bottom:418.257555px;}
.y95{bottom:423.297555px;}
.y76{bottom:424.377555px;}
.y83{bottom:430.497555px;}
.yed{bottom:431.577555px;}
.y109{bottom:433.377555px;}
.y11d{bottom:433.737555px;}
.yd6{bottom:438.057555px;}
.y58{bottom:439.137555px;}
.y4b{bottom:440.217555px;}
.y19{bottom:442.737555px;}
.yc8{bottom:446.337555px;}
.yb0{bottom:449.217555px;}
.y94{bottom:454.257555px;}
.y75{bottom:455.337555px;}
.y82{bottom:461.457555px;}
.yec{bottom:462.537555px;}
.y108{bottom:464.337555px;}
.yd5{bottom:469.377555px;}
.y4a{bottom:471.537555px;}
.y18{bottom:473.697555px;}
.yc7{bottom:477.657555px;}
.yaf{bottom:480.177555px;}
.y93{bottom:485.217555px;}
.y57{bottom:485.577555px;}
.y74{bottom:486.297555px;}
.y81{bottom:492.417555px;}
.y107{bottom:495.297555px;}
.yeb{bottom:499.977555px;}
.yd4{bottom:500.337555px;}
.y36{bottom:500.697555px;}
.y11c{bottom:501.777555px;}
.y49{bottom:502.497555px;}
.y17{bottom:505.017555px;}
.yc6{bottom:508.617555px;}
.yae{bottom:511.497555px;}
.y92{bottom:516.537555px;}
.y80{bottom:523.737555px;}
.y106{bottom:526.257555px;}
.yea{bottom:530.577555px;}
.y35{bottom:531.297555px;}
.y56{bottom:531.657555px;}
.y11b{bottom:532.377555px;}
.y73{bottom:532.737555px;}
.y48{bottom:533.457555px;}
.y16{bottom:535.977555px;}
.yc5{bottom:539.577555px;}
.yad{bottom:542.457555px;}
.y91{bottom:547.497555px;}
.y7f{bottom:554.697555px;}
.ye9{bottom:561.537555px;}
.y34{bottom:562.257555px;}
.y72{bottom:563.337555px;}
.y105{bottom:563.697555px;}
.y47{bottom:564.417555px;}
.y15{bottom:566.937555px;}
.yc4{bottom:570.537555px;}
.yac{bottom:573.417555px;}
.y90{bottom:578.457555px;}
.y7e{bottom:585.657555px;}
.ye8{bottom:592.857555px;}
.y33{bottom:593.577555px;}
.y104{bottom:594.657555px;}
.y46{bottom:595.377555px;}
.y14{bottom:597.897555px;}
.y11a{bottom:600.777555px;}
.yc3{bottom:601.857555px;}
.yab{bottom:604.377555px;}
.y8f{bottom:609.417555px;}
.y71{bottom:609.777555px;}
.y7d{bottom:616.617555px;}
.ye7{bottom:623.817555px;}
.y32{bottom:624.537555px;}
.y103{bottom:625.617555px;}
.y45{bottom:626.697555px;}
.y119{bottom:631.377555px;}
.yc2{bottom:632.817555px;}
.yaa{bottom:635.337555px;}
.y70{bottom:640.377555px;}
.y13{bottom:644.337555px;}
.y7c{bottom:647.937555px;}
.y31{bottom:655.497555px;}
.y44{bottom:657.657555px;}
.ye6{bottom:661.257555px;}
.y118{bottom:662.697555px;}
.y102{bottom:663.057555px;}
.yc1{bottom:663.777555px;}
.ya9{bottom:666.657555px;}
.y6f{bottom:671.697555px;}
.y12{bottom:675.297555px;}
.y7b{bottom:678.897555px;}
.y30{bottom:686.457555px;}
.y8e{bottom:686.817555px;}
.y43{bottom:688.617555px;}
.ye5{bottom:691.857555px;}
.y101{bottom:693.657555px;}
.yc0{bottom:694.737555px;}
.ya8{bottom:697.617555px;}
.y6e{bottom:702.657555px;}
.y11{bottom:706.257555px;}
.y7a{bottom:709.857555px;}
.y2f{bottom:717.777555px;}
.y42{bottom:719.577555px;}
.ye4{bottom:722.817555px;}
.y100{bottom:724.617555px;}
.ybf{bottom:726.057555px;}
.ya7{bottom:728.577555px;}
.y6d{bottom:733.617555px;}
.y10{bottom:737.217555px;}
.y2e{bottom:748.737555px;}
.y79{bottom:749.097555px;}
.y41{bottom:750.897555px;}
.ybe{bottom:757.017555px;}
.ya6{bottom:759.537555px;}
.ye3{bottom:760.257555px;}
.yff{bottom:762.057555px;}
.y6c{bottom:764.577555px;}
.yf{bottom:768.177555px;}
.y2d{bottom:779.697555px;}
.y40{bottom:781.857555px;}
.ya5{bottom:790.857555px;}
.yfe{bottom:792.657555px;}
.y6b{bottom:795.897555px;}
.ybd{bottom:796.257555px;}
.ye{bottom:799.497555px;}
.y2c{bottom:810.657555px;}
.y3f{bottom:812.817555px;}
.ya4{bottom:821.817555px;}
.ye2{bottom:822.177555px;}
.yfd{bottom:823.977555px;}
.y6a{bottom:826.857555px;}
.yd{bottom:830.457555px;}
.y2b{bottom:841.977555px;}
.ybc{bottom:842.337555px;}
.y3e{bottom:843.777555px;}
.y127{bottom:849.897555px;}
.ya3{bottom:852.777555px;}
.ye1{bottom:853.137555px;}
.yfc{bottom:854.937555px;}
.y69{bottom:857.817555px;}
.y117{bottom:861.417555px;}
.y2a{bottom:872.937555px;}
.y3d{bottom:875.097555px;}
.yc{bottom:876.897555px;}
.ya2{bottom:883.737555px;}
.y126{bottom:886.257555px;}
.y68{bottom:888.777555px;}
.ye0{bottom:890.577555px;}
.y116{bottom:892.017555px;}
.yfb{bottom:892.377555px;}
.y29{bottom:903.897555px;}
.y3c{bottom:906.057555px;}
.yb{bottom:907.497555px;}
.y67{bottom:920.097555px;}
.ydf{bottom:921.177555px;}
.ya1{bottom:922.977555px;}
.y125{bottom:923.337555px;}
.y28{bottom:934.857555px;}
.ya{bottom:938.457555px;}
.y66{bottom:951.057555px;}
.yde{bottom:952.137555px;}
.y3b{bottom:952.497555px;}
.yfa{bottom:953.937555px;}
.y115{bottom:960.417555px;}
.y27{bottom:966.177555px;}
.ya0{bottom:969.057555px;}
.y65{bottom:982.017555px;}
.ydd{bottom:983.457555px;}
.y9{bottom:984.897555px;}
.y114{bottom:991.017555px;}
.yf9{bottom:991.377555px;}
.y26{bottom:997.137555px;}
.y3a{bottom:998.577555px;}
.y64{bottom:1012.977555px;}
.y9f{bottom:1014.057555px;}
.ydc{bottom:1020.897555px;}
.yf8{bottom:1021.977555px;}
.y124{bottom:1022.337555px;}
.y8{bottom:1027.737555px;}
.y25{bottom:1028.097555px;}
.y39{bottom:1029.177555px;}
.y63{bottom:1044.297555px;}
.ydb{bottom:1051.497555px;}
.y123{bottom:1053.297555px;}
.y7{bottom:1058.697555px;}
.y24{bottom:1059.057555px;}
.y9e{bottom:1059.417555px;}
.y38{bottom:1075.617555px;}
.yda{bottom:1082.457555px;}
.y122{bottom:1084.257555px;}
.y23{bottom:1090.377555px;}
.y62{bottom:1090.737555px;}
.y6{bottom:1097.937555px;}
.y5{bottom:1121.337555px;}
.y37{bottom:1121.697555px;}
.y2{bottom:1175.697555px;}
.h3{height:43.189453px;}
.h6{height:49.992188px;}
.h5{height:50.027344px;}
.h4{height:63.949219px;}
.h2{height:1226.097600px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w2{width:856.176300px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:18.368550px;}
.x2{left:109.439940px;}
.x5{left:157.440000px;}
.x4{left:730.514250px;}
.x3{left:738.877050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.012800pt;}
.ls9{letter-spacing:0.529920pt;}
.ls2{letter-spacing:1.796800pt;}
.ls4{letter-spacing:3.166933pt;}
.ls3{letter-spacing:3.419200pt;}
.ls7{letter-spacing:4.228267pt;}
.ls5{letter-spacing:6.438933pt;}
.ls8{letter-spacing:6.867200pt;}
.ws3{word-spacing:-16.012800pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.987200pt;}
.ws5{word-spacing:-0.587520pt;}
.ws6{word-spacing:-0.064000pt;}
.ws0{word-spacing:-0.057600pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-0.889600pt;}
._2{width:1.200747pt;}
._8{width:2.104107pt;}
._7{width:3.417600pt;}
._5{width:5.094400pt;}
._3{width:6.758400pt;}
._9{width:7.739947pt;}
._6{width:9.484800pt;}
._4{width:11.123200pt;}
._c{width:12.211200pt;}
._d{width:13.382400pt;}
._b{width:14.809600pt;}
._18{width:17.152000pt;}
._0{width:18.284800pt;}
._15{width:19.443200pt;}
._e{width:20.409600pt;}
._13{width:21.299200pt;}
._17{width:22.362347pt;}
._a{width:23.392000pt;}
._f{width:25.100800pt;}
._1c{width:26.023253pt;}
._1{width:27.346347pt;}
._22{width:28.288427pt;}
._24{width:29.292800pt;}
._21{width:30.208000pt;}
._19{width:31.116800pt;}
._12{width:33.459200pt;}
._1a{width:34.624000pt;}
._1b{width:36.492800pt;}
._20{width:38.662400pt;}
._27{width:40.281600pt;}
._11{width:44.179200pt;}
._23{width:46.777600pt;}
._1d{width:49.593600pt;}
._16{width:50.502400pt;}
._2a{width:57.659520pt;}
._26{width:58.666880pt;}
._29{width:61.132800pt;}
._25{width:72.800000pt;}
._1f{width:84.665600pt;}
._1e{width:90.666880pt;}
._28{width:115.475200pt;}
._10{width:534.899200pt;}
.fs0{font-size:57.600000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:16.327640pt;}
.y4{bottom:34.824520pt;}
.y3{bottom:52.424520pt;}
.y78{bottom:87.944520pt;}
.yf7{bottom:91.784520pt;}
.y113{bottom:93.064520pt;}
.yd3{bottom:93.384520pt;}
.ybb{bottom:95.624520pt;}
.y9d{bottom:101.064520pt;}
.y8d{bottom:106.504520pt;}
.y61{bottom:115.144520pt;}
.y55{bottom:115.464520pt;}
.yf6{bottom:119.304493pt;}
.yd2{bottom:120.904493pt;}
.yba{bottom:123.464493pt;}
.y112{bottom:126.344493pt;}
.y9c{bottom:128.904493pt;}
.y8c{bottom:134.344493pt;}
.y54{bottom:142.984493pt;}
.y22{bottom:145.224493pt;}
.yf5{bottom:146.824493pt;}
.yd1{bottom:148.424493pt;}
.yb9{bottom:150.984493pt;}
.y111{bottom:153.544493pt;}
.y121{bottom:153.864493pt;}
.y8b{bottom:161.864493pt;}
.y60{bottom:169.544493pt;}
.y9b{bottom:169.864493pt;}
.y53{bottom:170.504493pt;}
.y21{bottom:172.744493pt;}
.yd0{bottom:176.264493pt;}
.yb8{bottom:178.504493pt;}
.yf4{bottom:180.104493pt;}
.y110{bottom:181.384493pt;}
.y8a{bottom:189.384493pt;}
.y5f{bottom:197.384493pt;}
.y52{bottom:198.344493pt;}
.y20{bottom:200.264493pt;}
.ycf{bottom:203.784493pt;}
.yb7{bottom:206.024493pt;}
.yf3{bottom:207.304493pt;}
.y10f{bottom:208.904493pt;}
.y89{bottom:216.904493pt;}
.yd9{bottom:224.264493pt;}
.y5e{bottom:224.904493pt;}
.y51{bottom:225.864493pt;}
.y1f{bottom:228.104493pt;}
.yce{bottom:231.304493pt;}
.yb6{bottom:233.864493pt;}
.yf2{bottom:234.824493pt;}
.y120{bottom:236.424493pt;}
.y9a{bottom:238.664493pt;}
.y10e{bottom:242.184493pt;}
.y88{bottom:244.744493pt;}
.y5d{bottom:252.424493pt;}
.y50{bottom:253.384493pt;}
.y1e{bottom:255.624493pt;}
.ycd{bottom:258.824493pt;}
.yb5{bottom:261.384493pt;}
.y99{bottom:265.864493pt;}
.yf1{bottom:268.104493pt;}
.y10d{bottom:269.384493pt;}
.y11f{bottom:269.704493pt;}
.y87{bottom:272.264493pt;}
.y5c{bottom:279.944493pt;}
.y4f{bottom:280.904493pt;}
.y1d{bottom:283.144493pt;}
.ycc{bottom:286.664493pt;}
.yb4{bottom:288.904493pt;}
.y98{bottom:293.384493pt;}
.yf0{bottom:295.304493pt;}
.y10c{bottom:296.904493pt;}
.y86{bottom:299.784493pt;}
.y5b{bottom:307.784493pt;}
.y4e{bottom:308.744493pt;}
.y1c{bottom:310.664493pt;}
.ycb{bottom:314.184493pt;}
.yb3{bottom:316.424493pt;}
.y97{bottom:320.904493pt;}
.y10b{bottom:324.744493pt;}
.y85{bottom:327.304493pt;}
.yd8{bottom:327.624493pt;}
.yef{bottom:328.584493pt;}
.y5a{bottom:335.304493pt;}
.y4d{bottom:336.264493pt;}
.y1b{bottom:338.504493pt;}
.yca{bottom:341.704493pt;}
.yb2{bottom:344.264493pt;}
.y96{bottom:348.744493pt;}
.y77{bottom:349.704493pt;}
.y11e{bottom:352.264493pt;}
.y84{bottom:355.144493pt;}
.yee{bottom:356.104493pt;}
.y10a{bottom:357.704493pt;}
.yd7{bottom:362.184493pt;}
.y59{bottom:362.824493pt;}
.y4c{bottom:363.784493pt;}
.y1a{bottom:366.024493pt;}
.yc9{bottom:369.224493pt;}
.yb1{bottom:371.784493pt;}
.y95{bottom:376.264493pt;}
.y76{bottom:377.224493pt;}
.y83{bottom:382.664493pt;}
.yed{bottom:383.624493pt;}
.y109{bottom:385.224493pt;}
.y11d{bottom:385.544493pt;}
.yd6{bottom:389.384493pt;}
.y58{bottom:390.344493pt;}
.y4b{bottom:391.304493pt;}
.y19{bottom:393.544493pt;}
.yc8{bottom:396.744493pt;}
.yb0{bottom:399.304493pt;}
.y94{bottom:403.784493pt;}
.y75{bottom:404.744493pt;}
.y82{bottom:410.184493pt;}
.yec{bottom:411.144493pt;}
.y108{bottom:412.744493pt;}
.yd5{bottom:417.224493pt;}
.y4a{bottom:419.144493pt;}
.y18{bottom:421.064493pt;}
.yc7{bottom:424.584493pt;}
.yaf{bottom:426.824493pt;}
.y93{bottom:431.304493pt;}
.y57{bottom:431.624493pt;}
.y74{bottom:432.264493pt;}
.y81{bottom:437.704493pt;}
.y107{bottom:440.264493pt;}
.yeb{bottom:444.424493pt;}
.yd4{bottom:444.744493pt;}
.y36{bottom:445.064493pt;}
.y11c{bottom:446.024493pt;}
.y49{bottom:446.664493pt;}
.y17{bottom:448.904493pt;}
.yc6{bottom:452.104493pt;}
.yae{bottom:454.664493pt;}
.y92{bottom:459.144493pt;}
.y80{bottom:465.544493pt;}
.y106{bottom:467.784493pt;}
.yea{bottom:471.624493pt;}
.y35{bottom:472.264493pt;}
.y56{bottom:472.584493pt;}
.y11b{bottom:473.224493pt;}
.y73{bottom:473.544493pt;}
.y48{bottom:474.184493pt;}
.y16{bottom:476.424493pt;}
.yc5{bottom:479.624493pt;}
.yad{bottom:482.184493pt;}
.y91{bottom:486.664493pt;}
.y7f{bottom:493.064493pt;}
.ye9{bottom:499.144493pt;}
.y34{bottom:499.784493pt;}
.y72{bottom:500.744493pt;}
.y105{bottom:501.064493pt;}
.y47{bottom:501.704493pt;}
.y15{bottom:503.944493pt;}
.yc4{bottom:507.144493pt;}
.yac{bottom:509.704493pt;}
.y90{bottom:514.184493pt;}
.y7e{bottom:520.584493pt;}
.ye8{bottom:526.984493pt;}
.y33{bottom:527.624493pt;}
.y104{bottom:528.584493pt;}
.y46{bottom:529.224493pt;}
.y14{bottom:531.464493pt;}
.y11a{bottom:534.024493pt;}
.yc3{bottom:534.984493pt;}
.yab{bottom:537.224493pt;}
.y8f{bottom:541.704493pt;}
.y71{bottom:542.024493pt;}
.y7d{bottom:548.104493pt;}
.ye7{bottom:554.504493pt;}
.y32{bottom:555.144493pt;}
.y103{bottom:556.104493pt;}
.y45{bottom:557.064493pt;}
.y119{bottom:561.224493pt;}
.yc2{bottom:562.504493pt;}
.yaa{bottom:564.744493pt;}
.y70{bottom:569.224493pt;}
.y13{bottom:572.744493pt;}
.y7c{bottom:575.944493pt;}
.y31{bottom:582.664493pt;}
.y44{bottom:584.584493pt;}
.ye6{bottom:587.784493pt;}
.y118{bottom:589.064493pt;}
.y102{bottom:589.384493pt;}
.yc1{bottom:590.024493pt;}
.ya9{bottom:592.584493pt;}
.y6f{bottom:597.064493pt;}
.y12{bottom:600.264493pt;}
.y7b{bottom:603.464493pt;}
.y30{bottom:610.184493pt;}
.y8e{bottom:610.504493pt;}
.y43{bottom:612.104493pt;}
.ye5{bottom:614.984493pt;}
.y101{bottom:616.584493pt;}
.yc0{bottom:617.544493pt;}
.ya8{bottom:620.104493pt;}
.y6e{bottom:624.584493pt;}
.y11{bottom:627.784493pt;}
.y7a{bottom:630.984493pt;}
.y2f{bottom:638.024493pt;}
.y42{bottom:639.624493pt;}
.ye4{bottom:642.504493pt;}
.y100{bottom:644.104493pt;}
.ybf{bottom:645.384493pt;}
.ya7{bottom:647.624493pt;}
.y6d{bottom:652.104493pt;}
.y10{bottom:655.304493pt;}
.y2e{bottom:665.544493pt;}
.y79{bottom:665.864493pt;}
.y41{bottom:667.464493pt;}
.ybe{bottom:672.904493pt;}
.ya6{bottom:675.144493pt;}
.ye3{bottom:675.784493pt;}
.yff{bottom:677.384493pt;}
.y6c{bottom:679.624493pt;}
.yf{bottom:682.824493pt;}
.y2d{bottom:693.064493pt;}
.y40{bottom:694.984493pt;}
.ya5{bottom:702.984493pt;}
.yfe{bottom:704.584493pt;}
.y6b{bottom:707.464493pt;}
.ybd{bottom:707.784493pt;}
.ye{bottom:710.664493pt;}
.y2c{bottom:720.584493pt;}
.y3f{bottom:722.504493pt;}
.ya4{bottom:730.504493pt;}
.ye2{bottom:730.824493pt;}
.yfd{bottom:732.424493pt;}
.y6a{bottom:734.984493pt;}
.yd{bottom:738.184493pt;}
.y2b{bottom:748.424493pt;}
.ybc{bottom:748.744493pt;}
.y3e{bottom:750.024493pt;}
.y127{bottom:755.464493pt;}
.ya3{bottom:758.024493pt;}
.ye1{bottom:758.344493pt;}
.yfc{bottom:759.944493pt;}
.y69{bottom:762.504493pt;}
.y117{bottom:765.704493pt;}
.y2a{bottom:775.944493pt;}
.y3d{bottom:777.864493pt;}
.yc{bottom:779.464493pt;}
.ya2{bottom:785.544493pt;}
.y126{bottom:787.784493pt;}
.y68{bottom:790.024493pt;}
.ye0{bottom:791.624493pt;}
.y116{bottom:792.904493pt;}
.yfb{bottom:793.224493pt;}
.y29{bottom:803.464493pt;}
.y3c{bottom:805.384493pt;}
.yb{bottom:806.664493pt;}
.y67{bottom:817.864493pt;}
.ydf{bottom:818.824493pt;}
.ya1{bottom:820.424493pt;}
.y125{bottom:820.744493pt;}
.y28{bottom:830.984493pt;}
.ya{bottom:834.184493pt;}
.y66{bottom:845.384493pt;}
.yde{bottom:846.344493pt;}
.y3b{bottom:846.664493pt;}
.yfa{bottom:847.944493pt;}
.y115{bottom:853.704493pt;}
.y27{bottom:858.824493pt;}
.ya0{bottom:861.384493pt;}
.y65{bottom:872.904493pt;}
.ydd{bottom:874.184493pt;}
.y9{bottom:875.464493pt;}
.y114{bottom:880.904493pt;}
.yf9{bottom:881.224493pt;}
.y26{bottom:886.344493pt;}
.y3a{bottom:887.624493pt;}
.y64{bottom:900.424493pt;}
.y9f{bottom:901.384493pt;}
.ydc{bottom:907.464493pt;}
.yf8{bottom:908.424493pt;}
.y124{bottom:908.744493pt;}
.y8{bottom:913.544493pt;}
.y25{bottom:913.864493pt;}
.y39{bottom:914.824493pt;}
.y63{bottom:928.264493pt;}
.ydb{bottom:934.664493pt;}
.y123{bottom:936.264493pt;}
.y7{bottom:941.064493pt;}
.y24{bottom:941.384493pt;}
.y9e{bottom:941.704493pt;}
.y38{bottom:956.104493pt;}
.yda{bottom:962.184493pt;}
.y122{bottom:963.784493pt;}
.y23{bottom:969.224493pt;}
.y62{bottom:969.544493pt;}
.y6{bottom:975.944493pt;}
.y5{bottom:996.744493pt;}
.y37{bottom:997.064493pt;}
.y2{bottom:1045.064493pt;}
.h3{height:38.390625pt;}
.h6{height:44.437500pt;}
.h5{height:44.468750pt;}
.h4{height:56.843750pt;}
.h2{height:1089.864533pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w2{width:761.045600pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:16.327600pt;}
.x2{left:97.279947pt;}
.x5{left:139.946667pt;}
.x4{left:649.346000pt;}
.x3{left:656.779600pt;}
}




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