
    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_ec1c80c92ab964e4b3765ca4.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a7790244c98fa8e77b4c952a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_26964ebea120d4bdc33669e1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a90b925cc74f0e1102f3230e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_80b156857adf4f636971a10a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.072266;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_e2ed0a546e8a7498606d0070.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.097168;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_060d33f4580b39fd8ec45f5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_ade4e5cb03a50005aef5d3ea.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_7d00fdfff4aa2584d06c4731.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.ls2a{letter-spacing:-2.880000px;}
.ls28{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-1.008000px;}
.ls12{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000003px;}
.lsa{letter-spacing:0.072000px;}
.ls4{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.720000px;}
.ls1a{letter-spacing:2.880000px;}
.ls1b{letter-spacing:4.320000px;}
.lsd{letter-spacing:5.040000px;}
.ls1{letter-spacing:5.760000px;}
.ls21{letter-spacing:6.480000px;}
.ls3{letter-spacing:7.920000px;}
.ls29{letter-spacing:8.100000px;}
.ls1f{letter-spacing:8.640000px;}
.ls1e{letter-spacing:9.360000px;}
.ls10{letter-spacing:12.240000px;}
.ls20{letter-spacing:12.960000px;}
.ls1d{letter-spacing:16.560000px;}
.ls1c{letter-spacing:17.280000px;}
.lse{letter-spacing:18.000000px;}
.lsf{letter-spacing:18.720000px;}
.ls14{letter-spacing:21.600000px;}
.ls2b{letter-spacing:25.200000px;}
.ls5{letter-spacing:29.520000px;}
.ls23{letter-spacing:33.120000px;}
.ls24{letter-spacing:33.840000px;}
.ls2c{letter-spacing:33.960000px;}
.lsb{letter-spacing:37.440000px;}
.lsc{letter-spacing:46.080000px;}
.ls18{letter-spacing:48.240000px;}
.ls17{letter-spacing:48.360000px;}
.ls19{letter-spacing:48.960000px;}
.ls16{letter-spacing:50.400000px;}
.ls15{letter-spacing:55.440000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-18.432000px;}
.wsb{word-spacing:-18.360000px;}
.ws2{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.000003px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.712000px;}
.wsa{word-spacing:-16.920000px;}
.ws0{word-spacing:-16.560000px;}
.wsc{word-spacing:-15.120000px;}
.ws4{word-spacing:0.000000px;}
._2d{margin-left:-9.504000px;}
._36{margin-left:-6.480000px;}
._31{margin-left:-4.464000px;}
._21{margin-left:-2.616000px;}
._1{margin-left:-1.512000px;}
._0{width:1.104000px;}
._2{width:2.460000px;}
._f{width:3.504000px;}
._4{width:4.968000px;}
._18{width:6.000000px;}
._3{width:7.056000px;}
._9{width:8.400000px;}
._5{width:9.792000px;}
._6{width:10.920000px;}
._1b{width:12.024000px;}
._15{width:13.680000px;}
._1e{width:14.832000px;}
._a{width:15.984000px;}
._1a{width:17.436000px;}
._12{width:19.200000px;}
._11{width:20.520000px;}
._1d{width:22.608000px;}
._24{width:23.904000px;}
._b{width:25.560000px;}
._e{width:27.792000px;}
._10{width:28.812000px;}
._16{width:30.060000px;}
._7{width:31.824000px;}
._20{width:32.832000px;}
._25{width:34.128000px;}
._1f{width:35.496000px;}
._17{width:36.552000px;}
._19{width:37.764000px;}
._2c{width:38.904000px;}
._8{width:40.176000px;}
._29{width:42.300000px;}
._28{width:43.560000px;}
._1c{width:45.084000px;}
._c{width:46.800000px;}
._d{width:48.144000px;}
._35{width:50.688000px;}
._14{width:51.696000px;}
._13{width:53.316000px;}
._27{width:54.684000px;}
._26{width:56.304000px;}
._2e{width:57.888000px;}
._2a{width:59.616000px;}
._2b{width:60.684000px;}
._33{width:62.604000px;}
._32{width:63.648000px;}
._34{width:70.128000px;}
._30{width:77.088000px;}
._2f{width:78.624000px;}
._23{width:97.740000px;}
._22{width:99.504000px;}
._37{width:135.864000px;}
.fc6{color:transparent;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.y5f{bottom:7.020000px;}
.y50{bottom:7.065000px;}
.y40{bottom:7.200000px;}
.y42{bottom:7.380000px;}
.y73{bottom:7.410000px;}
.y62{bottom:7.560000px;}
.y5{bottom:57.636000px;}
.y1{bottom:68.976000px;}
.y4{bottom:77.796000px;}
.y71{bottom:106.776000px;}
.y9e{bottom:109.476000px;}
.y32{bottom:113.976000px;}
.y70{bottom:131.076000px;}
.y9d{bottom:133.236000px;}
.y4c{bottom:133.956000px;}
.y31{bottom:137.736000px;}
.y6f{bottom:154.830000px;}
.y9c{bottom:156.990000px;}
.y4b{bottom:157.890000px;}
.y30{bottom:161.490000px;}
.y6e{bottom:178.590000px;}
.y9b{bottom:180.570000px;}
.y4a{bottom:181.650000px;}
.y2f{bottom:185.430000px;}
.y6d{bottom:202.350000px;}
.y9a{bottom:204.330000px;}
.y49{bottom:205.410000px;}
.y2e{bottom:209.190000px;}
.y6c{bottom:226.290000px;}
.y99{bottom:228.450000px;}
.y48{bottom:229.170000px;}
.y2d{bottom:232.950000px;}
.y6b{bottom:250.050000px;}
.y98{bottom:252.210000px;}
.y47{bottom:253.110000px;}
.y2c{bottom:256.350000px;}
.y3c{bottom:256.710000px;}
.y6a{bottom:273.810000px;}
.y97{bottom:276.150000px;}
.y46{bottom:276.870000px;}
.y2b{bottom:280.290000px;}
.y3b{bottom:280.650000px;}
.y69{bottom:297.615000px;}
.y96{bottom:299.955000px;}
.y45{bottom:300.675000px;}
.y2a{bottom:304.455000px;}
.y44{bottom:317.775000px;}
.y68{bottom:321.555000px;}
.y95{bottom:323.715000px;}
.y29{bottom:328.215000px;}
.y43{bottom:342.435000px;}
.y67{bottom:345.315000px;}
.y94{bottom:347.475000px;}
.y28{bottom:351.975000px;}
.y41{bottom:366.915000px;}
.y66{bottom:369.075000px;}
.y93{bottom:371.415000px;}
.y27{bottom:375.915000px;}
.y3f{bottom:391.395000px;}
.y65{bottom:392.835000px;}
.y92{bottom:395.175000px;}
.y26{bottom:399.675000px;}
.y64{bottom:410.115000px;}
.y91{bottom:418.935000px;}
.y3e{bottom:423.075000px;}
.y25{bottom:423.435000px;}
.y63{bottom:434.595000px;}
.y90{bottom:442.695000px;}
.y3d{bottom:446.835000px;}
.y24{bottom:447.195000px;}
.y61{bottom:459.075000px;}
.y8f{bottom:466.635000px;}
.y23{bottom:471.135000px;}
.y60{bottom:483.735000px;}
.y8e{bottom:490.395000px;}
.y22{bottom:494.895000px;}
.y5e{bottom:508.215000px;}
.y8d{bottom:514.155000px;}
.y21{bottom:518.655000px;}
.y8c{bottom:537.915000px;}
.y5d{bottom:539.895000px;}
.y20{bottom:542.415000px;}
.y8b{bottom:561.855000px;}
.y5c{bottom:563.655000px;}
.y1f{bottom:566.385000px;}
.y8a{bottom:585.645000px;}
.y5b{bottom:587.805000px;}
.y1e{bottom:590.145000px;}
.y89{bottom:609.405000px;}
.y5a{bottom:611.745000px;}
.y1d{bottom:613.545000px;}
.y3a{bottom:613.905000px;}
.y88{bottom:633.165000px;}
.y59{bottom:635.505000px;}
.y1c{bottom:637.305000px;}
.y39{bottom:637.665000px;}
.y87{bottom:656.925000px;}
.y58{bottom:659.265000px;}
.y1b{bottom:661.425000px;}
.y86{bottom:680.865000px;}
.y57{bottom:683.025000px;}
.y1a{bottom:685.365000px;}
.y85{bottom:704.625000px;}
.y56{bottom:706.785000px;}
.y19{bottom:709.125000px;}
.y84{bottom:728.385000px;}
.y55{bottom:730.725000px;}
.y18{bottom:732.885000px;}
.y83{bottom:752.145000px;}
.y54{bottom:754.485000px;}
.y17{bottom:756.645000px;}
.y9f{bottom:758.085000px;}
.y82{bottom:776.085000px;}
.y53{bottom:778.245000px;}
.y16{bottom:780.585000px;}
.y81{bottom:799.485000px;}
.y52{bottom:802.005000px;}
.y15{bottom:804.345000px;}
.y51{bottom:819.285000px;}
.y80{bottom:823.605000px;}
.y14{bottom:828.105000px;}
.y4f{bottom:843.765000px;}
.y7f{bottom:847.410000px;}
.y13{bottom:851.910000px;}
.y7e{bottom:871.350000px;}
.y4e{bottom:875.490000px;}
.y12{bottom:875.850000px;}
.y7d{bottom:895.110000px;}
.y4d{bottom:899.250000px;}
.y11{bottom:899.610000px;}
.y7c{bottom:918.870000px;}
.y10{bottom:923.370000px;}
.y7b{bottom:942.630000px;}
.yf{bottom:947.130000px;}
.y7a{bottom:966.570000px;}
.ye{bottom:971.070000px;}
.y79{bottom:990.330000px;}
.yd{bottom:994.470000px;}
.y38{bottom:994.830000px;}
.y78{bottom:1014.090000px;}
.yc{bottom:1018.230000px;}
.y37{bottom:1018.590000px;}
.y77{bottom:1031.190000px;}
.yb{bottom:1042.350000px;}
.y76{bottom:1055.850000px;}
.ya{bottom:1066.290000px;}
.y75{bottom:1080.330000px;}
.y9{bottom:1089.690000px;}
.y36{bottom:1090.050000px;}
.y74{bottom:1104.810000px;}
.y8{bottom:1113.450000px;}
.y35{bottom:1113.810000px;}
.y72{bottom:1129.470000px;}
.y7{bottom:1137.240000px;}
.y34{bottom:1137.600000px;}
.y6{bottom:1161.180000px;}
.y33{bottom:1161.540000px;}
.y3{bottom:1193.580000px;}
.h2{height:16.920000px;}
.hb{height:23.760000px;}
.hc{height:23.796000px;}
.ha{height:23.940000px;}
.h8{height:54.878906px;}
.h9{height:63.457031px;}
.he{height:65.010937px;}
.h5{height:65.884219px;}
.h3{height:66.757500px;}
.h7{height:70.628906px;}
.h6{height:70.664062px;}
.h4{height:72.562500px;}
.hd{height:74.004654px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:43.020000px;}
.wd{width:126.900000px;}
.w5{width:137.556000px;}
.wc{width:147.996000px;}
.w6{width:148.140000px;}
.w9{width:148.176000px;}
.w7{width:168.870000px;}
.wa{width:169.380000px;}
.w8{width:232.770000px;}
.w4{width:243.390000px;}
.wf{width:254.550000px;}
.wb{width:275.250000px;}
.we{width:424.155000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:9.180000px;}
.x32{left:27.000000px;}
.x2e{left:31.680000px;}
.x22{left:33.480000px;}
.x1f{left:34.920000px;}
.x30{left:36.000000px;}
.x2a{left:37.665000px;}
.x27{left:38.925000px;}
.x19{left:40.500000px;}
.x1b{left:42.300000px;}
.x20{left:44.820000px;}
.x29{left:46.620000px;}
.x1d{left:49.365000px;}
.x23{left:50.805000px;}
.x21{left:52.965000px;}
.x28{left:64.074000px;}
.x17{left:71.994000px;}
.x31{left:76.134000px;}
.x33{left:79.014000px;}
.x1e{left:84.594000px;}
.x2f{left:91.434000px;}
.x2c{left:93.414000px;}
.x3b{left:97.380000px;}
.x38{left:111.420000px;}
.x16{left:119.916000px;}
.x34{left:122.754000px;}
.xf{left:127.655987px;}
.x10{left:149.615987px;}
.x3c{left:154.649987px;}
.x3{left:159.689987px;}
.x39{left:162.894000px;}
.x36{left:171.534000px;}
.x12{left:178.049987px;}
.xe{left:180.749987px;}
.x3a{left:183.639000px;}
.x7{left:186.689987px;}
.x37{left:192.999000px;}
.x13{left:197.489987px;}
.x2b{left:224.849987px;}
.x15{left:251.849987px;}
.x8{left:260.489987px;}
.xb{left:264.629987px;}
.x24{left:298.874987px;}
.x35{left:304.634987px;}
.x9{left:315.074987px;}
.xd{left:327.674987px;}
.x11{left:331.094987px;}
.xc{left:345.134987px;}
.x25{left:353.415000px;}
.x18{left:364.035000px;}
.x6{left:396.974987px;}
.xa{left:436.214987px;}
.x1{left:439.815000px;}
.x5{left:478.514987px;}
.x1a{left:502.305000px;}
.x2d{left:544.785000px;}
.x1c{left:651.165000px;}
.x26{left:672.405000px;}
.x14{left:749.849987px;}
.x4{left:829.409987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2a{letter-spacing:-2.560000pt;}
.ls28{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.896000pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000003pt;}
.lsa{letter-spacing:0.064000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:2.560000pt;}
.ls1b{letter-spacing:3.840000pt;}
.lsd{letter-spacing:4.480000pt;}
.ls1{letter-spacing:5.120000pt;}
.ls21{letter-spacing:5.760000pt;}
.ls3{letter-spacing:7.040000pt;}
.ls29{letter-spacing:7.200000pt;}
.ls1f{letter-spacing:7.680000pt;}
.ls1e{letter-spacing:8.320000pt;}
.ls10{letter-spacing:10.880000pt;}
.ls20{letter-spacing:11.520000pt;}
.ls1d{letter-spacing:14.720000pt;}
.ls1c{letter-spacing:15.360000pt;}
.lse{letter-spacing:16.000000pt;}
.lsf{letter-spacing:16.640000pt;}
.ls14{letter-spacing:19.200000pt;}
.ls2b{letter-spacing:22.400000pt;}
.ls5{letter-spacing:26.240000pt;}
.ls23{letter-spacing:29.440000pt;}
.ls24{letter-spacing:30.080000pt;}
.ls2c{letter-spacing:30.186667pt;}
.lsb{letter-spacing:33.280000pt;}
.lsc{letter-spacing:40.960000pt;}
.ls18{letter-spacing:42.880000pt;}
.ls17{letter-spacing:42.986667pt;}
.ls19{letter-spacing:43.520000pt;}
.ls16{letter-spacing:44.800000pt;}
.ls15{letter-spacing:49.280000pt;}
.ws8{word-spacing:-16.384000pt;}
.wsb{word-spacing:-16.320000pt;}
.ws2{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.000003pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.744000pt;}
.wsa{word-spacing:-15.040000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsc{word-spacing:-13.440000pt;}
.ws4{word-spacing:0.000000pt;}
._2d{margin-left:-8.448000pt;}
._36{margin-left:-5.760000pt;}
._31{margin-left:-3.968000pt;}
._21{margin-left:-2.325333pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.981333pt;}
._2{width:2.186667pt;}
._f{width:3.114667pt;}
._4{width:4.416000pt;}
._18{width:5.333333pt;}
._3{width:6.272000pt;}
._9{width:7.466667pt;}
._5{width:8.704000pt;}
._6{width:9.706667pt;}
._1b{width:10.688000pt;}
._15{width:12.160000pt;}
._1e{width:13.184000pt;}
._a{width:14.208000pt;}
._1a{width:15.498667pt;}
._12{width:17.066667pt;}
._11{width:18.240000pt;}
._1d{width:20.096000pt;}
._24{width:21.248000pt;}
._b{width:22.720000pt;}
._e{width:24.704000pt;}
._10{width:25.610667pt;}
._16{width:26.720000pt;}
._7{width:28.288000pt;}
._20{width:29.184000pt;}
._25{width:30.336000pt;}
._1f{width:31.552000pt;}
._17{width:32.490667pt;}
._19{width:33.568000pt;}
._2c{width:34.581333pt;}
._8{width:35.712000pt;}
._29{width:37.600000pt;}
._28{width:38.720000pt;}
._1c{width:40.074667pt;}
._c{width:41.600000pt;}
._d{width:42.794667pt;}
._35{width:45.056000pt;}
._14{width:45.952000pt;}
._13{width:47.392000pt;}
._27{width:48.608000pt;}
._26{width:50.048000pt;}
._2e{width:51.456000pt;}
._2a{width:52.992000pt;}
._2b{width:53.941333pt;}
._33{width:55.648000pt;}
._32{width:56.576000pt;}
._34{width:62.336000pt;}
._30{width:68.522667pt;}
._2f{width:69.888000pt;}
._23{width:86.880000pt;}
._22{width:88.448000pt;}
._37{width:120.768000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.y5f{bottom:6.240000pt;}
.y50{bottom:6.280000pt;}
.y40{bottom:6.400000pt;}
.y42{bottom:6.560000pt;}
.y73{bottom:6.586667pt;}
.y62{bottom:6.720000pt;}
.y5{bottom:51.232000pt;}
.y1{bottom:61.312000pt;}
.y4{bottom:69.152000pt;}
.y71{bottom:94.912000pt;}
.y9e{bottom:97.312000pt;}
.y32{bottom:101.312000pt;}
.y70{bottom:116.512000pt;}
.y9d{bottom:118.432000pt;}
.y4c{bottom:119.072000pt;}
.y31{bottom:122.432000pt;}
.y6f{bottom:137.626667pt;}
.y9c{bottom:139.546667pt;}
.y4b{bottom:140.346667pt;}
.y30{bottom:143.546667pt;}
.y6e{bottom:158.746667pt;}
.y9b{bottom:160.506667pt;}
.y4a{bottom:161.466667pt;}
.y2f{bottom:164.826667pt;}
.y6d{bottom:179.866667pt;}
.y9a{bottom:181.626667pt;}
.y49{bottom:182.586667pt;}
.y2e{bottom:185.946667pt;}
.y6c{bottom:201.146667pt;}
.y99{bottom:203.066667pt;}
.y48{bottom:203.706667pt;}
.y2d{bottom:207.066667pt;}
.y6b{bottom:222.266667pt;}
.y98{bottom:224.186667pt;}
.y47{bottom:224.986667pt;}
.y2c{bottom:227.866667pt;}
.y3c{bottom:228.186667pt;}
.y6a{bottom:243.386667pt;}
.y97{bottom:245.466667pt;}
.y46{bottom:246.106667pt;}
.y2b{bottom:249.146667pt;}
.y3b{bottom:249.466667pt;}
.y69{bottom:264.546667pt;}
.y96{bottom:266.626667pt;}
.y45{bottom:267.266667pt;}
.y2a{bottom:270.626667pt;}
.y44{bottom:282.466667pt;}
.y68{bottom:285.826667pt;}
.y95{bottom:287.746667pt;}
.y29{bottom:291.746667pt;}
.y43{bottom:304.386667pt;}
.y67{bottom:306.946667pt;}
.y94{bottom:308.866667pt;}
.y28{bottom:312.866667pt;}
.y41{bottom:326.146667pt;}
.y66{bottom:328.066667pt;}
.y93{bottom:330.146667pt;}
.y27{bottom:334.146667pt;}
.y3f{bottom:347.906667pt;}
.y65{bottom:349.186667pt;}
.y92{bottom:351.266667pt;}
.y26{bottom:355.266667pt;}
.y64{bottom:364.546667pt;}
.y91{bottom:372.386667pt;}
.y3e{bottom:376.066667pt;}
.y25{bottom:376.386667pt;}
.y63{bottom:386.306667pt;}
.y90{bottom:393.506667pt;}
.y3d{bottom:397.186667pt;}
.y24{bottom:397.506667pt;}
.y61{bottom:408.066667pt;}
.y8f{bottom:414.786667pt;}
.y23{bottom:418.786667pt;}
.y60{bottom:429.986667pt;}
.y8e{bottom:435.906667pt;}
.y22{bottom:439.906667pt;}
.y5e{bottom:451.746667pt;}
.y8d{bottom:457.026667pt;}
.y21{bottom:461.026667pt;}
.y8c{bottom:478.146667pt;}
.y5d{bottom:479.906667pt;}
.y20{bottom:482.146667pt;}
.y8b{bottom:499.426667pt;}
.y5c{bottom:501.026667pt;}
.y1f{bottom:503.453333pt;}
.y8a{bottom:520.573333pt;}
.y5b{bottom:522.493333pt;}
.y1e{bottom:524.573333pt;}
.y89{bottom:541.693333pt;}
.y5a{bottom:543.773333pt;}
.y1d{bottom:545.373333pt;}
.y3a{bottom:545.693333pt;}
.y88{bottom:562.813333pt;}
.y59{bottom:564.893333pt;}
.y1c{bottom:566.493333pt;}
.y39{bottom:566.813333pt;}
.y87{bottom:583.933333pt;}
.y58{bottom:586.013333pt;}
.y1b{bottom:587.933333pt;}
.y86{bottom:605.213333pt;}
.y57{bottom:607.133333pt;}
.y1a{bottom:609.213333pt;}
.y85{bottom:626.333333pt;}
.y56{bottom:628.253333pt;}
.y19{bottom:630.333333pt;}
.y84{bottom:647.453333pt;}
.y55{bottom:649.533333pt;}
.y18{bottom:651.453333pt;}
.y83{bottom:668.573333pt;}
.y54{bottom:670.653333pt;}
.y17{bottom:672.573333pt;}
.y9f{bottom:673.853333pt;}
.y82{bottom:689.853333pt;}
.y53{bottom:691.773333pt;}
.y16{bottom:693.853333pt;}
.y81{bottom:710.653333pt;}
.y52{bottom:712.893333pt;}
.y15{bottom:714.973333pt;}
.y51{bottom:728.253333pt;}
.y80{bottom:732.093333pt;}
.y14{bottom:736.093333pt;}
.y4f{bottom:750.013333pt;}
.y7f{bottom:753.253333pt;}
.y13{bottom:757.253333pt;}
.y7e{bottom:774.533333pt;}
.y4e{bottom:778.213333pt;}
.y12{bottom:778.533333pt;}
.y7d{bottom:795.653333pt;}
.y4d{bottom:799.333333pt;}
.y11{bottom:799.653333pt;}
.y7c{bottom:816.773333pt;}
.y10{bottom:820.773333pt;}
.y7b{bottom:837.893333pt;}
.yf{bottom:841.893333pt;}
.y7a{bottom:859.173333pt;}
.ye{bottom:863.173333pt;}
.y79{bottom:880.293333pt;}
.yd{bottom:883.973333pt;}
.y38{bottom:884.293333pt;}
.y78{bottom:901.413333pt;}
.yc{bottom:905.093333pt;}
.y37{bottom:905.413333pt;}
.y77{bottom:916.613333pt;}
.yb{bottom:926.533333pt;}
.y76{bottom:938.533333pt;}
.ya{bottom:947.813333pt;}
.y75{bottom:960.293333pt;}
.y9{bottom:968.613333pt;}
.y36{bottom:968.933333pt;}
.y74{bottom:982.053333pt;}
.y8{bottom:989.733333pt;}
.y35{bottom:990.053333pt;}
.y72{bottom:1003.973333pt;}
.y7{bottom:1010.880000pt;}
.y34{bottom:1011.200000pt;}
.y6{bottom:1032.160000pt;}
.y33{bottom:1032.480000pt;}
.y3{bottom:1060.960000pt;}
.h2{height:15.040000pt;}
.hb{height:21.120000pt;}
.hc{height:21.152000pt;}
.ha{height:21.280000pt;}
.h8{height:48.781250pt;}
.h9{height:56.406250pt;}
.he{height:57.787500pt;}
.h5{height:58.563750pt;}
.h3{height:59.340000pt;}
.h7{height:62.781250pt;}
.h6{height:62.812500pt;}
.h4{height:64.500000pt;}
.hd{height:65.781915pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:38.240000pt;}
.wd{width:112.800000pt;}
.w5{width:122.272000pt;}
.wc{width:131.552000pt;}
.w6{width:131.680000pt;}
.w9{width:131.712000pt;}
.w7{width:150.106667pt;}
.wa{width:150.560000pt;}
.w8{width:206.906667pt;}
.w4{width:216.346667pt;}
.wf{width:226.266667pt;}
.wb{width:244.666667pt;}
.we{width:377.026667pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:8.160000pt;}
.x32{left:24.000000pt;}
.x2e{left:28.160000pt;}
.x22{left:29.760000pt;}
.x1f{left:31.040000pt;}
.x30{left:32.000000pt;}
.x2a{left:33.480000pt;}
.x27{left:34.600000pt;}
.x19{left:36.000000pt;}
.x1b{left:37.600000pt;}
.x20{left:39.840000pt;}
.x29{left:41.440000pt;}
.x1d{left:43.880000pt;}
.x23{left:45.160000pt;}
.x21{left:47.080000pt;}
.x28{left:56.954667pt;}
.x17{left:63.994667pt;}
.x31{left:67.674667pt;}
.x33{left:70.234667pt;}
.x1e{left:75.194667pt;}
.x2f{left:81.274667pt;}
.x2c{left:83.034667pt;}
.x3b{left:86.560000pt;}
.x38{left:99.040000pt;}
.x16{left:106.592000pt;}
.x34{left:109.114667pt;}
.xf{left:113.471988pt;}
.x10{left:132.991988pt;}
.x3c{left:137.466655pt;}
.x3{left:141.946655pt;}
.x39{left:144.794667pt;}
.x36{left:152.474667pt;}
.x12{left:158.266655pt;}
.xe{left:160.666655pt;}
.x3a{left:163.234667pt;}
.x7{left:165.946655pt;}
.x37{left:171.554667pt;}
.x13{left:175.546655pt;}
.x2b{left:199.866655pt;}
.x15{left:223.866655pt;}
.x8{left:231.546655pt;}
.xb{left:235.226655pt;}
.x24{left:265.666655pt;}
.x35{left:270.786655pt;}
.x9{left:280.066655pt;}
.xd{left:291.266655pt;}
.x11{left:294.306655pt;}
.xc{left:306.786655pt;}
.x25{left:314.146667pt;}
.x18{left:323.586667pt;}
.x6{left:352.866655pt;}
.xa{left:387.746655pt;}
.x1{left:390.946667pt;}
.x5{left:425.346655pt;}
.x1a{left:446.493333pt;}
.x2d{left:484.253333pt;}
.x1c{left:578.813333pt;}
.x26{left:597.693333pt;}
.x14{left:666.533322pt;}
.x4{left:737.253322pt;}
}




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