
    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_440f35a87d0ed93b85161755.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_22f57ab37b6d1d83a9efaab7.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a240784a68ccb10ff458f362.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_24680d00ab75fc4ce6956ec5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b25fc273be591d074ff23f12.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.756836;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_c994c89dc879b8a9192ffd20.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3ca9e927e485a4219c5e64b6.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_a70e384c73a7a12b0ae73e6b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ab44be4dac1596aaf6060861.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.187012;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_1a60628dd7235a00b6b0c6ce.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.187500;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:ffc;src:url('chunks/assets/font_f7e063093bf7695ac3e98fdf.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.987793;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:ffd;src:url('chunks/assets/font_c0261d53699de4b07b6b70bc.woff2')format("woff");}.ffd{font-family:ffd;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);}
.v2{vertical-align:-80.640000px;}
.v1{vertical-align:-74.160000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-0.109200px;}
.ls4{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.013440px;}
.ls12{letter-spacing:0.075600px;}
.lsa{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.305280px;}
.ls7{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.513600px;}
.lsd{letter-spacing:0.828000px;}
.lse{letter-spacing:1.080000px;}
.lsc{letter-spacing:9.540000px;}
.ls10{letter-spacing:16.506720px;}
.lsf{letter-spacing:46.026720px;}
.ls9{letter-spacing:71.226720px;}
.ls2{letter-spacing:314.796000px;}
.ls0{letter-spacing:2146.056000px;}
.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;}
}
.ws1{word-spacing:-66.240000px;}
.ws3{word-spacing:-20.016000px;}
.ws7{word-spacing:-18.414720px;}
.ws2{word-spacing:-18.305520px;}
.ws0{word-spacing:-16.506480px;}
.ws9{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.015600px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:-0.059760px;}
.ws6{word-spacing:0.000000px;}
._14{margin-left:-2.007600px;}
._2{margin-left:-1.000800px;}
._0{width:1.254960px;}
._6{width:3.112080px;}
._9{width:4.417680px;}
._c{width:5.633280px;}
._b{width:6.932160px;}
._f{width:8.030640px;}
._e{width:9.240000px;}
._d{width:10.361280px;}
._10{width:11.547840px;}
._11{width:12.549600px;}
._13{width:13.565520px;}
._a{width:16.553520px;}
._4{width:18.388800px;}
._3{width:19.872000px;}
._12{width:21.214800px;}
._15{width:23.306400px;}
._17{width:24.321600px;}
._8{width:27.873360px;}
._7{width:29.147040px;}
._16{width:32.330160px;}
._5{width:34.182720px;}
._1a{width:35.589120px;}
._1b{width:53.421840px;}
._1c{width:54.441360px;}
._1{width:358.688400px;}
._18{width:1057.333680px;}
._19{width:1058.767920px;}
.fc3{color:transparent;}
.fc4{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(77,77,77);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:51.120000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:47.340000px;}
.ya8{bottom:123.480000px;}
.ya7{bottom:140.760000px;}
.y6d{bottom:144.540000px;}
.yde{bottom:157.860000px;}
.ya6{bottom:158.040000px;}
.y6c{bottom:161.820000px;}
.ya5{bottom:175.320000px;}
.ydd{bottom:176.580000px;}
.y6b{bottom:179.100000px;}
.y35{bottom:182.340000px;}
.ya4{bottom:192.600000px;}
.ydc{bottom:195.300000px;}
.y6a{bottom:196.380000px;}
.y34{bottom:199.620000px;}
.ya3{bottom:209.730000px;}
.y69{bottom:213.510000px;}
.ydb{bottom:213.870000px;}
.y33{bottom:216.750000px;}
.ya2{bottom:227.010000px;}
.y68{bottom:230.790000px;}
.yda{bottom:232.590000px;}
.y32{bottom:234.030000px;}
.ya1{bottom:244.290000px;}
.y67{bottom:248.070000px;}
.yd9{bottom:251.130000px;}
.y31{bottom:251.310000px;}
.ya0{bottom:261.570000px;}
.y66{bottom:265.350000px;}
.y30{bottom:268.590000px;}
.yd8{bottom:269.850000px;}
.y9f{bottom:278.850000px;}
.y65{bottom:282.630000px;}
.y2f{bottom:285.870000px;}
.yd7{bottom:288.390000px;}
.y9e{bottom:296.130000px;}
.y64{bottom:299.730000px;}
.y2e{bottom:303.150000px;}
.yd6{bottom:307.110000px;}
.y9d{bottom:313.230000px;}
.y63{bottom:317.010000px;}
.y2d{bottom:320.250000px;}
.yd5{bottom:325.650000px;}
.y9c{bottom:330.510000px;}
.y62{bottom:334.290000px;}
.y2c{bottom:337.530000px;}
.yd4{bottom:344.370000px;}
.y9b{bottom:347.790000px;}
.y61{bottom:351.570000px;}
.y2b{bottom:354.810000px;}
.yd3{bottom:363.090000px;}
.y9a{bottom:365.070000px;}
.y60{bottom:368.850000px;}
.y2a{bottom:372.090000px;}
.yd2{bottom:381.630000px;}
.y99{bottom:382.350000px;}
.y5f{bottom:386.130000px;}
.y29{bottom:389.370000px;}
.y98{bottom:399.630000px;}
.yd1{bottom:400.350000px;}
.y5e{bottom:403.230000px;}
.y28{bottom:406.470000px;}
.y97{bottom:416.730000px;}
.yd0{bottom:418.890000px;}
.y5d{bottom:420.510000px;}
.y27{bottom:423.750000px;}
.y96{bottom:434.010000px;}
.ycf{bottom:437.610000px;}
.y5c{bottom:437.790000px;}
.y26{bottom:441.075000px;}
.yae{bottom:450.975000px;}
.y95{bottom:451.335000px;}
.y5b{bottom:455.115000px;}
.yce{bottom:456.195000px;}
.y25{bottom:458.355000px;}
.y94{bottom:468.615000px;}
.y5a{bottom:472.395000px;}
.ycd{bottom:474.915000px;}
.y24{bottom:475.635000px;}
.y93{bottom:485.895000px;}
.y59{bottom:489.675000px;}
.y23{bottom:492.915000px;}
.ycc{bottom:493.455000px;}
.y92{bottom:502.995000px;}
.y58{bottom:506.775000px;}
.ycb{bottom:512.175000px;}
.y22{bottom:517.215000px;}
.y91{bottom:519.915000px;}
.yad{bottom:520.275000px;}
.y57{bottom:524.055000px;}
.y21{bottom:529.095000px;}
.yca{bottom:530.895000px;}
.y90{bottom:537.555000px;}
.y56{bottom:541.335000px;}
.y20{bottom:547.635000px;}
.yc9{bottom:549.435000px;}
.y8f{bottom:554.835000px;}
.y55{bottom:558.615000px;}
.y1f{bottom:564.555000px;}
.yc8{bottom:568.155000px;}
.y8e{bottom:572.115000px;}
.y54{bottom:575.895000px;}
.y1e{bottom:581.835000px;}
.yc7{bottom:586.695000px;}
.y8d{bottom:589.395000px;}
.y53{bottom:592.995000px;}
.y1d{bottom:600.375000px;}
.yc6{bottom:605.415000px;}
.y8c{bottom:606.495000px;}
.y52{bottom:610.275000px;}
.y1c{bottom:617.295000px;}
.y8b{bottom:623.775000px;}
.yc5{bottom:623.955000px;}
.y51{bottom:627.555000px;}
.y1b{bottom:634.035000px;}
.y8a{bottom:641.055000px;}
.yc4{bottom:642.675000px;}
.y50{bottom:644.835000px;}
.y1a{bottom:650.235000px;}
.y89{bottom:658.335000px;}
.yc3{bottom:661.215000px;}
.y4f{bottom:662.115000px;}
.y19{bottom:666.075000px;}
.y88{bottom:675.615000px;}
.y4e{bottom:679.425000px;}
.yc2{bottom:679.965000px;}
.y18{bottom:681.945000px;}
.y87{bottom:692.565000px;}
.yac{bottom:692.925000px;}
.y4d{bottom:696.525000px;}
.y17{bottom:697.605000px;}
.yc1{bottom:698.685000px;}
.y86{bottom:710.025000px;}
.y16{bottom:713.445000px;}
.y4c{bottom:713.805000px;}
.yc0{bottom:717.225000px;}
.yaf{bottom:726.945000px;}
.y85{bottom:727.305000px;}
.y15{bottom:729.285000px;}
.y4b{bottom:730.725000px;}
.ybf{bottom:735.945000px;}
.y84{bottom:744.585000px;}
.y14{bottom:745.125000px;}
.y4a{bottom:748.005000px;}
.ybe{bottom:754.485000px;}
.y83{bottom:761.865000px;}
.y13{bottom:762.225000px;}
.y49{bottom:766.005000px;}
.ybd{bottom:773.205000px;}
.y82{bottom:779.145000px;}
.y12{bottom:782.925000px;}
.y48{bottom:784.725000px;}
.ybc{bottom:791.745000px;}
.y81{bottom:796.245000px;}
.yf1{bottom:804.885000px;}
.y11{bottom:805.245000px;}
.ybb{bottom:810.465000px;}
.y47{bottom:812.445000px;}
.y80{bottom:813.525000px;}
.yf0{bottom:823.605000px;}
.yba{bottom:829.005000px;}
.yab{bottom:830.445000px;}
.y7f{bottom:830.805000px;}
.y46{bottom:830.985000px;}
.yef{bottom:842.145000px;}
.y10{bottom:847.725000px;}
.y7e{bottom:848.085000px;}
.y45{bottom:849.705000px;}
.yee{bottom:860.865000px;}
.yf{bottom:865.005000px;}
.y7d{bottom:865.365000px;}
.yb9{bottom:866.445000px;}
.y44{bottom:868.245000px;}
.yed{bottom:879.405000px;}
.ye{bottom:882.285000px;}
.y7c{bottom:882.645000px;}
.yb8{bottom:884.985000px;}
.y43{bottom:886.965000px;}
.yec{bottom:898.125000px;}
.yd{bottom:899.385000px;}
.y7b{bottom:899.745000px;}
.yb7{bottom:903.705000px;}
.y42{bottom:905.505000px;}
.yeb{bottom:916.710000px;}
.y7a{bottom:917.070000px;}
.yc{bottom:919.410000px;}
.yb6{bottom:922.290000px;}
.y41{bottom:924.270000px;}
.yaa{bottom:933.990000px;}
.y79{bottom:934.350000px;}
.yea{bottom:935.430000px;}
.yb5{bottom:941.010000px;}
.y40{bottom:942.810000px;}
.yb{bottom:950.370000px;}
.y78{bottom:951.630000px;}
.ye9{bottom:953.970000px;}
.yb4{bottom:959.550000px;}
.y3f{bottom:960.630000px;}
.y77{bottom:968.910000px;}
.ye8{bottom:972.690000px;}
.y3e{bottom:978.270000px;}
.ya{bottom:978.810000px;}
.y76{bottom:986.190000px;}
.ye7{bottom:991.410000px;}
.y3d{bottom:995.550000px;}
.y9{bottom:996.630000px;}
.yb3{bottom:996.810000px;}
.y75{bottom:1003.290000px;}
.ye6{bottom:1009.950000px;}
.y3c{bottom:1012.470000px;}
.y8{bottom:1015.530000px;}
.y74{bottom:1020.570000px;}
.ye5{bottom:1028.670000px;}
.y3b{bottom:1031.010000px;}
.yb2{bottom:1034.250000px;}
.y7{bottom:1034.430000px;}
.y73{bottom:1037.850000px;}
.ye4{bottom:1047.210000px;}
.yb1{bottom:1052.790000px;}
.y3a{bottom:1055.130000px;}
.ye3{bottom:1065.930000px;}
.yb0{bottom:1071.510000px;}
.y6{bottom:1072.050000px;}
.y72{bottom:1072.410000px;}
.y39{bottom:1079.790000px;}
.ye2{bottom:1084.470000px;}
.y5{bottom:1089.330000px;}
.y71{bottom:1089.690000px;}
.y38{bottom:1099.950000px;}
.ye1{bottom:1103.190000px;}
.y4{bottom:1106.430000px;}
.ya9{bottom:1106.790000px;}
.y37{bottom:1119.030000px;}
.ye0{bottom:1121.730000px;}
.y3{bottom:1123.710000px;}
.y70{bottom:1124.070000px;}
.y36{bottom:1134.330000px;}
.ydf{bottom:1140.450000px;}
.y2{bottom:1140.990000px;}
.y6f{bottom:1141.350000px;}
.y6e{bottom:1172.880000px;}
.ha{height:38.158594px;}
.h8{height:50.845430px;}
.h7{height:53.316562px;}
.hf{height:53.573906px;}
.hd{height:54.069961px;}
.he{height:54.099141px;}
.h9{height:58.651172px;}
.h3{height:60.226875px;}
.h2{height:62.327813px;}
.hb{height:65.884219px;}
.h4{height:69.086250px;}
.h6{height:75.093750px;}
.hc{height:84.898125px;}
.h5{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.036000px;}
.xc{left:135.036000px;}
.x8{left:224.490000px;}
.x6{left:350.895000px;}
.xa{left:358.995000px;}
.x9{left:385.275000px;}
.x5{left:430.095000px;}
.x3{left:521.745000px;}
.x4{left:698.910000px;}
.x7{left:776.850000px;}
.x2{left:783.150000px;}
.xb{left:785.130000px;}
@media print{
.v2{vertical-align:-71.680000pt;}
.v1{vertical-align:-65.920000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.097067pt;}
.ls4{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.011947pt;}
.ls12{letter-spacing:0.067200pt;}
.lsa{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.271360pt;}
.ls7{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.456533pt;}
.lsd{letter-spacing:0.736000pt;}
.lse{letter-spacing:0.960000pt;}
.lsc{letter-spacing:8.480000pt;}
.ls10{letter-spacing:14.672640pt;}
.lsf{letter-spacing:40.912640pt;}
.ls9{letter-spacing:63.312640pt;}
.ls2{letter-spacing:279.818667pt;}
.ls0{letter-spacing:1907.605333pt;}
.ws1{word-spacing:-58.880000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws7{word-spacing:-16.368640pt;}
.ws2{word-spacing:-16.271573pt;}
.ws0{word-spacing:-14.672427pt;}
.ws9{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.347200pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:-0.053120pt;}
.ws6{word-spacing:0.000000pt;}
._14{margin-left:-1.784533pt;}
._2{margin-left:-0.889600pt;}
._0{width:1.115520pt;}
._6{width:2.766293pt;}
._9{width:3.926827pt;}
._c{width:5.007360pt;}
._b{width:6.161920pt;}
._f{width:7.138347pt;}
._e{width:8.213333pt;}
._d{width:9.210027pt;}
._10{width:10.264747pt;}
._11{width:11.155200pt;}
._13{width:12.058240pt;}
._a{width:14.714240pt;}
._4{width:16.345600pt;}
._3{width:17.664000pt;}
._12{width:18.857600pt;}
._15{width:20.716800pt;}
._17{width:21.619200pt;}
._8{width:24.776320pt;}
._7{width:25.908480pt;}
._16{width:28.737920pt;}
._5{width:30.384640pt;}
._1a{width:31.634773pt;}
._1b{width:47.486080pt;}
._1c{width:48.392320pt;}
._1{width:318.834133pt;}
._18{width:939.852160pt;}
._19{width:941.127040pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:45.440000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:42.080000pt;}
.ya8{bottom:109.760000pt;}
.ya7{bottom:125.120000pt;}
.y6d{bottom:128.480000pt;}
.yde{bottom:140.320000pt;}
.ya6{bottom:140.480000pt;}
.y6c{bottom:143.840000pt;}
.ya5{bottom:155.840000pt;}
.ydd{bottom:156.960000pt;}
.y6b{bottom:159.200000pt;}
.y35{bottom:162.080000pt;}
.ya4{bottom:171.200000pt;}
.ydc{bottom:173.600000pt;}
.y6a{bottom:174.560000pt;}
.y34{bottom:177.440000pt;}
.ya3{bottom:186.426667pt;}
.y69{bottom:189.786667pt;}
.ydb{bottom:190.106667pt;}
.y33{bottom:192.666667pt;}
.ya2{bottom:201.786667pt;}
.y68{bottom:205.146667pt;}
.yda{bottom:206.746667pt;}
.y32{bottom:208.026667pt;}
.ya1{bottom:217.146667pt;}
.y67{bottom:220.506667pt;}
.yd9{bottom:223.226667pt;}
.y31{bottom:223.386667pt;}
.ya0{bottom:232.506667pt;}
.y66{bottom:235.866667pt;}
.y30{bottom:238.746667pt;}
.yd8{bottom:239.866667pt;}
.y9f{bottom:247.866667pt;}
.y65{bottom:251.226667pt;}
.y2f{bottom:254.106667pt;}
.yd7{bottom:256.346667pt;}
.y9e{bottom:263.226667pt;}
.y64{bottom:266.426667pt;}
.y2e{bottom:269.466667pt;}
.yd6{bottom:272.986667pt;}
.y9d{bottom:278.426667pt;}
.y63{bottom:281.786667pt;}
.y2d{bottom:284.666667pt;}
.yd5{bottom:289.466667pt;}
.y9c{bottom:293.786667pt;}
.y62{bottom:297.146667pt;}
.y2c{bottom:300.026667pt;}
.yd4{bottom:306.106667pt;}
.y9b{bottom:309.146667pt;}
.y61{bottom:312.506667pt;}
.y2b{bottom:315.386667pt;}
.yd3{bottom:322.746667pt;}
.y9a{bottom:324.506667pt;}
.y60{bottom:327.866667pt;}
.y2a{bottom:330.746667pt;}
.yd2{bottom:339.226667pt;}
.y99{bottom:339.866667pt;}
.y5f{bottom:343.226667pt;}
.y29{bottom:346.106667pt;}
.y98{bottom:355.226667pt;}
.yd1{bottom:355.866667pt;}
.y5e{bottom:358.426667pt;}
.y28{bottom:361.306667pt;}
.y97{bottom:370.426667pt;}
.yd0{bottom:372.346667pt;}
.y5d{bottom:373.786667pt;}
.y27{bottom:376.666667pt;}
.y96{bottom:385.786667pt;}
.ycf{bottom:388.986667pt;}
.y5c{bottom:389.146667pt;}
.y26{bottom:392.066667pt;}
.yae{bottom:400.866667pt;}
.y95{bottom:401.186667pt;}
.y5b{bottom:404.546667pt;}
.yce{bottom:405.506667pt;}
.y25{bottom:407.426667pt;}
.y94{bottom:416.546667pt;}
.y5a{bottom:419.906667pt;}
.ycd{bottom:422.146667pt;}
.y24{bottom:422.786667pt;}
.y93{bottom:431.906667pt;}
.y59{bottom:435.266667pt;}
.y23{bottom:438.146667pt;}
.ycc{bottom:438.626667pt;}
.y92{bottom:447.106667pt;}
.y58{bottom:450.466667pt;}
.ycb{bottom:455.266667pt;}
.y22{bottom:459.746667pt;}
.y91{bottom:462.146667pt;}
.yad{bottom:462.466667pt;}
.y57{bottom:465.826667pt;}
.y21{bottom:470.306667pt;}
.yca{bottom:471.906667pt;}
.y90{bottom:477.826667pt;}
.y56{bottom:481.186667pt;}
.y20{bottom:486.786667pt;}
.yc9{bottom:488.386667pt;}
.y8f{bottom:493.186667pt;}
.y55{bottom:496.546667pt;}
.y1f{bottom:501.826667pt;}
.yc8{bottom:505.026667pt;}
.y8e{bottom:508.546667pt;}
.y54{bottom:511.906667pt;}
.y1e{bottom:517.186667pt;}
.yc7{bottom:521.506667pt;}
.y8d{bottom:523.906667pt;}
.y53{bottom:527.106667pt;}
.y1d{bottom:533.666667pt;}
.yc6{bottom:538.146667pt;}
.y8c{bottom:539.106667pt;}
.y52{bottom:542.466667pt;}
.y1c{bottom:548.706667pt;}
.y8b{bottom:554.466667pt;}
.yc5{bottom:554.626667pt;}
.y51{bottom:557.826667pt;}
.y1b{bottom:563.586667pt;}
.y8a{bottom:569.826667pt;}
.yc4{bottom:571.266667pt;}
.y50{bottom:573.186667pt;}
.y1a{bottom:577.986667pt;}
.y89{bottom:585.186667pt;}
.yc3{bottom:587.746667pt;}
.y4f{bottom:588.546667pt;}
.y19{bottom:592.066667pt;}
.y88{bottom:600.546667pt;}
.y4e{bottom:603.933333pt;}
.yc2{bottom:604.413333pt;}
.y18{bottom:606.173333pt;}
.y87{bottom:615.613333pt;}
.yac{bottom:615.933333pt;}
.y4d{bottom:619.133333pt;}
.y17{bottom:620.093333pt;}
.yc1{bottom:621.053333pt;}
.y86{bottom:631.133333pt;}
.y16{bottom:634.173333pt;}
.y4c{bottom:634.493333pt;}
.yc0{bottom:637.533333pt;}
.yaf{bottom:646.173333pt;}
.y85{bottom:646.493333pt;}
.y15{bottom:648.253333pt;}
.y4b{bottom:649.533333pt;}
.ybf{bottom:654.173333pt;}
.y84{bottom:661.853333pt;}
.y14{bottom:662.333333pt;}
.y4a{bottom:664.893333pt;}
.ybe{bottom:670.653333pt;}
.y83{bottom:677.213333pt;}
.y13{bottom:677.533333pt;}
.y49{bottom:680.893333pt;}
.ybd{bottom:687.293333pt;}
.y82{bottom:692.573333pt;}
.y12{bottom:695.933333pt;}
.y48{bottom:697.533333pt;}
.ybc{bottom:703.773333pt;}
.y81{bottom:707.773333pt;}
.yf1{bottom:715.453333pt;}
.y11{bottom:715.773333pt;}
.ybb{bottom:720.413333pt;}
.y47{bottom:722.173333pt;}
.y80{bottom:723.133333pt;}
.yf0{bottom:732.093333pt;}
.yba{bottom:736.893333pt;}
.yab{bottom:738.173333pt;}
.y7f{bottom:738.493333pt;}
.y46{bottom:738.653333pt;}
.yef{bottom:748.573333pt;}
.y10{bottom:753.533333pt;}
.y7e{bottom:753.853333pt;}
.y45{bottom:755.293333pt;}
.yee{bottom:765.213333pt;}
.yf{bottom:768.893333pt;}
.y7d{bottom:769.213333pt;}
.yb9{bottom:770.173333pt;}
.y44{bottom:771.773333pt;}
.yed{bottom:781.693333pt;}
.ye{bottom:784.253333pt;}
.y7c{bottom:784.573333pt;}
.yb8{bottom:786.653333pt;}
.y43{bottom:788.413333pt;}
.yec{bottom:798.333333pt;}
.yd{bottom:799.453333pt;}
.y7b{bottom:799.773333pt;}
.yb7{bottom:803.293333pt;}
.y42{bottom:804.893333pt;}
.yeb{bottom:814.853333pt;}
.y7a{bottom:815.173333pt;}
.yc{bottom:817.253333pt;}
.yb6{bottom:819.813333pt;}
.y41{bottom:821.573333pt;}
.yaa{bottom:830.213333pt;}
.y79{bottom:830.533333pt;}
.yea{bottom:831.493333pt;}
.yb5{bottom:836.453333pt;}
.y40{bottom:838.053333pt;}
.yb{bottom:844.773333pt;}
.y78{bottom:845.893333pt;}
.ye9{bottom:847.973333pt;}
.yb4{bottom:852.933333pt;}
.y3f{bottom:853.893333pt;}
.y77{bottom:861.253333pt;}
.ye8{bottom:864.613333pt;}
.y3e{bottom:869.573333pt;}
.ya{bottom:870.053333pt;}
.y76{bottom:876.613333pt;}
.ye7{bottom:881.253333pt;}
.y3d{bottom:884.933333pt;}
.y9{bottom:885.893333pt;}
.yb3{bottom:886.053333pt;}
.y75{bottom:891.813333pt;}
.ye6{bottom:897.733333pt;}
.y3c{bottom:899.973333pt;}
.y8{bottom:902.693333pt;}
.y74{bottom:907.173333pt;}
.ye5{bottom:914.373333pt;}
.y3b{bottom:916.453333pt;}
.yb2{bottom:919.333333pt;}
.y7{bottom:919.493333pt;}
.y73{bottom:922.533333pt;}
.ye4{bottom:930.853333pt;}
.yb1{bottom:935.813333pt;}
.y3a{bottom:937.893333pt;}
.ye3{bottom:947.493333pt;}
.yb0{bottom:952.453333pt;}
.y6{bottom:952.933333pt;}
.y72{bottom:953.253333pt;}
.y39{bottom:959.813333pt;}
.ye2{bottom:963.973333pt;}
.y5{bottom:968.293333pt;}
.y71{bottom:968.613333pt;}
.y38{bottom:977.733333pt;}
.ye1{bottom:980.613333pt;}
.y4{bottom:983.493333pt;}
.ya9{bottom:983.813333pt;}
.y37{bottom:994.693333pt;}
.ye0{bottom:997.093333pt;}
.y3{bottom:998.853333pt;}
.y70{bottom:999.173333pt;}
.y36{bottom:1008.293333pt;}
.ydf{bottom:1013.733333pt;}
.y2{bottom:1014.213333pt;}
.y6f{bottom:1014.533333pt;}
.y6e{bottom:1042.560000pt;}
.ha{height:33.918750pt;}
.h8{height:45.195937pt;}
.h7{height:47.392500pt;}
.hf{height:47.621250pt;}
.hd{height:48.062188pt;}
.he{height:48.088125pt;}
.h9{height:52.134375pt;}
.h3{height:53.535000pt;}
.h2{height:55.402500pt;}
.hb{height:58.563750pt;}
.h4{height:61.410000pt;}
.h6{height:66.750000pt;}
.hc{height:75.465000pt;}
.h5{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.032000pt;}
.xc{left:120.032000pt;}
.x8{left:199.546667pt;}
.x6{left:311.906667pt;}
.xa{left:319.106667pt;}
.x9{left:342.466667pt;}
.x5{left:382.306667pt;}
.x3{left:463.773333pt;}
.x4{left:621.253333pt;}
.x7{left:690.533333pt;}
.x2{left:696.133333pt;}
.xb{left:697.893333pt;}
}




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