
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f661206bac6a23712249b8e0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_857d56232059ec37a5d04912.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_4a65706ef7823cc17f82cfbd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_871a4521b8e1969f737da461.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7515f438cec80d755b51cd7c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_94a8de157f50de89ac97d029.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bc2c07616679029c20d29b16.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_867592c801e2c6e4a71210c7.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_373c826ff9ecc3c2a71ae7f0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4a914b1d123b0aa1dde06676.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_515a867efcb3176f239265da.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.ls4{letter-spacing:-0.684000px;}
.lsa{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.037440px;}
.lse{letter-spacing:0.110640px;}
.ls6{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.341400px;}
.ls7{letter-spacing:0.360000px;}
.lsf{letter-spacing:1.260000px;}
.lsb{letter-spacing:2.700000px;}
.ls11{letter-spacing:4.140000px;}
.ls9{letter-spacing:7.740000px;}
.lsd{letter-spacing:21.221280px;}
.ls10{letter-spacing:54.720000px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.ws4{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.401400px;}
.ws5{word-spacing:-21.097440px;}
.ws2{word-spacing:-21.060000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-0.066240px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._1e{margin-left:-2.358720px;}
._1{margin-left:-1.126080px;}
._3{width:1.347840px;}
._a{width:2.859360px;}
._1a{width:4.127760px;}
._b{width:5.138640px;}
._c{width:6.180480px;}
._2e{width:7.217760px;}
._17{width:8.233200px;}
._16{width:9.434880px;}
._19{width:10.530000px;}
._18{width:11.571840px;}
._13{width:13.225680px;}
._d{width:14.405040px;}
._e{width:15.783840px;}
._1f{width:16.817040px;}
._9{width:17.912160px;}
._8{width:19.153440px;}
._20{width:22.239360px;}
._21{width:23.715840px;}
._23{width:24.735120px;}
._1c{width:25.777440px;}
._22{width:26.987760px;}
._24{width:28.651440px;}
._33{width:29.664720px;}
._15{width:30.716640px;}
._14{width:31.873680px;}
._1b{width:32.875920px;}
._4{width:34.875360px;}
._5{width:37.075920px;}
._2f{width:39.424320px;}
._25{width:40.603680px;}
._2d{width:41.783040px;}
._2c{width:42.993360px;}
._37{width:46.807440px;}
._36{width:47.963520px;}
._7{width:51.922800px;}
._6{width:53.071200px;}
._35{width:54.481440px;}
._26{width:56.777760px;}
._27{width:58.830480px;}
._12{width:64.053360px;}
._1d{width:65.485440px;}
._10{width:113.976720px;}
._28{width:124.759440px;}
._29{width:125.854560px;}
._31{width:174.124080px;}
._30{width:175.303440px;}
._2a{width:222.225120px;}
._2b{width:223.287600px;}
._34{width:257.690160px;}
._32{width:530.712000px;}
._2{width:638.842080px;}
._f{width:1010.658240px;}
._11{width:2548.765440px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.980000px;}
.y87{bottom:79.380000px;}
.y8b{bottom:81.720000px;}
.y4c{bottom:94.500000px;}
.ya6{bottom:96.660000px;}
.y28{bottom:102.060000px;}
.y86{bottom:107.280000px;}
.y64{bottom:109.440000px;}
.y4b{bottom:122.220000px;}
.ya5{bottom:124.380000px;}
.y27{bottom:129.816000px;}
.y85{bottom:135.036000px;}
.y8a{bottom:136.836000px;}
.y63{bottom:137.196000px;}
.y4a{bottom:149.976000px;}
.ya4{bottom:152.310000px;}
.y26{bottom:157.530000px;}
.y84{bottom:162.750000px;}
.y62{bottom:164.910000px;}
.y49{bottom:177.690000px;}
.ya3{bottom:180.030000px;}
.y25{bottom:185.250000px;}
.y83{bottom:190.470000px;}
.y61{bottom:192.810000px;}
.y48{bottom:205.590000px;}
.ya2{bottom:207.750000px;}
.y24{bottom:213.150000px;}
.y82{bottom:218.370000px;}
.y60{bottom:220.530000px;}
.ybf{bottom:232.230000px;}
.y47{bottom:233.310000px;}
.ya1{bottom:235.470000px;}
.y23{bottom:240.870000px;}
.y81{bottom:246.090000px;}
.y5f{bottom:248.250000px;}
.y46{bottom:261.030000px;}
.ybe{bottom:270.570000px;}
.y80{bottom:273.810000px;}
.y5e{bottom:276.150000px;}
.ya0{bottom:278.310000px;}
.y22{bottom:283.350000px;}
.ya9{bottom:288.930000px;}
.ybd{bottom:296.670000px;}
.y45{bottom:303.870000px;}
.y9f{bottom:306.030000px;}
.y21{bottom:311.430000px;}
.y7f{bottom:316.650000px;}
.y44{bottom:331.590000px;}
.y9e{bottom:333.930000px;}
.ybc{bottom:334.650000px;}
.y20{bottom:339.150000px;}
.y7e{bottom:344.370000px;}
.y43{bottom:359.310000px;}
.ybb{bottom:360.750000px;}
.y9d{bottom:361.650000px;}
.y1f{bottom:366.870000px;}
.y7d{bottom:372.090000px;}
.y5d{bottom:374.430000px;}
.yba{bottom:386.895000px;}
.y42{bottom:387.255000px;}
.y9c{bottom:389.415000px;}
.y1e{bottom:394.815000px;}
.y7c{bottom:400.035000px;}
.y5c{bottom:402.195000px;}
.y41{bottom:414.975000px;}
.y9b{bottom:417.135000px;}
.y1d{bottom:422.175000px;}
.yb9{bottom:424.875000px;}
.y7b{bottom:427.755000px;}
.y5b{bottom:429.915000px;}
.y40{bottom:442.695000px;}
.y9a{bottom:445.035000px;}
.y1c{bottom:449.895000px;}
.yb8{bottom:450.975000px;}
.y7a{bottom:455.475000px;}
.y5a{bottom:457.815000px;}
.ya8{bottom:470.235000px;}
.y3f{bottom:470.595000px;}
.y99{bottom:472.755000px;}
.yb7{bottom:476.895000px;}
.y1b{bottom:478.155000px;}
.y79{bottom:483.195000px;}
.y59{bottom:485.535000px;}
.y3e{bottom:498.315000px;}
.y98{bottom:500.475000px;}
.y1a{bottom:505.875000px;}
.y78{bottom:511.095000px;}
.y58{bottom:513.255000px;}
.yb6{bottom:515.055000px;}
.y3d{bottom:526.035000px;}
.y97{bottom:528.195000px;}
.y19{bottom:533.595000px;}
.y77{bottom:538.815000px;}
.y57{bottom:540.975000px;}
.yb5{bottom:541.155000px;}
.y3c{bottom:553.755000px;}
.y96{bottom:556.095000px;}
.y18{bottom:561.315000px;}
.y76{bottom:566.535000px;}
.yb4{bottom:567.075000px;}
.y56{bottom:568.875000px;}
.y3b{bottom:581.655000px;}
.ya7{bottom:583.815000px;}
.y17{bottom:589.215000px;}
.y89{bottom:596.595000px;}
.y95{bottom:598.755000px;}
.yb3{bottom:605.235000px;}
.y75{bottom:609.015000px;}
.y3a{bottom:609.375000px;}
.y55{bottom:611.535000px;}
.y16{bottom:616.935000px;}
.y88{bottom:624.315000px;}
.y94{bottom:626.655000px;}
.yb2{bottom:631.335000px;}
.y54{bottom:639.465000px;}
.y15{bottom:644.685000px;}
.y39{bottom:651.885000px;}
.y74{bottom:652.245000px;}
.y93{bottom:654.405000px;}
.yb1{bottom:657.285000px;}
.y53{bottom:667.185000px;}
.y14{bottom:672.585000px;}
.y73{bottom:679.965000px;}
.y92{bottom:682.125000px;}
.y38{bottom:694.905000px;}
.yb0{bottom:695.445000px;}
.y13{bottom:700.305000px;}
.y72{bottom:707.685000px;}
.y91{bottom:709.845000px;}
.yaf{bottom:721.545000px;}
.y52{bottom:722.625000px;}
.y12{bottom:727.665000px;}
.y71{bottom:735.405000px;}
.y37{bottom:737.745000px;}
.y51{bottom:750.525000px;}
.y11{bottom:755.385000px;}
.yae{bottom:759.525000px;}
.y70{bottom:763.305000px;}
.y36{bottom:765.465000px;}
.y50{bottom:778.245000px;}
.yad{bottom:785.625000px;}
.y6f{bottom:791.025000px;}
.y35{bottom:793.185000px;}
.y4f{bottom:805.965000px;}
.y10{bottom:806.685000px;}
.y6e{bottom:818.745000px;}
.y34{bottom:821.085000px;}
.yac{bottom:823.605000px;}
.y4e{bottom:833.865000px;}
.yf{bottom:842.865000px;}
.y33{bottom:848.805000px;}
.y6d{bottom:861.585000px;}
.yab{bottom:861.765000px;}
.y32{bottom:876.525000px;}
.ye{bottom:878.865000px;}
.y6c{bottom:889.350000px;}
.yaa{bottom:903.930000px;}
.y31{bottom:904.290000px;}
.yd{bottom:915.270000px;}
.y6b{bottom:917.070000px;}
.y30{bottom:932.190000px;}
.y6a{bottom:944.970000px;}
.y90{bottom:947.130000px;}
.yc{bottom:951.450000px;}
.y2f{bottom:959.910000px;}
.y8f{bottom:974.850000px;}
.y69{bottom:987.270000px;}
.yb{bottom:987.630000px;}
.y8e{bottom:1002.750000px;}
.y68{bottom:1015.170000px;}
.y2e{bottom:1015.530000px;}
.ya{bottom:1023.810000px;}
.y8d{bottom:1030.470000px;}
.y67{bottom:1042.890000px;}
.y2d{bottom:1043.250000px;}
.y8c{bottom:1058.190000px;}
.y9{bottom:1060.170000px;}
.y66{bottom:1070.610000px;}
.y4d{bottom:1070.970000px;}
.y2c{bottom:1085.910000px;}
.y8{bottom:1096.350000px;}
.y65{bottom:1098.330000px;}
.y2b{bottom:1113.810000px;}
.y7{bottom:1132.710000px;}
.y2a{bottom:1141.560000px;}
.y6{bottom:1168.920000px;}
.y29{bottom:1169.280000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.h8{height:59.066719px;}
.h2{height:65.884219px;}
.h3{height:70.628906px;}
.h6{height:82.635820px;}
.h7{height:82.676953px;}
.h5{height:84.898125px;}
.h9{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:20.550000px;}
.x1{left:95.796000px;}
.x2{left:111.636000px;}
.xe{left:122.796000px;}
.x5{left:126.756000px;}
.x7{left:149.076000px;}
.x9{left:264.990000px;}
.x3{left:438.915000px;}
.xd{left:467.025000px;}
.xb{left:509.685000px;}
.xa{left:534.705000px;}
.xc{left:562.785000px;}
.x8{left:589.425000px;}
.x6{left:829.440000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.608000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.033280pt;}
.lse{letter-spacing:0.098347pt;}
.ls6{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.303467pt;}
.ls7{letter-spacing:0.320000pt;}
.lsf{letter-spacing:1.120000pt;}
.lsb{letter-spacing:2.400000pt;}
.ls11{letter-spacing:3.680000pt;}
.ls9{letter-spacing:6.880000pt;}
.lsd{letter-spacing:18.863360pt;}
.ls10{letter-spacing:48.640000pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.ws4{word-spacing:-19.040000pt;}
.ws6{word-spacing:-19.023467pt;}
.ws5{word-spacing:-18.753280pt;}
.ws2{word-spacing:-18.720000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-0.058880pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._1e{margin-left:-2.096640pt;}
._1{margin-left:-1.000960pt;}
._3{width:1.198080pt;}
._a{width:2.541653pt;}
._1a{width:3.669120pt;}
._b{width:4.567680pt;}
._c{width:5.493760pt;}
._2e{width:6.415787pt;}
._17{width:7.318400pt;}
._16{width:8.386560pt;}
._19{width:9.360000pt;}
._18{width:10.286080pt;}
._13{width:11.756160pt;}
._d{width:12.804480pt;}
._e{width:14.030080pt;}
._1f{width:14.948480pt;}
._9{width:15.921920pt;}
._8{width:17.025280pt;}
._20{width:19.768320pt;}
._21{width:21.080747pt;}
._23{width:21.986773pt;}
._1c{width:22.913280pt;}
._22{width:23.989120pt;}
._24{width:25.467947pt;}
._33{width:26.368640pt;}
._15{width:27.303680pt;}
._14{width:28.332160pt;}
._1b{width:29.223040pt;}
._4{width:31.000320pt;}
._5{width:32.956373pt;}
._2f{width:35.043840pt;}
._25{width:36.092160pt;}
._2d{width:37.140480pt;}
._2c{width:38.216320pt;}
._37{width:41.606613pt;}
._36{width:42.634240pt;}
._7{width:46.153600pt;}
._6{width:47.174400pt;}
._35{width:48.427947pt;}
._26{width:50.469120pt;}
._27{width:52.293760pt;}
._12{width:56.936320pt;}
._1d{width:58.209280pt;}
._10{width:101.312640pt;}
._28{width:110.897280pt;}
._29{width:111.870720pt;}
._31{width:154.776960pt;}
._30{width:155.825280pt;}
._2a{width:197.533440pt;}
._2b{width:198.477867pt;}
._34{width:229.057920pt;}
._32{width:471.744000pt;}
._2{width:567.859627pt;}
._f{width:898.362880pt;}
._11{width:2265.569280pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.760000pt;}
.y87{bottom:70.560000pt;}
.y8b{bottom:72.640000pt;}
.y4c{bottom:84.000000pt;}
.ya6{bottom:85.920000pt;}
.y28{bottom:90.720000pt;}
.y86{bottom:95.360000pt;}
.y64{bottom:97.280000pt;}
.y4b{bottom:108.640000pt;}
.ya5{bottom:110.560000pt;}
.y27{bottom:115.392000pt;}
.y85{bottom:120.032000pt;}
.y8a{bottom:121.632000pt;}
.y63{bottom:121.952000pt;}
.y4a{bottom:133.312000pt;}
.ya4{bottom:135.386667pt;}
.y26{bottom:140.026667pt;}
.y84{bottom:144.666667pt;}
.y62{bottom:146.586667pt;}
.y49{bottom:157.946667pt;}
.ya3{bottom:160.026667pt;}
.y25{bottom:164.666667pt;}
.y83{bottom:169.306667pt;}
.y61{bottom:171.386667pt;}
.y48{bottom:182.746667pt;}
.ya2{bottom:184.666667pt;}
.y24{bottom:189.466667pt;}
.y82{bottom:194.106667pt;}
.y60{bottom:196.026667pt;}
.ybf{bottom:206.426667pt;}
.y47{bottom:207.386667pt;}
.ya1{bottom:209.306667pt;}
.y23{bottom:214.106667pt;}
.y81{bottom:218.746667pt;}
.y5f{bottom:220.666667pt;}
.y46{bottom:232.026667pt;}
.ybe{bottom:240.506667pt;}
.y80{bottom:243.386667pt;}
.y5e{bottom:245.466667pt;}
.ya0{bottom:247.386667pt;}
.y22{bottom:251.866667pt;}
.ya9{bottom:256.826667pt;}
.ybd{bottom:263.706667pt;}
.y45{bottom:270.106667pt;}
.y9f{bottom:272.026667pt;}
.y21{bottom:276.826667pt;}
.y7f{bottom:281.466667pt;}
.y44{bottom:294.746667pt;}
.y9e{bottom:296.826667pt;}
.ybc{bottom:297.466667pt;}
.y20{bottom:301.466667pt;}
.y7e{bottom:306.106667pt;}
.y43{bottom:319.386667pt;}
.ybb{bottom:320.666667pt;}
.y9d{bottom:321.466667pt;}
.y1f{bottom:326.106667pt;}
.y7d{bottom:330.746667pt;}
.y5d{bottom:332.826667pt;}
.yba{bottom:343.906667pt;}
.y42{bottom:344.226667pt;}
.y9c{bottom:346.146667pt;}
.y1e{bottom:350.946667pt;}
.y7c{bottom:355.586667pt;}
.y5c{bottom:357.506667pt;}
.y41{bottom:368.866667pt;}
.y9b{bottom:370.786667pt;}
.y1d{bottom:375.266667pt;}
.yb9{bottom:377.666667pt;}
.y7b{bottom:380.226667pt;}
.y5b{bottom:382.146667pt;}
.y40{bottom:393.506667pt;}
.y9a{bottom:395.586667pt;}
.y1c{bottom:399.906667pt;}
.yb8{bottom:400.866667pt;}
.y7a{bottom:404.866667pt;}
.y5a{bottom:406.946667pt;}
.ya8{bottom:417.986667pt;}
.y3f{bottom:418.306667pt;}
.y99{bottom:420.226667pt;}
.yb7{bottom:423.906667pt;}
.y1b{bottom:425.026667pt;}
.y79{bottom:429.506667pt;}
.y59{bottom:431.586667pt;}
.y3e{bottom:442.946667pt;}
.y98{bottom:444.866667pt;}
.y1a{bottom:449.666667pt;}
.y78{bottom:454.306667pt;}
.y58{bottom:456.226667pt;}
.yb6{bottom:457.826667pt;}
.y3d{bottom:467.586667pt;}
.y97{bottom:469.506667pt;}
.y19{bottom:474.306667pt;}
.y77{bottom:478.946667pt;}
.y57{bottom:480.866667pt;}
.yb5{bottom:481.026667pt;}
.y3c{bottom:492.226667pt;}
.y96{bottom:494.306667pt;}
.y18{bottom:498.946667pt;}
.y76{bottom:503.586667pt;}
.yb4{bottom:504.066667pt;}
.y56{bottom:505.666667pt;}
.y3b{bottom:517.026667pt;}
.ya7{bottom:518.946667pt;}
.y17{bottom:523.746667pt;}
.y89{bottom:530.306667pt;}
.y95{bottom:532.226667pt;}
.yb3{bottom:537.986667pt;}
.y75{bottom:541.346667pt;}
.y3a{bottom:541.666667pt;}
.y55{bottom:543.586667pt;}
.y16{bottom:548.386667pt;}
.y88{bottom:554.946667pt;}
.y94{bottom:557.026667pt;}
.yb2{bottom:561.186667pt;}
.y54{bottom:568.413333pt;}
.y15{bottom:573.053333pt;}
.y39{bottom:579.453333pt;}
.y74{bottom:579.773333pt;}
.y93{bottom:581.693333pt;}
.yb1{bottom:584.253333pt;}
.y53{bottom:593.053333pt;}
.y14{bottom:597.853333pt;}
.y73{bottom:604.413333pt;}
.y92{bottom:606.333333pt;}
.y38{bottom:617.693333pt;}
.yb0{bottom:618.173333pt;}
.y13{bottom:622.493333pt;}
.y72{bottom:629.053333pt;}
.y91{bottom:630.973333pt;}
.yaf{bottom:641.373333pt;}
.y52{bottom:642.333333pt;}
.y12{bottom:646.813333pt;}
.y71{bottom:653.693333pt;}
.y37{bottom:655.773333pt;}
.y51{bottom:667.133333pt;}
.y11{bottom:671.453333pt;}
.yae{bottom:675.133333pt;}
.y70{bottom:678.493333pt;}
.y36{bottom:680.413333pt;}
.y50{bottom:691.773333pt;}
.yad{bottom:698.333333pt;}
.y6f{bottom:703.133333pt;}
.y35{bottom:705.053333pt;}
.y4f{bottom:716.413333pt;}
.y10{bottom:717.053333pt;}
.y6e{bottom:727.773333pt;}
.y34{bottom:729.853333pt;}
.yac{bottom:732.093333pt;}
.y4e{bottom:741.213333pt;}
.yf{bottom:749.213333pt;}
.y33{bottom:754.493333pt;}
.y6d{bottom:765.853333pt;}
.yab{bottom:766.013333pt;}
.y32{bottom:779.133333pt;}
.ye{bottom:781.213333pt;}
.y6c{bottom:790.533333pt;}
.yaa{bottom:803.493333pt;}
.y31{bottom:803.813333pt;}
.yd{bottom:813.573333pt;}
.y6b{bottom:815.173333pt;}
.y30{bottom:828.613333pt;}
.y6a{bottom:839.973333pt;}
.y90{bottom:841.893333pt;}
.yc{bottom:845.733333pt;}
.y2f{bottom:853.253333pt;}
.y8f{bottom:866.533333pt;}
.y69{bottom:877.573333pt;}
.yb{bottom:877.893333pt;}
.y8e{bottom:891.333333pt;}
.y68{bottom:902.373333pt;}
.y2e{bottom:902.693333pt;}
.ya{bottom:910.053333pt;}
.y8d{bottom:915.973333pt;}
.y67{bottom:927.013333pt;}
.y2d{bottom:927.333333pt;}
.y8c{bottom:940.613333pt;}
.y9{bottom:942.373333pt;}
.y66{bottom:951.653333pt;}
.y4d{bottom:951.973333pt;}
.y2c{bottom:965.253333pt;}
.y8{bottom:974.533333pt;}
.y65{bottom:976.293333pt;}
.y2b{bottom:990.053333pt;}
.y7{bottom:1006.853333pt;}
.y2a{bottom:1014.720000pt;}
.y6{bottom:1039.040000pt;}
.y29{bottom:1039.360000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.h8{height:52.503750pt;}
.h2{height:58.563750pt;}
.h3{height:62.781250pt;}
.h6{height:73.454062pt;}
.h7{height:73.490625pt;}
.h5{height:75.465000pt;}
.h9{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:18.266667pt;}
.x1{left:85.152000pt;}
.x2{left:99.232000pt;}
.xe{left:109.152000pt;}
.x5{left:112.672000pt;}
.x7{left:132.512000pt;}
.x9{left:235.546667pt;}
.x3{left:390.146667pt;}
.xd{left:415.133333pt;}
.xb{left:453.053333pt;}
.xa{left:475.293333pt;}
.xc{left:500.253333pt;}
.x8{left:523.933333pt;}
.x6{left:737.280000pt;}
}




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