
    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_d25f415770022c3e3aa7d769.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_6d279ea3975efa3ba6e723e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_0313f354af23fe70ec90bd5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_d093a15c3b8ac11fa96f63de.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.738770;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_d6e070ef2be1d4e6860a8208.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls2{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.720000px;}
.ls0{letter-spacing:4.500000px;}
.ls4{letter-spacing:64.421280px;}
.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:-21.060000px;}
.ws4{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.712000px;}
.ws1{word-spacing:0.000000px;}
._17{margin-left:-5.022720px;}
._12{margin-left:-3.456000px;}
._0{margin-left:-1.457280px;}
._1{width:1.158720px;}
._d{width:3.072000px;}
._a{width:5.040000px;}
._7{width:6.480000px;}
._8{width:7.726560px;}
._9{width:9.212160px;}
._5{width:10.725120px;}
._6{width:11.970000px;}
._e{width:13.493280px;}
._f{width:14.966160px;}
._14{width:16.569840px;}
._b{width:19.008000px;}
._c{width:20.069280px;}
._10{width:21.528000px;}
._11{width:22.548000px;}
._18{width:23.823840px;}
._1d{width:25.272000px;}
._2a{width:26.273280px;}
._1c{width:27.288000px;}
._1a{width:28.656000px;}
._1b{width:29.952000px;}
._15{width:31.248000px;}
._16{width:32.256000px;}
._13{width:33.768000px;}
._20{width:36.072000px;}
._21{width:37.296000px;}
._4{width:44.710320px;}
._27{width:48.096000px;}
._28{width:49.176000px;}
._29{width:61.997280px;}
._2e{width:63.432000px;}
._2f{width:64.505280px;}
._1f{width:92.989440px;}
._1e{width:94.121280px;}
._2{width:101.017200px;}
._26{width:109.478400px;}
._19{width:135.087840px;}
._22{width:148.248000px;}
._23{width:149.616000px;}
._30{width:151.344000px;}
._3{width:163.931520px;}
._2d{width:165.456000px;}
._2c{width:260.496000px;}
._2b{width:261.576000px;}
._24{width:315.504000px;}
._25{width:316.584000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs4{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:82.116000px;}
.y4{bottom:108.396000px;}
.y3{bottom:127.476000px;}
.y2{bottom:146.556000px;}
.y4b{bottom:176.430000px;}
.y82{bottom:177.510000px;}
.y69{bottom:179.850000px;}
.y2e{bottom:183.270000px;}
.yab{bottom:190.830000px;}
.yc4{bottom:192.990000px;}
.y2d{bottom:203.970000px;}
.y68{bottom:206.490000px;}
.y4a{bottom:207.390000px;}
.y81{bottom:208.470000px;}
.yc3{bottom:213.690000px;}
.y9a{bottom:215.850000px;}
.yaa{bottom:221.790000px;}
.y2c{bottom:224.670000px;}
.yc2{bottom:234.390000px;}
.y67{bottom:237.630000px;}
.y49{bottom:238.530000px;}
.y80{bottom:239.610000px;}
.y2b{bottom:245.370000px;}
.y99{bottom:246.990000px;}
.ya9{bottom:252.930000px;}
.yc1{bottom:255.090000px;}
.y2a{bottom:266.070000px;}
.y66{bottom:268.590000px;}
.y48{bottom:269.490000px;}
.yc0{bottom:275.790000px;}
.y7f{bottom:276.690000px;}
.ye5{bottom:282.810000px;}
.y98{bottom:283.890000px;}
.y29{bottom:286.770000px;}
.y65{bottom:299.730000px;}
.y47{bottom:300.630000px;}
.ybf{bottom:302.430000px;}
.y28{bottom:307.470000px;}
.y7e{bottom:307.650000px;}
.ye4{bottom:309.450000px;}
.y97{bottom:315.030000px;}
.ybe{bottom:323.130000px;}
.y27{bottom:328.170000px;}
.ye3{bottom:330.150000px;}
.y64{bottom:330.690000px;}
.y46{bottom:331.590000px;}
.y7d{bottom:338.835000px;}
.ybd{bottom:343.875000px;}
.y96{bottom:346.035000px;}
.y26{bottom:348.915000px;}
.ye2{bottom:350.895000px;}
.y63{bottom:361.875000px;}
.y45{bottom:362.775000px;}
.ybc{bottom:364.575000px;}
.y25{bottom:369.615000px;}
.y7c{bottom:369.795000px;}
.ye1{bottom:371.595000px;}
.y95{bottom:377.175000px;}
.y24{bottom:390.315000px;}
.y62{bottom:392.835000px;}
.y44{bottom:393.735000px;}
.ye0{bottom:398.235000px;}
.y7b{bottom:400.755000px;}
.ybb{bottom:403.275000px;}
.y94{bottom:408.135000px;}
.y23{bottom:411.015000px;}
.ydf{bottom:418.935000px;}
.y61{bottom:423.975000px;}
.y43{bottom:424.875000px;}
.y7a{bottom:431.895000px;}
.y22{bottom:437.655000px;}
.y93{bottom:439.275000px;}
.yde{bottom:439.635000px;}
.yba{bottom:444.675000px;}
.y60{bottom:454.935000px;}
.y42{bottom:455.835000px;}
.y21{bottom:458.355000px;}
.ydd{bottom:460.335000px;}
.y79{bottom:462.855000px;}
.yb9{bottom:465.375000px;}
.y92{bottom:470.235000px;}
.y20{bottom:479.055000px;}
.ydc{bottom:481.035000px;}
.y5f{bottom:486.075000px;}
.y41{bottom:486.975000px;}
.y78{bottom:493.995000px;}
.y1f{bottom:499.755000px;}
.y91{bottom:501.375000px;}
.ydb{bottom:501.735000px;}
.y5e{bottom:517.035000px;}
.y40{bottom:517.935000px;}
.y1e{bottom:520.455000px;}
.yb8{bottom:524.775000px;}
.y77{bottom:524.955000px;}
.yda{bottom:528.555000px;}
.y90{bottom:532.335000px;}
.y1d{bottom:541.155000px;}
.yb7{bottom:545.475000px;}
.y5d{bottom:548.175000px;}
.y3f{bottom:549.075000px;}
.yd9{bottom:549.255000px;}
.y1c{bottom:561.855000px;}
.y76{bottom:562.035000px;}
.ya8{bottom:563.475000px;}
.yb6{bottom:566.175000px;}
.y8f{bottom:569.415000px;}
.yd8{bottom:569.955000px;}
.y5c{bottom:579.135000px;}
.y3e{bottom:580.035000px;}
.y1b{bottom:582.555000px;}
.yb5{bottom:586.875000px;}
.yd7{bottom:590.655000px;}
.y75{bottom:593.175000px;}
.ya7{bottom:594.435000px;}
.y8e{bottom:600.555000px;}
.y1a{bottom:603.255000px;}
.yb4{bottom:607.605000px;}
.y5b{bottom:610.305000px;}
.y3d{bottom:611.205000px;}
.yd6{bottom:611.385000px;}
.y19{bottom:623.985000px;}
.y74{bottom:624.165000px;}
.ya6{bottom:625.605000px;}
.y8d{bottom:631.545000px;}
.yd5{bottom:638.025000px;}
.y5a{bottom:641.265000px;}
.y3c{bottom:642.165000px;}
.y18{bottom:644.685000px;}
.yb3{bottom:646.305000px;}
.y73{bottom:655.305000px;}
.ya5{bottom:656.565000px;}
.yd4{bottom:658.725000px;}
.y8c{bottom:662.685000px;}
.y17{bottom:665.385000px;}
.yb2{bottom:667.005000px;}
.y59{bottom:672.405000px;}
.y3b{bottom:673.305000px;}
.yd3{bottom:679.425000px;}
.ya4{bottom:683.745000px;}
.y16{bottom:686.085000px;}
.y72{bottom:686.265000px;}
.yb1{bottom:687.705000px;}
.y8b{bottom:699.585000px;}
.yd2{bottom:700.125000px;}
.y58{bottom:703.365000px;}
.y3a{bottom:704.265000px;}
.y15{bottom:706.785000px;}
.yb0{bottom:708.405000px;}
.ya3{bottom:716.505000px;}
.y71{bottom:723.345000px;}
.yd1{bottom:726.765000px;}
.y14{bottom:727.485000px;}
.yaf{bottom:729.105000px;}
.y8a{bottom:730.725000px;}
.y57{bottom:734.505000px;}
.y39{bottom:735.405000px;}
.yd0{bottom:747.465000px;}
.y13{bottom:748.185000px;}
.yae{bottom:749.805000px;}
.ya2{bottom:753.405000px;}
.y70{bottom:754.305000px;}
.y89{bottom:761.685000px;}
.y56{bottom:765.465000px;}
.y38{bottom:766.365000px;}
.ycf{bottom:768.165000px;}
.y12{bottom:768.885000px;}
.ya1{bottom:784.545000px;}
.y6f{bottom:785.445000px;}
.yad{bottom:788.865000px;}
.y11{bottom:789.585000px;}
.y88{bottom:792.825000px;}
.y55{bottom:796.605000px;}
.y37{bottom:797.505000px;}
.yce{bottom:809.565000px;}
.y10{bottom:810.285000px;}
.ya0{bottom:815.505000px;}
.y6e{bottom:816.405000px;}
.yac{bottom:821.625000px;}
.y87{bottom:823.785000px;}
.y54{bottom:827.565000px;}
.y36{bottom:828.465000px;}
.yf{bottom:830.985000px;}
.ycd{bottom:836.205000px;}
.y6d{bottom:847.545000px;}
.y9f{bottom:852.585000px;}
.ye{bottom:853.125000px;}
.y86{bottom:854.925000px;}
.ycc{bottom:856.905000px;}
.y53{bottom:858.705000px;}
.y35{bottom:859.605000px;}
.ycb{bottom:877.650000px;}
.yd{bottom:880.710000px;}
.y9e{bottom:883.770000px;}
.y6c{bottom:884.670000px;}
.y85{bottom:885.930000px;}
.y52{bottom:889.710000px;}
.y34{bottom:890.610000px;}
.yca{bottom:904.470000px;}
.yc{bottom:908.250000px;}
.y84{bottom:913.110000px;}
.y9d{bottom:914.730000px;}
.y6b{bottom:915.630000px;}
.y51{bottom:920.850000px;}
.y33{bottom:921.750000px;}
.yc9{bottom:925.170000px;}
.yb{bottom:935.970000px;}
.y83{bottom:945.870000px;}
.y6a{bottom:946.770000px;}
.y50{bottom:951.810000px;}
.y32{bottom:952.710000px;}
.ya{bottom:963.510000px;}
.yc8{bottom:966.570000px;}
.y9c{bottom:976.830000px;}
.y4f{bottom:982.950000px;}
.y31{bottom:983.850000px;}
.yc7{bottom:987.270000px;}
.y9{bottom:991.050000px;}
.y9b{bottom:1007.970000px;}
.y4e{bottom:1013.910000px;}
.y30{bottom:1014.810000px;}
.y8{bottom:1018.770000px;}
.yc6{bottom:1034.610000px;}
.y4d{bottom:1045.050000px;}
.y2f{bottom:1045.950000px;}
.y7{bottom:1046.310000px;}
.yc5{bottom:1055.310000px;}
.y6{bottom:1073.130000px;}
.y4c{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.h7{height:52.628906px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h6{height:69.996445px;}
.h8{height:70.606406px;}
.h4{height:74.820586px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.415987px;}
.x8{left:138.815987px;}
.x7{left:148.895987px;}
.x5{left:264.809987px;}
.x4{left:316.694987px;}
.x1{left:467.744987px;}
.x6{left:744.269987px;}
.x3{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls0{letter-spacing:4.000000pt;}
.ls4{letter-spacing:57.263360pt;}
.ws2{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws1{word-spacing:0.000000pt;}
._17{margin-left:-4.464640pt;}
._12{margin-left:-3.072000pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.029973pt;}
._d{width:2.730667pt;}
._a{width:4.480000pt;}
._7{width:5.760000pt;}
._8{width:6.868053pt;}
._9{width:8.188587pt;}
._5{width:9.533440pt;}
._6{width:10.640000pt;}
._e{width:11.994027pt;}
._f{width:13.303253pt;}
._14{width:14.728747pt;}
._b{width:16.896000pt;}
._c{width:17.839360pt;}
._10{width:19.136000pt;}
._11{width:20.042667pt;}
._18{width:21.176747pt;}
._1d{width:22.464000pt;}
._2a{width:23.354027pt;}
._1c{width:24.256000pt;}
._1a{width:25.472000pt;}
._1b{width:26.624000pt;}
._15{width:27.776000pt;}
._16{width:28.672000pt;}
._13{width:30.016000pt;}
._20{width:32.064000pt;}
._21{width:33.152000pt;}
._4{width:39.742507pt;}
._27{width:42.752000pt;}
._28{width:43.712000pt;}
._29{width:55.108693pt;}
._2e{width:56.384000pt;}
._2f{width:57.338027pt;}
._1f{width:82.657280pt;}
._1e{width:83.663360pt;}
._2{width:89.793067pt;}
._26{width:97.314133pt;}
._19{width:120.078080pt;}
._22{width:131.776000pt;}
._23{width:132.992000pt;}
._30{width:134.528000pt;}
._3{width:145.716907pt;}
._2d{width:147.072000pt;}
._2c{width:231.552000pt;}
._2b{width:232.512000pt;}
._24{width:280.448000pt;}
._25{width:281.408000pt;}
.fs4{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:72.992000pt;}
.y4{bottom:96.352000pt;}
.y3{bottom:113.312000pt;}
.y2{bottom:130.272000pt;}
.y4b{bottom:156.826667pt;}
.y82{bottom:157.786667pt;}
.y69{bottom:159.866667pt;}
.y2e{bottom:162.906667pt;}
.yab{bottom:169.626667pt;}
.yc4{bottom:171.546667pt;}
.y2d{bottom:181.306667pt;}
.y68{bottom:183.546667pt;}
.y4a{bottom:184.346667pt;}
.y81{bottom:185.306667pt;}
.yc3{bottom:189.946667pt;}
.y9a{bottom:191.866667pt;}
.yaa{bottom:197.146667pt;}
.y2c{bottom:199.706667pt;}
.yc2{bottom:208.346667pt;}
.y67{bottom:211.226667pt;}
.y49{bottom:212.026667pt;}
.y80{bottom:212.986667pt;}
.y2b{bottom:218.106667pt;}
.y99{bottom:219.546667pt;}
.ya9{bottom:224.826667pt;}
.yc1{bottom:226.746667pt;}
.y2a{bottom:236.506667pt;}
.y66{bottom:238.746667pt;}
.y48{bottom:239.546667pt;}
.yc0{bottom:245.146667pt;}
.y7f{bottom:245.946667pt;}
.ye5{bottom:251.386667pt;}
.y98{bottom:252.346667pt;}
.y29{bottom:254.906667pt;}
.y65{bottom:266.426667pt;}
.y47{bottom:267.226667pt;}
.ybf{bottom:268.826667pt;}
.y28{bottom:273.306667pt;}
.y7e{bottom:273.466667pt;}
.ye4{bottom:275.066667pt;}
.y97{bottom:280.026667pt;}
.ybe{bottom:287.226667pt;}
.y27{bottom:291.706667pt;}
.ye3{bottom:293.466667pt;}
.y64{bottom:293.946667pt;}
.y46{bottom:294.746667pt;}
.y7d{bottom:301.186667pt;}
.ybd{bottom:305.666667pt;}
.y96{bottom:307.586667pt;}
.y26{bottom:310.146667pt;}
.ye2{bottom:311.906667pt;}
.y63{bottom:321.666667pt;}
.y45{bottom:322.466667pt;}
.ybc{bottom:324.066667pt;}
.y25{bottom:328.546667pt;}
.y7c{bottom:328.706667pt;}
.ye1{bottom:330.306667pt;}
.y95{bottom:335.266667pt;}
.y24{bottom:346.946667pt;}
.y62{bottom:349.186667pt;}
.y44{bottom:349.986667pt;}
.ye0{bottom:353.986667pt;}
.y7b{bottom:356.226667pt;}
.ybb{bottom:358.466667pt;}
.y94{bottom:362.786667pt;}
.y23{bottom:365.346667pt;}
.ydf{bottom:372.386667pt;}
.y61{bottom:376.866667pt;}
.y43{bottom:377.666667pt;}
.y7a{bottom:383.906667pt;}
.y22{bottom:389.026667pt;}
.y93{bottom:390.466667pt;}
.yde{bottom:390.786667pt;}
.yba{bottom:395.266667pt;}
.y60{bottom:404.386667pt;}
.y42{bottom:405.186667pt;}
.y21{bottom:407.426667pt;}
.ydd{bottom:409.186667pt;}
.y79{bottom:411.426667pt;}
.yb9{bottom:413.666667pt;}
.y92{bottom:417.986667pt;}
.y20{bottom:425.826667pt;}
.ydc{bottom:427.586667pt;}
.y5f{bottom:432.066667pt;}
.y41{bottom:432.866667pt;}
.y78{bottom:439.106667pt;}
.y1f{bottom:444.226667pt;}
.y91{bottom:445.666667pt;}
.ydb{bottom:445.986667pt;}
.y5e{bottom:459.586667pt;}
.y40{bottom:460.386667pt;}
.y1e{bottom:462.626667pt;}
.yb8{bottom:466.466667pt;}
.y77{bottom:466.626667pt;}
.yda{bottom:469.826667pt;}
.y90{bottom:473.186667pt;}
.y1d{bottom:481.026667pt;}
.yb7{bottom:484.866667pt;}
.y5d{bottom:487.266667pt;}
.y3f{bottom:488.066667pt;}
.yd9{bottom:488.226667pt;}
.y1c{bottom:499.426667pt;}
.y76{bottom:499.586667pt;}
.ya8{bottom:500.866667pt;}
.yb6{bottom:503.266667pt;}
.y8f{bottom:506.146667pt;}
.yd8{bottom:506.626667pt;}
.y5c{bottom:514.786667pt;}
.y3e{bottom:515.586667pt;}
.y1b{bottom:517.826667pt;}
.yb5{bottom:521.666667pt;}
.yd7{bottom:525.026667pt;}
.y75{bottom:527.266667pt;}
.ya7{bottom:528.386667pt;}
.y8e{bottom:533.826667pt;}
.y1a{bottom:536.226667pt;}
.yb4{bottom:540.093333pt;}
.y5b{bottom:542.493333pt;}
.y3d{bottom:543.293333pt;}
.yd6{bottom:543.453333pt;}
.y19{bottom:554.653333pt;}
.y74{bottom:554.813333pt;}
.ya6{bottom:556.093333pt;}
.y8d{bottom:561.373333pt;}
.yd5{bottom:567.133333pt;}
.y5a{bottom:570.013333pt;}
.y3c{bottom:570.813333pt;}
.y18{bottom:573.053333pt;}
.yb3{bottom:574.493333pt;}
.y73{bottom:582.493333pt;}
.ya5{bottom:583.613333pt;}
.yd4{bottom:585.533333pt;}
.y8c{bottom:589.053333pt;}
.y17{bottom:591.453333pt;}
.yb2{bottom:592.893333pt;}
.y59{bottom:597.693333pt;}
.y3b{bottom:598.493333pt;}
.yd3{bottom:603.933333pt;}
.ya4{bottom:607.773333pt;}
.y16{bottom:609.853333pt;}
.y72{bottom:610.013333pt;}
.yb1{bottom:611.293333pt;}
.y8b{bottom:621.853333pt;}
.yd2{bottom:622.333333pt;}
.y58{bottom:625.213333pt;}
.y3a{bottom:626.013333pt;}
.y15{bottom:628.253333pt;}
.yb0{bottom:629.693333pt;}
.ya3{bottom:636.893333pt;}
.y71{bottom:642.973333pt;}
.yd1{bottom:646.013333pt;}
.y14{bottom:646.653333pt;}
.yaf{bottom:648.093333pt;}
.y8a{bottom:649.533333pt;}
.y57{bottom:652.893333pt;}
.y39{bottom:653.693333pt;}
.yd0{bottom:664.413333pt;}
.y13{bottom:665.053333pt;}
.yae{bottom:666.493333pt;}
.ya2{bottom:669.693333pt;}
.y70{bottom:670.493333pt;}
.y89{bottom:677.053333pt;}
.y56{bottom:680.413333pt;}
.y38{bottom:681.213333pt;}
.ycf{bottom:682.813333pt;}
.y12{bottom:683.453333pt;}
.ya1{bottom:697.373333pt;}
.y6f{bottom:698.173333pt;}
.yad{bottom:701.213333pt;}
.y11{bottom:701.853333pt;}
.y88{bottom:704.733333pt;}
.y55{bottom:708.093333pt;}
.y37{bottom:708.893333pt;}
.yce{bottom:719.613333pt;}
.y10{bottom:720.253333pt;}
.ya0{bottom:724.893333pt;}
.y6e{bottom:725.693333pt;}
.yac{bottom:730.333333pt;}
.y87{bottom:732.253333pt;}
.y54{bottom:735.613333pt;}
.y36{bottom:736.413333pt;}
.yf{bottom:738.653333pt;}
.ycd{bottom:743.293333pt;}
.y6d{bottom:753.373333pt;}
.y9f{bottom:757.853333pt;}
.ye{bottom:758.333333pt;}
.y86{bottom:759.933333pt;}
.ycc{bottom:761.693333pt;}
.y53{bottom:763.293333pt;}
.y35{bottom:764.093333pt;}
.ycb{bottom:780.133333pt;}
.yd{bottom:782.853333pt;}
.y9e{bottom:785.573333pt;}
.y6c{bottom:786.373333pt;}
.y85{bottom:787.493333pt;}
.y52{bottom:790.853333pt;}
.y34{bottom:791.653333pt;}
.yca{bottom:803.973333pt;}
.yc{bottom:807.333333pt;}
.y84{bottom:811.653333pt;}
.y9d{bottom:813.093333pt;}
.y6b{bottom:813.893333pt;}
.y51{bottom:818.533333pt;}
.y33{bottom:819.333333pt;}
.yc9{bottom:822.373333pt;}
.yb{bottom:831.973333pt;}
.y83{bottom:840.773333pt;}
.y6a{bottom:841.573333pt;}
.y50{bottom:846.053333pt;}
.y32{bottom:846.853333pt;}
.ya{bottom:856.453333pt;}
.yc8{bottom:859.173333pt;}
.y9c{bottom:868.293333pt;}
.y4f{bottom:873.733333pt;}
.y31{bottom:874.533333pt;}
.yc7{bottom:877.573333pt;}
.y9{bottom:880.933333pt;}
.y9b{bottom:895.973333pt;}
.y4e{bottom:901.253333pt;}
.y30{bottom:902.053333pt;}
.y8{bottom:905.573333pt;}
.yc6{bottom:919.653333pt;}
.y4d{bottom:928.933333pt;}
.y2f{bottom:929.733333pt;}
.y7{bottom:930.053333pt;}
.yc5{bottom:938.053333pt;}
.y6{bottom:953.893333pt;}
.y4c{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.h7{height:46.781250pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h6{height:62.219062pt;}
.h8{height:62.761250pt;}
.h4{height:66.507188pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.591988pt;}
.x8{left:123.391988pt;}
.x7{left:132.351988pt;}
.x5{left:235.386655pt;}
.x4{left:281.506655pt;}
.x1{left:415.773322pt;}
.x6{left:661.573322pt;}
.x3{left:699.333322pt;}
}




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