
    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_e4b17c95b00994452df97522.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_89d3643deda35562a0a11539.woff')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_0c0096512878c3edf624eed2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940918;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_81a4361a46b899339f8c53e9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_936c58e5e5eb456873bebba6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_8250e19b7779b7309f4d3556.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cd4b58bacc396a01761d8104.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-0.390000px;}
.lse{letter-spacing:-0.270000px;}
.ls12{letter-spacing:-0.249600px;}
.lsb{letter-spacing:-0.235200px;}
.ls3{letter-spacing:-0.108000px;}
.lsa{letter-spacing:-0.050400px;}
.ls2{letter-spacing:-0.030960px;}
.ls6{letter-spacing:-0.030240px;}
.ls8{letter-spacing:-0.018000px;}
.ls5{letter-spacing:-0.003240px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.042480px;}
.lsc{letter-spacing:0.069840px;}
.lsd{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.096480px;}
.ls10{letter-spacing:0.114600px;}
.ls7{letter-spacing:0.117000px;}
.ls11{letter-spacing:0.119400px;}
.lsf{letter-spacing:0.125400px;}
.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:-13.706520px;}
.ws4{word-spacing:-13.704120px;}
.ws7{word-spacing:-13.701720px;}
.ws1{word-spacing:-13.587120px;}
.ws5{word-spacing:-13.536720px;}
.ws3{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.351920px;}
.ws0{word-spacing:-8.786880px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-1.042200px;}
._1{width:1.383480px;}
._11{width:2.452200px;}
._6{width:3.727440px;}
._3{width:5.711400px;}
._e{width:6.747720px;}
._c{width:8.122080px;}
._12{width:9.787800px;}
._f{width:11.091000px;}
._5{width:12.200160px;}
._b{width:14.727720px;}
._a{width:16.172280px;}
._10{width:17.374680px;}
._16{width:18.766560px;}
._d{width:19.839600px;}
._1d{width:20.873640px;}
._13{width:21.883680px;}
._15{width:22.965840px;}
._1a{width:24.408720px;}
._1e{width:25.426560px;}
._7{width:26.993880px;}
._14{width:28.316520px;}
._17{width:29.416800px;}
._18{width:30.646920px;}
._19{width:32.058600px;}
._1c{width:33.303240px;}
._1b{width:34.712640px;}
._8{width:36.913680px;}
._9{width:38.116080px;}
._1f{width:42.023880px;}
._21{width:43.226280px;}
._4{width:53.206200px;}
._20{width:1322.520000px;}
._0{width:1349.592000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.y0{bottom:0.000000px;}
.y19{bottom:16.740000px;}
.y18{bottom:38.730000px;}
.y1b{bottom:38.790000px;}
.y2{bottom:60.570000px;}
.y17{bottom:60.690000px;}
.y67{bottom:78.750000px;}
.y16{bottom:82.650000px;}
.y87{bottom:85.590000px;}
.y37{bottom:86.670000px;}
.yc7{bottom:87.570000px;}
.y8e{bottom:97.650000px;}
.y72{bottom:97.920000px;}
.y1d{bottom:98.460000px;}
.y66{bottom:99.810000px;}
.y15{bottom:104.700000px;}
.ya2{bottom:105.120000px;}
.yc6{bottom:105.840000px;}
.y86{bottom:106.650000px;}
.y36{bottom:107.730000px;}
.y8d{bottom:118.710000px;}
.y71{bottom:118.980000px;}
.ya1{bottom:123.480000px;}
.yc5{bottom:124.200000px;}
.y6a{bottom:124.740000px;}
.y14{bottom:126.660000px;}
.y85{bottom:127.710000px;}
.y1c{bottom:128.160000px;}
.y35{bottom:128.790000px;}
.y65{bottom:129.870000px;}
.ya0{bottom:141.750000px;}
.yc4{bottom:142.470000px;}
.y1a{bottom:142.920000px;}
.y69{bottom:148.140000px;}
.y13{bottom:148.620000px;}
.y84{bottom:148.770000px;}
.y93{bottom:157.770000px;}
.y34{bottom:158.850000px;}
.y64{bottom:159.930000px;}
.y9f{bottom:160.020000px;}
.y53{bottom:160.830000px;}
.y83{bottom:169.830000px;}
.y12{bottom:170.580000px;}
.y70{bottom:171.630000px;}
.y68{bottom:172.890000px;}
.y9e{bottom:178.380000px;}
.y92{bottom:178.830000px;}
.yc3{bottom:179.100000px;}
.y63{bottom:180.990000px;}
.y52{bottom:181.890000px;}
.y33{bottom:188.910000px;}
.y8c{bottom:190.890000px;}
.y11{bottom:192.540000px;}
.y6f{bottom:196.290000px;}
.y9d{bottom:196.650000px;}
.yc2{bottom:197.460000px;}
.y82{bottom:199.890000px;}
.y62{bottom:202.050000px;}
.y51{bottom:202.950000px;}
.ya{bottom:205.650000px;}
.y32{bottom:209.970000px;}
.y8b{bottom:211.950000px;}
.y10{bottom:214.500000px;}
.y9c{bottom:215.010000px;}
.yc1{bottom:215.730000px;}
.y81{bottom:220.950000px;}
.y31{bottom:231.030000px;}
.y61{bottom:232.110000px;}
.y50{bottom:233.010000px;}
.yc0{bottom:234.000000px;}
.yf{bottom:236.460000px;}
.y80{bottom:242.010000px;}
.y9b{bottom:245.100000px;}
.y30{bottom:252.120000px;}
.ybf{bottom:252.390000px;}
.ye{bottom:258.510000px;}
.y60{bottom:262.110000px;}
.y4f{bottom:263.100000px;}
.ybe{bottom:270.660000px;}
.y2f{bottom:273.180000px;}
.y9a{bottom:275.160000px;}
.yd{bottom:280.470000px;}
.y4e{bottom:284.160000px;}
.ybd{bottom:289.020000px;}
.y5f{bottom:292.170000px;}
.y91{bottom:293.160000px;}
.y2e{bottom:294.240000px;}
.y99{bottom:296.220000px;}
.yc{bottom:302.460000px;}
.y4d{bottom:305.220000px;}
.ybc{bottom:307.290000px;}
.y90{bottom:314.220000px;}
.y98{bottom:317.280000px;}
.y5e{bottom:322.230000px;}
.y2d{bottom:324.300000px;}
.ybb{bottom:325.650000px;}
.y4c{bottom:326.280000px;}
.yb{bottom:333.420000px;}
.y8f{bottom:335.280000px;}
.yba{bottom:343.920000px;}
.y2c{bottom:345.360000px;}
.y4b{bottom:347.340000px;}
.y5d{bottom:352.290000px;}
.y7f{bottom:356.340000px;}
.yb9{bottom:362.280000px;}
.y2b{bottom:366.420000px;}
.y8a{bottom:368.400000px;}
.y5c{bottom:373.350000px;}
.y4a{bottom:377.400000px;}
.yb8{bottom:380.550000px;}
.y2a{bottom:387.480000px;}
.y89{bottom:389.460000px;}
.y49{bottom:398.460000px;}
.yb7{bottom:398.910000px;}
.y5b{bottom:403.410000px;}
.y29{bottom:408.540000px;}
.y97{bottom:410.520000px;}
.yb6{bottom:417.180000px;}
.y48{bottom:419.520000px;}
.y5a{bottom:424.470000px;}
.y28{bottom:429.600000px;}
.y96{bottom:431.490000px;}
.yb5{bottom:435.450000px;}
.y47{bottom:440.490000px;}
.y7e{bottom:449.490000px;}
.y95{bottom:452.550000px;}
.yb4{bottom:453.810000px;}
.y59{bottom:454.530000px;}
.y27{bottom:459.660000px;}
.y46{bottom:461.550000px;}
.y7d{bottom:470.550000px;}
.yb3{bottom:472.080000px;}
.y94{bottom:473.610000px;}
.y26{bottom:480.720000px;}
.y45{bottom:482.610000px;}
.y58{bottom:484.590000px;}
.yb2{bottom:490.440000px;}
.y7c{bottom:491.610000px;}
.y25{bottom:501.780000px;}
.y44{bottom:503.670000px;}
.y57{bottom:505.680000px;}
.yb1{bottom:508.740000px;}
.y7b{bottom:512.700000px;}
.y24{bottom:522.870000px;}
.y43{bottom:524.760000px;}
.yb0{bottom:527.100000px;}
.y88{bottom:533.760000px;}
.y56{bottom:535.830000px;}
.y7a{bottom:542.760000px;}
.y23{bottom:543.930000px;}
.yaf{bottom:545.370000px;}
.y6e{bottom:545.820000px;}
.y42{bottom:554.820000px;}
.y55{bottom:559.140000px;}
.yae{bottom:563.730000px;}
.y79{bottom:563.820000px;}
.y22{bottom:564.990000px;}
.y6d{bottom:566.880000px;}
.y41{bottom:575.880000px;}
.yad{bottom:582.000000px;}
.y54{bottom:583.890000px;}
.y78{bottom:584.880000px;}
.y21{bottom:586.050000px;}
.y9{bottom:588.840000px;}
.y40{bottom:596.940000px;}
.yac{bottom:600.360000px;}
.y77{bottom:605.940000px;}
.y20{bottom:607.110000px;}
.y3f{bottom:618.000000px;}
.yab{bottom:618.630000px;}
.y6c{bottom:627.000000px;}
.y8{bottom:634.020000px;}
.y76{bottom:636.000000px;}
.yaa{bottom:636.900000px;}
.y1f{bottom:637.170000px;}
.y3e{bottom:648.060000px;}
.ya9{bottom:655.260000px;}
.y75{bottom:657.060000px;}
.y7{bottom:659.760000px;}
.y3d{bottom:669.120000px;}
.ya8{bottom:673.530000px;}
.y74{bottom:678.120000px;}
.y3c{bottom:690.180000px;}
.ya7{bottom:691.890000px;}
.y73{bottom:699.180000px;}
.y6{bottom:700.350000px;}
.ya6{bottom:710.160000px;}
.y6b{bottom:711.240000px;}
.y3b{bottom:720.240000px;}
.y5{bottom:724.560000px;}
.y1e{bottom:726.090000px;}
.ya5{bottom:728.520000px;}
.y3a{bottom:741.300000px;}
.ya4{bottom:746.790000px;}
.y4{bottom:757.680000px;}
.y39{bottom:762.360000px;}
.ya3{bottom:765.180000px;}
.y3{bottom:781.920000px;}
.y38{bottom:783.450000px;}
.y1{bottom:823.410000px;}
.h6{height:38.917090px;}
.hc{height:40.678418px;}
.h9{height:48.377812px;}
.h4{height:50.246367px;}
.h2{height:52.998047px;}
.he{height:53.709961px;}
.hd{height:55.291992px;}
.h7{height:59.797090px;}
.h5{height:61.558418px;}
.ha{height:62.010000px;}
.hb{height:62.585859px;}
.h3{height:67.456230px;}
.h8{height:356.640000px;}
.h0{height:893.070000px;}
.h1{height:893.250000px;}
.w3{width:436.020000px;}
.w1{width:631.500000px;}
.w2{width:631.529991px;}
.w0{width:631.530000px;}
.x0{left:0.000000px;}
.x9{left:8.100000px;}
.x1{left:85.049991px;}
.x8{left:87.570000px;}
.x4{left:98.819991px;}
.x2{left:107.099991px;}
.x6{left:114.959991px;}
.x11{left:133.049991px;}
.xa{left:138.629991px;}
.x7{left:144.479991px;}
.xc{left:173.009991px;}
.x3{left:211.349991px;}
.x10{left:214.049991px;}
.xf{left:219.539991px;}
.xd{left:240.059991px;}
.x12{left:241.679991px;}
.x5{left:286.049991px;}
.xb{left:432.779991px;}
.xe{left:546.359991px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-0.346667pt;}
.lse{letter-spacing:-0.240000pt;}
.ls12{letter-spacing:-0.221867pt;}
.lsb{letter-spacing:-0.209067pt;}
.ls3{letter-spacing:-0.096000pt;}
.lsa{letter-spacing:-0.044800pt;}
.ls2{letter-spacing:-0.027520pt;}
.ls6{letter-spacing:-0.026880pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:-0.002880pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.037760pt;}
.lsc{letter-spacing:0.062080pt;}
.lsd{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.085760pt;}
.ls10{letter-spacing:0.101867pt;}
.ls7{letter-spacing:0.104000pt;}
.ls11{letter-spacing:0.106133pt;}
.lsf{letter-spacing:0.111467pt;}
.ws8{word-spacing:-12.183573pt;}
.ws4{word-spacing:-12.181440pt;}
.ws7{word-spacing:-12.179307pt;}
.ws1{word-spacing:-12.077440pt;}
.ws5{word-spacing:-12.032640pt;}
.ws3{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.868373pt;}
.ws0{word-spacing:-7.810560pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-0.926400pt;}
._1{width:1.229760pt;}
._11{width:2.179733pt;}
._6{width:3.313280pt;}
._3{width:5.076800pt;}
._e{width:5.997973pt;}
._c{width:7.219627pt;}
._12{width:8.700267pt;}
._f{width:9.858667pt;}
._5{width:10.844587pt;}
._b{width:13.091307pt;}
._a{width:14.375360pt;}
._10{width:15.444160pt;}
._16{width:16.681387pt;}
._d{width:17.635200pt;}
._1d{width:18.554347pt;}
._13{width:19.452160pt;}
._15{width:20.414080pt;}
._1a{width:21.696640pt;}
._1e{width:22.601387pt;}
._7{width:23.994560pt;}
._14{width:25.170240pt;}
._17{width:26.148267pt;}
._18{width:27.241707pt;}
._19{width:28.496533pt;}
._1c{width:29.602880pt;}
._1b{width:30.855680pt;}
._8{width:32.812160pt;}
._9{width:33.880960pt;}
._1f{width:37.354560pt;}
._21{width:38.423360pt;}
._4{width:47.294400pt;}
._20{width:1175.573333pt;}
._0{width:1199.637333pt;}
.fs3{font-size:34.560000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:14.880000pt;}
.y18{bottom:34.426667pt;}
.y1b{bottom:34.480000pt;}
.y2{bottom:53.840000pt;}
.y17{bottom:53.946667pt;}
.y67{bottom:70.000000pt;}
.y16{bottom:73.466667pt;}
.y87{bottom:76.080000pt;}
.y37{bottom:77.040000pt;}
.yc7{bottom:77.840000pt;}
.y8e{bottom:86.800000pt;}
.y72{bottom:87.040000pt;}
.y1d{bottom:87.520000pt;}
.y66{bottom:88.720000pt;}
.y15{bottom:93.066667pt;}
.ya2{bottom:93.440000pt;}
.yc6{bottom:94.080000pt;}
.y86{bottom:94.800000pt;}
.y36{bottom:95.760000pt;}
.y8d{bottom:105.520000pt;}
.y71{bottom:105.760000pt;}
.ya1{bottom:109.760000pt;}
.yc5{bottom:110.400000pt;}
.y6a{bottom:110.880000pt;}
.y14{bottom:112.586667pt;}
.y85{bottom:113.520000pt;}
.y1c{bottom:113.920000pt;}
.y35{bottom:114.480000pt;}
.y65{bottom:115.440000pt;}
.ya0{bottom:126.000000pt;}
.yc4{bottom:126.640000pt;}
.y1a{bottom:127.040000pt;}
.y69{bottom:131.680000pt;}
.y13{bottom:132.106667pt;}
.y84{bottom:132.240000pt;}
.y93{bottom:140.240000pt;}
.y34{bottom:141.200000pt;}
.y64{bottom:142.160000pt;}
.y9f{bottom:142.240000pt;}
.y53{bottom:142.960000pt;}
.y83{bottom:150.960000pt;}
.y12{bottom:151.626667pt;}
.y70{bottom:152.560000pt;}
.y68{bottom:153.680000pt;}
.y9e{bottom:158.560000pt;}
.y92{bottom:158.960000pt;}
.yc3{bottom:159.200000pt;}
.y63{bottom:160.880000pt;}
.y52{bottom:161.680000pt;}
.y33{bottom:167.920000pt;}
.y8c{bottom:169.680000pt;}
.y11{bottom:171.146667pt;}
.y6f{bottom:174.480000pt;}
.y9d{bottom:174.800000pt;}
.yc2{bottom:175.520000pt;}
.y82{bottom:177.680000pt;}
.y62{bottom:179.600000pt;}
.y51{bottom:180.400000pt;}
.ya{bottom:182.800000pt;}
.y32{bottom:186.640000pt;}
.y8b{bottom:188.400000pt;}
.y10{bottom:190.666667pt;}
.y9c{bottom:191.120000pt;}
.yc1{bottom:191.760000pt;}
.y81{bottom:196.400000pt;}
.y31{bottom:205.360000pt;}
.y61{bottom:206.320000pt;}
.y50{bottom:207.120000pt;}
.yc0{bottom:208.000000pt;}
.yf{bottom:210.186667pt;}
.y80{bottom:215.120000pt;}
.y9b{bottom:217.866667pt;}
.y30{bottom:224.106667pt;}
.ybf{bottom:224.346667pt;}
.ye{bottom:229.786667pt;}
.y60{bottom:232.986667pt;}
.y4f{bottom:233.866667pt;}
.ybe{bottom:240.586667pt;}
.y2f{bottom:242.826667pt;}
.y9a{bottom:244.586667pt;}
.yd{bottom:249.306667pt;}
.y4e{bottom:252.586667pt;}
.ybd{bottom:256.906667pt;}
.y5f{bottom:259.706667pt;}
.y91{bottom:260.586667pt;}
.y2e{bottom:261.546667pt;}
.y99{bottom:263.306667pt;}
.yc{bottom:268.853333pt;}
.y4d{bottom:271.306667pt;}
.ybc{bottom:273.146667pt;}
.y90{bottom:279.306667pt;}
.y98{bottom:282.026667pt;}
.y5e{bottom:286.426667pt;}
.y2d{bottom:288.266667pt;}
.ybb{bottom:289.466667pt;}
.y4c{bottom:290.026667pt;}
.yb{bottom:296.373333pt;}
.y8f{bottom:298.026667pt;}
.yba{bottom:305.706667pt;}
.y2c{bottom:306.986667pt;}
.y4b{bottom:308.746667pt;}
.y5d{bottom:313.146667pt;}
.y7f{bottom:316.746667pt;}
.yb9{bottom:322.026667pt;}
.y2b{bottom:325.706667pt;}
.y8a{bottom:327.466667pt;}
.y5c{bottom:331.866667pt;}
.y4a{bottom:335.466667pt;}
.yb8{bottom:338.266667pt;}
.y2a{bottom:344.426667pt;}
.y89{bottom:346.186667pt;}
.y49{bottom:354.186667pt;}
.yb7{bottom:354.586667pt;}
.y5b{bottom:358.586667pt;}
.y29{bottom:363.146667pt;}
.y97{bottom:364.906667pt;}
.yb6{bottom:370.826667pt;}
.y48{bottom:372.906667pt;}
.y5a{bottom:377.306667pt;}
.y28{bottom:381.866667pt;}
.y96{bottom:383.546667pt;}
.yb5{bottom:387.066667pt;}
.y47{bottom:391.546667pt;}
.y7e{bottom:399.546667pt;}
.y95{bottom:402.266667pt;}
.yb4{bottom:403.386667pt;}
.y59{bottom:404.026667pt;}
.y27{bottom:408.586667pt;}
.y46{bottom:410.266667pt;}
.y7d{bottom:418.266667pt;}
.yb3{bottom:419.626667pt;}
.y94{bottom:420.986667pt;}
.y26{bottom:427.306667pt;}
.y45{bottom:428.986667pt;}
.y58{bottom:430.746667pt;}
.yb2{bottom:435.946667pt;}
.y7c{bottom:436.986667pt;}
.y25{bottom:446.026667pt;}
.y44{bottom:447.706667pt;}
.y57{bottom:449.493333pt;}
.yb1{bottom:452.213333pt;}
.y7b{bottom:455.733333pt;}
.y24{bottom:464.773333pt;}
.y43{bottom:466.453333pt;}
.yb0{bottom:468.533333pt;}
.y88{bottom:474.453333pt;}
.y56{bottom:476.293333pt;}
.y7a{bottom:482.453333pt;}
.y23{bottom:483.493333pt;}
.yaf{bottom:484.773333pt;}
.y6e{bottom:485.173333pt;}
.y42{bottom:493.173333pt;}
.y55{bottom:497.013333pt;}
.yae{bottom:501.093333pt;}
.y79{bottom:501.173333pt;}
.y22{bottom:502.213333pt;}
.y6d{bottom:503.893333pt;}
.y41{bottom:511.893333pt;}
.yad{bottom:517.333333pt;}
.y54{bottom:519.013333pt;}
.y78{bottom:519.893333pt;}
.y21{bottom:520.933333pt;}
.y9{bottom:523.413333pt;}
.y40{bottom:530.613333pt;}
.yac{bottom:533.653333pt;}
.y77{bottom:538.613333pt;}
.y20{bottom:539.653333pt;}
.y3f{bottom:549.333333pt;}
.yab{bottom:549.893333pt;}
.y6c{bottom:557.333333pt;}
.y8{bottom:563.573333pt;}
.y76{bottom:565.333333pt;}
.yaa{bottom:566.133333pt;}
.y1f{bottom:566.373333pt;}
.y3e{bottom:576.053333pt;}
.ya9{bottom:582.453333pt;}
.y75{bottom:584.053333pt;}
.y7{bottom:586.453333pt;}
.y3d{bottom:594.773333pt;}
.ya8{bottom:598.693333pt;}
.y74{bottom:602.773333pt;}
.y3c{bottom:613.493333pt;}
.ya7{bottom:615.013333pt;}
.y73{bottom:621.493333pt;}
.y6{bottom:622.533333pt;}
.ya6{bottom:631.253333pt;}
.y6b{bottom:632.213333pt;}
.y3b{bottom:640.213333pt;}
.y5{bottom:644.053333pt;}
.y1e{bottom:645.413333pt;}
.ya5{bottom:647.573333pt;}
.y3a{bottom:658.933333pt;}
.ya4{bottom:663.813333pt;}
.y4{bottom:673.493333pt;}
.y39{bottom:677.653333pt;}
.ya3{bottom:680.160000pt;}
.y3{bottom:695.040000pt;}
.y38{bottom:696.400000pt;}
.y1{bottom:731.920000pt;}
.h6{height:34.592969pt;}
.hc{height:36.158594pt;}
.h9{height:43.002500pt;}
.h4{height:44.663437pt;}
.h2{height:47.109375pt;}
.he{height:47.742188pt;}
.hd{height:49.148438pt;}
.h7{height:53.152969pt;}
.h5{height:54.718594pt;}
.ha{height:55.120000pt;}
.hb{height:55.631875pt;}
.h3{height:59.961094pt;}
.h8{height:317.013333pt;}
.h0{height:793.840000pt;}
.h1{height:794.000000pt;}
.w3{width:387.573333pt;}
.w1{width:561.333333pt;}
.w2{width:561.359992pt;}
.w0{width:561.360000pt;}
.x0{left:0.000000pt;}
.x9{left:7.200000pt;}
.x1{left:75.599992pt;}
.x8{left:77.840000pt;}
.x4{left:87.839992pt;}
.x2{left:95.199992pt;}
.x6{left:102.186658pt;}
.x11{left:118.266658pt;}
.xa{left:123.226658pt;}
.x7{left:128.426658pt;}
.xc{left:153.786658pt;}
.x3{left:187.866658pt;}
.x10{left:190.266658pt;}
.xf{left:195.146658pt;}
.xd{left:213.386658pt;}
.x12{left:214.826658pt;}
.x5{left:254.266658pt;}
.xb{left:384.693325pt;}
.xe{left:485.653325pt;}
}




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