
    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_073c777a10d3485613577abf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.875000;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_26fb4d348dcb9772d5cc9967.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_97188607aa485b984dbc990b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.657000;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_075cf0d73cd824abafa3dce4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.952000;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_15f8c486a58848b9d8fbe2b3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.037633;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_2c6e7939b7e813797a92091e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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);}
.v2{vertical-align:-1.730400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.718400px;}
.ls19{letter-spacing:-3.933000px;}
.lsb{letter-spacing:-2.070000px;}
.lse{letter-spacing:-1.932000px;}
.ls13{letter-spacing:-1.725000px;}
.ls17{letter-spacing:-1.449000px;}
.ls15{letter-spacing:-1.440000px;}
.ls1a{letter-spacing:-1.380000px;}
.ls1b{letter-spacing:-1.035000px;}
.ls1d{letter-spacing:-0.966000px;}
.ls16{letter-spacing:-0.897000px;}
.ls7{letter-spacing:-0.690000px;}
.lsf{letter-spacing:-0.552000px;}
.lsa{letter-spacing:-0.480000px;}
.ls6{letter-spacing:-0.345000px;}
.ls14{letter-spacing:-0.276000px;}
.lsc{letter-spacing:-0.207000px;}
.ls1c{letter-spacing:-0.138000px;}
.ls5{letter-spacing:-0.069000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.138000px;}
.ls3{letter-spacing:0.345000px;}
.ls18{letter-spacing:0.552000px;}
.ls9{letter-spacing:0.621000px;}
.ls8{letter-spacing:0.690000px;}
.lsd{letter-spacing:1.035000px;}
.ls11{letter-spacing:1.380000px;}
.ls2{letter-spacing:1.680000px;}
.ls1{letter-spacing:2.640000px;}
.ls10{letter-spacing:7.107000px;}
.ls12{letter-spacing:816.378000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-17.250000px;}
.ws7{word-spacing:-16.905000px;}
.ws8{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.491000px;}
.wsd{word-spacing:-16.422000px;}
.ws2{word-spacing:-16.215000px;}
.ws1{word-spacing:-16.008000px;}
.ws6{word-spacing:-15.870000px;}
.ws10{word-spacing:-15.663000px;}
.ws3{word-spacing:-15.525000px;}
.ws9{word-spacing:-15.318000px;}
.wsb{word-spacing:-14.973000px;}
.wsf{word-spacing:-14.835000px;}
.wse{word-spacing:-14.490000px;}
.wsc{word-spacing:-14.421000px;}
.ws5{word-spacing:-11.040000px;}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-13.596000px;}
._9{margin-left:-12.144000px;}
._8{margin-left:-10.824000px;}
._1{margin-left:-9.768000px;}
._5{margin-left:-8.052000px;}
._6{margin-left:-6.864000px;}
._7{margin-left:-5.544000px;}
._2{margin-left:-4.488000px;}
._10{margin-left:-3.171000px;}
._a{margin-left:-2.100000px;}
._c{margin-left:-1.002000px;}
._3{width:1.716000px;}
._4{width:3.564000px;}
._f{width:4.653000px;}
._e{width:5.826000px;}
._d{width:6.831000px;}
._13{width:8.142000px;}
._12{width:9.660000px;}
._11{width:11.661000px;}
._25{width:12.753000px;}
._19{width:14.214000px;}
._17{width:16.695000px;}
._20{width:17.802000px;}
._26{width:19.281000px;}
._1a{width:20.355000px;}
._1c{width:22.080000px;}
._28{width:23.322000px;}
._22{width:24.978000px;}
._1f{width:26.082000px;}
._1b{width:29.274000px;}
._15{width:30.567000px;}
._21{width:32.982000px;}
._16{width:34.245000px;}
._27{width:35.712000px;}
._23{width:43.389000px;}
._18{width:48.852000px;}
._24{width:49.956000px;}
._1e{width:54.441000px;}
._b{width:59.863200px;}
._1d{width:311.943000px;}
._14{width:454.767600px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y67{bottom:77.815050px;}
.y45{bottom:85.043400px;}
.ya5{bottom:85.287000px;}
.y96{bottom:87.412950px;}
.y22{bottom:88.476000px;}
.y34{bottom:88.901250px;}
.y75{bottom:89.539050px;}
.yc6{bottom:89.609850px;}
.y85{bottom:90.389400px;}
.y65{bottom:93.790950px;}
.y44{bottom:98.893350px;}
.yb8{bottom:99.443400px;}
.ya4{bottom:112.287000px;}
.y95{bottom:114.412950px;}
.y21{bottom:115.476000px;}
.y33{bottom:115.901250px;}
.y74{bottom:116.539050px;}
.yc5{bottom:116.609850px;}
.y84{bottom:117.389400px;}
.yb5{bottom:118.877550px;}
.y64{bottom:120.790950px;}
.y43{bottom:125.893350px;}
.ya3{bottom:139.287000px;}
.y94{bottom:141.413100px;}
.y20{bottom:142.476000px;}
.y32{bottom:142.901250px;}
.y73{bottom:143.539050px;}
.yc4{bottom:143.609850px;}
.y83{bottom:144.389400px;}
.yb4{bottom:145.877550px;}
.y63{bottom:147.790950px;}
.y42{bottom:152.893350px;}
.ya2{bottom:166.287000px;}
.y93{bottom:168.413100px;}
.y1f{bottom:169.476000px;}
.y31{bottom:169.901250px;}
.y72{bottom:170.539050px;}
.yc3{bottom:170.609850px;}
.yb3{bottom:172.877550px;}
.y62{bottom:174.790950px;}
.y41{bottom:179.893350px;}
.ya1{bottom:193.287000px;}
.y86{bottom:194.094600px;}
.y92{bottom:195.413100px;}
.y1e{bottom:196.476000px;}
.y30{bottom:196.901250px;}
.y71{bottom:197.539050px;}
.yc2{bottom:197.609850px;}
.y82{bottom:198.389400px;}
.yb2{bottom:199.877550px;}
.y61{bottom:201.790950px;}
.y40{bottom:206.893350px;}
.yca{bottom:221.165400px;}
.y91{bottom:222.413100px;}
.y1d{bottom:223.476000px;}
.y2f{bottom:223.901250px;}
.y70{bottom:224.539050px;}
.yc1{bottom:224.609850px;}
.y81{bottom:225.389400px;}
.yb1{bottom:226.877550px;}
.y60{bottom:228.790950px;}
.y3f{bottom:233.893350px;}
.yc9{bottom:235.565400px;}
.ya0{bottom:247.287000px;}
.ya9{bottom:248.472450px;}
.y90{bottom:249.413100px;}
.y1c{bottom:250.476000px;}
.y2e{bottom:250.901250px;}
.y6f{bottom:251.539050px;}
.yc0{bottom:251.609850px;}
.y80{bottom:252.389400px;}
.yb0{bottom:253.877550px;}
.y5f{bottom:255.790950px;}
.y3e{bottom:260.893350px;}
.ya8{bottom:262.872450px;}
.y9f{bottom:274.287000px;}
.y8f{bottom:276.413100px;}
.y1b{bottom:277.476000px;}
.y2d{bottom:277.901250px;}
.y6e{bottom:278.539050px;}
.ybf{bottom:278.609850px;}
.y7f{bottom:279.389400px;}
.yaf{bottom:280.877550px;}
.y5e{bottom:282.790950px;}
.y3d{bottom:287.893350px;}
.y36{bottom:291.074850px;}
.y53{bottom:298.735800px;}
.y9e{bottom:301.287000px;}
.y8e{bottom:303.413100px;}
.yb7{bottom:304.019850px;}
.y1a{bottom:304.476000px;}
.y2c{bottom:304.901250px;}
.ybe{bottom:305.609850px;}
.y7e{bottom:306.389400px;}
.y5d{bottom:309.790950px;}
.y3c{bottom:314.893350px;}
.y52{bottom:325.735800px;}
.y9d{bottom:328.287000px;}
.y8d{bottom:330.413100px;}
.y19{bottom:331.476000px;}
.y2b{bottom:331.901250px;}
.y6d{bottom:332.539050px;}
.ybd{bottom:332.609850px;}
.y7d{bottom:333.389400px;}
.yae{bottom:334.877550px;}
.y5c{bottom:336.790950px;}
.y3b{bottom:341.893350px;}
.y51{bottom:352.735800px;}
.y9c{bottom:355.287000px;}
.y8c{bottom:357.413100px;}
.y18{bottom:358.476000px;}
.y2a{bottom:358.901250px;}
.y6c{bottom:359.539050px;}
.ybc{bottom:359.609850px;}
.y7c{bottom:360.389400px;}
.yad{bottom:361.877550px;}
.y5b{bottom:363.790950px;}
.y3a{bottom:368.893350px;}
.y50{bottom:379.735800px;}
.y9b{bottom:382.287000px;}
.y8b{bottom:384.413100px;}
.y17{bottom:385.476000px;}
.y29{bottom:385.901250px;}
.y6b{bottom:386.539050px;}
.ybb{bottom:386.609850px;}
.y7b{bottom:387.389400px;}
.yac{bottom:388.877550px;}
.y5a{bottom:390.790950px;}
.y39{bottom:395.893350px;}
.y4f{bottom:406.735800px;}
.y56{bottom:408.157500px;}
.y9a{bottom:409.287000px;}
.y8a{bottom:411.413100px;}
.y16{bottom:412.476000px;}
.y28{bottom:412.901250px;}
.y6a{bottom:413.539050px;}
.yba{bottom:413.609850px;}
.y7a{bottom:414.389400px;}
.yab{bottom:415.877550px;}
.y59{bottom:417.790950px;}
.y55{bottom:422.557500px;}
.y38{bottom:422.893350px;}
.y4e{bottom:433.735800px;}
.y99{bottom:436.287000px;}
.y89{bottom:438.413100px;}
.y15{bottom:439.476000px;}
.y27{bottom:439.901250px;}
.y69{bottom:440.539050px;}
.yb9{bottom:440.609850px;}
.y79{bottom:441.389400px;}
.yaa{bottom:442.877550px;}
.y58{bottom:444.790950px;}
.y4d{bottom:460.735800px;}
.y98{bottom:463.287000px;}
.y88{bottom:465.413100px;}
.y14{bottom:466.476000px;}
.y26{bottom:466.901250px;}
.y68{bottom:467.539050px;}
.y57{bottom:471.790950px;}
.y46{bottom:473.035500px;}
.y4c{bottom:487.735800px;}
.y13{bottom:493.476000px;}
.y25{bottom:493.901250px;}
.y37{bottom:497.484300px;}
.y78{bottom:498.783450px;}
.yb6{bottom:501.736200px;}
.yc7{bottom:504.570900px;}
.y87{bottom:507.051150px;}
.y3{bottom:510.696450px;}
.y77{bottom:511.114200px;}
.y4b{bottom:514.735800px;}
.y12{bottom:520.476000px;}
.y97{bottom:520.870200px;}
.y76{bottom:523.161450px;}
.y66{bottom:528.748050px;}
.ya6{bottom:531.500100px;}
.y4a{bottom:541.735800px;}
.y11{bottom:547.476000px;}
.y35{bottom:554.011800px;}
.y2{bottom:557.165400px;}
.y49{bottom:568.735800px;}
.y10{bottom:574.476000px;}
.y48{bottom:595.735800px;}
.y1{bottom:596.765400px;}
.yf{bottom:601.476000px;}
.yc8{bottom:603.783600px;}
.y47{bottom:622.735800px;}
.ya7{bottom:627.795300px;}
.ye{bottom:628.476000px;}
.yd{bottom:655.476000px;}
.ycb{bottom:672.393750px;}
.y54{bottom:679.657500px;}
.yc{bottom:682.476000px;}
.yb{bottom:709.476000px;}
.ya{bottom:736.476000px;}
.y9{bottom:763.476000px;}
.y8{bottom:790.476000px;}
.y7{bottom:817.476000px;}
.y6{bottom:844.476000px;}
.y5{bottom:871.476000px;}
.y4{bottom:960.444000px;}
.y23{bottom:960.846450px;}
.y24{bottom:960.873600px;}
.h9{height:38.190400px;}
.h7{height:38.340000px;}
.h8{height:44.298000px;}
.h4{height:46.016400px;}
.h5{height:48.990000px;}
.h6{height:54.898700px;}
.h3{height:55.944000px;}
.h2{height:87.912000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:722.835000px;}
.w0{width:1445.670000px;}
.w1{width:1446.000000px;}
.x0{left:0.000000px;}
.x9{left:85.039350px;}
.x8{left:127.559100px;}
.x12{left:148.818900px;}
.xb{left:252.992100px;}
.x5{left:353.279100px;}
.x13{left:367.795200px;}
.x14{left:410.314950px;}
.xe{left:423.496050px;}
.x17{left:474.803250px;}
.x11{left:484.724400px;}
.x4{left:722.835000px;}
.x6{left:824.881950px;}
.x7{left:867.401550px;}
.xf{left:888.661350px;}
.xa{left:901.417350px;}
.x2{left:1005.808800px;}
.xd{left:1028.125950px;}
.x15{left:1045.984350px;}
.x18{left:1048.818900px;}
.xc{left:1056.047250px;}
.x1{left:1094.180850px;}
.x16{left:1105.511850px;}
.x10{left:1112.229900px;}
.x3{left:1206.580650px;}
@media print{
.v2{vertical-align:-1.538133pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.527467pt;}
.ls19{letter-spacing:-3.496000pt;}
.lsb{letter-spacing:-1.840000pt;}
.lse{letter-spacing:-1.717333pt;}
.ls13{letter-spacing:-1.533333pt;}
.ls17{letter-spacing:-1.288000pt;}
.ls15{letter-spacing:-1.280000pt;}
.ls1a{letter-spacing:-1.226667pt;}
.ls1b{letter-spacing:-0.920000pt;}
.ls1d{letter-spacing:-0.858667pt;}
.ls16{letter-spacing:-0.797333pt;}
.ls7{letter-spacing:-0.613333pt;}
.lsf{letter-spacing:-0.490667pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls6{letter-spacing:-0.306667pt;}
.ls14{letter-spacing:-0.245333pt;}
.lsc{letter-spacing:-0.184000pt;}
.ls1c{letter-spacing:-0.122667pt;}
.ls5{letter-spacing:-0.061333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.122667pt;}
.ls3{letter-spacing:0.306667pt;}
.ls18{letter-spacing:0.490667pt;}
.ls9{letter-spacing:0.552000pt;}
.ls8{letter-spacing:0.613333pt;}
.lsd{letter-spacing:0.920000pt;}
.ls11{letter-spacing:1.226667pt;}
.ls2{letter-spacing:1.493333pt;}
.ls1{letter-spacing:2.346667pt;}
.ls10{letter-spacing:6.317333pt;}
.ls12{letter-spacing:725.669333pt;}
.wsa{word-spacing:-15.333333pt;}
.ws7{word-spacing:-15.026667pt;}
.ws8{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.658667pt;}
.wsd{word-spacing:-14.597333pt;}
.ws2{word-spacing:-14.413333pt;}
.ws1{word-spacing:-14.229333pt;}
.ws6{word-spacing:-14.106667pt;}
.ws10{word-spacing:-13.922667pt;}
.ws3{word-spacing:-13.800000pt;}
.ws9{word-spacing:-13.616000pt;}
.wsb{word-spacing:-13.309333pt;}
.wsf{word-spacing:-13.186667pt;}
.wse{word-spacing:-12.880000pt;}
.wsc{word-spacing:-12.818667pt;}
.ws5{word-spacing:-9.813333pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-12.085333pt;}
._9{margin-left:-10.794667pt;}
._8{margin-left:-9.621333pt;}
._1{margin-left:-8.682667pt;}
._5{margin-left:-7.157333pt;}
._6{margin-left:-6.101333pt;}
._7{margin-left:-4.928000pt;}
._2{margin-left:-3.989333pt;}
._10{margin-left:-2.818667pt;}
._a{margin-left:-1.866667pt;}
._c{margin-left:-0.890667pt;}
._3{width:1.525333pt;}
._4{width:3.168000pt;}
._f{width:4.136000pt;}
._e{width:5.178667pt;}
._d{width:6.072000pt;}
._13{width:7.237333pt;}
._12{width:8.586667pt;}
._11{width:10.365333pt;}
._25{width:11.336000pt;}
._19{width:12.634667pt;}
._17{width:14.840000pt;}
._20{width:15.824000pt;}
._26{width:17.138667pt;}
._1a{width:18.093333pt;}
._1c{width:19.626667pt;}
._28{width:20.730667pt;}
._22{width:22.202667pt;}
._1f{width:23.184000pt;}
._1b{width:26.021333pt;}
._15{width:27.170667pt;}
._21{width:29.317333pt;}
._16{width:30.440000pt;}
._27{width:31.744000pt;}
._23{width:38.568000pt;}
._18{width:43.424000pt;}
._24{width:44.405333pt;}
._1e{width:48.392000pt;}
._b{width:53.211733pt;}
._1d{width:277.282667pt;}
._14{width:404.237867pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y67{bottom:69.168933pt;}
.y45{bottom:75.594133pt;}
.ya5{bottom:75.810667pt;}
.y96{bottom:77.700400pt;}
.y22{bottom:78.645333pt;}
.y34{bottom:79.023333pt;}
.y75{bottom:79.590267pt;}
.yc6{bottom:79.653200pt;}
.y85{bottom:80.346133pt;}
.y65{bottom:83.369733pt;}
.y44{bottom:87.905200pt;}
.yb8{bottom:88.394133pt;}
.ya4{bottom:99.810667pt;}
.y95{bottom:101.700400pt;}
.y21{bottom:102.645333pt;}
.y33{bottom:103.023333pt;}
.y74{bottom:103.590267pt;}
.yc5{bottom:103.653200pt;}
.y84{bottom:104.346133pt;}
.yb5{bottom:105.668933pt;}
.y64{bottom:107.369733pt;}
.y43{bottom:111.905200pt;}
.ya3{bottom:123.810667pt;}
.y94{bottom:125.700533pt;}
.y20{bottom:126.645333pt;}
.y32{bottom:127.023333pt;}
.y73{bottom:127.590267pt;}
.yc4{bottom:127.653200pt;}
.y83{bottom:128.346133pt;}
.yb4{bottom:129.668933pt;}
.y63{bottom:131.369733pt;}
.y42{bottom:135.905200pt;}
.ya2{bottom:147.810667pt;}
.y93{bottom:149.700533pt;}
.y1f{bottom:150.645333pt;}
.y31{bottom:151.023333pt;}
.y72{bottom:151.590267pt;}
.yc3{bottom:151.653200pt;}
.yb3{bottom:153.668933pt;}
.y62{bottom:155.369733pt;}
.y41{bottom:159.905200pt;}
.ya1{bottom:171.810667pt;}
.y86{bottom:172.528533pt;}
.y92{bottom:173.700533pt;}
.y1e{bottom:174.645333pt;}
.y30{bottom:175.023333pt;}
.y71{bottom:175.590267pt;}
.yc2{bottom:175.653200pt;}
.y82{bottom:176.346133pt;}
.yb2{bottom:177.668933pt;}
.y61{bottom:179.369733pt;}
.y40{bottom:183.905200pt;}
.yca{bottom:196.591467pt;}
.y91{bottom:197.700533pt;}
.y1d{bottom:198.645333pt;}
.y2f{bottom:199.023333pt;}
.y70{bottom:199.590267pt;}
.yc1{bottom:199.653200pt;}
.y81{bottom:200.346133pt;}
.yb1{bottom:201.668933pt;}
.y60{bottom:203.369733pt;}
.y3f{bottom:207.905200pt;}
.yc9{bottom:209.391467pt;}
.ya0{bottom:219.810667pt;}
.ya9{bottom:220.864400pt;}
.y90{bottom:221.700533pt;}
.y1c{bottom:222.645333pt;}
.y2e{bottom:223.023333pt;}
.y6f{bottom:223.590267pt;}
.yc0{bottom:223.653200pt;}
.y80{bottom:224.346133pt;}
.yb0{bottom:225.668933pt;}
.y5f{bottom:227.369733pt;}
.y3e{bottom:231.905200pt;}
.ya8{bottom:233.664400pt;}
.y9f{bottom:243.810667pt;}
.y8f{bottom:245.700533pt;}
.y1b{bottom:246.645333pt;}
.y2d{bottom:247.023333pt;}
.y6e{bottom:247.590267pt;}
.ybf{bottom:247.653200pt;}
.y7f{bottom:248.346133pt;}
.yaf{bottom:249.668933pt;}
.y5e{bottom:251.369733pt;}
.y3d{bottom:255.905200pt;}
.y36{bottom:258.733200pt;}
.y53{bottom:265.542933pt;}
.y9e{bottom:267.810667pt;}
.y8e{bottom:269.700533pt;}
.yb7{bottom:270.239867pt;}
.y1a{bottom:270.645333pt;}
.y2c{bottom:271.023333pt;}
.ybe{bottom:271.653200pt;}
.y7e{bottom:272.346133pt;}
.y5d{bottom:275.369733pt;}
.y3c{bottom:279.905200pt;}
.y52{bottom:289.542933pt;}
.y9d{bottom:291.810667pt;}
.y8d{bottom:293.700533pt;}
.y19{bottom:294.645333pt;}
.y2b{bottom:295.023333pt;}
.y6d{bottom:295.590267pt;}
.ybd{bottom:295.653200pt;}
.y7d{bottom:296.346133pt;}
.yae{bottom:297.668933pt;}
.y5c{bottom:299.369733pt;}
.y3b{bottom:303.905200pt;}
.y51{bottom:313.542933pt;}
.y9c{bottom:315.810667pt;}
.y8c{bottom:317.700533pt;}
.y18{bottom:318.645333pt;}
.y2a{bottom:319.023333pt;}
.y6c{bottom:319.590267pt;}
.ybc{bottom:319.653200pt;}
.y7c{bottom:320.346133pt;}
.yad{bottom:321.668933pt;}
.y5b{bottom:323.369733pt;}
.y3a{bottom:327.905200pt;}
.y50{bottom:337.542933pt;}
.y9b{bottom:339.810667pt;}
.y8b{bottom:341.700533pt;}
.y17{bottom:342.645333pt;}
.y29{bottom:343.023333pt;}
.y6b{bottom:343.590267pt;}
.ybb{bottom:343.653200pt;}
.y7b{bottom:344.346133pt;}
.yac{bottom:345.668933pt;}
.y5a{bottom:347.369733pt;}
.y39{bottom:351.905200pt;}
.y4f{bottom:361.542933pt;}
.y56{bottom:362.806667pt;}
.y9a{bottom:363.810667pt;}
.y8a{bottom:365.700533pt;}
.y16{bottom:366.645333pt;}
.y28{bottom:367.023333pt;}
.y6a{bottom:367.590267pt;}
.yba{bottom:367.653200pt;}
.y7a{bottom:368.346133pt;}
.yab{bottom:369.668933pt;}
.y59{bottom:371.369733pt;}
.y55{bottom:375.606667pt;}
.y38{bottom:375.905200pt;}
.y4e{bottom:385.542933pt;}
.y99{bottom:387.810667pt;}
.y89{bottom:389.700533pt;}
.y15{bottom:390.645333pt;}
.y27{bottom:391.023333pt;}
.y69{bottom:391.590267pt;}
.yb9{bottom:391.653200pt;}
.y79{bottom:392.346133pt;}
.yaa{bottom:393.668933pt;}
.y58{bottom:395.369733pt;}
.y4d{bottom:409.542933pt;}
.y98{bottom:411.810667pt;}
.y88{bottom:413.700533pt;}
.y14{bottom:414.645333pt;}
.y26{bottom:415.023333pt;}
.y68{bottom:415.590267pt;}
.y57{bottom:419.369733pt;}
.y46{bottom:420.476000pt;}
.y4c{bottom:433.542933pt;}
.y13{bottom:438.645333pt;}
.y25{bottom:439.023333pt;}
.y37{bottom:442.208267pt;}
.y78{bottom:443.363067pt;}
.yb6{bottom:445.987733pt;}
.yc7{bottom:448.507467pt;}
.y87{bottom:450.712133pt;}
.y3{bottom:453.952400pt;}
.y77{bottom:454.323733pt;}
.y4b{bottom:457.542933pt;}
.y12{bottom:462.645333pt;}
.y97{bottom:462.995733pt;}
.y76{bottom:465.032400pt;}
.y66{bottom:469.998267pt;}
.ya6{bottom:472.444533pt;}
.y4a{bottom:481.542933pt;}
.y11{bottom:486.645333pt;}
.y35{bottom:492.454933pt;}
.y2{bottom:495.258133pt;}
.y49{bottom:505.542933pt;}
.y10{bottom:510.645333pt;}
.y48{bottom:529.542933pt;}
.y1{bottom:530.458133pt;}
.yf{bottom:534.645333pt;}
.yc8{bottom:536.696533pt;}
.y47{bottom:553.542933pt;}
.ya7{bottom:558.040267pt;}
.ye{bottom:558.645333pt;}
.yd{bottom:582.645333pt;}
.ycb{bottom:597.683333pt;}
.y54{bottom:604.140000pt;}
.yc{bottom:606.645333pt;}
.yb{bottom:630.645333pt;}
.ya{bottom:654.645333pt;}
.y9{bottom:678.645333pt;}
.y8{bottom:702.645333pt;}
.y7{bottom:726.645333pt;}
.y6{bottom:750.645333pt;}
.y5{bottom:774.645333pt;}
.y4{bottom:853.728000pt;}
.y23{bottom:854.085733pt;}
.y24{bottom:854.109867pt;}
.h9{height:33.947022pt;}
.h7{height:34.080000pt;}
.h8{height:39.376000pt;}
.h4{height:40.903467pt;}
.h5{height:43.546667pt;}
.h6{height:48.798844pt;}
.h3{height:49.728000pt;}
.h2{height:78.144000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:642.520000pt;}
.w0{width:1285.040000pt;}
.w1{width:1285.333333pt;}
.x0{left:0.000000pt;}
.x9{left:75.590533pt;}
.x8{left:113.385867pt;}
.x12{left:132.283467pt;}
.xb{left:224.881867pt;}
.x5{left:314.025867pt;}
.x13{left:326.929067pt;}
.x14{left:364.724400pt;}
.xe{left:376.440933pt;}
.x17{left:422.047333pt;}
.x11{left:430.866133pt;}
.x4{left:642.520000pt;}
.x6{left:733.228400pt;}
.x7{left:771.023600pt;}
.xf{left:789.921200pt;}
.xa{left:801.259867pt;}
.x2{left:894.052267pt;}
.xd{left:913.889733pt;}
.x15{left:929.763867pt;}
.x18{left:932.283467pt;}
.xc{left:938.708667pt;}
.x1{left:972.605200pt;}
.x16{left:982.677200pt;}
.x10{left:988.648800pt;}
.x3{left:1072.516133pt;}
}




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