
    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_455c8a87f52d4b3480e882f4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.947266;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_47ce8d0b18c786f389f076c7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dc2f4db35535bff433e2d25d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.947266;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_1e1097f52af4197acbd9ec97.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.728027;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);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.000006px;}
.lsb{letter-spacing:-0.000003px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000001px;}
.ls3{letter-spacing:0.000003px;}
.ls0{letter-spacing:39.744000px;}
.ls9{letter-spacing:40.464000px;}
.ls8{letter-spacing:43.344000px;}
.lsd{letter-spacing:46.224000px;}
.ls1{letter-spacing:46.944000px;}
.lsc{letter-spacing:47.664000px;}
.ls7{letter-spacing:62.064000px;}
.ls6{letter-spacing:82.224000px;}
.lsa{letter-spacing:85.104000px;}
.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:-72.000000px;}
.ws1{word-spacing:-23.040003px;}
.ws3{word-spacing:-23.040001px;}
.ws0{word-spacing:-23.040000px;}
.ws7{word-spacing:-23.039997px;}
.ws2{word-spacing:-23.039994px;}
.ws5{word-spacing:-21.600000px;}
.ws6{word-spacing:0.000000px;}
._4{margin-left:-5.760000px;}
._d{margin-left:-4.320000px;}
._f{margin-left:-2.880000px;}
._a{margin-left:-1.440000px;}
._5{width:1.296000px;}
._1c{width:2.808000px;}
._24{width:4.248000px;}
._6{width:5.688000px;}
._7{width:6.924000px;}
._e{width:8.568000px;}
._21{width:10.008000px;}
._b{width:11.448000px;}
._8{width:13.608000px;}
._1e{width:14.976000px;}
._c{width:16.020000px;}
._17{width:17.388000px;}
._18{width:18.576000px;}
._22{width:19.584000px;}
._9{width:20.808000px;}
._1a{width:25.128000px;}
._1b{width:26.496000px;}
._27{width:28.008000px;}
._19{width:30.168000px;}
._0{width:31.656000px;}
._3{width:33.048000px;}
._2{width:34.488000px;}
._11{width:36.720000px;}
._1{width:38.880000px;}
._26{width:40.248000px;}
._20{width:46.008000px;}
._12{width:48.168000px;}
._29{width:49.259996px;}
._15{width:52.488000px;}
._25{width:54.647996px;}
._1d{width:58.248000px;}
._2a{width:65.448000px;}
._16{width:71.928000px;}
._10{width:77.736000px;}
._2b{width:95.687996px;}
._28{width:105.024000px;}
._2c{width:115.896000px;}
._13{width:118.260000px;}
._14{width:119.640000px;}
._23{width:132.408000px;}
._1f{width:841.116000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y8a{bottom:-67.680000px;}
.y89{bottom:-46.620000px;}
.y88{bottom:-25.560000px;}
.y9d{bottom:-13.860000px;}
.y87{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.y4{bottom:2.340000px;}
.yaf{bottom:4.845000px;}
.ya3{bottom:4.860000px;}
.yb5{bottom:5.025000px;}
.ya6{bottom:5.040000px;}
.yaa{bottom:5.070000px;}
.y9c{bottom:7.200000px;}
.ya1{bottom:8.820000px;}
.y86{bottom:16.740000px;}
.y9f{bottom:19.440000px;}
.y9b{bottom:28.440000px;}
.ya0{bottom:29.880000px;}
.y85{bottom:37.980000px;}
.y9a{bottom:49.500000px;}
.y84{bottom:59.040000px;}
.y99{bottom:70.740000px;}
.y83{bottom:80.100000px;}
.y98{bottom:91.800000px;}
.yd2{bottom:96.840000px;}
.y82{bottom:101.340000px;}
.y75{bottom:106.020000px;}
.y97{bottom:112.860000px;}
.yd1{bottom:117.900000px;}
.y81{bottom:122.400000px;}
.y7e{bottom:127.080000px;}
.y74{bottom:127.260000px;}
.y96{bottom:134.100000px;}
.y3b{bottom:135.540000px;}
.yd0{bottom:138.960000px;}
.y80{bottom:143.640000px;}
.y73{bottom:148.320000px;}
.y3a{bottom:156.810000px;}
.ycf{bottom:160.230000px;}
.y72{bottom:169.410000px;}
.y39{bottom:177.870000px;}
.yce{bottom:181.290000px;}
.y71{bottom:190.650000px;}
.y38{bottom:198.930000px;}
.ycd{bottom:202.530000px;}
.y70{bottom:211.710000px;}
.y37{bottom:220.170000px;}
.ycc{bottom:223.590000px;}
.y7d{bottom:232.770000px;}
.y6f{bottom:232.950000px;}
.y36{bottom:241.230000px;}
.ycb{bottom:244.650000px;}
.y6e{bottom:254.010000px;}
.y35{bottom:262.290000px;}
.yca{bottom:262.485000px;}
.y6d{bottom:275.070000px;}
.y34{bottom:283.530000px;}
.yc9{bottom:285.705000px;}
.y7c{bottom:296.130000px;}
.y6c{bottom:296.310000px;}
.y33{bottom:304.590000px;}
.yc8{bottom:309.105000px;}
.y6b{bottom:317.370000px;}
.y32{bottom:325.830000px;}
.yc7{bottom:332.505000px;}
.y6a{bottom:338.430000px;}
.y31{bottom:346.890000px;}
.yc6{bottom:355.905000px;}
.y69{bottom:359.670000px;}
.y30{bottom:367.950000px;}
.yc5{bottom:379.305000px;}
.y68{bottom:380.730000px;}
.y2f{bottom:389.190000px;}
.y7b{bottom:401.790000px;}
.y67{bottom:401.970000px;}
.yc4{bottom:402.705000px;}
.y2e{bottom:410.250000px;}
.y66{bottom:423.030000px;}
.yc3{bottom:426.105000px;}
.y2d{bottom:431.535000px;}
.y65{bottom:444.135000px;}
.yc2{bottom:449.535000px;}
.y2c{bottom:452.595000px;}
.y64{bottom:465.375000px;}
.yc1{bottom:472.935000px;}
.y2b{bottom:473.655000px;}
.y63{bottom:486.435000px;}
.y2a{bottom:494.895000px;}
.yc0{bottom:496.335000px;}
.y7a{bottom:507.495000px;}
.y62{bottom:507.675000px;}
.y29{bottom:515.955000px;}
.ybf{bottom:519.555000px;}
.y61{bottom:528.735000px;}
.y28{bottom:537.195000px;}
.ybe{bottom:542.955000px;}
.y7f{bottom:544.755000px;}
.y60{bottom:549.795000px;}
.y27{bottom:558.255000px;}
.ybd{bottom:566.355000px;}
.y79{bottom:570.855000px;}
.y5f{bottom:571.035000px;}
.y26{bottom:579.315000px;}
.ybc{bottom:589.755000px;}
.y5e{bottom:592.095000px;}
.y25{bottom:600.555000px;}
.y5d{bottom:613.155000px;}
.y24{bottom:621.615000px;}
.y5c{bottom:634.395000px;}
.ybb{bottom:636.555000px;}
.y23{bottom:642.855000px;}
.y95{bottom:646.455000px;}
.y5b{bottom:655.455000px;}
.yba{bottom:659.955000px;}
.y22{bottom:663.915000px;}
.y94{bottom:667.695000px;}
.y78{bottom:676.515000px;}
.y5a{bottom:676.695000px;}
.yb9{bottom:683.355000px;}
.y21{bottom:684.975000px;}
.y93{bottom:688.755000px;}
.y59{bottom:697.755000px;}
.y20{bottom:706.215000px;}
.yb8{bottom:706.575000px;}
.y92{bottom:709.815000px;}
.y58{bottom:718.845000px;}
.y1f{bottom:727.305000px;}
.yb7{bottom:730.005000px;}
.y91{bottom:731.085000px;}
.y57{bottom:740.085000px;}
.y1e{bottom:748.365000px;}
.y90{bottom:752.145000px;}
.yb6{bottom:753.405000px;}
.y56{bottom:761.145000px;}
.y1d{bottom:769.605000px;}
.y8f{bottom:773.205000px;}
.yb4{bottom:776.820000px;}
.y55{bottom:782.205000px;}
.y1c{bottom:790.665000px;}
.y8e{bottom:794.445000px;}
.yb3{bottom:800.205000px;}
.y54{bottom:803.445000px;}
.y1b{bottom:811.905000px;}
.y8d{bottom:815.505000px;}
.yb2{bottom:823.605000px;}
.y53{bottom:824.505000px;}
.y1a{bottom:832.965000px;}
.y8c{bottom:836.745000px;}
.y52{bottom:845.745000px;}
.yb1{bottom:847.005000px;}
.y19{bottom:854.025000px;}
.y8b{bottom:857.805000px;}
.y51{bottom:866.805000px;}
.yb0{bottom:870.420000px;}
.y18{bottom:875.265000px;}
.y50{bottom:887.865000px;}
.yae{bottom:893.820000px;}
.y17{bottom:896.325000px;}
.y4f{bottom:909.105000px;}
.yad{bottom:917.025000px;}
.y16{bottom:917.565000px;}
.y4e{bottom:930.165000px;}
.y15{bottom:938.625000px;}
.yac{bottom:940.425000px;}
.y77{bottom:951.225000px;}
.y4d{bottom:951.405000px;}
.y14{bottom:959.685000px;}
.yab{bottom:963.825000px;}
.y4c{bottom:972.465000px;}
.y13{bottom:980.925000px;}
.ya9{bottom:987.240000px;}
.y4b{bottom:993.570000px;}
.y12{bottom:1002.030000px;}
.ya8{bottom:1010.670000px;}
.y4a{bottom:1014.810000px;}
.y11{bottom:1023.090000px;}
.ya7{bottom:1034.070000px;}
.y49{bottom:1035.870000px;}
.y10{bottom:1044.330000px;}
.y48{bottom:1056.930000px;}
.ya5{bottom:1057.470000px;}
.yf{bottom:1065.390000px;}
.y47{bottom:1078.170000px;}
.ya4{bottom:1080.870000px;}
.ye{bottom:1086.630000px;}
.y46{bottom:1099.230000px;}
.ya2{bottom:1104.270000px;}
.yd{bottom:1107.690000px;}
.y45{bottom:1120.470000px;}
.y9e{bottom:1127.490000px;}
.yc{bottom:1128.750000px;}
.y44{bottom:1141.530000px;}
.yb{bottom:1149.990000px;}
.y43{bottom:1162.590000px;}
.ya{bottom:1171.050000px;}
.y42{bottom:1183.830000px;}
.y9{bottom:1201.110000px;}
.y41{bottom:1204.890000px;}
.y8{bottom:1222.350000px;}
.y76{bottom:1225.950000px;}
.y40{bottom:1226.130000px;}
.y7{bottom:1243.410000px;}
.y3f{bottom:1247.190000px;}
.y6{bottom:1264.650000px;}
.y3e{bottom:1268.250000px;}
.y3d{bottom:1289.520000px;}
.y5{bottom:1293.840000px;}
.y3c{bottom:1328.220000px;}
.y1{bottom:1333.260000px;}
.y2{bottom:1334.970865px;}
.y3{bottom:1353.510865px;}
.h3{height:19.260000px;}
.h9{height:22.485000px;}
.hd{height:22.500000px;}
.ha{height:22.665000px;}
.hc{height:22.680000px;}
.hb{height:22.701000px;}
.he{height:22.710000px;}
.h4{height:38.680664px;}
.h8{height:51.285000px;}
.h2{height:51.574219px;}
.h5{height:74.004654px;}
.h7{height:151.050000px;}
.h6{height:160.545000px;}
.h1{height:1404.000000px;}
.h0{height:1404.180000px;}
.w8{width:19.971000px;}
.w6{width:24.291000px;}
.w2{width:105.336000px;}
.w5{width:225.915000px;}
.w3{width:336.261000px;}
.w9{width:431.700000px;}
.w7{width:452.406000px;}
.w4{width:477.426000px;}
.w1{width:918.000000px;}
.w0{width:918.180000px;}
.x0{left:0.000000px;}
.x1e{left:7.731000px;}
.x14{left:10.791000px;}
.x4{left:12.600000px;}
.x3{left:31.860000px;}
.x1d{left:50.745000px;}
.x1c{left:63.165000px;}
.x1f{left:66.945000px;}
.x21{left:78.105000px;}
.x22{left:89.265000px;}
.x18{left:92.205000px;}
.x2{left:106.416000px;}
.x1a{left:109.965000px;}
.x20{left:132.165000px;}
.x11{left:148.896000px;}
.x6{left:152.850000px;}
.x15{left:168.105000px;}
.x12{left:180.930000px;}
.xa{left:207.570000px;}
.xc{left:209.370000px;}
.x23{left:218.190000px;}
.x19{left:234.030000px;}
.xe{left:244.650000px;}
.x9{left:253.470000px;}
.xb{left:259.950000px;}
.x5{left:273.990000px;}
.xd{left:276.510000px;}
.x7{left:354.135000px;}
.xf{left:388.335000px;}
.x8{left:414.795000px;}
.x13{left:421.635000px;}
.x10{left:427.215000px;}
.x17{left:446.655000px;}
.x1{left:459.075000px;}
.x16{left:521.205000px;}
.x24{left:553.065000px;}
.x1b{left:585.300000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.000005pt;}
.lsb{letter-spacing:-0.000003pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000001pt;}
.ls3{letter-spacing:0.000003pt;}
.ls0{letter-spacing:35.328000pt;}
.ls9{letter-spacing:35.968000pt;}
.ls8{letter-spacing:38.528000pt;}
.lsd{letter-spacing:41.088000pt;}
.ls1{letter-spacing:41.728000pt;}
.lsc{letter-spacing:42.368000pt;}
.ls7{letter-spacing:55.168000pt;}
.ls6{letter-spacing:73.088000pt;}
.lsa{letter-spacing:75.648000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws1{word-spacing:-20.480003pt;}
.ws3{word-spacing:-20.480001pt;}
.ws0{word-spacing:-20.480000pt;}
.ws7{word-spacing:-20.479997pt;}
.ws2{word-spacing:-20.479995pt;}
.ws5{word-spacing:-19.200000pt;}
.ws6{word-spacing:0.000000pt;}
._4{margin-left:-5.120000pt;}
._d{margin-left:-3.840000pt;}
._f{margin-left:-2.560000pt;}
._a{margin-left:-1.280000pt;}
._5{width:1.152000pt;}
._1c{width:2.496000pt;}
._24{width:3.776000pt;}
._6{width:5.056000pt;}
._7{width:6.154667pt;}
._e{width:7.616000pt;}
._21{width:8.896000pt;}
._b{width:10.176000pt;}
._8{width:12.096000pt;}
._1e{width:13.312000pt;}
._c{width:14.240000pt;}
._17{width:15.456000pt;}
._18{width:16.512000pt;}
._22{width:17.408000pt;}
._9{width:18.496000pt;}
._1a{width:22.336000pt;}
._1b{width:23.552000pt;}
._27{width:24.896000pt;}
._19{width:26.816000pt;}
._0{width:28.138667pt;}
._3{width:29.376000pt;}
._2{width:30.656000pt;}
._11{width:32.640000pt;}
._1{width:34.560000pt;}
._26{width:35.776000pt;}
._20{width:40.896000pt;}
._12{width:42.816000pt;}
._29{width:43.786663pt;}
._15{width:46.656000pt;}
._25{width:48.575996pt;}
._1d{width:51.776000pt;}
._2a{width:58.176000pt;}
._16{width:63.936000pt;}
._10{width:69.098667pt;}
._2b{width:85.055996pt;}
._28{width:93.354667pt;}
._2c{width:103.018667pt;}
._13{width:105.120000pt;}
._14{width:106.346667pt;}
._23{width:117.696000pt;}
._1f{width:747.658667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y8a{bottom:-60.160000pt;}
.y89{bottom:-41.440000pt;}
.y88{bottom:-22.720000pt;}
.y9d{bottom:-12.320000pt;}
.y87{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.080000pt;}
.yaf{bottom:4.306667pt;}
.ya3{bottom:4.320000pt;}
.yb5{bottom:4.466667pt;}
.ya6{bottom:4.480000pt;}
.yaa{bottom:4.506667pt;}
.y9c{bottom:6.400000pt;}
.ya1{bottom:7.840000pt;}
.y86{bottom:14.880000pt;}
.y9f{bottom:17.280000pt;}
.y9b{bottom:25.280000pt;}
.ya0{bottom:26.560000pt;}
.y85{bottom:33.760000pt;}
.y9a{bottom:44.000000pt;}
.y84{bottom:52.480000pt;}
.y99{bottom:62.880000pt;}
.y83{bottom:71.200000pt;}
.y98{bottom:81.600000pt;}
.yd2{bottom:86.080000pt;}
.y82{bottom:90.080000pt;}
.y75{bottom:94.240000pt;}
.y97{bottom:100.320000pt;}
.yd1{bottom:104.800000pt;}
.y81{bottom:108.800000pt;}
.y7e{bottom:112.960000pt;}
.y74{bottom:113.120000pt;}
.y96{bottom:119.200000pt;}
.y3b{bottom:120.480000pt;}
.yd0{bottom:123.520000pt;}
.y80{bottom:127.680000pt;}
.y73{bottom:131.840000pt;}
.y3a{bottom:139.386667pt;}
.ycf{bottom:142.426667pt;}
.y72{bottom:150.586667pt;}
.y39{bottom:158.106667pt;}
.yce{bottom:161.146667pt;}
.y71{bottom:169.466667pt;}
.y38{bottom:176.826667pt;}
.ycd{bottom:180.026667pt;}
.y70{bottom:188.186667pt;}
.y37{bottom:195.706667pt;}
.ycc{bottom:198.746667pt;}
.y7d{bottom:206.906667pt;}
.y6f{bottom:207.066667pt;}
.y36{bottom:214.426667pt;}
.ycb{bottom:217.466667pt;}
.y6e{bottom:225.786667pt;}
.y35{bottom:233.146667pt;}
.yca{bottom:233.320000pt;}
.y6d{bottom:244.506667pt;}
.y34{bottom:252.026667pt;}
.yc9{bottom:253.960000pt;}
.y7c{bottom:263.226667pt;}
.y6c{bottom:263.386667pt;}
.y33{bottom:270.746667pt;}
.yc8{bottom:274.760000pt;}
.y6b{bottom:282.106667pt;}
.y32{bottom:289.626667pt;}
.yc7{bottom:295.560000pt;}
.y6a{bottom:300.826667pt;}
.y31{bottom:308.346667pt;}
.yc6{bottom:316.360000pt;}
.y69{bottom:319.706667pt;}
.y30{bottom:327.066667pt;}
.yc5{bottom:337.160000pt;}
.y68{bottom:338.426667pt;}
.y2f{bottom:345.946667pt;}
.y7b{bottom:357.146667pt;}
.y67{bottom:357.306667pt;}
.yc4{bottom:357.960000pt;}
.y2e{bottom:364.666667pt;}
.y66{bottom:376.026667pt;}
.yc3{bottom:378.760000pt;}
.y2d{bottom:383.586667pt;}
.y65{bottom:394.786667pt;}
.yc2{bottom:399.586667pt;}
.y2c{bottom:402.306667pt;}
.y64{bottom:413.666667pt;}
.yc1{bottom:420.386667pt;}
.y2b{bottom:421.026667pt;}
.y63{bottom:432.386667pt;}
.y2a{bottom:439.906667pt;}
.yc0{bottom:441.186667pt;}
.y7a{bottom:451.106667pt;}
.y62{bottom:451.266667pt;}
.y29{bottom:458.626667pt;}
.ybf{bottom:461.826667pt;}
.y61{bottom:469.986667pt;}
.y28{bottom:477.506667pt;}
.ybe{bottom:482.626667pt;}
.y7f{bottom:484.226667pt;}
.y60{bottom:488.706667pt;}
.y27{bottom:496.226667pt;}
.ybd{bottom:503.426667pt;}
.y79{bottom:507.426667pt;}
.y5f{bottom:507.586667pt;}
.y26{bottom:514.946667pt;}
.ybc{bottom:524.226667pt;}
.y5e{bottom:526.306667pt;}
.y25{bottom:533.826667pt;}
.y5d{bottom:545.026667pt;}
.y24{bottom:552.546667pt;}
.y5c{bottom:563.906667pt;}
.ybb{bottom:565.826667pt;}
.y23{bottom:571.426667pt;}
.y95{bottom:574.626667pt;}
.y5b{bottom:582.626667pt;}
.yba{bottom:586.626667pt;}
.y22{bottom:590.146667pt;}
.y94{bottom:593.506667pt;}
.y78{bottom:601.346667pt;}
.y5a{bottom:601.506667pt;}
.yb9{bottom:607.426667pt;}
.y21{bottom:608.866667pt;}
.y93{bottom:612.226667pt;}
.y59{bottom:620.226667pt;}
.y20{bottom:627.746667pt;}
.yb8{bottom:628.066667pt;}
.y92{bottom:630.946667pt;}
.y58{bottom:638.973333pt;}
.y1f{bottom:646.493333pt;}
.yb7{bottom:648.893333pt;}
.y91{bottom:649.853333pt;}
.y57{bottom:657.853333pt;}
.y1e{bottom:665.213333pt;}
.y90{bottom:668.573333pt;}
.yb6{bottom:669.693333pt;}
.y56{bottom:676.573333pt;}
.y1d{bottom:684.093333pt;}
.y8f{bottom:687.293333pt;}
.yb4{bottom:690.506667pt;}
.y55{bottom:695.293333pt;}
.y1c{bottom:702.813333pt;}
.y8e{bottom:706.173333pt;}
.yb3{bottom:711.293333pt;}
.y54{bottom:714.173333pt;}
.y1b{bottom:721.693333pt;}
.y8d{bottom:724.893333pt;}
.yb2{bottom:732.093333pt;}
.y53{bottom:732.893333pt;}
.y1a{bottom:740.413333pt;}
.y8c{bottom:743.773333pt;}
.y52{bottom:751.773333pt;}
.yb1{bottom:752.893333pt;}
.y19{bottom:759.133333pt;}
.y8b{bottom:762.493333pt;}
.y51{bottom:770.493333pt;}
.yb0{bottom:773.706667pt;}
.y18{bottom:778.013333pt;}
.y50{bottom:789.213333pt;}
.yae{bottom:794.506667pt;}
.y17{bottom:796.733333pt;}
.y4f{bottom:808.093333pt;}
.yad{bottom:815.133333pt;}
.y16{bottom:815.613333pt;}
.y4e{bottom:826.813333pt;}
.y15{bottom:834.333333pt;}
.yac{bottom:835.933333pt;}
.y77{bottom:845.533333pt;}
.y4d{bottom:845.693333pt;}
.y14{bottom:853.053333pt;}
.yab{bottom:856.733333pt;}
.y4c{bottom:864.413333pt;}
.y13{bottom:871.933333pt;}
.ya9{bottom:877.546667pt;}
.y4b{bottom:883.173333pt;}
.y12{bottom:890.693333pt;}
.ya8{bottom:898.373333pt;}
.y4a{bottom:902.053333pt;}
.y11{bottom:909.413333pt;}
.ya7{bottom:919.173333pt;}
.y49{bottom:920.773333pt;}
.y10{bottom:928.293333pt;}
.y48{bottom:939.493333pt;}
.ya5{bottom:939.973333pt;}
.yf{bottom:947.013333pt;}
.y47{bottom:958.373333pt;}
.ya4{bottom:960.773333pt;}
.ye{bottom:965.893333pt;}
.y46{bottom:977.093333pt;}
.ya2{bottom:981.573333pt;}
.yd{bottom:984.613333pt;}
.y45{bottom:995.973333pt;}
.y9e{bottom:1002.213333pt;}
.yc{bottom:1003.333333pt;}
.y44{bottom:1014.693333pt;}
.yb{bottom:1022.213333pt;}
.y43{bottom:1033.413333pt;}
.ya{bottom:1040.933333pt;}
.y42{bottom:1052.293333pt;}
.y9{bottom:1067.653333pt;}
.y41{bottom:1071.013333pt;}
.y8{bottom:1086.533333pt;}
.y76{bottom:1089.733333pt;}
.y40{bottom:1089.893333pt;}
.y7{bottom:1105.253333pt;}
.y3f{bottom:1108.613333pt;}
.y6{bottom:1124.133333pt;}
.y3e{bottom:1127.333333pt;}
.y3d{bottom:1146.240000pt;}
.y5{bottom:1150.080000pt;}
.y3c{bottom:1180.640000pt;}
.y1{bottom:1185.120000pt;}
.y2{bottom:1186.640769pt;}
.y3{bottom:1203.120769pt;}
.h3{height:17.120000pt;}
.h9{height:19.986667pt;}
.hd{height:20.000000pt;}
.ha{height:20.146667pt;}
.hc{height:20.160000pt;}
.hb{height:20.178667pt;}
.he{height:20.186667pt;}
.h4{height:34.382812pt;}
.h8{height:45.586667pt;}
.h2{height:45.843750pt;}
.h5{height:65.781915pt;}
.h7{height:134.266667pt;}
.h6{height:142.706667pt;}
.h1{height:1248.000000pt;}
.h0{height:1248.160000pt;}
.w8{width:17.752000pt;}
.w6{width:21.592000pt;}
.w2{width:93.632000pt;}
.w5{width:200.813333pt;}
.w3{width:298.898667pt;}
.w9{width:383.733333pt;}
.w7{width:402.138667pt;}
.w4{width:424.378667pt;}
.w1{width:816.000000pt;}
.w0{width:816.160000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.872000pt;}
.x14{left:9.592000pt;}
.x4{left:11.200000pt;}
.x3{left:28.320000pt;}
.x1d{left:45.106667pt;}
.x1c{left:56.146667pt;}
.x1f{left:59.506667pt;}
.x21{left:69.426667pt;}
.x22{left:79.346667pt;}
.x18{left:81.960000pt;}
.x2{left:94.592000pt;}
.x1a{left:97.746667pt;}
.x20{left:117.480000pt;}
.x11{left:132.352000pt;}
.x6{left:135.866667pt;}
.x15{left:149.426667pt;}
.x12{left:160.826667pt;}
.xa{left:184.506667pt;}
.xc{left:186.106667pt;}
.x23{left:193.946667pt;}
.x19{left:208.026667pt;}
.xe{left:217.466667pt;}
.x9{left:225.306667pt;}
.xb{left:231.066667pt;}
.x5{left:243.546667pt;}
.xd{left:245.786667pt;}
.x7{left:314.786667pt;}
.xf{left:345.186667pt;}
.x8{left:368.706667pt;}
.x13{left:374.786667pt;}
.x10{left:379.746667pt;}
.x17{left:397.026667pt;}
.x1{left:408.066667pt;}
.x16{left:463.293333pt;}
.x24{left:491.613333pt;}
.x1b{left:520.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; }
  