
    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_aac6b06ffaae33d0b74ab4ad.woff')format("woff");}.ff1{font-family:ff1;line-height:0.724609;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_eeef8e170220a6711dc4d66c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.080566;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_e1219404fdbeb8248dc20f86.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_49e44ac068f5a3b339c03e35.woff')format("woff");}.ff4{font-family:ff4;line-height:0.691406;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_9d3e916ef49f200aa81fe5c1.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ec8243b07864828a234fb64e.woff')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-55.944000px;}
.ws6{word-spacing:-40.968000px;}
.ws48{word-spacing:-38.926800px;}
.ws59{word-spacing:-38.883300px;}
.ws9{word-spacing:-38.721600px;}
.wsd{word-spacing:-38.661300px;}
.ws1c{word-spacing:-38.635200px;}
.ws29{word-spacing:-38.452200px;}
.ws41{word-spacing:-38.446200px;}
.ws5f{word-spacing:-38.441700px;}
.ws26{word-spacing:-38.436300px;}
.ws7d{word-spacing:-38.421000px;}
.wsc{word-spacing:-38.367000px;}
.ws67{word-spacing:-38.362500px;}
.ws4e{word-spacing:-38.347500px;}
.ws6b{word-spacing:-38.294700px;}
.ws4a{word-spacing:-38.291400px;}
.ws37{word-spacing:-38.290500px;}
.ws51{word-spacing:-38.288700px;}
.ws65{word-spacing:-38.286000px;}
.wse{word-spacing:-38.166000px;}
.ws63{word-spacing:-38.154000px;}
.ws0{word-spacing:-38.096400px;}
.wsa{word-spacing:-38.063100px;}
.ws23{word-spacing:-38.009700px;}
.ws1{word-spacing:-37.944000px;}
.ws25{word-spacing:-37.942800px;}
.ws3{word-spacing:-37.931400px;}
.ws16{word-spacing:-37.793700px;}
.ws82{word-spacing:-37.714500px;}
.ws45{word-spacing:-37.570500px;}
.wsf{word-spacing:-37.445100px;}
.ws19{word-spacing:-36.000000px;}
.ws5a{word-spacing:-34.691400px;}
.ws5e{word-spacing:-34.326000px;}
.ws14{word-spacing:-33.608700px;}
.ws8{word-spacing:-33.547800px;}
.ws1e{word-spacing:-33.342000px;}
.ws1d{word-spacing:-33.120000px;}
.ws7f{word-spacing:-32.898600px;}
.ws30{word-spacing:-32.894100px;}
.ws68{word-spacing:-32.886000px;}
.ws4b{word-spacing:-32.400000px;}
.ws7a{word-spacing:-32.325300px;}
.ws80{word-spacing:-32.184000px;}
.ws72{word-spacing:-32.172000px;}
.ws2e{word-spacing:-31.823700px;}
.ws57{word-spacing:-31.822200px;}
.ws3c{word-spacing:-31.244400px;}
.ws5d{word-spacing:-31.094700px;}
.ws1b{word-spacing:-30.240000px;}
.ws1f{word-spacing:-29.297700px;}
.ws1a{word-spacing:-28.796400px;}
.ws11{word-spacing:-28.572900px;}
.ws73{word-spacing:-28.208700px;}
.ws10{word-spacing:-28.080000px;}
.ws22{word-spacing:-27.123600px;}
.ws43{word-spacing:-25.704000px;}
.ws7e{word-spacing:-24.990000px;}
.ws58{word-spacing:-24.614100px;}
.ws56{word-spacing:-24.265500px;}
.ws7c{word-spacing:-23.974200px;}
.ws50{word-spacing:-23.901900px;}
.ws35{word-spacing:-23.898300px;}
.ws5{word-spacing:-23.687700px;}
.wsb{word-spacing:-23.394600px;}
.ws2a{word-spacing:-23.184000px;}
.ws74{word-spacing:-23.022900px;}
.ws78{word-spacing:-22.815900px;}
.ws2c{word-spacing:-22.461900px;}
.ws24{word-spacing:-22.461000px;}
.ws2b{word-spacing:-22.110000px;}
.ws17{word-spacing:-21.580200px;}
.ws79{word-spacing:-21.364200px;}
.ws18{word-spacing:-20.880000px;}
.ws40{word-spacing:-20.651400px;}
.ws69{word-spacing:-20.441700px;}
.ws6a{word-spacing:-20.166000px;}
.ws15{word-spacing:-20.159100px;}
.ws54{word-spacing:-19.943700px;}
.ws53{word-spacing:-18.128700px;}
.ws4f{word-spacing:-17.988900px;}
.ws32{word-spacing:-17.419500px;}
.ws77{word-spacing:-17.414700px;}
.ws5b{word-spacing:-15.410400px;}
.ws31{word-spacing:-15.261300px;}
.ws83{word-spacing:-15.045300px;}
.ws12{word-spacing:-14.675400px;}
.ws85{word-spacing:-14.403300px;}
.ws7b{word-spacing:-12.744000px;}
.ws6d{word-spacing:-11.873100px;}
.ws61{word-spacing:-10.584000px;}
.ws3a{word-spacing:-8.286000px;}
.ws84{word-spacing:-8.275500px;}
.ws36{word-spacing:-7.340400px;}
.ws55{word-spacing:-5.894100px;}
.ws4{word-spacing:-5.177700px;}
.ws6e{word-spacing:-2.294100px;}
.ws2d{word-spacing:-2.150100px;}
.ws3d{word-spacing:-0.128700px;}
.ws60{word-spacing:0.000000px;}
.ws52{word-spacing:0.365400px;}
.ws28{word-spacing:0.952200px;}
.ws70{word-spacing:1.804500px;}
.ws76{word-spacing:3.458700px;}
.ws39{word-spacing:3.466800px;}
.ws13{word-spacing:3.474900px;}
.ws38{word-spacing:3.811800px;}
.ws75{word-spacing:4.202100px;}
.ws3f{word-spacing:5.631300px;}
.ws71{word-spacing:7.071300px;}
.ws2f{word-spacing:7.791900px;}
.ws4c{word-spacing:10.794000px;}
.ws21{word-spacing:11.380500px;}
.ws4d{word-spacing:12.960000px;}
.ws27{word-spacing:14.977200px;}
.ws3b{word-spacing:16.783200px;}
.ws3e{word-spacing:17.508000px;}
.ws66{word-spacing:17.640000px;}
.ws81{word-spacing:17.871300px;}
.ws33{word-spacing:18.228300px;}
.ws44{word-spacing:24.342300px;}
.ws6f{word-spacing:27.594000px;}
.ws46{word-spacing:31.326000px;}
.ws5c{word-spacing:34.056000px;}
.ws47{word-spacing:37.440000px;}
.ws34{word-spacing:40.193700px;}
.ws20{word-spacing:41.610000px;}
.ws42{word-spacing:52.200000px;}
.ws6c{word-spacing:92.880000px;}
.ws62{word-spacing:213.120000px;}
.ws64{word-spacing:215.280000px;}
.ws49{word-spacing:256.321800px;}
.ws2{word-spacing:537.269400px;}
._0{margin-left:-1.228800px;}
._3{width:1.089900px;}
._4{width:18.775200px;}
._a{width:21.240000px;}
._20{width:22.644900px;}
._c{width:24.206100px;}
._11{width:25.343700px;}
._b{width:27.288000px;}
._5{width:28.512000px;}
._6{width:29.586900px;}
._16{width:33.155100px;}
._f{width:34.570800px;}
._9{width:36.700200px;}
._1e{width:37.911300px;}
._1d{width:39.133800px;}
._13{width:40.166400px;}
._7{width:42.384300px;}
._24{width:48.957000px;}
._17{width:50.180400px;}
._1f{width:51.614100px;}
._10{width:55.179300px;}
._19{width:57.800700px;}
._22{width:58.801500px;}
._8{width:60.888900px;}
._1a{width:63.300600px;}
._12{width:64.860600px;}
._e{width:68.457000px;}
._1{width:71.928000px;}
._18{width:73.817100px;}
._14{width:75.409200px;}
._21{width:84.912000px;}
._1c{width:94.464000px;}
._15{width:97.200000px;}
._d{width:98.644800px;}
._1b{width:156.528000px;}
._23{width:158.400000px;}
._2{width:432.072000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.300000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y57{bottom:3.915000px;}
.y3d{bottom:4.020000px;}
.y41{bottom:4.021500px;}
.yb{bottom:4.486500px;}
.y40{bottom:24.540000px;}
.y56{bottom:24.615000px;}
.y3c{bottom:24.720000px;}
.y5f{bottom:25.350000px;}
.y8{bottom:34.725000px;}
.y9{bottom:42.571500px;}
.y3b{bottom:45.240000px;}
.y5e{bottom:46.050000px;}
.y38{bottom:104.296500px;}
.y54{bottom:105.915000px;}
.y74{bottom:109.155000px;}
.y37{bottom:124.996500px;}
.y53{bottom:126.615000px;}
.y36{bottom:145.696500px;}
.y52{bottom:147.315000px;}
.y73{bottom:150.555000px;}
.y35{bottom:166.396500px;}
.y51{bottom:168.015000px;}
.y72{bottom:171.255000px;}
.y34{bottom:186.915000px;}
.y50{bottom:188.715000px;}
.y71{bottom:191.955000px;}
.y33{bottom:207.615000px;}
.y4f{bottom:209.415000px;}
.y70{bottom:212.655000px;}
.y32{bottom:228.315000px;}
.y4e{bottom:230.115000px;}
.y6f{bottom:233.355000px;}
.y31{bottom:249.015000px;}
.y4d{bottom:250.815000px;}
.y6e{bottom:254.055000px;}
.y30{bottom:269.715000px;}
.y4c{bottom:271.515000px;}
.y6d{bottom:274.755000px;}
.y2f{bottom:290.415000px;}
.y4b{bottom:292.215000px;}
.y6c{bottom:295.455000px;}
.y2e{bottom:311.115000px;}
.y4a{bottom:312.915000px;}
.y6b{bottom:316.155000px;}
.y2d{bottom:331.815000px;}
.y49{bottom:333.615000px;}
.y6a{bottom:336.855000px;}
.y2c{bottom:352.515000px;}
.y48{bottom:354.315000px;}
.y69{bottom:357.555000px;}
.y2b{bottom:373.215000px;}
.y47{bottom:375.015000px;}
.y68{bottom:378.255000px;}
.y2a{bottom:393.915000px;}
.y46{bottom:395.715000px;}
.y67{bottom:398.955000px;}
.y45{bottom:416.415000px;}
.y66{bottom:419.655000px;}
.y29{bottom:423.615000px;}
.y44{bottom:437.115000px;}
.y65{bottom:440.355000px;}
.y28{bottom:444.315000px;}
.y43{bottom:457.815000px;}
.y64{bottom:461.055000px;}
.y27{bottom:465.015000px;}
.y63{bottom:481.755000px;}
.y26{bottom:485.715000px;}
.y62{bottom:502.455000px;}
.y25{bottom:506.415000px;}
.y42{bottom:508.215000px;}
.y61{bottom:523.155000px;}
.y24{bottom:527.115000px;}
.y3f{bottom:534.075000px;}
.y23{bottom:547.815000px;}
.y60{bottom:564.555000px;}
.y22{bottom:568.515000px;}
.y5d{bottom:581.325000px;}
.y21{bottom:589.215000px;}
.y20{bottom:609.915000px;}
.y1f{bottom:630.615000px;}
.y1e{bottom:651.315000px;}
.y1d{bottom:672.015000px;}
.y1c{bottom:692.715000px;}
.y1b{bottom:713.415000px;}
.y3e{bottom:727.815000px;}
.y1a{bottom:734.115000px;}
.y3a{bottom:744.675000px;}
.y19{bottom:754.815000px;}
.y18{bottom:775.515000px;}
.y5c{bottom:794.415000px;}
.y17{bottom:796.215000px;}
.y5b{bottom:815.115000px;}
.y16{bottom:816.915000px;}
.y5a{bottom:835.815000px;}
.y15{bottom:837.615000px;}
.y59{bottom:856.515000px;}
.y14{bottom:858.315000px;}
.y13{bottom:879.015000px;}
.y58{bottom:897.915000px;}
.y75{bottom:899.715000px;}
.y55{bottom:914.700000px;}
.y12{bottom:920.415000px;}
.y11{bottom:941.115000px;}
.y10{bottom:961.815000px;}
.yf{bottom:982.515000px;}
.ye{bottom:1003.215000px;}
.y39{bottom:1023.915000px;}
.yd{bottom:1044.615000px;}
.yc{bottom:1065.315000px;}
.y7{bottom:1106.715000px;}
.y6{bottom:1127.415000px;}
.y5{bottom:1148.115000px;}
.y4{bottom:1168.815000px;}
.y3{bottom:1189.515000px;}
.y2{bottom:1210.215000px;}
.y1{bottom:1231.275000px;}
.ya{bottom:1231.650000px;}
.h7{height:20.175000px;}
.ha{height:41.400000px;}
.h6{height:45.225146px;}
.h4{height:48.761719px;}
.h8{height:49.992188px;}
.h5{height:58.275000px;}
.h2{height:60.467139px;}
.h9{height:62.100000px;}
.h3{height:62.261719px;}
.hb{height:62.775000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:16.725000px;}
.w3{width:168.525000px;}
.w9{width:169.800000px;}
.wa{width:170.175000px;}
.w4{width:170.325000px;}
.w7{width:173.850000px;}
.w5{width:180.450000px;}
.w8{width:180.900000px;}
.w6{width:182.700000px;}
.wb{width:191.850000px;}
.we{width:202.050000px;}
.wd{width:202.125000px;}
.wc{width:212.325000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:8.175000px;}
.x11{left:119.475000px;}
.xc{left:123.225000px;}
.x2{left:127.620000px;}
.x18{left:165.900000px;}
.x4{left:171.000000px;}
.xb{left:180.720000px;}
.x1{left:201.060000px;}
.x5{left:202.138500px;}
.x15{left:289.200000px;}
.xe{left:291.675000px;}
.x12{left:293.250000px;}
.x19{left:378.150000px;}
.x16{left:459.300000px;}
.xf{left:461.925000px;}
.x3{left:465.675000px;}
.x13{left:467.025000px;}
.xa{left:493.380000px;}
.x7{left:523.260000px;}
.x6{left:524.520000px;}
.x9{left:528.480000px;}
.x8{left:555.300000px;}
.x1a{left:580.200000px;}
.x17{left:629.400000px;}
.x10{left:642.300000px;}
.x14{left:647.850000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7{word-spacing:-49.728000pt;}
.ws6{word-spacing:-36.416000pt;}
.ws48{word-spacing:-34.601600pt;}
.ws59{word-spacing:-34.562933pt;}
.ws9{word-spacing:-34.419200pt;}
.wsd{word-spacing:-34.365600pt;}
.ws1c{word-spacing:-34.342400pt;}
.ws29{word-spacing:-34.179733pt;}
.ws41{word-spacing:-34.174400pt;}
.ws5f{word-spacing:-34.170400pt;}
.ws26{word-spacing:-34.165600pt;}
.ws7d{word-spacing:-34.152000pt;}
.wsc{word-spacing:-34.104000pt;}
.ws67{word-spacing:-34.100000pt;}
.ws4e{word-spacing:-34.086667pt;}
.ws6b{word-spacing:-34.039733pt;}
.ws4a{word-spacing:-34.036800pt;}
.ws37{word-spacing:-34.036000pt;}
.ws51{word-spacing:-34.034400pt;}
.ws65{word-spacing:-34.032000pt;}
.wse{word-spacing:-33.925333pt;}
.ws63{word-spacing:-33.914667pt;}
.ws0{word-spacing:-33.863467pt;}
.wsa{word-spacing:-33.833867pt;}
.ws23{word-spacing:-33.786400pt;}
.ws1{word-spacing:-33.728000pt;}
.ws25{word-spacing:-33.726933pt;}
.ws3{word-spacing:-33.716800pt;}
.ws16{word-spacing:-33.594400pt;}
.ws82{word-spacing:-33.524000pt;}
.ws45{word-spacing:-33.396000pt;}
.wsf{word-spacing:-33.284533pt;}
.ws19{word-spacing:-32.000000pt;}
.ws5a{word-spacing:-30.836800pt;}
.ws5e{word-spacing:-30.512000pt;}
.ws14{word-spacing:-29.874400pt;}
.ws8{word-spacing:-29.820267pt;}
.ws1e{word-spacing:-29.637333pt;}
.ws1d{word-spacing:-29.440000pt;}
.ws7f{word-spacing:-29.243200pt;}
.ws30{word-spacing:-29.239200pt;}
.ws68{word-spacing:-29.232000pt;}
.ws4b{word-spacing:-28.800000pt;}
.ws7a{word-spacing:-28.733600pt;}
.ws80{word-spacing:-28.608000pt;}
.ws72{word-spacing:-28.597333pt;}
.ws2e{word-spacing:-28.287733pt;}
.ws57{word-spacing:-28.286400pt;}
.ws3c{word-spacing:-27.772800pt;}
.ws5d{word-spacing:-27.639733pt;}
.ws1b{word-spacing:-26.880000pt;}
.ws1f{word-spacing:-26.042400pt;}
.ws1a{word-spacing:-25.596800pt;}
.ws11{word-spacing:-25.398133pt;}
.ws73{word-spacing:-25.074400pt;}
.ws10{word-spacing:-24.960000pt;}
.ws22{word-spacing:-24.109867pt;}
.ws43{word-spacing:-22.848000pt;}
.ws7e{word-spacing:-22.213333pt;}
.ws58{word-spacing:-21.879200pt;}
.ws56{word-spacing:-21.569333pt;}
.ws7c{word-spacing:-21.310400pt;}
.ws50{word-spacing:-21.246133pt;}
.ws35{word-spacing:-21.242933pt;}
.ws5{word-spacing:-21.055733pt;}
.wsb{word-spacing:-20.795200pt;}
.ws2a{word-spacing:-20.608000pt;}
.ws74{word-spacing:-20.464800pt;}
.ws78{word-spacing:-20.280800pt;}
.ws2c{word-spacing:-19.966133pt;}
.ws24{word-spacing:-19.965333pt;}
.ws2b{word-spacing:-19.653333pt;}
.ws17{word-spacing:-19.182400pt;}
.ws79{word-spacing:-18.990400pt;}
.ws18{word-spacing:-18.560000pt;}
.ws40{word-spacing:-18.356800pt;}
.ws69{word-spacing:-18.170400pt;}
.ws6a{word-spacing:-17.925333pt;}
.ws15{word-spacing:-17.919200pt;}
.ws54{word-spacing:-17.727733pt;}
.ws53{word-spacing:-16.114400pt;}
.ws4f{word-spacing:-15.990133pt;}
.ws32{word-spacing:-15.484000pt;}
.ws77{word-spacing:-15.479733pt;}
.ws5b{word-spacing:-13.698133pt;}
.ws31{word-spacing:-13.565600pt;}
.ws83{word-spacing:-13.373600pt;}
.ws12{word-spacing:-13.044800pt;}
.ws85{word-spacing:-12.802933pt;}
.ws7b{word-spacing:-11.328000pt;}
.ws6d{word-spacing:-10.553867pt;}
.ws61{word-spacing:-9.408000pt;}
.ws3a{word-spacing:-7.365333pt;}
.ws84{word-spacing:-7.356000pt;}
.ws36{word-spacing:-6.524800pt;}
.ws55{word-spacing:-5.239200pt;}
.ws4{word-spacing:-4.602400pt;}
.ws6e{word-spacing:-2.039200pt;}
.ws2d{word-spacing:-1.911200pt;}
.ws3d{word-spacing:-0.114400pt;}
.ws60{word-spacing:0.000000pt;}
.ws52{word-spacing:0.324800pt;}
.ws28{word-spacing:0.846400pt;}
.ws70{word-spacing:1.604000pt;}
.ws76{word-spacing:3.074400pt;}
.ws39{word-spacing:3.081600pt;}
.ws13{word-spacing:3.088800pt;}
.ws38{word-spacing:3.388267pt;}
.ws75{word-spacing:3.735200pt;}
.ws3f{word-spacing:5.005600pt;}
.ws71{word-spacing:6.285600pt;}
.ws2f{word-spacing:6.926133pt;}
.ws4c{word-spacing:9.594667pt;}
.ws21{word-spacing:10.116000pt;}
.ws4d{word-spacing:11.520000pt;}
.ws27{word-spacing:13.313067pt;}
.ws3b{word-spacing:14.918400pt;}
.ws3e{word-spacing:15.562667pt;}
.ws66{word-spacing:15.680000pt;}
.ws81{word-spacing:15.885600pt;}
.ws33{word-spacing:16.202933pt;}
.ws44{word-spacing:21.637600pt;}
.ws6f{word-spacing:24.528000pt;}
.ws46{word-spacing:27.845333pt;}
.ws5c{word-spacing:30.272000pt;}
.ws47{word-spacing:33.280000pt;}
.ws34{word-spacing:35.727733pt;}
.ws20{word-spacing:36.986667pt;}
.ws42{word-spacing:46.400000pt;}
.ws6c{word-spacing:82.560000pt;}
.ws62{word-spacing:189.440000pt;}
.ws64{word-spacing:191.360000pt;}
.ws49{word-spacing:227.841600pt;}
.ws2{word-spacing:477.572800pt;}
._0{margin-left:-1.092267pt;}
._3{width:0.968800pt;}
._4{width:16.689067pt;}
._a{width:18.880000pt;}
._20{width:20.128800pt;}
._c{width:21.516533pt;}
._11{width:22.527733pt;}
._b{width:24.256000pt;}
._5{width:25.344000pt;}
._6{width:26.299467pt;}
._16{width:29.471200pt;}
._f{width:30.729600pt;}
._9{width:32.622400pt;}
._1e{width:33.698933pt;}
._1d{width:34.785600pt;}
._13{width:35.703467pt;}
._7{width:37.674933pt;}
._24{width:43.517333pt;}
._17{width:44.604800pt;}
._1f{width:45.879200pt;}
._10{width:49.048267pt;}
._19{width:51.378400pt;}
._22{width:52.268000pt;}
._8{width:54.123467pt;}
._1a{width:56.267200pt;}
._12{width:57.653867pt;}
._e{width:60.850667pt;}
._1{width:63.936000pt;}
._18{width:65.615200pt;}
._14{width:67.030400pt;}
._21{width:75.477333pt;}
._1c{width:83.968000pt;}
._15{width:86.400000pt;}
._d{width:87.684267pt;}
._1b{width:139.136000pt;}
._23{width:140.800000pt;}
._2{width:384.064000pt;}
.fs2{font-size:58.933333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y57{bottom:3.480000pt;}
.y3d{bottom:3.573333pt;}
.y41{bottom:3.574667pt;}
.yb{bottom:3.988000pt;}
.y40{bottom:21.813333pt;}
.y56{bottom:21.880000pt;}
.y3c{bottom:21.973333pt;}
.y5f{bottom:22.533333pt;}
.y8{bottom:30.866667pt;}
.y9{bottom:37.841333pt;}
.y3b{bottom:40.213333pt;}
.y5e{bottom:40.933333pt;}
.y38{bottom:92.708000pt;}
.y54{bottom:94.146667pt;}
.y74{bottom:97.026667pt;}
.y37{bottom:111.108000pt;}
.y53{bottom:112.546667pt;}
.y36{bottom:129.508000pt;}
.y52{bottom:130.946667pt;}
.y73{bottom:133.826667pt;}
.y35{bottom:147.908000pt;}
.y51{bottom:149.346667pt;}
.y72{bottom:152.226667pt;}
.y34{bottom:166.146667pt;}
.y50{bottom:167.746667pt;}
.y71{bottom:170.626667pt;}
.y33{bottom:184.546667pt;}
.y4f{bottom:186.146667pt;}
.y70{bottom:189.026667pt;}
.y32{bottom:202.946667pt;}
.y4e{bottom:204.546667pt;}
.y6f{bottom:207.426667pt;}
.y31{bottom:221.346667pt;}
.y4d{bottom:222.946667pt;}
.y6e{bottom:225.826667pt;}
.y30{bottom:239.746667pt;}
.y4c{bottom:241.346667pt;}
.y6d{bottom:244.226667pt;}
.y2f{bottom:258.146667pt;}
.y4b{bottom:259.746667pt;}
.y6c{bottom:262.626667pt;}
.y2e{bottom:276.546667pt;}
.y4a{bottom:278.146667pt;}
.y6b{bottom:281.026667pt;}
.y2d{bottom:294.946667pt;}
.y49{bottom:296.546667pt;}
.y6a{bottom:299.426667pt;}
.y2c{bottom:313.346667pt;}
.y48{bottom:314.946667pt;}
.y69{bottom:317.826667pt;}
.y2b{bottom:331.746667pt;}
.y47{bottom:333.346667pt;}
.y68{bottom:336.226667pt;}
.y2a{bottom:350.146667pt;}
.y46{bottom:351.746667pt;}
.y67{bottom:354.626667pt;}
.y45{bottom:370.146667pt;}
.y66{bottom:373.026667pt;}
.y29{bottom:376.546667pt;}
.y44{bottom:388.546667pt;}
.y65{bottom:391.426667pt;}
.y28{bottom:394.946667pt;}
.y43{bottom:406.946667pt;}
.y64{bottom:409.826667pt;}
.y27{bottom:413.346667pt;}
.y63{bottom:428.226667pt;}
.y26{bottom:431.746667pt;}
.y62{bottom:446.626667pt;}
.y25{bottom:450.146667pt;}
.y42{bottom:451.746667pt;}
.y61{bottom:465.026667pt;}
.y24{bottom:468.546667pt;}
.y3f{bottom:474.733333pt;}
.y23{bottom:486.946667pt;}
.y60{bottom:501.826667pt;}
.y22{bottom:505.346667pt;}
.y5d{bottom:516.733333pt;}
.y21{bottom:523.746667pt;}
.y20{bottom:542.146667pt;}
.y1f{bottom:560.546667pt;}
.y1e{bottom:578.946667pt;}
.y1d{bottom:597.346667pt;}
.y1c{bottom:615.746667pt;}
.y1b{bottom:634.146667pt;}
.y3e{bottom:646.946667pt;}
.y1a{bottom:652.546667pt;}
.y3a{bottom:661.933333pt;}
.y19{bottom:670.946667pt;}
.y18{bottom:689.346667pt;}
.y5c{bottom:706.146667pt;}
.y17{bottom:707.746667pt;}
.y5b{bottom:724.546667pt;}
.y16{bottom:726.146667pt;}
.y5a{bottom:742.946667pt;}
.y15{bottom:744.546667pt;}
.y59{bottom:761.346667pt;}
.y14{bottom:762.946667pt;}
.y13{bottom:781.346667pt;}
.y58{bottom:798.146667pt;}
.y75{bottom:799.746667pt;}
.y55{bottom:813.066667pt;}
.y12{bottom:818.146667pt;}
.y11{bottom:836.546667pt;}
.y10{bottom:854.946667pt;}
.yf{bottom:873.346667pt;}
.ye{bottom:891.746667pt;}
.y39{bottom:910.146667pt;}
.yd{bottom:928.546667pt;}
.yc{bottom:946.946667pt;}
.y7{bottom:983.746667pt;}
.y6{bottom:1002.146667pt;}
.y5{bottom:1020.546667pt;}
.y4{bottom:1038.946667pt;}
.y3{bottom:1057.346667pt;}
.y2{bottom:1075.746667pt;}
.y1{bottom:1094.466667pt;}
.ya{bottom:1094.800000pt;}
.h7{height:17.933333pt;}
.ha{height:36.800000pt;}
.h6{height:40.200130pt;}
.h4{height:43.343750pt;}
.h8{height:44.437500pt;}
.h5{height:51.800000pt;}
.h2{height:53.748568pt;}
.h9{height:55.200000pt;}
.h3{height:55.343750pt;}
.hb{height:55.800000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:14.866667pt;}
.w3{width:149.800000pt;}
.w9{width:150.933333pt;}
.wa{width:151.266667pt;}
.w4{width:151.400000pt;}
.w7{width:154.533333pt;}
.w5{width:160.400000pt;}
.w8{width:160.800000pt;}
.w6{width:162.400000pt;}
.wb{width:170.533333pt;}
.we{width:179.600000pt;}
.wd{width:179.666667pt;}
.wc{width:188.733333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.266667pt;}
.x11{left:106.200000pt;}
.xc{left:109.533333pt;}
.x2{left:113.440000pt;}
.x18{left:147.466667pt;}
.x4{left:152.000000pt;}
.xb{left:160.640000pt;}
.x1{left:178.720000pt;}
.x5{left:179.678667pt;}
.x15{left:257.066667pt;}
.xe{left:259.266667pt;}
.x12{left:260.666667pt;}
.x19{left:336.133333pt;}
.x16{left:408.266667pt;}
.xf{left:410.600000pt;}
.x3{left:413.933333pt;}
.x13{left:415.133333pt;}
.xa{left:438.560000pt;}
.x7{left:465.120000pt;}
.x6{left:466.240000pt;}
.x9{left:469.760000pt;}
.x8{left:493.600000pt;}
.x1a{left:515.733333pt;}
.x17{left:559.466667pt;}
.x10{left:570.933333pt;}
.x14{left:575.866667pt;}
}




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