
    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_e3fce61a0bbeb29d59ba1c8c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b83271629e3a013194d9b4bb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f331932a0631fa342d4d660a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_00761c6b0591328fad5dd9b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.239258;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.v2{vertical-align:-19.500000px;}
.v3{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.500000px;}
.v4{vertical-align:28.500000px;}
.v7{vertical-align:36.057600px;}
.v6{vertical-align:42.067200px;}
.v5{vertical-align:48.000000px;}
.v8{vertical-align:54.086400px;}
.v9{vertical-align:90.076800px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.480000px;}
.ls1{letter-spacing:0.750000px;}
.lsb{letter-spacing:1.182000px;}
.lsc{letter-spacing:1.207500px;}
.ls3{letter-spacing:1.320000px;}
.ls4{letter-spacing:1.500000px;}
.ls0{letter-spacing:1.512000px;}
.lsd{letter-spacing:1.560000px;}
.ls7{letter-spacing:1.680000px;}
.lse{letter-spacing:3.000000px;}
.ls5{letter-spacing:6.000000px;}
.ls9{letter-spacing:19.089600px;}
.ls6{letter-spacing:47.250000px;}
.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;}
}
.ws2{word-spacing:-45.000000px;}
.ws4{word-spacing:-16.500000px;}
.wsa{word-spacing:-15.012000px;}
.ws1{word-spacing:-15.000000px;}
.wsb{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.000000px;}
.ws9{word-spacing:-8.625000px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:34.374912px;}
.ws7{word-spacing:40.384512px;}
.ws5{word-spacing:43.088832px;}
.ws8{word-spacing:49.098432px;}
._8{margin-left:-20.148000px;}
._5{margin-left:-7.308000px;}
._c{margin-left:-5.940000px;}
._4{margin-left:-4.476000px;}
._6{margin-left:-2.376000px;}
._2{margin-left:-1.164000px;}
._1{width:1.056000px;}
._0{width:2.112000px;}
._3{width:3.336000px;}
._7{width:4.908000px;}
._9{width:5.916000px;}
._f{width:6.960000px;}
._10{width:8.016000px;}
._e{width:9.168000px;}
._d{width:10.692000px;}
._b{width:12.420000px;}
._13{width:13.464000px;}
._15{width:15.180000px;}
._11{width:16.944000px;}
._12{width:18.240000px;}
._16{width:21.582000px;}
._14{width:1820.580000px;}
._a{width:1831.500000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:34.500000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:60.096000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:108.000000px;}
.fs4{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:88.125000px;}
.y2{bottom:88.875000px;}
.yb2{bottom:127.500000px;}
.y4d{bottom:130.125000px;}
.y89{bottom:130.500000px;}
.y73{bottom:132.375000px;}
.yb1{bottom:142.500000px;}
.yf{bottom:144.750000px;}
.y4c{bottom:145.125000px;}
.y88{bottom:145.500000px;}
.y72{bottom:147.375000px;}
.ye{bottom:159.750000px;}
.y4b{bottom:160.125000px;}
.ybc{bottom:160.500000px;}
.y71{bottom:162.375000px;}
.yb0{bottom:170.250000px;}
.y87{bottom:173.250000px;}
.yd{bottom:174.750000px;}
.y4a{bottom:175.125000px;}
.ybb{bottom:175.500000px;}
.y70{bottom:177.375000px;}
.yaf{bottom:185.250000px;}
.y86{bottom:188.250000px;}
.yc{bottom:189.750000px;}
.y49{bottom:190.125000px;}
.yba{bottom:190.500000px;}
.y6f{bottom:192.375000px;}
.y85{bottom:203.250000px;}
.y48{bottom:205.125000px;}
.yb9{bottom:205.500000px;}
.yd8{bottom:206.625000px;}
.y6e{bottom:207.375000px;}
.yb{bottom:217.500000px;}
.y75{bottom:217.875000px;}
.y47{bottom:220.125000px;}
.y6d{bottom:222.375000px;}
.y74{bottom:232.875000px;}
.y46{bottom:235.125000px;}
.yd7{bottom:236.625000px;}
.y6c{bottom:237.375000px;}
.yae{bottom:245.250000px;}
.y65{bottom:250.125000px;}
.y6b{bottom:252.375000px;}
.yad{bottom:260.250000px;}
.y45{bottom:265.125000px;}
.yd6{bottom:266.625000px;}
.y6a{bottom:267.375000px;}
.yac{bottom:275.250000px;}
.y44{bottom:280.125000px;}
.y69{bottom:282.375000px;}
.yab{bottom:290.250000px;}
.y43{bottom:295.125000px;}
.yd5{bottom:296.625000px;}
.yaa{bottom:305.250000px;}
.y42{bottom:310.125000px;}
.yd4{bottom:311.625000px;}
.ya9{bottom:320.250000px;}
.y41{bottom:325.125000px;}
.yd3{bottom:326.625000px;}
.ya8{bottom:335.250000px;}
.y40{bottom:340.125000px;}
.yd2{bottom:341.625000px;}
.ya{bottom:346.875000px;}
.y97{bottom:348.000000px;}
.ya7{bottom:350.250000px;}
.y3f{bottom:355.125000px;}
.y9{bottom:361.875000px;}
.y96{bottom:363.000000px;}
.ya6{bottom:365.250000px;}
.y3e{bottom:370.125000px;}
.y8{bottom:372.000000px;}
.y95{bottom:378.000000px;}
.y3d{bottom:385.125000px;}
.y94{bottom:393.000000px;}
.ya5{bottom:395.250000px;}
.y3c{bottom:400.125000px;}
.y93{bottom:408.000000px;}
.ya4{bottom:410.250000px;}
.yca{bottom:411.000000px;}
.y3b{bottom:415.125000px;}
.yc6{bottom:420.000000px;}
.y7{bottom:421.125000px;}
.y92{bottom:423.000000px;}
.ya3{bottom:425.250000px;}
.y3a{bottom:430.125000px;}
.yc5{bottom:435.000000px;}
.y91{bottom:438.000000px;}
.ya2{bottom:440.250000px;}
.y39{bottom:445.125000px;}
.y6{bottom:448.125000px;}
.y84{bottom:452.250000px;}
.y90{bottom:453.000000px;}
.ya1{bottom:455.250000px;}
.y38{bottom:460.125000px;}
.y83{bottom:467.250000px;}
.y8f{bottom:468.000000px;}
.ya0{bottom:470.250000px;}
.y5{bottom:475.125000px;}
.yc9{bottom:477.375000px;}
.y82{bottom:482.250000px;}
.y8e{bottom:483.000000px;}
.y9f{bottom:485.250000px;}
.y37{bottom:490.125000px;}
.ybf{bottom:491.625000px;}
.yc8{bottom:492.375000px;}
.y81{bottom:497.250000px;}
.y8d{bottom:498.000000px;}
.y9e{bottom:500.250000px;}
.y4{bottom:502.125000px;}
.y36{bottom:505.125000px;}
.ybe{bottom:506.625000px;}
.yc7{bottom:507.375000px;}
.y80{bottom:512.250000px;}
.y8c{bottom:513.000000px;}
.y9d{bottom:515.250000px;}
.y35{bottom:520.125000px;}
.ybd{bottom:521.625000px;}
.yc4{bottom:522.375000px;}
.y7f{bottom:527.250000px;}
.y3{bottom:529.125000px;}
.y9c{bottom:530.250000px;}
.y103{bottom:534.000000px;}
.y34{bottom:535.125000px;}
.yc3{bottom:537.375000px;}
.y8b{bottom:540.750000px;}
.y7e{bottom:542.250000px;}
.y9b{bottom:545.250000px;}
.y33{bottom:550.125000px;}
.yc2{bottom:552.375000px;}
.y8a{bottom:555.750000px;}
.y7d{bottom:557.250000px;}
.y9a{bottom:560.250000px;}
.y32{bottom:565.125000px;}
.yc1{bottom:567.375000px;}
.y7c{bottom:572.250000px;}
.y99{bottom:575.250000px;}
.y31{bottom:580.125000px;}
.yc0{bottom:582.375000px;}
.y7b{bottom:587.250000px;}
.y98{bottom:590.250000px;}
.y30{bottom:595.125000px;}
.yb8{bottom:597.375000px;}
.y102{bottom:598.500000px;}
.yf0{bottom:601.500000px;}
.y7a{bottom:602.250000px;}
.y2f{bottom:610.125000px;}
.y101{bottom:612.000000px;}
.yb7{bottom:612.375000px;}
.yef{bottom:615.000000px;}
.y79{bottom:617.250000px;}
.y2e{bottom:625.125000px;}
.y100{bottom:625.500000px;}
.yb6{bottom:627.375000px;}
.y78{bottom:632.250000px;}
.yee{bottom:637.125000px;}
.y2d{bottom:640.125000px;}
.yb5{bottom:642.375000px;}
.y77{bottom:647.250000px;}
.yff{bottom:647.625000px;}
.yed{bottom:650.625000px;}
.y2c{bottom:655.125000px;}
.yb4{bottom:657.375000px;}
.yfe{bottom:661.125000px;}
.yec{bottom:664.125000px;}
.y2b{bottom:670.125000px;}
.yb3{bottom:672.375000px;}
.yfd{bottom:674.625000px;}
.y76{bottom:677.250000px;}
.yeb{bottom:677.625000px;}
.y2a{bottom:685.125000px;}
.y68{bottom:687.375000px;}
.yfc{bottom:696.375000px;}
.yea{bottom:699.375000px;}
.y29{bottom:700.125000px;}
.y67{bottom:702.375000px;}
.yfb{bottom:709.875000px;}
.ye9{bottom:712.875000px;}
.y64{bottom:715.125000px;}
.y66{bottom:717.375000px;}
.yfa{bottom:723.375000px;}
.y63{bottom:730.125000px;}
.y28{bottom:732.375000px;}
.ye8{bottom:735.000000px;}
.yf9{bottom:736.875000px;}
.y62{bottom:745.125000px;}
.y27{bottom:747.375000px;}
.ye7{bottom:748.500000px;}
.yf8{bottom:759.000000px;}
.y61{bottom:760.125000px;}
.ye6{bottom:762.000000px;}
.y26{bottom:762.375000px;}
.yf7{bottom:772.500000px;}
.y60{bottom:775.125000px;}
.ye5{bottom:775.500000px;}
.y25{bottom:777.375000px;}
.yf6{bottom:786.000000px;}
.y5f{bottom:790.125000px;}
.y24{bottom:792.375000px;}
.ye4{bottom:797.625000px;}
.y5e{bottom:805.125000px;}
.y23{bottom:807.375000px;}
.yf5{bottom:807.750000px;}
.ye3{bottom:811.125000px;}
.y5d{bottom:820.125000px;}
.yf4{bottom:821.250000px;}
.y22{bottom:822.375000px;}
.ye2{bottom:824.625000px;}
.y5c{bottom:835.125000px;}
.y21{bottom:837.375000px;}
.yf3{bottom:843.375000px;}
.ye1{bottom:846.375000px;}
.y5b{bottom:850.125000px;}
.y20{bottom:852.375000px;}
.yf2{bottom:856.875000px;}
.ye0{bottom:859.875000px;}
.y5a{bottom:865.125000px;}
.y1f{bottom:867.375000px;}
.yf1{bottom:870.375000px;}
.ydf{bottom:873.375000px;}
.y59{bottom:880.125000px;}
.y1e{bottom:882.375000px;}
.y58{bottom:895.125000px;}
.yde{bottom:895.500000px;}
.y1d{bottom:897.375000px;}
.y57{bottom:910.125000px;}
.y1c{bottom:912.375000px;}
.y56{bottom:925.125000px;}
.y1b{bottom:927.375000px;}
.yd1{bottom:935.214000px;}
.yd0{bottom:935.230800px;}
.y55{bottom:940.125000px;}
.y1a{bottom:942.375000px;}
.ycf{bottom:947.250000px;}
.y54{bottom:955.125000px;}
.y19{bottom:957.375000px;}
.y53{bottom:970.125000px;}
.y18{bottom:972.375000px;}
.yce{bottom:977.228400px;}
.y52{bottom:985.125000px;}
.y17{bottom:987.375000px;}
.ycd{bottom:990.750000px;}
.ydd{bottom:998.625000px;}
.y51{bottom:1000.125000px;}
.y16{bottom:1002.375000px;}
.ydc{bottom:1012.125000px;}
.y50{bottom:1015.125000px;}
.y15{bottom:1017.375000px;}
.y11{bottom:1018.125000px;}
.ycc{bottom:1022.230800px;}
.ydb{bottom:1025.625000px;}
.y4f{bottom:1030.125000px;}
.y14{bottom:1032.375000px;}
.ycb{bottom:1034.250000px;}
.yda{bottom:1039.125000px;}
.y4e{bottom:1045.125000px;}
.y13{bottom:1060.125000px;}
.yd9{bottom:1061.250000px;}
.y10{bottom:1063.125000px;}
.y12{bottom:1107.375000px;}
.h4{height:40.968750px;}
.ha{height:47.085938px;}
.h1{height:47.109375px;}
.h13{height:52.998047px;}
.h12{height:54.421875px;}
.h9{height:58.857422px;}
.h5{height:58.886719px;}
.h11{height:58.951594px;}
.h3{height:60.468750px;}
.h7{height:64.775391px;}
.h8{height:66.515625px;}
.hb{height:87.386719px;}
.he{height:95.009194px;}
.hc{height:101.018794px;}
.hd{height:107.028394px;}
.h2{height:108.843750px;}
.hf{height:113.037994px;}
.h10{height:149.028394px;}
.h6{height:181.406250px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:97.687500px;}
.xb{left:110.250000px;}
.x10{left:114.562500px;}
.x9{left:174.562500px;}
.xa{left:196.687500px;}
.x3{left:298.687500px;}
.x4{left:327.937950px;}
.x5{left:476.062500px;}
.x11{left:492.937500px;}
.x6{left:521.812500px;}
.x7{left:533.437500px;}
.x8{left:559.312500px;}
.xf{left:561.187500px;}
.xc{left:566.250000px;}
.xd{left:596.298000px;}
.xe{left:635.250000px;}
.x1{left:802.312500px;}
@media print{
.v2{vertical-align:-17.333333pt;}
.v3{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.333333pt;}
.v4{vertical-align:25.333333pt;}
.v7{vertical-align:32.051200pt;}
.v6{vertical-align:37.393067pt;}
.v5{vertical-align:42.666667pt;}
.v8{vertical-align:48.076800pt;}
.v9{vertical-align:80.068267pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls1{letter-spacing:0.666667pt;}
.lsb{letter-spacing:1.050667pt;}
.lsc{letter-spacing:1.073333pt;}
.ls3{letter-spacing:1.173333pt;}
.ls4{letter-spacing:1.333333pt;}
.ls0{letter-spacing:1.344000pt;}
.lsd{letter-spacing:1.386667pt;}
.ls7{letter-spacing:1.493333pt;}
.lse{letter-spacing:2.666667pt;}
.ls5{letter-spacing:5.333333pt;}
.ls9{letter-spacing:16.968533pt;}
.ls6{letter-spacing:42.000000pt;}
.ws2{word-spacing:-40.000000pt;}
.ws4{word-spacing:-14.666667pt;}
.wsa{word-spacing:-13.344000pt;}
.ws1{word-spacing:-13.333333pt;}
.wsb{word-spacing:-12.000000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws9{word-spacing:-7.666667pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:30.555477pt;}
.ws7{word-spacing:35.897344pt;}
.ws5{word-spacing:38.301184pt;}
.ws8{word-spacing:43.643051pt;}
._8{margin-left:-17.909333pt;}
._5{margin-left:-6.496000pt;}
._c{margin-left:-5.280000pt;}
._4{margin-left:-3.978667pt;}
._6{margin-left:-2.112000pt;}
._2{margin-left:-1.034667pt;}
._1{width:0.938667pt;}
._0{width:1.877333pt;}
._3{width:2.965333pt;}
._7{width:4.362667pt;}
._9{width:5.258667pt;}
._f{width:6.186667pt;}
._10{width:7.125333pt;}
._e{width:8.149333pt;}
._d{width:9.504000pt;}
._b{width:11.040000pt;}
._13{width:11.968000pt;}
._15{width:13.493333pt;}
._11{width:15.061333pt;}
._12{width:16.213333pt;}
._16{width:19.184000pt;}
._14{width:1618.293333pt;}
._a{width:1628.000000pt;}
.fs3{font-size:30.666667pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:53.418667pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:96.000000pt;}
.fs4{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:78.333333pt;}
.y2{bottom:79.000000pt;}
.yb2{bottom:113.333333pt;}
.y4d{bottom:115.666667pt;}
.y89{bottom:116.000000pt;}
.y73{bottom:117.666667pt;}
.yb1{bottom:126.666667pt;}
.yf{bottom:128.666667pt;}
.y4c{bottom:129.000000pt;}
.y88{bottom:129.333333pt;}
.y72{bottom:131.000000pt;}
.ye{bottom:142.000000pt;}
.y4b{bottom:142.333333pt;}
.ybc{bottom:142.666667pt;}
.y71{bottom:144.333333pt;}
.yb0{bottom:151.333333pt;}
.y87{bottom:154.000000pt;}
.yd{bottom:155.333333pt;}
.y4a{bottom:155.666667pt;}
.ybb{bottom:156.000000pt;}
.y70{bottom:157.666667pt;}
.yaf{bottom:164.666667pt;}
.y86{bottom:167.333333pt;}
.yc{bottom:168.666667pt;}
.y49{bottom:169.000000pt;}
.yba{bottom:169.333333pt;}
.y6f{bottom:171.000000pt;}
.y85{bottom:180.666667pt;}
.y48{bottom:182.333333pt;}
.yb9{bottom:182.666667pt;}
.yd8{bottom:183.666667pt;}
.y6e{bottom:184.333333pt;}
.yb{bottom:193.333333pt;}
.y75{bottom:193.666667pt;}
.y47{bottom:195.666667pt;}
.y6d{bottom:197.666667pt;}
.y74{bottom:207.000000pt;}
.y46{bottom:209.000000pt;}
.yd7{bottom:210.333333pt;}
.y6c{bottom:211.000000pt;}
.yae{bottom:218.000000pt;}
.y65{bottom:222.333333pt;}
.y6b{bottom:224.333333pt;}
.yad{bottom:231.333333pt;}
.y45{bottom:235.666667pt;}
.yd6{bottom:237.000000pt;}
.y6a{bottom:237.666667pt;}
.yac{bottom:244.666667pt;}
.y44{bottom:249.000000pt;}
.y69{bottom:251.000000pt;}
.yab{bottom:258.000000pt;}
.y43{bottom:262.333333pt;}
.yd5{bottom:263.666667pt;}
.yaa{bottom:271.333333pt;}
.y42{bottom:275.666667pt;}
.yd4{bottom:277.000000pt;}
.ya9{bottom:284.666667pt;}
.y41{bottom:289.000000pt;}
.yd3{bottom:290.333333pt;}
.ya8{bottom:298.000000pt;}
.y40{bottom:302.333333pt;}
.yd2{bottom:303.666667pt;}
.ya{bottom:308.333333pt;}
.y97{bottom:309.333333pt;}
.ya7{bottom:311.333333pt;}
.y3f{bottom:315.666667pt;}
.y9{bottom:321.666667pt;}
.y96{bottom:322.666667pt;}
.ya6{bottom:324.666667pt;}
.y3e{bottom:329.000000pt;}
.y8{bottom:330.666667pt;}
.y95{bottom:336.000000pt;}
.y3d{bottom:342.333333pt;}
.y94{bottom:349.333333pt;}
.ya5{bottom:351.333333pt;}
.y3c{bottom:355.666667pt;}
.y93{bottom:362.666667pt;}
.ya4{bottom:364.666667pt;}
.yca{bottom:365.333333pt;}
.y3b{bottom:369.000000pt;}
.yc6{bottom:373.333333pt;}
.y7{bottom:374.333333pt;}
.y92{bottom:376.000000pt;}
.ya3{bottom:378.000000pt;}
.y3a{bottom:382.333333pt;}
.yc5{bottom:386.666667pt;}
.y91{bottom:389.333333pt;}
.ya2{bottom:391.333333pt;}
.y39{bottom:395.666667pt;}
.y6{bottom:398.333333pt;}
.y84{bottom:402.000000pt;}
.y90{bottom:402.666667pt;}
.ya1{bottom:404.666667pt;}
.y38{bottom:409.000000pt;}
.y83{bottom:415.333333pt;}
.y8f{bottom:416.000000pt;}
.ya0{bottom:418.000000pt;}
.y5{bottom:422.333333pt;}
.yc9{bottom:424.333333pt;}
.y82{bottom:428.666667pt;}
.y8e{bottom:429.333333pt;}
.y9f{bottom:431.333333pt;}
.y37{bottom:435.666667pt;}
.ybf{bottom:437.000000pt;}
.yc8{bottom:437.666667pt;}
.y81{bottom:442.000000pt;}
.y8d{bottom:442.666667pt;}
.y9e{bottom:444.666667pt;}
.y4{bottom:446.333333pt;}
.y36{bottom:449.000000pt;}
.ybe{bottom:450.333333pt;}
.yc7{bottom:451.000000pt;}
.y80{bottom:455.333333pt;}
.y8c{bottom:456.000000pt;}
.y9d{bottom:458.000000pt;}
.y35{bottom:462.333333pt;}
.ybd{bottom:463.666667pt;}
.yc4{bottom:464.333333pt;}
.y7f{bottom:468.666667pt;}
.y3{bottom:470.333333pt;}
.y9c{bottom:471.333333pt;}
.y103{bottom:474.666667pt;}
.y34{bottom:475.666667pt;}
.yc3{bottom:477.666667pt;}
.y8b{bottom:480.666667pt;}
.y7e{bottom:482.000000pt;}
.y9b{bottom:484.666667pt;}
.y33{bottom:489.000000pt;}
.yc2{bottom:491.000000pt;}
.y8a{bottom:494.000000pt;}
.y7d{bottom:495.333333pt;}
.y9a{bottom:498.000000pt;}
.y32{bottom:502.333333pt;}
.yc1{bottom:504.333333pt;}
.y7c{bottom:508.666667pt;}
.y99{bottom:511.333333pt;}
.y31{bottom:515.666667pt;}
.yc0{bottom:517.666667pt;}
.y7b{bottom:522.000000pt;}
.y98{bottom:524.666667pt;}
.y30{bottom:529.000000pt;}
.yb8{bottom:531.000000pt;}
.y102{bottom:532.000000pt;}
.yf0{bottom:534.666667pt;}
.y7a{bottom:535.333333pt;}
.y2f{bottom:542.333333pt;}
.y101{bottom:544.000000pt;}
.yb7{bottom:544.333333pt;}
.yef{bottom:546.666667pt;}
.y79{bottom:548.666667pt;}
.y2e{bottom:555.666667pt;}
.y100{bottom:556.000000pt;}
.yb6{bottom:557.666667pt;}
.y78{bottom:562.000000pt;}
.yee{bottom:566.333333pt;}
.y2d{bottom:569.000000pt;}
.yb5{bottom:571.000000pt;}
.y77{bottom:575.333333pt;}
.yff{bottom:575.666667pt;}
.yed{bottom:578.333333pt;}
.y2c{bottom:582.333333pt;}
.yb4{bottom:584.333333pt;}
.yfe{bottom:587.666667pt;}
.yec{bottom:590.333333pt;}
.y2b{bottom:595.666667pt;}
.yb3{bottom:597.666667pt;}
.yfd{bottom:599.666667pt;}
.y76{bottom:602.000000pt;}
.yeb{bottom:602.333333pt;}
.y2a{bottom:609.000000pt;}
.y68{bottom:611.000000pt;}
.yfc{bottom:619.000000pt;}
.yea{bottom:621.666667pt;}
.y29{bottom:622.333333pt;}
.y67{bottom:624.333333pt;}
.yfb{bottom:631.000000pt;}
.ye9{bottom:633.666667pt;}
.y64{bottom:635.666667pt;}
.y66{bottom:637.666667pt;}
.yfa{bottom:643.000000pt;}
.y63{bottom:649.000000pt;}
.y28{bottom:651.000000pt;}
.ye8{bottom:653.333333pt;}
.yf9{bottom:655.000000pt;}
.y62{bottom:662.333333pt;}
.y27{bottom:664.333333pt;}
.ye7{bottom:665.333333pt;}
.yf8{bottom:674.666667pt;}
.y61{bottom:675.666667pt;}
.ye6{bottom:677.333333pt;}
.y26{bottom:677.666667pt;}
.yf7{bottom:686.666667pt;}
.y60{bottom:689.000000pt;}
.ye5{bottom:689.333333pt;}
.y25{bottom:691.000000pt;}
.yf6{bottom:698.666667pt;}
.y5f{bottom:702.333333pt;}
.y24{bottom:704.333333pt;}
.ye4{bottom:709.000000pt;}
.y5e{bottom:715.666667pt;}
.y23{bottom:717.666667pt;}
.yf5{bottom:718.000000pt;}
.ye3{bottom:721.000000pt;}
.y5d{bottom:729.000000pt;}
.yf4{bottom:730.000000pt;}
.y22{bottom:731.000000pt;}
.ye2{bottom:733.000000pt;}
.y5c{bottom:742.333333pt;}
.y21{bottom:744.333333pt;}
.yf3{bottom:749.666667pt;}
.ye1{bottom:752.333333pt;}
.y5b{bottom:755.666667pt;}
.y20{bottom:757.666667pt;}
.yf2{bottom:761.666667pt;}
.ye0{bottom:764.333333pt;}
.y5a{bottom:769.000000pt;}
.y1f{bottom:771.000000pt;}
.yf1{bottom:773.666667pt;}
.ydf{bottom:776.333333pt;}
.y59{bottom:782.333333pt;}
.y1e{bottom:784.333333pt;}
.y58{bottom:795.666667pt;}
.yde{bottom:796.000000pt;}
.y1d{bottom:797.666667pt;}
.y57{bottom:809.000000pt;}
.y1c{bottom:811.000000pt;}
.y56{bottom:822.333333pt;}
.y1b{bottom:824.333333pt;}
.yd1{bottom:831.301333pt;}
.yd0{bottom:831.316267pt;}
.y55{bottom:835.666667pt;}
.y1a{bottom:837.666667pt;}
.ycf{bottom:842.000000pt;}
.y54{bottom:849.000000pt;}
.y19{bottom:851.000000pt;}
.y53{bottom:862.333333pt;}
.y18{bottom:864.333333pt;}
.yce{bottom:868.647467pt;}
.y52{bottom:875.666667pt;}
.y17{bottom:877.666667pt;}
.ycd{bottom:880.666667pt;}
.ydd{bottom:887.666667pt;}
.y51{bottom:889.000000pt;}
.y16{bottom:891.000000pt;}
.ydc{bottom:899.666667pt;}
.y50{bottom:902.333333pt;}
.y15{bottom:904.333333pt;}
.y11{bottom:905.000000pt;}
.ycc{bottom:908.649600pt;}
.ydb{bottom:911.666667pt;}
.y4f{bottom:915.666667pt;}
.y14{bottom:917.666667pt;}
.ycb{bottom:919.333333pt;}
.yda{bottom:923.666667pt;}
.y4e{bottom:929.000000pt;}
.y13{bottom:942.333333pt;}
.yd9{bottom:943.333333pt;}
.y10{bottom:945.000000pt;}
.y12{bottom:984.333333pt;}
.h4{height:36.416667pt;}
.ha{height:41.854167pt;}
.h1{height:41.875000pt;}
.h13{height:47.109375pt;}
.h12{height:48.375000pt;}
.h9{height:52.317708pt;}
.h5{height:52.343750pt;}
.h11{height:52.401417pt;}
.h3{height:53.750000pt;}
.h7{height:57.578125pt;}
.h8{height:59.125000pt;}
.hb{height:77.677083pt;}
.he{height:84.452617pt;}
.hc{height:89.794483pt;}
.hd{height:95.136350pt;}
.h2{height:96.750000pt;}
.hf{height:100.478217pt;}
.h10{height:132.469683pt;}
.h6{height:161.250000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:86.833333pt;}
.xb{left:98.000000pt;}
.x10{left:101.833333pt;}
.x9{left:155.166667pt;}
.xa{left:174.833333pt;}
.x3{left:265.500000pt;}
.x4{left:291.500400pt;}
.x5{left:423.166667pt;}
.x11{left:438.166667pt;}
.x6{left:463.833333pt;}
.x7{left:474.166667pt;}
.x8{left:497.166667pt;}
.xf{left:498.833333pt;}
.xc{left:503.333333pt;}
.xd{left:530.042667pt;}
.xe{left:564.666667pt;}
.x1{left:713.166667pt;}
}




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