
    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_2d04dedf0dc06c195d581337.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_899610f4d81a3c5ad328c65c.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_50301bc2bcd85e5c42eedc00.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_c1fe724b67531ed1ff6a7a48.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_9d02db50f2a8e2d109f4cdb2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919434;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_f284b56461ffade1e740fd5b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_824f7c19ab7ce0749a59961d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_20ba6c489dcd9fff3c457b72.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_c50b6f7747512dad28f97523.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_6b5f2f1aae03973107f70854.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.850586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.380000px;}
.ls7{letter-spacing:-0.564000px;}
.lsd{letter-spacing:-0.546000px;}
.ls3{letter-spacing:-0.498000px;}
.ls13{letter-spacing:-0.378000px;}
.ls16{letter-spacing:-0.348000px;}
.ls15{letter-spacing:-0.105000px;}
.ls6{letter-spacing:-0.030000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.060000px;}
.ls11{letter-spacing:0.114000px;}
.ls10{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.132000px;}
.ls9{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.480000px;}
.ls2{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.516000px;}
.lsa{letter-spacing:0.558000px;}
.ls8{letter-spacing:0.576000px;}
.ls14{letter-spacing:0.792000px;}
.ls12{letter-spacing:1.500000px;}
.lsf{letter-spacing:1.620000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws4{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.420000px;}
.wsb{word-spacing:-15.312000px;}
.ws6{word-spacing:-15.078000px;}
.ws7{word-spacing:-14.808000px;}
.ws1{word-spacing:-14.520000px;}
.wsc{word-spacing:-14.172000px;}
.wsa{word-spacing:-14.142000px;}
.ws3{word-spacing:-14.022000px;}
.wsd{word-spacing:-13.974000px;}
.ws5{word-spacing:-13.956000px;}
.ws9{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._1{margin-left:-1.716000px;}
._0{width:1.320000px;}
._4{width:2.406000px;}
._2{width:3.558000px;}
._3{width:849.780000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(79,129,189);}
.fs3{font-size:48.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs4{font-size:81.000000px;}
.y0{bottom:0.000000px;}
.yb1{bottom:114.787500px;}
.y50{bottom:123.412500px;}
.y77{bottom:128.662500px;}
.yed{bottom:134.662500px;}
.y99{bottom:135.412500px;}
.yb0{bottom:136.912500px;}
.y4f{bottom:145.537500px;}
.ydc{bottom:147.037500px;}
.y76{bottom:150.780000px;}
.yec{bottom:157.170000px;}
.y98{bottom:157.530000px;}
.y4e{bottom:168.030000px;}
.ydb{bottom:169.170000px;}
.ye7{bottom:172.170000px;}
.y75{bottom:172.920000px;}
.yaf{bottom:174.405000px;}
.y97{bottom:179.670000px;}
.y4d{bottom:190.200000px;}
.yda{bottom:191.325000px;}
.ye6{bottom:194.325000px;}
.y96{bottom:202.200000px;}
.y74{bottom:210.450000px;}
.y4c{bottom:212.325000px;}
.yae{bottom:214.950000px;}
.ye5{bottom:216.450000px;}
.y95{bottom:224.325000px;}
.yd9{bottom:228.825000px;}
.yeb{bottom:231.450000px;}
.y73{bottom:232.575000px;}
.yad{bottom:235.575000px;}
.ye4{bottom:238.950000px;}
.yc9{bottom:239.325000px;}
.y94{bottom:246.450000px;}
.y4b{bottom:249.825000px;}
.yd8{bottom:250.950000px;}
.yea{bottom:253.950000px;}
.y72{bottom:254.700000px;}
.yc8{bottom:261.450000px;}
.y93{bottom:268.950000px;}
.ye3{bottom:276.075000px;}
.y71{bottom:277.200000px;}
.y4a{bottom:286.950000px;}
.yd7{bottom:288.075000px;}
.yac{bottom:297.825000px;}
.ye2{bottom:298.200000px;}
.yc7{bottom:298.950000px;}
.y70{bottom:299.325000px;}
.y92{bottom:306.120000px;}
.y49{bottom:309.120000px;}
.yd6{bottom:310.605000px;}
.ye9{bottom:313.230000px;}
.yab{bottom:318.870000px;}
.yc6{bottom:321.120000px;}
.y6f{bottom:321.495000px;}
.y48{bottom:331.620000px;}
.ye1{bottom:335.745000px;}
.y91{bottom:343.245000px;}
.yd5{bottom:348.870000px;}
.y47{bottom:353.745000px;}
.ye0{bottom:357.870000px;}
.y6e{bottom:358.995000px;}
.yaa{bottom:360.495000px;}
.y90{bottom:365.745000px;}
.ye8{bottom:372.870000px;}
.y46{bottom:375.870000px;}
.yd4{bottom:376.245000px;}
.y6d{bottom:381.120000px;}
.y8f{bottom:387.870000px;}
.ydf{bottom:394.995000px;}
.y45{bottom:398.370000px;}
.ya9{bottom:401.745000px;}
.yc5{bottom:402.870000px;}
.y6c{bottom:403.245000px;}
.yd3{bottom:417.495000px;}
.y44{bottom:420.480000px;}
.ya8{bottom:422.400000px;}
.y8e{bottom:425.025000px;}
.y6b{bottom:425.775000px;}
.yd2{bottom:439.650000px;}
.yc4{bottom:440.025000px;}
.y43{bottom:442.650000px;}
.y8d{bottom:447.525000px;}
.yde{bottom:454.650000px;}
.yc3{bottom:462.525000px;}
.y6a{bottom:462.900000px;}
.ya7{bottom:464.400000px;}
.y42{bottom:465.150000px;}
.y8c{bottom:469.650000px;}
.yd1{bottom:476.775000px;}
.yc2{bottom:484.650000px;}
.ya6{bottom:485.025000px;}
.y41{bottom:487.275000px;}
.y8b{bottom:491.775000px;}
.yd0{bottom:499.275000px;}
.y69{bottom:500.025000px;}
.ya5{bottom:505.650000px;}
.yc1{bottom:506.775000px;}
.y40{bottom:509.400000px;}
.y8a{bottom:514.275000px;}
.yee{bottom:521.400000px;}
.y68{bottom:522.525000px;}
.ya4{bottom:526.275000px;}
.yc0{bottom:529.275000px;}
.y3f{bottom:531.900000px;}
.y24{bottom:534.525000px;}
.y89{bottom:536.400000px;}
.y67{bottom:544.695000px;}
.ya3{bottom:546.945000px;}
.ybf{bottom:551.445000px;}
.y3e{bottom:554.070000px;}
.y88{bottom:558.570000px;}
.y66{bottom:566.820000px;}
.y23{bottom:571.695000px;}
.y3d{bottom:576.195000px;}
.y87{bottom:581.070000px;}
.ybe{bottom:588.570000px;}
.ya2{bottom:588.945000px;}
.y65{bottom:589.320000px;}
.y22{bottom:593.820000px;}
.ycf{bottom:596.070000px;}
.ybd{bottom:611.070000px;}
.y64{bottom:611.445000px;}
.y3c{bottom:613.695000px;}
.y21{bottom:616.320000px;}
.y86{bottom:618.195000px;}
.ya1{bottom:633.195000px;}
.y63{bottom:633.570000px;}
.y3b{bottom:635.820000px;}
.y85{bottom:640.320000px;}
.y20{bottom:640.695000px;}
.ya0{bottom:655.320000px;}
.y3a{bottom:657.945000px;}
.y84{bottom:662.850000px;}
.ybc{bottom:670.350000px;}
.y62{bottom:671.100000px;}
.y9f{bottom:677.850000px;}
.y39{bottom:680.475000px;}
.y1f{bottom:680.850000px;}
.y83{bottom:684.975000px;}
.y61{bottom:693.225000px;}
.y9e{bottom:699.975000px;}
.y1e{bottom:702.975000px;}
.ybb{bottom:707.850000px;}
.yce{bottom:714.975000px;}
.y60{bottom:715.350000px;}
.y38{bottom:717.600000px;}
.yd{bottom:720.225000px;}
.y82{bottom:722.100000px;}
.y1d{bottom:725.475000px;}
.yba{bottom:729.975000px;}
.y5f{bottom:737.850000px;}
.y37{bottom:739.725000px;}
.y2c{bottom:741.225000px;}
.y81{bottom:744.225000px;}
.y1c{bottom:747.600000px;}
.yb9{bottom:752.100000px;}
.y2b{bottom:757.350000px;}
.yc{bottom:757.725000px;}
.ydd{bottom:759.225000px;}
.y5e{bottom:759.975000px;}
.y36{bottom:761.850000px;}
.y80{bottom:766.725000px;}
.y1b{bottom:769.725000px;}
.ycd{bottom:774.225000px;}
.yb{bottom:779.880000px;}
.y9d{bottom:781.755000px;}
.y5d{bottom:782.130000px;}
.y35{bottom:784.380000px;}
.y7f{bottom:788.880000px;}
.yb8{bottom:789.255000px;}
.y1a{bottom:791.880000px;}
.ycc{bottom:796.755000px;}
.y2a{bottom:802.755000px;}
.y9c{bottom:803.880000px;}
.y5c{bottom:804.255000px;}
.y34{bottom:806.505000px;}
.yb7{bottom:811.755000px;}
.y19{bottom:814.380000px;}
.ya{bottom:817.005000px;}
.ycb{bottom:818.880000px;}
.y29{bottom:823.380000px;}
.y7e{bottom:826.005000px;}
.y5b{bottom:826.755000px;}
.y33{bottom:828.630000px;}
.yb6{bottom:833.880000px;}
.y18{bottom:836.505000px;}
.y9b{bottom:841.005000px;}
.y28{bottom:844.005000px;}
.y5a{bottom:848.880000px;}
.y32{bottom:851.130000px;}
.y9{bottom:854.505000px;}
.yb5{bottom:856.005000px;}
.y17{bottom:858.630000px;}
.y7d{bottom:863.505000px;}
.y27{bottom:864.630000px;}
.y59{bottom:871.005000px;}
.y31{bottom:873.255000px;}
.y8{bottom:876.630000px;}
.y16{bottom:881.130000px;}
.y26{bottom:885.630000px;}
.yb4{bottom:893.505000px;}
.y30{bottom:895.380000px;}
.y7{bottom:898.800000px;}
.y7c{bottom:900.675000px;}
.y15{bottom:903.300000px;}
.y58{bottom:908.550000px;}
.yb3{bottom:915.675000px;}
.y2f{bottom:917.925000px;}
.y6{bottom:921.300000px;}
.y7b{bottom:922.800000px;}
.y14{bottom:925.425000px;}
.y25{bottom:927.300000px;}
.y57{bottom:930.675000px;}
.yb2{bottom:937.800000px;}
.y2e{bottom:940.050000px;}
.y7a{bottom:945.300000px;}
.y13{bottom:947.925000px;}
.y56{bottom:952.800000px;}
.y5{bottom:958.425000px;}
.yca{bottom:960.300000px;}
.y9a{bottom:967.425000px;}
.y12{bottom:970.050000px;}
.y55{bottom:975.300000px;}
.y2d{bottom:977.175000px;}
.y4{bottom:980.550000px;}
.y79{bottom:982.425000px;}
.y11{bottom:992.175000px;}
.y54{bottom:997.425000px;}
.y3{bottom:1002.675000px;}
.y78{bottom:1004.550000px;}
.y10{bottom:1014.705000px;}
.y53{bottom:1019.580000px;}
.y2{bottom:1025.955000px;}
.yf{bottom:1036.830000px;}
.y52{bottom:1042.080000px;}
.y1{bottom:1049.205000px;}
.ye{bottom:1061.205000px;}
.y51{bottom:1064.205000px;}
.h5{height:50.273438px;}
.h4{height:50.800781px;}
.h6{height:50.941406px;}
.h2{height:57.427734px;}
.h1{height:67.579102px;}
.h7{height:70.479492px;}
.h3{height:79.866211px;}
.h0{height:1188.000000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:135.074986px;}
.x2{left:783.344986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.226667pt;}
.ls7{letter-spacing:-0.501333pt;}
.lsd{letter-spacing:-0.485333pt;}
.ls3{letter-spacing:-0.442667pt;}
.ls13{letter-spacing:-0.336000pt;}
.ls16{letter-spacing:-0.309333pt;}
.ls15{letter-spacing:-0.093333pt;}
.ls6{letter-spacing:-0.026667pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.053333pt;}
.ls11{letter-spacing:0.101333pt;}
.ls10{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.117333pt;}
.ls9{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls2{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.458667pt;}
.lsa{letter-spacing:0.496000pt;}
.ls8{letter-spacing:0.512000pt;}
.ls14{letter-spacing:0.704000pt;}
.ls12{letter-spacing:1.333333pt;}
.lsf{letter-spacing:1.440000pt;}
.ws8{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.706667pt;}
.wsb{word-spacing:-13.610667pt;}
.ws6{word-spacing:-13.402667pt;}
.ws7{word-spacing:-13.162667pt;}
.ws1{word-spacing:-12.906667pt;}
.wsc{word-spacing:-12.597333pt;}
.wsa{word-spacing:-12.570667pt;}
.ws3{word-spacing:-12.464000pt;}
.wsd{word-spacing:-12.421333pt;}
.ws5{word-spacing:-12.405333pt;}
.ws9{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._1{margin-left:-1.525333pt;}
._0{width:1.173333pt;}
._4{width:2.138667pt;}
._2{width:3.162667pt;}
._3{width:755.360000pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs4{font-size:72.000000pt;}
.y0{bottom:0.000000pt;}
.yb1{bottom:102.033333pt;}
.y50{bottom:109.700000pt;}
.y77{bottom:114.366667pt;}
.yed{bottom:119.700000pt;}
.y99{bottom:120.366667pt;}
.yb0{bottom:121.700000pt;}
.y4f{bottom:129.366667pt;}
.ydc{bottom:130.700000pt;}
.y76{bottom:134.026667pt;}
.yec{bottom:139.706667pt;}
.y98{bottom:140.026667pt;}
.y4e{bottom:149.360000pt;}
.ydb{bottom:150.373333pt;}
.ye7{bottom:153.040000pt;}
.y75{bottom:153.706667pt;}
.yaf{bottom:155.026667pt;}
.y97{bottom:159.706667pt;}
.y4d{bottom:169.066667pt;}
.yda{bottom:170.066667pt;}
.ye6{bottom:172.733333pt;}
.y96{bottom:179.733333pt;}
.y74{bottom:187.066667pt;}
.y4c{bottom:188.733333pt;}
.yae{bottom:191.066667pt;}
.ye5{bottom:192.400000pt;}
.y95{bottom:199.400000pt;}
.yd9{bottom:203.400000pt;}
.yeb{bottom:205.733333pt;}
.y73{bottom:206.733333pt;}
.yad{bottom:209.400000pt;}
.ye4{bottom:212.400000pt;}
.yc9{bottom:212.733333pt;}
.y94{bottom:219.066667pt;}
.y4b{bottom:222.066667pt;}
.yd8{bottom:223.066667pt;}
.yea{bottom:225.733333pt;}
.y72{bottom:226.400000pt;}
.yc8{bottom:232.400000pt;}
.y93{bottom:239.066667pt;}
.ye3{bottom:245.400000pt;}
.y71{bottom:246.400000pt;}
.y4a{bottom:255.066667pt;}
.yd7{bottom:256.066667pt;}
.yac{bottom:264.733333pt;}
.ye2{bottom:265.066667pt;}
.yc7{bottom:265.733333pt;}
.y70{bottom:266.066667pt;}
.y92{bottom:272.106667pt;}
.y49{bottom:274.773333pt;}
.yd6{bottom:276.093333pt;}
.ye9{bottom:278.426667pt;}
.yab{bottom:283.440000pt;}
.yc6{bottom:285.440000pt;}
.y6f{bottom:285.773333pt;}
.y48{bottom:294.773333pt;}
.ye1{bottom:298.440000pt;}
.y91{bottom:305.106667pt;}
.yd5{bottom:310.106667pt;}
.y47{bottom:314.440000pt;}
.ye0{bottom:318.106667pt;}
.y6e{bottom:319.106667pt;}
.yaa{bottom:320.440000pt;}
.y90{bottom:325.106667pt;}
.ye8{bottom:331.440000pt;}
.y46{bottom:334.106667pt;}
.yd4{bottom:334.440000pt;}
.y6d{bottom:338.773333pt;}
.y8f{bottom:344.773333pt;}
.ydf{bottom:351.106667pt;}
.y45{bottom:354.106667pt;}
.ya9{bottom:357.106667pt;}
.yc5{bottom:358.106667pt;}
.y6c{bottom:358.440000pt;}
.yd3{bottom:371.106667pt;}
.y44{bottom:373.760000pt;}
.ya8{bottom:375.466667pt;}
.y8e{bottom:377.800000pt;}
.y6b{bottom:378.466667pt;}
.yd2{bottom:390.800000pt;}
.yc4{bottom:391.133333pt;}
.y43{bottom:393.466667pt;}
.y8d{bottom:397.800000pt;}
.yde{bottom:404.133333pt;}
.yc3{bottom:411.133333pt;}
.y6a{bottom:411.466667pt;}
.ya7{bottom:412.800000pt;}
.y42{bottom:413.466667pt;}
.y8c{bottom:417.466667pt;}
.yd1{bottom:423.800000pt;}
.yc2{bottom:430.800000pt;}
.ya6{bottom:431.133333pt;}
.y41{bottom:433.133333pt;}
.y8b{bottom:437.133333pt;}
.yd0{bottom:443.800000pt;}
.y69{bottom:444.466667pt;}
.ya5{bottom:449.466667pt;}
.yc1{bottom:450.466667pt;}
.y40{bottom:452.800000pt;}
.y8a{bottom:457.133333pt;}
.yee{bottom:463.466667pt;}
.y68{bottom:464.466667pt;}
.ya4{bottom:467.800000pt;}
.yc0{bottom:470.466667pt;}
.y3f{bottom:472.800000pt;}
.y24{bottom:475.133333pt;}
.y89{bottom:476.800000pt;}
.y67{bottom:484.173333pt;}
.ya3{bottom:486.173333pt;}
.ybf{bottom:490.173333pt;}
.y3e{bottom:492.506667pt;}
.y88{bottom:496.506667pt;}
.y66{bottom:503.840000pt;}
.y23{bottom:508.173333pt;}
.y3d{bottom:512.173333pt;}
.y87{bottom:516.506667pt;}
.ybe{bottom:523.173333pt;}
.ya2{bottom:523.506667pt;}
.y65{bottom:523.840000pt;}
.y22{bottom:527.840000pt;}
.ycf{bottom:529.840000pt;}
.ybd{bottom:543.173333pt;}
.y64{bottom:543.506667pt;}
.y3c{bottom:545.506667pt;}
.y21{bottom:547.840000pt;}
.y86{bottom:549.506667pt;}
.ya1{bottom:562.840000pt;}
.y63{bottom:563.173333pt;}
.y3b{bottom:565.173333pt;}
.y85{bottom:569.173333pt;}
.y20{bottom:569.506667pt;}
.ya0{bottom:582.506667pt;}
.y3a{bottom:584.840000pt;}
.y84{bottom:589.200000pt;}
.ybc{bottom:595.866667pt;}
.y62{bottom:596.533333pt;}
.y9f{bottom:602.533333pt;}
.y39{bottom:604.866667pt;}
.y1f{bottom:605.200000pt;}
.y83{bottom:608.866667pt;}
.y61{bottom:616.200000pt;}
.y9e{bottom:622.200000pt;}
.y1e{bottom:624.866667pt;}
.ybb{bottom:629.200000pt;}
.yce{bottom:635.533333pt;}
.y60{bottom:635.866667pt;}
.y38{bottom:637.866667pt;}
.yd{bottom:640.200000pt;}
.y82{bottom:641.866667pt;}
.y1d{bottom:644.866667pt;}
.yba{bottom:648.866667pt;}
.y5f{bottom:655.866667pt;}
.y37{bottom:657.533333pt;}
.y2c{bottom:658.866667pt;}
.y81{bottom:661.533333pt;}
.y1c{bottom:664.533333pt;}
.yb9{bottom:668.533333pt;}
.y2b{bottom:673.200000pt;}
.yc{bottom:673.533333pt;}
.ydd{bottom:674.866667pt;}
.y5e{bottom:675.533333pt;}
.y36{bottom:677.200000pt;}
.y80{bottom:681.533333pt;}
.y1b{bottom:684.200000pt;}
.ycd{bottom:688.200000pt;}
.yb{bottom:693.226667pt;}
.y9d{bottom:694.893333pt;}
.y5d{bottom:695.226667pt;}
.y35{bottom:697.226667pt;}
.y7f{bottom:701.226667pt;}
.yb8{bottom:701.560000pt;}
.y1a{bottom:703.893333pt;}
.ycc{bottom:708.226667pt;}
.y2a{bottom:713.560000pt;}
.y9c{bottom:714.560000pt;}
.y5c{bottom:714.893333pt;}
.y34{bottom:716.893333pt;}
.yb7{bottom:721.560000pt;}
.y19{bottom:723.893333pt;}
.ya{bottom:726.226667pt;}
.ycb{bottom:727.893333pt;}
.y29{bottom:731.893333pt;}
.y7e{bottom:734.226667pt;}
.y5b{bottom:734.893333pt;}
.y33{bottom:736.560000pt;}
.yb6{bottom:741.226667pt;}
.y18{bottom:743.560000pt;}
.y9b{bottom:747.560000pt;}
.y28{bottom:750.226667pt;}
.y5a{bottom:754.560000pt;}
.y32{bottom:756.560000pt;}
.y9{bottom:759.560000pt;}
.yb5{bottom:760.893333pt;}
.y17{bottom:763.226667pt;}
.y7d{bottom:767.560000pt;}
.y27{bottom:768.560000pt;}
.y59{bottom:774.226667pt;}
.y31{bottom:776.226667pt;}
.y8{bottom:779.226667pt;}
.y16{bottom:783.226667pt;}
.y26{bottom:787.226667pt;}
.yb4{bottom:794.226667pt;}
.y30{bottom:795.893333pt;}
.y7{bottom:798.933333pt;}
.y7c{bottom:800.600000pt;}
.y15{bottom:802.933333pt;}
.y58{bottom:807.600000pt;}
.yb3{bottom:813.933333pt;}
.y2f{bottom:815.933333pt;}
.y6{bottom:818.933333pt;}
.y7b{bottom:820.266667pt;}
.y14{bottom:822.600000pt;}
.y25{bottom:824.266667pt;}
.y57{bottom:827.266667pt;}
.yb2{bottom:833.600000pt;}
.y2e{bottom:835.600000pt;}
.y7a{bottom:840.266667pt;}
.y13{bottom:842.600000pt;}
.y56{bottom:846.933333pt;}
.y5{bottom:851.933333pt;}
.yca{bottom:853.600000pt;}
.y9a{bottom:859.933333pt;}
.y12{bottom:862.266667pt;}
.y55{bottom:866.933333pt;}
.y2d{bottom:868.600000pt;}
.y4{bottom:871.600000pt;}
.y79{bottom:873.266667pt;}
.y11{bottom:881.933333pt;}
.y54{bottom:886.600000pt;}
.y3{bottom:891.266667pt;}
.y78{bottom:892.933333pt;}
.y10{bottom:901.960000pt;}
.y53{bottom:906.293333pt;}
.y2{bottom:911.960000pt;}
.yf{bottom:921.626667pt;}
.y52{bottom:926.293333pt;}
.y1{bottom:932.626667pt;}
.ye{bottom:943.293333pt;}
.y51{bottom:945.960000pt;}
.h5{height:44.687500pt;}
.h4{height:45.156250pt;}
.h6{height:45.281250pt;}
.h2{height:51.046875pt;}
.h1{height:60.070312pt;}
.h7{height:62.648438pt;}
.h3{height:70.992188pt;}
.h0{height:1056.000000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:120.066655pt;}
.x2{left:696.306655pt;}
}




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