
    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_8ee16541cce3ba3c16b83da7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_6545bff157f4668accab4ff5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e2e34918ddbc17d2b29b462c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_6a5ef724dfa39b96867f1673.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.750000;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_1ae14b394d5640425ba512e7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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;}
.m2{transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v4{vertical-align:-39.000000px;}
.v5{vertical-align:-33.000000px;}
.v1{vertical-align:-8.400000px;}
.v3{vertical-align:-7.200000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:88.200000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.156000px;}
.ls5{letter-spacing:0.168000px;}
.ls1{letter-spacing:0.264000px;}
.ls4{letter-spacing:0.468000px;}
.ls7{letter-spacing:102.430800px;}
.ls3{letter-spacing:181.800000px;}
.ls8{letter-spacing:187.800000px;}
.lsa{letter-spacing:190.800000px;}
.ls6{letter-spacing:207.600000px;}
.ls9{letter-spacing:223.287600px;}
.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:-53.184000px;}
.ws7{word-spacing:-46.536000px;}
.wsa{word-spacing:-44.707800px;}
.ws9{word-spacing:-43.368000px;}
.ws5{word-spacing:-43.212000px;}
.ws0{word-spacing:-39.888000px;}
.wsd{word-spacing:-36.564000px;}
.ws11{word-spacing:-33.240000px;}
.ws6{word-spacing:-29.916000px;}
.ws8{word-spacing:-16.620000px;}
.ws4{word-spacing:-14.856000px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:34.152000px;}
.wsf{word-spacing:428.076000px;}
.wsc{word-spacing:509.035264px;}
.wsb{word-spacing:549.180043px;}
.wse{word-spacing:550.380000px;}
.ws10{word-spacing:610.320000px;}
._1d{margin-left:-5.479200px;}
._1c{margin-left:-3.543000px;}
._2{margin-left:-2.268000px;}
._0{margin-left:-1.152000px;}
._1{width:1.116000px;}
._5{width:2.736000px;}
._6{width:3.816000px;}
._14{width:5.616000px;}
._13{width:6.708000px;}
._12{width:9.048000px;}
._11{width:10.248000px;}
._23{width:12.768000px;}
._3a{width:16.092000px;}
._39{width:17.280000px;}
._16{width:20.052000px;}
._18{width:21.132000px;}
._2a{width:22.260000px;}
._40{width:24.360000px;}
._32{width:26.928000px;}
._33{width:28.752000px;}
._c{width:29.760000px;}
._b{width:30.876000px;}
._38{width:31.968000px;}
._1a{width:33.936000px;}
._17{width:35.304000px;}
._1f{width:36.792000px;}
._25{width:38.484000px;}
._24{width:39.648000px;}
._1b{width:45.792000px;}
._a{width:47.208000px;}
._9{width:48.804000px;}
._31{width:49.848000px;}
._e{width:52.416000px;}
._d{width:54.156000px;}
._35{width:60.048000px;}
._34{width:61.344000px;}
._36{width:62.640000px;}
._4{width:64.224000px;}
._3{width:65.232000px;}
._3b{width:66.564000px;}
._20{width:72.048000px;}
._21{width:73.116000px;}
._22{width:76.860000px;}
._7{width:79.512000px;}
._8{width:80.520000px;}
._3d{width:82.824000px;}
._3c{width:84.000000px;}
._37{width:94.308000px;}
._29{width:95.316000px;}
._28{width:96.408000px;}
._10{width:100.152000px;}
._15{width:102.936000px;}
._3e{width:121.968000px;}
._3f{width:123.288000px;}
._f{width:133.764000px;}
._27{width:155.256000px;}
._26{width:156.744000px;}
._2d{width:181.836000px;}
._2b{width:232.731000px;}
._2c{width:266.223000px;}
._19{width:530.988000px;}
._1e{width:593.887843px;}
._30{width:624.900000px;}
._2f{width:703.476000px;}
._2e{width:721.659000px;}
.fc3{color:rgb(204,204,255);}
.fc2{color:transparent;}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(126,0,33);}
.fsb{font-size:59.400000px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:70.200000px;}
.fs2{font-size:108.000000px;}
.fs6{font-size:120.000000px;}
.fs9{font-size:126.000000px;}
.fs8{font-size:132.000000px;}
.fs1{font-size:144.000000px;}
.fs4{font-size:156.000000px;}
.fs7{font-size:161.400000px;}
.fs3{font-size:168.000000px;}
.fs0{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:20.400000px;}
.y61{bottom:39.150000px;}
.yc{bottom:39.900000px;}
.y27{bottom:45.600000px;}
.y31{bottom:48.150000px;}
.y8a{bottom:50.700000px;}
.y17{bottom:51.600000px;}
.y21{bottom:54.900000px;}
.yd0{bottom:55.500000px;}
.y20{bottom:67.650000px;}
.y2{bottom:75.600000px;}
.y60{bottom:82.350000px;}
.y9b{bottom:85.950000px;}
.yd8{bottom:86.250000px;}
.y16{bottom:94.800000px;}
.y79{bottom:102.450000px;}
.y30{bottom:103.200000px;}
.y90{bottom:111.900000px;}
.y48{bottom:113.550000px;}
.y5f{bottom:125.550000px;}
.y65{bottom:127.800000px;}
.y89{bottom:129.900000px;}
.yb{bottom:133.800000px;}
.ya8{bottom:133.950000px;}
.y22{bottom:134.550000px;}
.yd7{bottom:136.500000px;}
.y78{bottom:142.050000px;}
.y6f{bottom:145.950000px;}
.y47{bottom:149.550000px;}
.y15{bottom:149.850000px;}
.y80{bottom:150.900000px;}
.yba{bottom:151.500000px;}
.y2f{bottom:152.100000px;}
.y8f{bottom:158.700000px;}
.ya{bottom:166.200000px;}
.y57{bottom:166.800000px;}
.yc8{bottom:166.950000px;}
.y5e{bottom:168.750000px;}
.y64{bottom:170.700000px;}
.y3d{bottom:177.000000px;}
.ya7{bottom:177.150000px;}
.y4b{bottom:177.450000px;}
.y9a{bottom:180.450000px;}
.y77{bottom:181.650000px;}
.y1f{bottom:184.950000px;}
.y6e{bottom:189.150000px;}
.y7f{bottom:190.500000px;}
.yb9{bottom:191.100000px;}
.y88{bottom:193.200000px;}
.yae{bottom:193.800000px;}
.yd6{bottom:199.650000px;}
.y14{bottom:205.050000px;}
.y8e{bottom:205.500000px;}
.y2e{bottom:207.300000px;}
.y63{bottom:211.050000px;}
.y5d{bottom:211.950000px;}
.y56{bottom:216.600000px;}
.yc7{bottom:217.350000px;}
.ya6{bottom:220.350000px;}
.y4a{bottom:220.650000px;}
.y76{bottom:221.250000px;}
.y99{bottom:228.450000px;}
.y6d{bottom:232.350000px;}
.y3c{bottom:235.800000px;}
.yad{bottom:242.550000px;}
.y1e{bottom:246.600000px;}
.y36{bottom:249.000000px;}
.y8d{bottom:252.300000px;}
.y87{bottom:252.900000px;}
.yd5{bottom:253.350000px;}
.y62{bottom:253.950000px;}
.y9{bottom:255.000000px;}
.y5c{bottom:255.150000px;}
.y49{bottom:255.900000px;}
.y2d{bottom:256.050000px;}
.y13{bottom:260.250000px;}
.yb2{bottom:260.400000px;}
.y75{bottom:260.700000px;}
.ya5{bottom:263.550000px;}
.yc6{bottom:267.750000px;}
.y86{bottom:274.950000px;}
.y55{bottom:275.400000px;}
.y98{bottom:276.450000px;}
.y3b{bottom:282.450000px;}
.ybd{bottom:285.600000px;}
.y8{bottom:287.400000px;}
.y7e{bottom:293.250000px;}
.y1d{bottom:293.400000px;}
.y35{bottom:295.800000px;}
.ycf{bottom:297.750000px;}
.yac{bottom:299.850000px;}
.y74{bottom:300.300000px;}
.yb8{bottom:300.900000px;}
.yd4{bottom:307.050000px;}
.y2c{bottom:311.250000px;}
.y12{bottom:315.450000px;}
.ya4{bottom:318.750000px;}
.y54{bottom:322.200000px;}
.y97{bottom:324.450000px;}
.yc5{bottom:330.150000px;}
.y1c{bottom:340.200000px;}
.y3a{bottom:341.250000px;}
.y7d{bottom:343.350000px;}
.y6c{bottom:346.950000px;}
.ybc{bottom:348.000000px;}
.yb7{bottom:351.000000px;}
.y34{bottom:354.600000px;}
.yab{bottom:355.050000px;}
.y85{bottom:355.500000px;}
.y42{bottom:355.950000px;}
.yd3{bottom:360.000000px;}
.y2b{bottom:360.150000px;}
.ya3{bottom:361.950000px;}
.y96{bottom:362.250000px;}
.y5b{bottom:365.550000px;}
.y8c{bottom:366.300000px;}
.y11{bottom:370.650000px;}
.y7{bottom:376.200000px;}
.y26{bottom:380.400000px;}
.y53{bottom:381.000000px;}
.y1b{bottom:387.600000px;}
.y39{bottom:388.050000px;}
.y40{bottom:388.650000px;}
.y41{bottom:391.950000px;}
.yc4{bottom:392.550000px;}
.y6b{bottom:393.750000px;}
.y7c{bottom:394.950000px;}
.ybb{bottom:398.250000px;}
.yb6{bottom:401.100000px;}
.y33{bottom:401.400000px;}
.y84{bottom:402.300000px;}
.yaa{bottom:403.800000px;}
.ya2{bottom:405.150000px;}
.y6{bottom:408.600000px;}
.y73{bottom:414.300000px;}
.yb1{bottom:417.000000px;}
.y2a{bottom:417.300000px;}
.y5a{bottom:420.750000px;}
.yd2{bottom:422.250000px;}
.y8b{bottom:425.100000px;}
.y10{bottom:425.850000px;}
.y52{bottom:427.650000px;}
.y6a{bottom:440.400000px;}
.yc3{bottom:442.950000px;}
.ya1{bottom:448.350000px;}
.yce{bottom:448.650000px;}
.y83{bottom:448.950000px;}
.y25{bottom:450.000000px;}
.y3f{bottom:451.050000px;}
.y46{bottom:453.750000px;}
.y72{bottom:453.900000px;}
.y95{bottom:454.950000px;}
.y44{bottom:462.300000px;}
.yb0{bottom:463.650000px;}
.y59{bottom:463.950000px;}
.yd1{bottom:472.650000px;}
.y51{bottom:474.450000px;}
.y29{bottom:474.600000px;}
.y1a{bottom:479.250000px;}
.yf{bottom:481.050000px;}
.y69{bottom:487.200000px;}
.ya0{bottom:491.550000px;}
.yc2{bottom:493.200000px;}
.y71{bottom:493.500000px;}
.y82{bottom:495.750000px;}
.y45{bottom:496.950000px;}
.y5{bottom:497.250000px;}
.y7b{bottom:498.150000px;}
.y43{bottom:498.300000px;}
.yb5{bottom:501.150000px;}
.y94{bottom:502.950000px;}
.y58{bottom:507.150000px;}
.y38{bottom:509.700000px;}
.yaf{bottom:511.050000px;}
.y3e{bottom:512.850000px;}
.y32{bottom:523.050000px;}
.ye{bottom:524.250000px;}
.y19{bottom:526.050000px;}
.ya9{bottom:527.550000px;}
.y4{bottom:529.650000px;}
.y70{bottom:533.100000px;}
.y9f{bottom:534.750000px;}
.y7a{bottom:537.750000px;}
.ycd{bottom:539.550000px;}
.y93{bottom:540.750000px;}
.y81{bottom:542.550000px;}
.yb4{bottom:542.850000px;}
.yc1{bottom:543.600000px;}
.y4d{bottom:559.950000px;}
.y4f{bottom:568.500000px;}
.y50{bottom:568.650000px;}
.y37{bottom:572.100000px;}
.y18{bottom:573.450000px;}
.y28{bottom:576.450000px;}
.yd{bottom:579.450000px;}
.yb3{bottom:582.450000px;}
.y92{bottom:585.450000px;}
.y9e{bottom:589.950000px;}
.y4c{bottom:595.950000px;}
.y4e{bottom:604.650000px;}
.y68{bottom:629.850000px;}
.yc0{bottom:636.600000px;}
.ycc{bottom:640.350000px;}
.y9d{bottom:658.650000px;}
.y24{bottom:663.150000px;}
.y91{bottom:687.300000px;}
.y67{bottom:687.450000px;}
.ybf{bottom:688.200000px;}
.ycb{bottom:690.750000px;}
.y1{bottom:691.950000px;}
.y9c{bottom:716.100000px;}
.y23{bottom:720.600000px;}
.yca{bottom:741.150000px;}
.y66{bottom:745.050000px;}
.ybe{bottom:745.800000px;}
.yc9{bottom:792.600000px;}
.h9{height:43.681641px;}
.h19{height:62.499609px;}
.h18{height:63.099609px;}
.h4{height:78.626953px;}
.hd{height:87.363281px;}
.h13{height:91.731445px;}
.h12{height:96.099609px;}
.h1a{height:97.035938px;}
.h3{height:97.505859px;}
.h15{height:101.139844px;}
.h16{height:101.841797px;}
.h5{height:104.835938px;}
.hb{height:105.172266px;}
.h17{height:105.772266px;}
.he{height:108.339844px;}
.h7{height:113.572266px;}
.hc{height:117.000000px;}
.hf{height:117.503613px;}
.h11{height:119.173828px;}
.h8{height:122.308594px;}
.h2{height:130.007812px;}
.ha{height:140.841797px;}
.h10{height:145.717090px;}
.h6{height:151.675781px;}
.h1{height:173.343750px;}
.h14{height:185.705859px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2f{left:12.600000px;}
.x2b{left:23.850000px;}
.x2a{left:31.500000px;}
.x2c{left:33.300000px;}
.x23{left:34.800000px;}
.x33{left:54.000000px;}
.xc{left:64.650000px;}
.x5{left:66.750000px;}
.x24{left:72.300000px;}
.x3b{left:90.000000px;}
.x22{left:91.500000px;}
.x3a{left:95.700000px;}
.x15{left:101.700000px;}
.x6{left:105.000000px;}
.x35{left:109.500000px;}
.x2d{left:117.000000px;}
.x36{left:119.100000px;}
.x32{left:135.450000px;}
.x9{left:157.950000px;}
.x37{left:159.450000px;}
.x1a{left:168.150000px;}
.x13{left:172.650000px;}
.x25{left:190.650000px;}
.x27{left:194.100000px;}
.x1d{left:201.900000px;}
.xa{left:211.050000px;}
.x34{left:223.500000px;}
.x12{left:229.800000px;}
.x14{left:237.600000px;}
.x31{left:239.550000px;}
.x10{left:272.100000px;}
.x17{left:301.500000px;}
.x29{left:313.950000px;}
.x30{left:316.650000px;}
.x11{left:344.400000px;}
.x28{left:377.850000px;}
.xf{left:405.450000px;}
.x1{left:410.850000px;}
.x3c{left:425.400000px;}
.x1e{left:427.200000px;}
.x18{left:431.550000px;}
.x2{left:489.000000px;}
.x16{left:517.350000px;}
.x19{left:520.950000px;}
.x2e{left:552.600000px;}
.x39{left:563.400000px;}
.xe{left:567.600000px;}
.x1c{left:601.800000px;}
.x1b{left:606.000000px;}
.x3{left:627.900000px;}
.x21{left:647.400000px;}
.x20{left:714.900000px;}
.x4{left:733.200000px;}
.x1f{left:749.400000px;}
.xb{left:765.150000px;}
.x7{left:784.650000px;}
.x38{left:786.600000px;}
.x26{left:852.450000px;}
.x8{left:874.650000px;}
.xd{left:882.300000px;}
@media print{
.v4{vertical-align:-34.666667pt;}
.v5{vertical-align:-29.333333pt;}
.v1{vertical-align:-7.466667pt;}
.v3{vertical-align:-6.400000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:78.400000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.138667pt;}
.ls5{letter-spacing:0.149333pt;}
.ls1{letter-spacing:0.234667pt;}
.ls4{letter-spacing:0.416000pt;}
.ls7{letter-spacing:91.049600pt;}
.ls3{letter-spacing:161.600000pt;}
.ls8{letter-spacing:166.933333pt;}
.lsa{letter-spacing:169.600000pt;}
.ls6{letter-spacing:184.533333pt;}
.ls9{letter-spacing:198.477867pt;}
.ws2{word-spacing:-47.274667pt;}
.ws7{word-spacing:-41.365333pt;}
.wsa{word-spacing:-39.740267pt;}
.ws9{word-spacing:-38.549333pt;}
.ws5{word-spacing:-38.410667pt;}
.ws0{word-spacing:-35.456000pt;}
.wsd{word-spacing:-32.501333pt;}
.ws11{word-spacing:-29.546667pt;}
.ws6{word-spacing:-26.592000pt;}
.ws8{word-spacing:-14.773333pt;}
.ws4{word-spacing:-13.205333pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:30.357333pt;}
.wsf{word-spacing:380.512000pt;}
.wsc{word-spacing:452.475790pt;}
.wsb{word-spacing:488.160038pt;}
.wse{word-spacing:489.226667pt;}
.ws10{word-spacing:542.506667pt;}
._1d{margin-left:-4.870400pt;}
._1c{margin-left:-3.149333pt;}
._2{margin-left:-2.016000pt;}
._0{margin-left:-1.024000pt;}
._1{width:0.992000pt;}
._5{width:2.432000pt;}
._6{width:3.392000pt;}
._14{width:4.992000pt;}
._13{width:5.962667pt;}
._12{width:8.042667pt;}
._11{width:9.109333pt;}
._23{width:11.349333pt;}
._3a{width:14.304000pt;}
._39{width:15.360000pt;}
._16{width:17.824000pt;}
._18{width:18.784000pt;}
._2a{width:19.786667pt;}
._40{width:21.653333pt;}
._32{width:23.936000pt;}
._33{width:25.557333pt;}
._c{width:26.453333pt;}
._b{width:27.445333pt;}
._38{width:28.416000pt;}
._1a{width:30.165333pt;}
._17{width:31.381333pt;}
._1f{width:32.704000pt;}
._25{width:34.208000pt;}
._24{width:35.242667pt;}
._1b{width:40.704000pt;}
._a{width:41.962667pt;}
._9{width:43.381333pt;}
._31{width:44.309333pt;}
._e{width:46.592000pt;}
._d{width:48.138667pt;}
._35{width:53.376000pt;}
._34{width:54.528000pt;}
._36{width:55.680000pt;}
._4{width:57.088000pt;}
._3{width:57.984000pt;}
._3b{width:59.168000pt;}
._20{width:64.042667pt;}
._21{width:64.992000pt;}
._22{width:68.320000pt;}
._7{width:70.677333pt;}
._8{width:71.573333pt;}
._3d{width:73.621333pt;}
._3c{width:74.666667pt;}
._37{width:83.829333pt;}
._29{width:84.725333pt;}
._28{width:85.696000pt;}
._10{width:89.024000pt;}
._15{width:91.498667pt;}
._3e{width:108.416000pt;}
._3f{width:109.589333pt;}
._f{width:118.901333pt;}
._27{width:138.005333pt;}
._26{width:139.328000pt;}
._2d{width:161.632000pt;}
._2b{width:206.872000pt;}
._2c{width:236.642667pt;}
._19{width:471.989333pt;}
._1e{width:527.900305pt;}
._30{width:555.466667pt;}
._2f{width:625.312000pt;}
._2e{width:641.474667pt;}
.fsb{font-size:52.800000pt;}
.fs5{font-size:53.333333pt;}
.fsa{font-size:62.400000pt;}
.fs2{font-size:96.000000pt;}
.fs6{font-size:106.666667pt;}
.fs9{font-size:112.000000pt;}
.fs8{font-size:117.333333pt;}
.fs1{font-size:128.000000pt;}
.fs4{font-size:138.666667pt;}
.fs7{font-size:143.466667pt;}
.fs3{font-size:149.333333pt;}
.fs0{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:18.133333pt;}
.y61{bottom:34.800000pt;}
.yc{bottom:35.466667pt;}
.y27{bottom:40.533333pt;}
.y31{bottom:42.800000pt;}
.y8a{bottom:45.066667pt;}
.y17{bottom:45.866667pt;}
.y21{bottom:48.800000pt;}
.yd0{bottom:49.333333pt;}
.y20{bottom:60.133333pt;}
.y2{bottom:67.200000pt;}
.y60{bottom:73.200000pt;}
.y9b{bottom:76.400000pt;}
.yd8{bottom:76.666667pt;}
.y16{bottom:84.266667pt;}
.y79{bottom:91.066667pt;}
.y30{bottom:91.733333pt;}
.y90{bottom:99.466667pt;}
.y48{bottom:100.933333pt;}
.y5f{bottom:111.600000pt;}
.y65{bottom:113.600000pt;}
.y89{bottom:115.466667pt;}
.yb{bottom:118.933333pt;}
.ya8{bottom:119.066667pt;}
.y22{bottom:119.600000pt;}
.yd7{bottom:121.333333pt;}
.y78{bottom:126.266667pt;}
.y6f{bottom:129.733333pt;}
.y47{bottom:132.933333pt;}
.y15{bottom:133.200000pt;}
.y80{bottom:134.133333pt;}
.yba{bottom:134.666667pt;}
.y2f{bottom:135.200000pt;}
.y8f{bottom:141.066667pt;}
.ya{bottom:147.733333pt;}
.y57{bottom:148.266667pt;}
.yc8{bottom:148.400000pt;}
.y5e{bottom:150.000000pt;}
.y64{bottom:151.733333pt;}
.y3d{bottom:157.333333pt;}
.ya7{bottom:157.466667pt;}
.y4b{bottom:157.733333pt;}
.y9a{bottom:160.400000pt;}
.y77{bottom:161.466667pt;}
.y1f{bottom:164.400000pt;}
.y6e{bottom:168.133333pt;}
.y7f{bottom:169.333333pt;}
.yb9{bottom:169.866667pt;}
.y88{bottom:171.733333pt;}
.yae{bottom:172.266667pt;}
.yd6{bottom:177.466667pt;}
.y14{bottom:182.266667pt;}
.y8e{bottom:182.666667pt;}
.y2e{bottom:184.266667pt;}
.y63{bottom:187.600000pt;}
.y5d{bottom:188.400000pt;}
.y56{bottom:192.533333pt;}
.yc7{bottom:193.200000pt;}
.ya6{bottom:195.866667pt;}
.y4a{bottom:196.133333pt;}
.y76{bottom:196.666667pt;}
.y99{bottom:203.066667pt;}
.y6d{bottom:206.533333pt;}
.y3c{bottom:209.600000pt;}
.yad{bottom:215.600000pt;}
.y1e{bottom:219.200000pt;}
.y36{bottom:221.333333pt;}
.y8d{bottom:224.266667pt;}
.y87{bottom:224.800000pt;}
.yd5{bottom:225.200000pt;}
.y62{bottom:225.733333pt;}
.y9{bottom:226.666667pt;}
.y5c{bottom:226.800000pt;}
.y49{bottom:227.466667pt;}
.y2d{bottom:227.600000pt;}
.y13{bottom:231.333333pt;}
.yb2{bottom:231.466667pt;}
.y75{bottom:231.733333pt;}
.ya5{bottom:234.266667pt;}
.yc6{bottom:238.000000pt;}
.y86{bottom:244.400000pt;}
.y55{bottom:244.800000pt;}
.y98{bottom:245.733333pt;}
.y3b{bottom:251.066667pt;}
.ybd{bottom:253.866667pt;}
.y8{bottom:255.466667pt;}
.y7e{bottom:260.666667pt;}
.y1d{bottom:260.800000pt;}
.y35{bottom:262.933333pt;}
.ycf{bottom:264.666667pt;}
.yac{bottom:266.533333pt;}
.y74{bottom:266.933333pt;}
.yb8{bottom:267.466667pt;}
.yd4{bottom:272.933333pt;}
.y2c{bottom:276.666667pt;}
.y12{bottom:280.400000pt;}
.ya4{bottom:283.333333pt;}
.y54{bottom:286.400000pt;}
.y97{bottom:288.400000pt;}
.yc5{bottom:293.466667pt;}
.y1c{bottom:302.400000pt;}
.y3a{bottom:303.333333pt;}
.y7d{bottom:305.200000pt;}
.y6c{bottom:308.400000pt;}
.ybc{bottom:309.333333pt;}
.yb7{bottom:312.000000pt;}
.y34{bottom:315.200000pt;}
.yab{bottom:315.600000pt;}
.y85{bottom:316.000000pt;}
.y42{bottom:316.400000pt;}
.yd3{bottom:320.000000pt;}
.y2b{bottom:320.133333pt;}
.ya3{bottom:321.733333pt;}
.y96{bottom:322.000000pt;}
.y5b{bottom:324.933333pt;}
.y8c{bottom:325.600000pt;}
.y11{bottom:329.466667pt;}
.y7{bottom:334.400000pt;}
.y26{bottom:338.133333pt;}
.y53{bottom:338.666667pt;}
.y1b{bottom:344.533333pt;}
.y39{bottom:344.933333pt;}
.y40{bottom:345.466667pt;}
.y41{bottom:348.400000pt;}
.yc4{bottom:348.933333pt;}
.y6b{bottom:350.000000pt;}
.y7c{bottom:351.066667pt;}
.ybb{bottom:354.000000pt;}
.yb6{bottom:356.533333pt;}
.y33{bottom:356.800000pt;}
.y84{bottom:357.600000pt;}
.yaa{bottom:358.933333pt;}
.ya2{bottom:360.133333pt;}
.y6{bottom:363.200000pt;}
.y73{bottom:368.266667pt;}
.yb1{bottom:370.666667pt;}
.y2a{bottom:370.933333pt;}
.y5a{bottom:374.000000pt;}
.yd2{bottom:375.333333pt;}
.y8b{bottom:377.866667pt;}
.y10{bottom:378.533333pt;}
.y52{bottom:380.133333pt;}
.y6a{bottom:391.466667pt;}
.yc3{bottom:393.733333pt;}
.ya1{bottom:398.533333pt;}
.yce{bottom:398.800000pt;}
.y83{bottom:399.066667pt;}
.y25{bottom:400.000000pt;}
.y3f{bottom:400.933333pt;}
.y46{bottom:403.333333pt;}
.y72{bottom:403.466667pt;}
.y95{bottom:404.400000pt;}
.y44{bottom:410.933333pt;}
.yb0{bottom:412.133333pt;}
.y59{bottom:412.400000pt;}
.yd1{bottom:420.133333pt;}
.y51{bottom:421.733333pt;}
.y29{bottom:421.866667pt;}
.y1a{bottom:426.000000pt;}
.yf{bottom:427.600000pt;}
.y69{bottom:433.066667pt;}
.ya0{bottom:436.933333pt;}
.yc2{bottom:438.400000pt;}
.y71{bottom:438.666667pt;}
.y82{bottom:440.666667pt;}
.y45{bottom:441.733333pt;}
.y5{bottom:442.000000pt;}
.y7b{bottom:442.800000pt;}
.y43{bottom:442.933333pt;}
.yb5{bottom:445.466667pt;}
.y94{bottom:447.066667pt;}
.y58{bottom:450.800000pt;}
.y38{bottom:453.066667pt;}
.yaf{bottom:454.266667pt;}
.y3e{bottom:455.866667pt;}
.y32{bottom:464.933333pt;}
.ye{bottom:466.000000pt;}
.y19{bottom:467.600000pt;}
.ya9{bottom:468.933333pt;}
.y4{bottom:470.800000pt;}
.y70{bottom:473.866667pt;}
.y9f{bottom:475.333333pt;}
.y7a{bottom:478.000000pt;}
.ycd{bottom:479.600000pt;}
.y93{bottom:480.666667pt;}
.y81{bottom:482.266667pt;}
.yb4{bottom:482.533333pt;}
.yc1{bottom:483.200000pt;}
.y4d{bottom:497.733333pt;}
.y4f{bottom:505.333333pt;}
.y50{bottom:505.466667pt;}
.y37{bottom:508.533333pt;}
.y18{bottom:509.733333pt;}
.y28{bottom:512.400000pt;}
.yd{bottom:515.066667pt;}
.yb3{bottom:517.733333pt;}
.y92{bottom:520.400000pt;}
.y9e{bottom:524.400000pt;}
.y4c{bottom:529.733333pt;}
.y4e{bottom:537.466667pt;}
.y68{bottom:559.866667pt;}
.yc0{bottom:565.866667pt;}
.ycc{bottom:569.200000pt;}
.y9d{bottom:585.466667pt;}
.y24{bottom:589.466667pt;}
.y91{bottom:610.933333pt;}
.y67{bottom:611.066667pt;}
.ybf{bottom:611.733333pt;}
.ycb{bottom:614.000000pt;}
.y1{bottom:615.066667pt;}
.y9c{bottom:636.533333pt;}
.y23{bottom:640.533333pt;}
.yca{bottom:658.800000pt;}
.y66{bottom:662.266667pt;}
.ybe{bottom:662.933333pt;}
.yc9{bottom:704.533333pt;}
.h9{height:38.828125pt;}
.h19{height:55.555208pt;}
.h18{height:56.088542pt;}
.h4{height:69.890625pt;}
.hd{height:77.656250pt;}
.h13{height:81.539062pt;}
.h12{height:85.421875pt;}
.h1a{height:86.254167pt;}
.h3{height:86.671875pt;}
.h15{height:89.902083pt;}
.h16{height:90.526042pt;}
.h5{height:93.187500pt;}
.hb{height:93.486458pt;}
.h17{height:94.019792pt;}
.he{height:96.302083pt;}
.h7{height:100.953125pt;}
.hc{height:104.000000pt;}
.hf{height:104.447656pt;}
.h11{height:105.932292pt;}
.h8{height:108.718750pt;}
.h2{height:115.562500pt;}
.ha{height:125.192708pt;}
.h10{height:129.526302pt;}
.h6{height:134.822917pt;}
.h1{height:154.083333pt;}
.h14{height:165.071875pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:11.200000pt;}
.x2b{left:21.200000pt;}
.x2a{left:28.000000pt;}
.x2c{left:29.600000pt;}
.x23{left:30.933333pt;}
.x33{left:48.000000pt;}
.xc{left:57.466667pt;}
.x5{left:59.333333pt;}
.x24{left:64.266667pt;}
.x3b{left:80.000000pt;}
.x22{left:81.333333pt;}
.x3a{left:85.066667pt;}
.x15{left:90.400000pt;}
.x6{left:93.333333pt;}
.x35{left:97.333333pt;}
.x2d{left:104.000000pt;}
.x36{left:105.866667pt;}
.x32{left:120.400000pt;}
.x9{left:140.400000pt;}
.x37{left:141.733333pt;}
.x1a{left:149.466667pt;}
.x13{left:153.466667pt;}
.x25{left:169.466667pt;}
.x27{left:172.533333pt;}
.x1d{left:179.466667pt;}
.xa{left:187.600000pt;}
.x34{left:198.666667pt;}
.x12{left:204.266667pt;}
.x14{left:211.200000pt;}
.x31{left:212.933333pt;}
.x10{left:241.866667pt;}
.x17{left:268.000000pt;}
.x29{left:279.066667pt;}
.x30{left:281.466667pt;}
.x11{left:306.133333pt;}
.x28{left:335.866667pt;}
.xf{left:360.400000pt;}
.x1{left:365.200000pt;}
.x3c{left:378.133333pt;}
.x1e{left:379.733333pt;}
.x18{left:383.600000pt;}
.x2{left:434.666667pt;}
.x16{left:459.866667pt;}
.x19{left:463.066667pt;}
.x2e{left:491.200000pt;}
.x39{left:500.800000pt;}
.xe{left:504.533333pt;}
.x1c{left:534.933333pt;}
.x1b{left:538.666667pt;}
.x3{left:558.133333pt;}
.x21{left:575.466667pt;}
.x20{left:635.466667pt;}
.x4{left:651.733333pt;}
.x1f{left:666.133333pt;}
.xb{left:680.133333pt;}
.x7{left:697.466667pt;}
.x38{left:699.200000pt;}
.x26{left:757.733333pt;}
.x8{left:777.466667pt;}
.xd{left:784.266667pt;}
}




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