
    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_d00901ff272a3d3a3a785bc2.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_b6d213a76cc2af391f371ef8.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_66dce30809e688648160a68c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1fa54c72b314441a820a507d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d6ef66e58117cb7fee9b4230.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1303439ff278872d57ed2373.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_32eb6b191cee3a1b1e915105.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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_12ba9d36fee44047de4ad079.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_da33077d16d0edde668a1d7f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_84545764dda7a6f4a2647034.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fbb91175b2dae6ec3ba9348a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls16{letter-spacing:-1.440000px;}
.lsb{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.720000px;}
.ls6{letter-spacing:1.440000px;}
.ls11{letter-spacing:2.160000px;}
.lse{letter-spacing:2.880000px;}
.ls18{letter-spacing:4.320000px;}
.ls13{letter-spacing:5.040000px;}
.ls15{letter-spacing:6.480000px;}
.lsa{letter-spacing:7.200000px;}
.lsf{letter-spacing:12.240000px;}
.ls9{letter-spacing:14.400000px;}
.lsd{letter-spacing:15.840000px;}
.ls4{letter-spacing:16.560000px;}
.ls17{letter-spacing:17.280000px;}
.ls19{letter-spacing:18.720000px;}
.ls0{letter-spacing:33.960000px;}
.ls14{letter-spacing:194.376000px;}
.ls3{letter-spacing:197.436000px;}
.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:-18.504000px;}
.ws0{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws3{word-spacing:-15.300000px;}
.ws1{word-spacing:0.000000px;}
._17{margin-left:-2.232000px;}
._0{margin-left:-1.224000px;}
._1{width:1.140000px;}
._5{width:2.304000px;}
._6{width:4.176000px;}
._b{width:5.688000px;}
._d{width:7.056000px;}
._c{width:8.064000px;}
._e{width:9.192000px;}
._3{width:10.656000px;}
._4{width:11.820000px;}
._a{width:12.888000px;}
._9{width:13.968000px;}
._18{width:15.048000px;}
._16{width:16.344000px;}
._14{width:19.080000px;}
._f{width:20.520000px;}
._10{width:21.876000px;}
._12{width:23.184000px;}
._13{width:24.456000px;}
._8{width:25.668000px;}
._7{width:26.856000px;}
._1a{width:27.972000px;}
._11{width:30.072000px;}
._15{width:31.440000px;}
._19{width:32.640000px;}
._1d{width:33.828000px;}
._1b{width:38.376000px;}
._1c{width:42.408000px;}
._2{width:194.376000px;}
._1e{width:197.976000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.780000px;}
.y2{bottom:52.920000px;}
.y1{bottom:56.700000px;}
.y2d{bottom:110.700000px;}
.y40{bottom:115.200000px;}
.y25{bottom:115.560000px;}
.y2c{bottom:131.400000px;}
.y3f{bottom:135.900000px;}
.y3e{bottom:140.400000px;}
.y24{bottom:146.520000px;}
.y2b{bottom:152.100000px;}
.y2a{bottom:156.600000px;}
.y3d{bottom:160.200000px;}
.y72{bottom:161.100000px;}
.y54{bottom:172.830000px;}
.y29{bottom:176.430000px;}
.y78{bottom:177.330000px;}
.y23{bottom:177.690000px;}
.y71{bottom:181.830000px;}
.y70{bottom:186.330000px;}
.y53{bottom:193.530000px;}
.y6a{bottom:198.030000px;}
.y77{bottom:202.530000px;}
.y6f{bottom:207.030000px;}
.y22{bottom:208.650000px;}
.y6e{bottom:211.530000px;}
.y52{bottom:214.230000px;}
.y69{bottom:218.730000px;}
.yb8{bottom:223.230000px;}
.y76{bottom:226.830000px;}
.yc9{bottom:227.730000px;}
.y6d{bottom:231.330000px;}
.y51{bottom:234.930000px;}
.y3c{bottom:235.290000px;}
.y68{bottom:239.430000px;}
.y21{bottom:239.790000px;}
.yb7{bottom:243.930000px;}
.yc8{bottom:247.530000px;}
.y50{bottom:255.630000px;}
.y67{bottom:260.130000px;}
.y91{bottom:261.750000px;}
.yb5{bottom:264.630000px;}
.y3b{bottom:266.250000px;}
.y20{bottom:270.750000px;}
.y28{bottom:275.250000px;}
.y4f{bottom:276.150000px;}
.y66{bottom:280.650000px;}
.yb6{bottom:284.430000px;}
.yb4{bottom:285.150000px;}
.yc7{bottom:288.210000px;}
.y90{bottom:292.710000px;}
.y4e{bottom:296.850000px;}
.y3a{bottom:297.210000px;}
.y65{bottom:301.350000px;}
.y1f{bottom:301.710000px;}
.yb3{bottom:305.850000px;}
.y42{bottom:306.210000px;}
.y4d{bottom:317.550000px;}
.yc6{bottom:319.350000px;}
.y64{bottom:322.050000px;}
.y8f{bottom:323.850000px;}
.yb2{bottom:326.550000px;}
.y39{bottom:328.350000px;}
.yb1{bottom:331.050000px;}
.y1e{bottom:332.850000px;}
.y4c{bottom:338.250000px;}
.y63{bottom:342.750000px;}
.ybd{bottom:347.250000px;}
.yc5{bottom:350.310000px;}
.yb0{bottom:351.750000px;}
.y8e{bottom:354.810000px;}
.y4b{bottom:358.950000px;}
.y38{bottom:359.310000px;}
.y62{bottom:363.450000px;}
.y1d{bottom:363.810000px;}
.ybc{bottom:367.950000px;}
.yaf{bottom:372.450000px;}
.y4a{bottom:379.650000px;}
.yca{bottom:383.430000px;}
.y61{bottom:384.150000px;}
.y8d{bottom:385.950000px;}
.ybb{bottom:387.930000px;}
.y37{bottom:390.450000px;}
.yae{bottom:393.150000px;}
.y1c{bottom:394.590000px;}
.y27{bottom:394.950000px;}
.y49{bottom:400.350000px;}
.y48{bottom:404.850000px;}
.y60{bottom:409.395000px;}
.yad{bottom:413.895000px;}
.y8c{bottom:416.955000px;}
.yac{bottom:418.395000px;}
.y36{bottom:421.455000px;}
.y47{bottom:425.595000px;}
.y1b{bottom:425.955000px;}
.y46{bottom:430.095000px;}
.yab{bottom:438.375000px;}
.y8b{bottom:448.095000px;}
.y45{bottom:450.075000px;}
.y5f{bottom:450.795000px;}
.y35{bottom:452.595000px;}
.y1a{bottom:457.095000px;}
.ya9{bottom:470.055000px;}
.y5e{bottom:471.495000px;}
.yaa{bottom:474.555000px;}
.y8a{bottom:479.055000px;}
.y34{bottom:483.555000px;}
.y19{bottom:488.055000px;}
.y5d{bottom:492.195000px;}
.y6c{bottom:492.555000px;}
.ya8{bottom:505.695000px;}
.y89{bottom:510.195000px;}
.y5c{bottom:512.895000px;}
.y33{bottom:514.695000px;}
.y18{bottom:519.195000px;}
.y5b{bottom:533.595000px;}
.ya7{bottom:536.655000px;}
.y88{bottom:541.155000px;}
.y32{bottom:545.655000px;}
.y17{bottom:550.155000px;}
.y5a{bottom:554.295000px;}
.y44{bottom:554.655000px;}
.y59{bottom:558.795000px;}
.ya6{bottom:567.795000px;}
.yba{bottom:572.295000px;}
.y31{bottom:576.795000px;}
.y58{bottom:578.775000px;}
.y16{bottom:581.295000px;}
.ya5{bottom:598.755000px;}
.yb9{bottom:603.255000px;}
.y30{bottom:607.755000px;}
.y15{bottom:612.255000px;}
.ya4{bottom:629.895000px;}
.yc4{bottom:634.395000px;}
.y87{bottom:638.895000px;}
.y75{bottom:643.035000px;}
.y14{bottom:643.395000px;}
.ya3{bottom:660.885000px;}
.yc3{bottom:665.385000px;}
.y86{bottom:669.885000px;}
.y13{bottom:674.385000px;}
.y74{bottom:678.885000px;}
.ya2{bottom:692.025000px;}
.yc2{bottom:696.525000px;}
.y85{bottom:701.025000px;}
.y12{bottom:705.525000px;}
.ya1{bottom:722.985000px;}
.yc1{bottom:727.485000px;}
.y84{bottom:731.985000px;}
.y2f{bottom:736.125000px;}
.y11{bottom:736.485000px;}
.ya0{bottom:754.125000px;}
.yc0{bottom:758.625000px;}
.y83{bottom:763.125000px;}
.y10{bottom:767.625000px;}
.y43{bottom:772.125000px;}
.y9f{bottom:785.085000px;}
.ybf{bottom:789.585000px;}
.y82{bottom:794.085000px;}
.yf{bottom:798.585000px;}
.y9e{bottom:816.225000px;}
.y81{bottom:825.225000px;}
.ye{bottom:829.725000px;}
.y9d{bottom:847.185000px;}
.y80{bottom:856.185000px;}
.yd{bottom:860.685000px;}
.y9c{bottom:878.325000px;}
.y7f{bottom:887.325000px;}
.yc{bottom:891.825000px;}
.y9b{bottom:909.330000px;}
.y7e{bottom:918.330000px;}
.yb{bottom:922.830000px;}
.y2e{bottom:927.330000px;}
.y9a{bottom:940.470000px;}
.y7c{bottom:949.110000px;}
.ybe{bottom:949.470000px;}
.y7d{bottom:953.610000px;}
.ya{bottom:953.970000px;}
.y41{bottom:958.470000px;}
.y98{bottom:971.430000px;}
.y99{bottom:975.930000px;}
.y7b{bottom:980.430000px;}
.y9{bottom:984.930000px;}
.y97{bottom:1007.070000px;}
.y7a{bottom:1011.570000px;}
.y8{bottom:1016.070000px;}
.y6b{bottom:1020.570000px;}
.y96{bottom:1038.030000px;}
.y79{bottom:1042.530000px;}
.y7{bottom:1047.030000px;}
.y73{bottom:1051.530000px;}
.y94{bottom:1069.170000px;}
.y95{bottom:1073.670000px;}
.y6{bottom:1077.810000px;}
.y26{bottom:1078.170000px;}
.y57{bottom:1082.670000px;}
.y93{bottom:1104.630000px;}
.y5{bottom:1109.130000px;}
.y56{bottom:1113.630000px;}
.y92{bottom:1135.770000px;}
.y4{bottom:1140.270000px;}
.y55{bottom:1144.800000px;}
.h3{height:17.278500px;}
.h8{height:43.246406px;}
.ha{height:45.992812px;}
.hb{height:49.992188px;}
.h2{height:53.573906px;}
.h5{height:63.949219px;}
.h4{height:64.546875px;}
.hc{height:70.628906px;}
.h9{height:70.664062px;}
.hd{height:72.562500px;}
.h6{height:74.004654px;}
.h7{height:1262.877990px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:7.560000px;}
.w4{width:14.940000px;}
.w3{width:892.978125px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.x9{left:136.656000px;}
.x1c{left:145.656000px;}
.x3{left:180.750000px;}
.x43{left:199.650000px;}
.x5{left:207.750000px;}
.x2b{left:220.528125px;}
.x40{left:221.608125px;}
.x2f{left:230.608125px;}
.x4{left:233.850000px;}
.x2c{left:238.530000px;}
.x41{left:239.610000px;}
.x29{left:246.268125px;}
.x30{left:248.610000px;}
.x2a{left:258.510000px;}
.x16{left:279.208125px;}
.x10{left:281.188125px;}
.x17{left:285.375000px;}
.x11{left:287.355000px;}
.x33{left:290.953125px;}
.x34{left:297.613125px;}
.x3f{left:299.593125px;}
.xc{left:308.593125px;}
.x12{left:315.793125px;}
.xd{left:317.595000px;}
.x13{left:321.915000px;}
.xe{left:340.093125px;}
.x8{left:343.695000px;}
.xf{left:346.215000px;}
.x37{left:378.253125px;}
.x25{left:389.233125px;}
.x38{left:396.255000px;}
.x26{left:401.475000px;}
.x14{left:404.893125px;}
.x15{left:411.015000px;}
.x6{left:438.193125px;}
.x2{left:442.695000px;}
.x7{left:444.315000px;}
.x35{left:473.293125px;}
.x3d{left:486.103125px;}
.x2d{left:488.263125px;}
.x36{left:491.325000px;}
.x2e{left:500.505000px;}
.x3e{left:504.105000px;}
.x1d{left:508.783125px;}
.x1e{left:521.025000px;}
.x27{left:571.603125px;}
.x1a{left:577.903125px;}
.x28{left:583.845000px;}
.x1b{left:590.145000px;}
.x1f{left:594.463125px;}
.x20{left:606.705000px;}
.x3b{left:611.563125px;}
.x3c{left:629.565000px;}
.x23{left:641.263125px;}
.x24{left:653.505000px;}
.x31{left:669.388125px;}
.xa{left:682.888125px;}
.x32{left:687.390000px;}
.xb{left:689.010000px;}
.x42{left:705.030000px;}
.x39{left:743.008125px;}
.x18{left:748.228125px;}
.x19{left:754.350000px;}
.x21{left:760.828125px;}
.x3a{left:765.510000px;}
.x22{left:773.070000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-1.280000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls6{letter-spacing:1.280000pt;}
.ls11{letter-spacing:1.920000pt;}
.lse{letter-spacing:2.560000pt;}
.ls18{letter-spacing:3.840000pt;}
.ls13{letter-spacing:4.480000pt;}
.ls15{letter-spacing:5.760000pt;}
.lsa{letter-spacing:6.400000pt;}
.lsf{letter-spacing:10.880000pt;}
.ls9{letter-spacing:12.800000pt;}
.lsd{letter-spacing:14.080000pt;}
.ls4{letter-spacing:14.720000pt;}
.ls17{letter-spacing:15.360000pt;}
.ls19{letter-spacing:16.640000pt;}
.ls0{letter-spacing:30.186667pt;}
.ls14{letter-spacing:172.778667pt;}
.ls3{letter-spacing:175.498667pt;}
.ws2{word-spacing:-16.448000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws1{word-spacing:0.000000pt;}
._17{margin-left:-1.984000pt;}
._0{margin-left:-1.088000pt;}
._1{width:1.013333pt;}
._5{width:2.048000pt;}
._6{width:3.712000pt;}
._b{width:5.056000pt;}
._d{width:6.272000pt;}
._c{width:7.168000pt;}
._e{width:8.170667pt;}
._3{width:9.472000pt;}
._4{width:10.506667pt;}
._a{width:11.456000pt;}
._9{width:12.416000pt;}
._18{width:13.376000pt;}
._16{width:14.528000pt;}
._14{width:16.960000pt;}
._f{width:18.240000pt;}
._10{width:19.445333pt;}
._12{width:20.608000pt;}
._13{width:21.738667pt;}
._8{width:22.816000pt;}
._7{width:23.872000pt;}
._1a{width:24.864000pt;}
._11{width:26.730667pt;}
._15{width:27.946667pt;}
._19{width:29.013333pt;}
._1d{width:30.069333pt;}
._1b{width:34.112000pt;}
._1c{width:37.696000pt;}
._2{width:172.778667pt;}
._1e{width:175.978667pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.360000pt;}
.y2{bottom:47.040000pt;}
.y1{bottom:50.400000pt;}
.y2d{bottom:98.400000pt;}
.y40{bottom:102.400000pt;}
.y25{bottom:102.720000pt;}
.y2c{bottom:116.800000pt;}
.y3f{bottom:120.800000pt;}
.y3e{bottom:124.800000pt;}
.y24{bottom:130.240000pt;}
.y2b{bottom:135.200000pt;}
.y2a{bottom:139.200000pt;}
.y3d{bottom:142.400000pt;}
.y72{bottom:143.200000pt;}
.y54{bottom:153.626667pt;}
.y29{bottom:156.826667pt;}
.y78{bottom:157.626667pt;}
.y23{bottom:157.946667pt;}
.y71{bottom:161.626667pt;}
.y70{bottom:165.626667pt;}
.y53{bottom:172.026667pt;}
.y6a{bottom:176.026667pt;}
.y77{bottom:180.026667pt;}
.y6f{bottom:184.026667pt;}
.y22{bottom:185.466667pt;}
.y6e{bottom:188.026667pt;}
.y52{bottom:190.426667pt;}
.y69{bottom:194.426667pt;}
.yb8{bottom:198.426667pt;}
.y76{bottom:201.626667pt;}
.yc9{bottom:202.426667pt;}
.y6d{bottom:205.626667pt;}
.y51{bottom:208.826667pt;}
.y3c{bottom:209.146667pt;}
.y68{bottom:212.826667pt;}
.y21{bottom:213.146667pt;}
.yb7{bottom:216.826667pt;}
.yc8{bottom:220.026667pt;}
.y50{bottom:227.226667pt;}
.y67{bottom:231.226667pt;}
.y91{bottom:232.666667pt;}
.yb5{bottom:235.226667pt;}
.y3b{bottom:236.666667pt;}
.y20{bottom:240.666667pt;}
.y28{bottom:244.666667pt;}
.y4f{bottom:245.466667pt;}
.y66{bottom:249.466667pt;}
.yb6{bottom:252.826667pt;}
.yb4{bottom:253.466667pt;}
.yc7{bottom:256.186667pt;}
.y90{bottom:260.186667pt;}
.y4e{bottom:263.866667pt;}
.y3a{bottom:264.186667pt;}
.y65{bottom:267.866667pt;}
.y1f{bottom:268.186667pt;}
.yb3{bottom:271.866667pt;}
.y42{bottom:272.186667pt;}
.y4d{bottom:282.266667pt;}
.yc6{bottom:283.866667pt;}
.y64{bottom:286.266667pt;}
.y8f{bottom:287.866667pt;}
.yb2{bottom:290.266667pt;}
.y39{bottom:291.866667pt;}
.yb1{bottom:294.266667pt;}
.y1e{bottom:295.866667pt;}
.y4c{bottom:300.666667pt;}
.y63{bottom:304.666667pt;}
.ybd{bottom:308.666667pt;}
.yc5{bottom:311.386667pt;}
.yb0{bottom:312.666667pt;}
.y8e{bottom:315.386667pt;}
.y4b{bottom:319.066667pt;}
.y38{bottom:319.386667pt;}
.y62{bottom:323.066667pt;}
.y1d{bottom:323.386667pt;}
.ybc{bottom:327.066667pt;}
.yaf{bottom:331.066667pt;}
.y4a{bottom:337.466667pt;}
.yca{bottom:340.826667pt;}
.y61{bottom:341.466667pt;}
.y8d{bottom:343.066667pt;}
.ybb{bottom:344.826667pt;}
.y37{bottom:347.066667pt;}
.yae{bottom:349.466667pt;}
.y1c{bottom:350.746667pt;}
.y27{bottom:351.066667pt;}
.y49{bottom:355.866667pt;}
.y48{bottom:359.866667pt;}
.y60{bottom:363.906667pt;}
.yad{bottom:367.906667pt;}
.y8c{bottom:370.626667pt;}
.yac{bottom:371.906667pt;}
.y36{bottom:374.626667pt;}
.y47{bottom:378.306667pt;}
.y1b{bottom:378.626667pt;}
.y46{bottom:382.306667pt;}
.yab{bottom:389.666667pt;}
.y8b{bottom:398.306667pt;}
.y45{bottom:400.066667pt;}
.y5f{bottom:400.706667pt;}
.y35{bottom:402.306667pt;}
.y1a{bottom:406.306667pt;}
.ya9{bottom:417.826667pt;}
.y5e{bottom:419.106667pt;}
.yaa{bottom:421.826667pt;}
.y8a{bottom:425.826667pt;}
.y34{bottom:429.826667pt;}
.y19{bottom:433.826667pt;}
.y5d{bottom:437.506667pt;}
.y6c{bottom:437.826667pt;}
.ya8{bottom:449.506667pt;}
.y89{bottom:453.506667pt;}
.y5c{bottom:455.906667pt;}
.y33{bottom:457.506667pt;}
.y18{bottom:461.506667pt;}
.y5b{bottom:474.306667pt;}
.ya7{bottom:477.026667pt;}
.y88{bottom:481.026667pt;}
.y32{bottom:485.026667pt;}
.y17{bottom:489.026667pt;}
.y5a{bottom:492.706667pt;}
.y44{bottom:493.026667pt;}
.y59{bottom:496.706667pt;}
.ya6{bottom:504.706667pt;}
.yba{bottom:508.706667pt;}
.y31{bottom:512.706667pt;}
.y58{bottom:514.466667pt;}
.y16{bottom:516.706667pt;}
.ya5{bottom:532.226667pt;}
.yb9{bottom:536.226667pt;}
.y30{bottom:540.226667pt;}
.y15{bottom:544.226667pt;}
.ya4{bottom:559.906667pt;}
.yc4{bottom:563.906667pt;}
.y87{bottom:567.906667pt;}
.y75{bottom:571.586667pt;}
.y14{bottom:571.906667pt;}
.ya3{bottom:587.453333pt;}
.yc3{bottom:591.453333pt;}
.y86{bottom:595.453333pt;}
.y13{bottom:599.453333pt;}
.y74{bottom:603.453333pt;}
.ya2{bottom:615.133333pt;}
.yc2{bottom:619.133333pt;}
.y85{bottom:623.133333pt;}
.y12{bottom:627.133333pt;}
.ya1{bottom:642.653333pt;}
.yc1{bottom:646.653333pt;}
.y84{bottom:650.653333pt;}
.y2f{bottom:654.333333pt;}
.y11{bottom:654.653333pt;}
.ya0{bottom:670.333333pt;}
.yc0{bottom:674.333333pt;}
.y83{bottom:678.333333pt;}
.y10{bottom:682.333333pt;}
.y43{bottom:686.333333pt;}
.y9f{bottom:697.853333pt;}
.ybf{bottom:701.853333pt;}
.y82{bottom:705.853333pt;}
.yf{bottom:709.853333pt;}
.y9e{bottom:725.533333pt;}
.y81{bottom:733.533333pt;}
.ye{bottom:737.533333pt;}
.y9d{bottom:753.053333pt;}
.y80{bottom:761.053333pt;}
.yd{bottom:765.053333pt;}
.y9c{bottom:780.733333pt;}
.y7f{bottom:788.733333pt;}
.yc{bottom:792.733333pt;}
.y9b{bottom:808.293333pt;}
.y7e{bottom:816.293333pt;}
.yb{bottom:820.293333pt;}
.y2e{bottom:824.293333pt;}
.y9a{bottom:835.973333pt;}
.y7c{bottom:843.653333pt;}
.ybe{bottom:843.973333pt;}
.y7d{bottom:847.653333pt;}
.ya{bottom:847.973333pt;}
.y41{bottom:851.973333pt;}
.y98{bottom:863.493333pt;}
.y99{bottom:867.493333pt;}
.y7b{bottom:871.493333pt;}
.y9{bottom:875.493333pt;}
.y97{bottom:895.173333pt;}
.y7a{bottom:899.173333pt;}
.y8{bottom:903.173333pt;}
.y6b{bottom:907.173333pt;}
.y96{bottom:922.693333pt;}
.y79{bottom:926.693333pt;}
.y7{bottom:930.693333pt;}
.y73{bottom:934.693333pt;}
.y94{bottom:950.373333pt;}
.y95{bottom:954.373333pt;}
.y6{bottom:958.053333pt;}
.y26{bottom:958.373333pt;}
.y57{bottom:962.373333pt;}
.y93{bottom:981.893333pt;}
.y5{bottom:985.893333pt;}
.y56{bottom:989.893333pt;}
.y92{bottom:1009.573333pt;}
.y4{bottom:1013.573333pt;}
.y55{bottom:1017.600000pt;}
.h3{height:15.358667pt;}
.h8{height:38.441250pt;}
.ha{height:40.882500pt;}
.hb{height:44.437500pt;}
.h2{height:47.621250pt;}
.h5{height:56.843750pt;}
.h4{height:57.375000pt;}
.hc{height:62.781250pt;}
.h9{height:62.812500pt;}
.hd{height:64.500000pt;}
.h6{height:65.781915pt;}
.h7{height:1122.558213pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:6.720000pt;}
.w4{width:13.280000pt;}
.w3{width:793.758333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.x9{left:121.472000pt;}
.x1c{left:129.472000pt;}
.x3{left:160.666667pt;}
.x43{left:177.466667pt;}
.x5{left:184.666667pt;}
.x2b{left:196.025000pt;}
.x40{left:196.985000pt;}
.x2f{left:204.985000pt;}
.x4{left:207.866667pt;}
.x2c{left:212.026667pt;}
.x41{left:212.986667pt;}
.x29{left:218.905000pt;}
.x30{left:220.986667pt;}
.x2a{left:229.786667pt;}
.x16{left:248.185000pt;}
.x10{left:249.945000pt;}
.x17{left:253.666667pt;}
.x11{left:255.426667pt;}
.x33{left:258.625000pt;}
.x34{left:264.545000pt;}
.x3f{left:266.305000pt;}
.xc{left:274.305000pt;}
.x12{left:280.705000pt;}
.xd{left:282.306667pt;}
.x13{left:286.146667pt;}
.xe{left:302.305000pt;}
.x8{left:305.506667pt;}
.xf{left:307.746667pt;}
.x37{left:336.225000pt;}
.x25{left:345.985000pt;}
.x38{left:352.226667pt;}
.x26{left:356.866667pt;}
.x14{left:359.905000pt;}
.x15{left:365.346667pt;}
.x6{left:389.505000pt;}
.x2{left:393.506667pt;}
.x7{left:394.946667pt;}
.x35{left:420.705000pt;}
.x3d{left:432.091667pt;}
.x2d{left:434.011667pt;}
.x36{left:436.733333pt;}
.x2e{left:444.893333pt;}
.x3e{left:448.093333pt;}
.x1d{left:452.251667pt;}
.x1e{left:463.133333pt;}
.x27{left:508.091667pt;}
.x1a{left:513.691667pt;}
.x28{left:518.973333pt;}
.x1b{left:524.573333pt;}
.x1f{left:528.411667pt;}
.x20{left:539.293333pt;}
.x3b{left:543.611667pt;}
.x3c{left:559.613333pt;}
.x23{left:570.011667pt;}
.x24{left:580.893333pt;}
.x31{left:595.011667pt;}
.xa{left:607.011667pt;}
.x32{left:611.013333pt;}
.xb{left:612.453333pt;}
.x42{left:626.693333pt;}
.x39{left:660.451667pt;}
.x18{left:665.091667pt;}
.x19{left:670.533333pt;}
.x21{left:676.291667pt;}
.x3a{left:680.453333pt;}
.x22{left:687.173333pt;}
}




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