
    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_64b8b5dc8d71a5ccf89d581e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_fdd3d1ac43754e74ce248ecf.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_72881cc0edff7b25d916e57f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_a13dd213e35fceb278ea6ce5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.929199;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_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e8269c2cd8304b0bbda84961.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fa6c8224111b46423f849181.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_09c4fe6acfbdc5ae3537226a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6c34a3818e43ce0e7d884696.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f794930fb262af2409073034.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4bf111850c3759679fb83492.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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:ffc;src:url('chunks/assets/font_05fd8719daca873916486ec3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942383;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:ffd;src:url('chunks/assets/font_5a91da7ad3664f7b2d5f79dd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.942383;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:ffe;src:url('chunks/assets/font_45af734ac5a6f13ac72c8d81.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-87.840000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-2.880000px;}
.ls13{letter-spacing:-0.936000px;}
.ls11{letter-spacing:-0.648000px;}
.ls14{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.132600px;}
.ls6{letter-spacing:-0.106800px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.ls5{letter-spacing:0.150000px;}
.ls9{letter-spacing:0.247680px;}
.ls7{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.256320px;}
.lsa{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.792000px;}
.ls2{letter-spacing:0.979920px;}
.ls15{letter-spacing:33.984000px;}
.ls3{letter-spacing:1146.216000px;}
.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:-59.760000px;}
.ws1{word-spacing:-59.653200px;}
.wsa{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.064000px;}
.ws4{word-spacing:-15.226440px;}
.ws8{word-spacing:-15.120000px;}
.ws0{word-spacing:-14.970240px;}
.ws7{word-spacing:-14.837640px;}
.ws3{word-spacing:-13.505760px;}
.ws6{word-spacing:0.000000px;}
._19{margin-left:-7.944960px;}
._15{margin-left:-6.276000px;}
._4{margin-left:-5.153760px;}
._f{margin-left:-4.104000px;}
._3{margin-left:-3.095040px;}
._6{margin-left:-2.052000px;}
._0{margin-left:-1.010880px;}
._5{width:1.017120px;}
._d{width:2.088000px;}
._7{width:3.816000px;}
._8{width:5.174880px;}
._14{width:6.398880px;}
._16{width:7.644000px;}
._12{width:8.856000px;}
._c{width:10.718880px;}
._9{width:12.096000px;}
._a{width:13.392000px;}
._b{width:14.453760px;}
._11{width:15.878880px;}
._10{width:16.992000px;}
._e{width:19.296000px;}
._13{width:20.357760px;}
._17{width:21.370560px;}
._18{width:22.405440px;}
._1a{width:23.832000px;}
._1b{width:25.632000px;}
._1{width:178.822800px;}
._2{width:197.549760px;}
.fc4{color:rgb(77,81,86);}
.fc3{color:transparent;}
.fc2{color:rgb(196,89,17);}
.fc1{color:rgb(244,176,131);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:25.920000px;}
.y4{bottom:46.080000px;}
.ya4{bottom:91.836000px;}
.yc4{bottom:99.396000px;}
.y32{bottom:101.376000px;}
.y89{bottom:103.536000px;}
.y66{bottom:109.836000px;}
.ya3{bottom:112.536000px;}
.y31{bottom:122.076000px;}
.yc3{bottom:123.336000px;}
.y65{bottom:130.536000px;}
.y88{bottom:133.236000px;}
.ya2{bottom:142.236000px;}
.y30{bottom:142.776000px;}
.y64{bottom:151.230000px;}
.yc2{bottom:153.030000px;}
.y87{bottom:162.930000px;}
.y2f{bottom:163.470000px;}
.y63{bottom:171.930000px;}
.yc1{bottom:173.730000px;}
.y86{bottom:183.630000px;}
.y2e{bottom:184.170000px;}
.y62{bottom:192.630000px;}
.yc0{bottom:203.250000px;}
.y85{bottom:204.330000px;}
.y2d{bottom:204.870000px;}
.y61{bottom:213.330000px;}
.ybf{bottom:223.950000px;}
.y84{bottom:225.030000px;}
.y2c{bottom:225.570000px;}
.y60{bottom:243.030000px;}
.ybe{bottom:244.650000px;}
.y83{bottom:245.730000px;}
.y2b{bottom:246.270000px;}
.y5f{bottom:263.730000px;}
.ya1{bottom:266.250000px;}
.y2a{bottom:266.970000px;}
.ybd{bottom:274.350000px;}
.y82{bottom:275.250000px;}
.y5e{bottom:284.250000px;}
.ya0{bottom:286.950000px;}
.y29{bottom:287.670000px;}
.y81{bottom:295.950000px;}
.ybc{bottom:304.050000px;}
.y5d{bottom:304.950000px;}
.y9f{bottom:307.650000px;}
.y80{bottom:316.650000px;}
.y28{bottom:317.370000px;}
.y5c{bottom:325.650000px;}
.y9e{bottom:328.395000px;}
.ybb{bottom:333.795000px;}
.y7f{bottom:337.395000px;}
.y27{bottom:338.115000px;}
.y5b{bottom:346.395000px;}
.yba{bottom:354.495000px;}
.y7e{bottom:358.095000px;}
.y5a{bottom:367.095000px;}
.y26{bottom:367.815000px;}
.yb9{bottom:375.195000px;}
.y7d{bottom:378.795000px;}
.y59{bottom:387.795000px;}
.y25{bottom:388.515000px;}
.y7c{bottom:399.495000px;}
.yb8{bottom:404.895000px;}
.y58{bottom:408.495000px;}
.y24{bottom:409.215000px;}
.y7b{bottom:420.195000px;}
.yb7{bottom:425.595000px;}
.y57{bottom:429.195000px;}
.y23{bottom:429.915000px;}
.y7a{bottom:440.895000px;}
.y56{bottom:449.895000px;}
.y22{bottom:450.615000px;}
.yb6{bottom:454.935000px;}
.y79{bottom:461.595000px;}
.y55{bottom:470.595000px;}
.y21{bottom:471.315000px;}
.y78{bottom:482.295000px;}
.yb5{bottom:484.995000px;}
.y54{bottom:491.295000px;}
.y20{bottom:492.015000px;}
.y77{bottom:502.995000px;}
.yb4{bottom:505.695000px;}
.y53{bottom:511.995000px;}
.y1f{bottom:512.715000px;}
.y9d{bottom:520.995000px;}
.y76{bottom:523.695000px;}
.yb3{bottom:526.395000px;}
.y1e{bottom:533.415000px;}
.y52{bottom:541.695000px;}
.y75{bottom:544.395000px;}
.y1d{bottom:554.115000px;}
.yb2{bottom:556.095000px;}
.y51{bottom:562.395000px;}
.y74{bottom:565.095000px;}
.y1c{bottom:574.815000px;}
.yb1{bottom:576.795000px;}
.y50{bottom:583.095000px;}
.y73{bottom:585.795000px;}
.y1b{bottom:595.545000px;}
.yb0{bottom:597.525000px;}
.y4f{bottom:603.825000px;}
.y72{bottom:606.525000px;}
.y1a{bottom:616.245000px;}
.yaf{bottom:618.225000px;}
.y4e{bottom:624.525000px;}
.y71{bottom:636.225000px;}
.yae{bottom:638.925000px;}
.y19{bottom:639.645000px;}
.y4d{bottom:645.225000px;}
.y70{bottom:656.925000px;}
.yad{bottom:659.625000px;}
.y18{bottom:663.945000px;}
.y4c{bottom:665.925000px;}
.y6f{bottom:677.625000px;}
.yac{bottom:680.325000px;}
.y4b{bottom:686.625000px;}
.y17{bottom:693.645000px;}
.y9c{bottom:695.625000px;}
.y6e{bottom:698.325000px;}
.yab{bottom:701.025000px;}
.y4a{bottom:707.325000px;}
.y9b{bottom:716.325000px;}
.y6d{bottom:719.025000px;}
.yaa{bottom:721.725000px;}
.y16{bottom:723.345000px;}
.y49{bottom:728.025000px;}
.y9a{bottom:737.025000px;}
.ya9{bottom:742.425000px;}
.y15{bottom:744.045000px;}
.y48{bottom:748.725000px;}
.y99{bottom:757.725000px;}
.y14{bottom:764.745000px;}
.y47{bottom:769.425000px;}
.ya8{bottom:772.125000px;}
.y98{bottom:778.425000px;}
.y13{bottom:785.445000px;}
.y46{bottom:790.125000px;}
.ya7{bottom:792.825000px;}
.y97{bottom:799.125000px;}
.y12{bottom:806.145000px;}
.y45{bottom:810.825000px;}
.ya6{bottom:813.525000px;}
.y96{bottom:819.825000px;}
.y11{bottom:826.845000px;}
.y44{bottom:831.525000px;}
.ya5{bottom:843.225000px;}
.y10{bottom:847.545000px;}
.y95{bottom:849.525000px;}
.y43{bottom:852.225000px;}
.yf{bottom:868.110000px;}
.y94{bottom:870.270000px;}
.y42{bottom:872.970000px;}
.ye{bottom:888.810000px;}
.y93{bottom:890.970000px;}
.y41{bottom:893.670000px;}
.y6c{bottom:902.670000px;}
.yd{bottom:909.510000px;}
.y92{bottom:911.670000px;}
.y40{bottom:914.370000px;}
.y6b{bottom:923.370000px;}
.yc{bottom:929.850000px;}
.y91{bottom:932.370000px;}
.y3f{bottom:935.070000px;}
.y6a{bottom:944.070000px;}
.yb{bottom:950.910000px;}
.y90{bottom:953.070000px;}
.y3e{bottom:955.770000px;}
.y69{bottom:964.770000px;}
.y8f{bottom:973.770000px;}
.ya{bottom:974.850000px;}
.y3d{bottom:976.470000px;}
.y68{bottom:985.470000px;}
.y8e{bottom:994.470000px;}
.y3c{bottom:997.170000px;}
.y67{bottom:1006.170000px;}
.y8d{bottom:1015.170000px;}
.y9{bottom:1020.210000px;}
.y3b{bottom:1026.870000px;}
.y8c{bottom:1035.870000px;}
.y3a{bottom:1047.570000px;}
.y8{bottom:1053.330000px;}
.y8b{bottom:1056.570000px;}
.y39{bottom:1068.270000px;}
.y8a{bottom:1077.270000px;}
.y7{bottom:1088.970000px;}
.y38{bottom:1097.970000px;}
.y37{bottom:1118.670000px;}
.y6{bottom:1134.540000px;}
.y36{bottom:1139.400000px;}
.y35{bottom:1160.100000px;}
.y3{bottom:1164.060000px;}
.y34{bottom:1180.800000px;}
.y2{bottom:1185.300000px;}
.y1{bottom:1210.860000px;}
.y33{bottom:1215.360000px;}
.hb{height:50.273438px;}
.ha{height:51.996094px;}
.hc{height:59.343750px;}
.h4{height:65.884219px;}
.h9{height:70.664062px;}
.h8{height:74.953125px;}
.hd{height:75.093750px;}
.h6{height:76.201172px;}
.h3{height:86.255508px;}
.h2{height:98.051133px;}
.h7{height:99.687656px;}
.h5{height:112.429688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.415987px;}
.x7{left:133.415987px;}
.x4{left:138.995987px;}
.x1{left:180.929987px;}
.x8{left:188.669987px;}
.x5{left:191.909987px;}
.x6{left:202.889987px;}
.x3{left:459.434987px;}
@media print{
.v1{vertical-align:-78.080000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-2.560000pt;}
.ls13{letter-spacing:-0.832000pt;}
.ls11{letter-spacing:-0.576000pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.117867pt;}
.ls6{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls5{letter-spacing:0.133333pt;}
.ls9{letter-spacing:0.220160pt;}
.ls7{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.227840pt;}
.lsa{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.704000pt;}
.ls2{letter-spacing:0.871040pt;}
.ls15{letter-spacing:30.208000pt;}
.ls3{letter-spacing:1018.858667pt;}
.ws2{word-spacing:-53.120000pt;}
.ws1{word-spacing:-53.025067pt;}
.wsa{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.168000pt;}
.ws4{word-spacing:-13.534613pt;}
.ws8{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.306880pt;}
.ws7{word-spacing:-13.189013pt;}
.ws3{word-spacing:-12.005120pt;}
.ws6{word-spacing:0.000000pt;}
._19{margin-left:-7.062187pt;}
._15{margin-left:-5.578667pt;}
._4{margin-left:-4.581120pt;}
._f{margin-left:-3.648000pt;}
._3{margin-left:-2.751147pt;}
._6{margin-left:-1.824000pt;}
._0{margin-left:-0.898560pt;}
._5{width:0.904107pt;}
._d{width:1.856000pt;}
._7{width:3.392000pt;}
._8{width:4.599893pt;}
._14{width:5.687893pt;}
._16{width:6.794667pt;}
._12{width:7.872000pt;}
._c{width:9.527893pt;}
._9{width:10.752000pt;}
._a{width:11.904000pt;}
._b{width:12.847787pt;}
._11{width:14.114560pt;}
._10{width:15.104000pt;}
._e{width:17.152000pt;}
._13{width:18.095787pt;}
._17{width:18.996053pt;}
._18{width:19.915947pt;}
._1a{width:21.184000pt;}
._1b{width:22.784000pt;}
._1{width:158.953600pt;}
._2{width:175.599787pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:23.040000pt;}
.y4{bottom:40.960000pt;}
.ya4{bottom:81.632000pt;}
.yc4{bottom:88.352000pt;}
.y32{bottom:90.112000pt;}
.y89{bottom:92.032000pt;}
.y66{bottom:97.632000pt;}
.ya3{bottom:100.032000pt;}
.y31{bottom:108.512000pt;}
.yc3{bottom:109.632000pt;}
.y65{bottom:116.032000pt;}
.y88{bottom:118.432000pt;}
.ya2{bottom:126.432000pt;}
.y30{bottom:126.912000pt;}
.y64{bottom:134.426667pt;}
.yc2{bottom:136.026667pt;}
.y87{bottom:144.826667pt;}
.y2f{bottom:145.306667pt;}
.y63{bottom:152.826667pt;}
.yc1{bottom:154.426667pt;}
.y86{bottom:163.226667pt;}
.y2e{bottom:163.706667pt;}
.y62{bottom:171.226667pt;}
.yc0{bottom:180.666667pt;}
.y85{bottom:181.626667pt;}
.y2d{bottom:182.106667pt;}
.y61{bottom:189.626667pt;}
.ybf{bottom:199.066667pt;}
.y84{bottom:200.026667pt;}
.y2c{bottom:200.506667pt;}
.y60{bottom:216.026667pt;}
.ybe{bottom:217.466667pt;}
.y83{bottom:218.426667pt;}
.y2b{bottom:218.906667pt;}
.y5f{bottom:234.426667pt;}
.ya1{bottom:236.666667pt;}
.y2a{bottom:237.306667pt;}
.ybd{bottom:243.866667pt;}
.y82{bottom:244.666667pt;}
.y5e{bottom:252.666667pt;}
.ya0{bottom:255.066667pt;}
.y29{bottom:255.706667pt;}
.y81{bottom:263.066667pt;}
.ybc{bottom:270.266667pt;}
.y5d{bottom:271.066667pt;}
.y9f{bottom:273.466667pt;}
.y80{bottom:281.466667pt;}
.y28{bottom:282.106667pt;}
.y5c{bottom:289.466667pt;}
.y9e{bottom:291.906667pt;}
.ybb{bottom:296.706667pt;}
.y7f{bottom:299.906667pt;}
.y27{bottom:300.546667pt;}
.y5b{bottom:307.906667pt;}
.yba{bottom:315.106667pt;}
.y7e{bottom:318.306667pt;}
.y5a{bottom:326.306667pt;}
.y26{bottom:326.946667pt;}
.yb9{bottom:333.506667pt;}
.y7d{bottom:336.706667pt;}
.y59{bottom:344.706667pt;}
.y25{bottom:345.346667pt;}
.y7c{bottom:355.106667pt;}
.yb8{bottom:359.906667pt;}
.y58{bottom:363.106667pt;}
.y24{bottom:363.746667pt;}
.y7b{bottom:373.506667pt;}
.yb7{bottom:378.306667pt;}
.y57{bottom:381.506667pt;}
.y23{bottom:382.146667pt;}
.y7a{bottom:391.906667pt;}
.y56{bottom:399.906667pt;}
.y22{bottom:400.546667pt;}
.yb6{bottom:404.386667pt;}
.y79{bottom:410.306667pt;}
.y55{bottom:418.306667pt;}
.y21{bottom:418.946667pt;}
.y78{bottom:428.706667pt;}
.yb5{bottom:431.106667pt;}
.y54{bottom:436.706667pt;}
.y20{bottom:437.346667pt;}
.y77{bottom:447.106667pt;}
.yb4{bottom:449.506667pt;}
.y53{bottom:455.106667pt;}
.y1f{bottom:455.746667pt;}
.y9d{bottom:463.106667pt;}
.y76{bottom:465.506667pt;}
.yb3{bottom:467.906667pt;}
.y1e{bottom:474.146667pt;}
.y52{bottom:481.506667pt;}
.y75{bottom:483.906667pt;}
.y1d{bottom:492.546667pt;}
.yb2{bottom:494.306667pt;}
.y51{bottom:499.906667pt;}
.y74{bottom:502.306667pt;}
.y1c{bottom:510.946667pt;}
.yb1{bottom:512.706667pt;}
.y50{bottom:518.306667pt;}
.y73{bottom:520.706667pt;}
.y1b{bottom:529.373333pt;}
.yb0{bottom:531.133333pt;}
.y4f{bottom:536.733333pt;}
.y72{bottom:539.133333pt;}
.y1a{bottom:547.773333pt;}
.yaf{bottom:549.533333pt;}
.y4e{bottom:555.133333pt;}
.y71{bottom:565.533333pt;}
.yae{bottom:567.933333pt;}
.y19{bottom:568.573333pt;}
.y4d{bottom:573.533333pt;}
.y70{bottom:583.933333pt;}
.yad{bottom:586.333333pt;}
.y18{bottom:590.173333pt;}
.y4c{bottom:591.933333pt;}
.y6f{bottom:602.333333pt;}
.yac{bottom:604.733333pt;}
.y4b{bottom:610.333333pt;}
.y17{bottom:616.573333pt;}
.y9c{bottom:618.333333pt;}
.y6e{bottom:620.733333pt;}
.yab{bottom:623.133333pt;}
.y4a{bottom:628.733333pt;}
.y9b{bottom:636.733333pt;}
.y6d{bottom:639.133333pt;}
.yaa{bottom:641.533333pt;}
.y16{bottom:642.973333pt;}
.y49{bottom:647.133333pt;}
.y9a{bottom:655.133333pt;}
.ya9{bottom:659.933333pt;}
.y15{bottom:661.373333pt;}
.y48{bottom:665.533333pt;}
.y99{bottom:673.533333pt;}
.y14{bottom:679.773333pt;}
.y47{bottom:683.933333pt;}
.ya8{bottom:686.333333pt;}
.y98{bottom:691.933333pt;}
.y13{bottom:698.173333pt;}
.y46{bottom:702.333333pt;}
.ya7{bottom:704.733333pt;}
.y97{bottom:710.333333pt;}
.y12{bottom:716.573333pt;}
.y45{bottom:720.733333pt;}
.ya6{bottom:723.133333pt;}
.y96{bottom:728.733333pt;}
.y11{bottom:734.973333pt;}
.y44{bottom:739.133333pt;}
.ya5{bottom:749.533333pt;}
.y10{bottom:753.373333pt;}
.y95{bottom:755.133333pt;}
.y43{bottom:757.533333pt;}
.yf{bottom:771.653333pt;}
.y94{bottom:773.573333pt;}
.y42{bottom:775.973333pt;}
.ye{bottom:790.053333pt;}
.y93{bottom:791.973333pt;}
.y41{bottom:794.373333pt;}
.y6c{bottom:802.373333pt;}
.yd{bottom:808.453333pt;}
.y92{bottom:810.373333pt;}
.y40{bottom:812.773333pt;}
.y6b{bottom:820.773333pt;}
.yc{bottom:826.533333pt;}
.y91{bottom:828.773333pt;}
.y3f{bottom:831.173333pt;}
.y6a{bottom:839.173333pt;}
.yb{bottom:845.253333pt;}
.y90{bottom:847.173333pt;}
.y3e{bottom:849.573333pt;}
.y69{bottom:857.573333pt;}
.y8f{bottom:865.573333pt;}
.ya{bottom:866.533333pt;}
.y3d{bottom:867.973333pt;}
.y68{bottom:875.973333pt;}
.y8e{bottom:883.973333pt;}
.y3c{bottom:886.373333pt;}
.y67{bottom:894.373333pt;}
.y8d{bottom:902.373333pt;}
.y9{bottom:906.853333pt;}
.y3b{bottom:912.773333pt;}
.y8c{bottom:920.773333pt;}
.y3a{bottom:931.173333pt;}
.y8{bottom:936.293333pt;}
.y8b{bottom:939.173333pt;}
.y39{bottom:949.573333pt;}
.y8a{bottom:957.573333pt;}
.y7{bottom:967.973333pt;}
.y38{bottom:975.973333pt;}
.y37{bottom:994.373333pt;}
.y6{bottom:1008.480000pt;}
.y36{bottom:1012.800000pt;}
.y35{bottom:1031.200000pt;}
.y3{bottom:1034.720000pt;}
.y34{bottom:1049.600000pt;}
.y2{bottom:1053.600000pt;}
.y1{bottom:1076.320000pt;}
.y33{bottom:1080.320000pt;}
.hb{height:44.687500pt;}
.ha{height:46.218750pt;}
.hc{height:52.750000pt;}
.h4{height:58.563750pt;}
.h9{height:62.812500pt;}
.h8{height:66.625000pt;}
.hd{height:66.750000pt;}
.h6{height:67.734375pt;}
.h3{height:76.671562pt;}
.h2{height:87.156562pt;}
.h7{height:88.611250pt;}
.h5{height:99.937500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.591988pt;}
.x7{left:118.591988pt;}
.x4{left:123.551988pt;}
.x1{left:160.826655pt;}
.x8{left:167.706655pt;}
.x5{left:170.586655pt;}
.x6{left:180.346655pt;}
.x3{left:408.386655pt;}
}




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