
    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_4b0b50539c459ab27eb57116.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112000;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_a53cec14aa42377df3f344d0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084000;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_05498d7bb9ee6130b5506d87.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_496459889108fccace5b878e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.109000;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_77c4a0f4a2daa966c10499e3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.675781;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_c4611704d04e4588c3fe4d94.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084000;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_a53cec14aa42377df3f344d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084000;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);}
.v1{vertical-align:-17.982600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.085400px;}
.v2{vertical-align:23.976000px;}
.ls5{letter-spacing:-2.520000px;}
.ls4{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.810000px;}
.ls3{letter-spacing:-0.629640px;}
.ls6{letter-spacing:-0.540000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.162000px;}
.ls8{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.594000px;}
.lsc{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.810000px;}
.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;}
}
.ws3{word-spacing:-13.968000px;}
.ws0{word-spacing:-13.620000px;}
.ws80{word-spacing:-12.852000px;}
.ws89{word-spacing:-12.798000px;}
.ws40{word-spacing:-12.420000px;}
.ws42{word-spacing:-12.366000px;}
.ws41{word-spacing:-12.312000px;}
.ws4{word-spacing:-12.042000px;}
.ws2{word-spacing:-9.192744px;}
.ws1{word-spacing:-6.516774px;}
.ws5c{word-spacing:-3.672000px;}
.ws1b{word-spacing:-2.592000px;}
.ws47{word-spacing:-2.538000px;}
.ws61{word-spacing:-2.430000px;}
.ws5d{word-spacing:-2.106000px;}
.ws34{word-spacing:-1.998000px;}
.wsb{word-spacing:-1.944000px;}
.wsa{word-spacing:-1.890000px;}
.wsc{word-spacing:-1.782000px;}
.ws28{word-spacing:-1.728000px;}
.ws7b{word-spacing:-1.620000px;}
.ws70{word-spacing:-1.566000px;}
.ws77{word-spacing:-1.458000px;}
.ws26{word-spacing:-1.404000px;}
.ws5f{word-spacing:-1.296000px;}
.ws84{word-spacing:-1.242000px;}
.ws8a{word-spacing:-1.134000px;}
.ws9{word-spacing:-0.972000px;}
.ws25{word-spacing:-0.864000px;}
.wsd{word-spacing:-0.810000px;}
.ws1c{word-spacing:-0.756000px;}
.ws2d{word-spacing:-0.594000px;}
.ws5e{word-spacing:-0.540000px;}
.ws5a{word-spacing:-0.432000px;}
.ws27{word-spacing:-0.378000px;}
.ws36{word-spacing:-0.324000px;}
.ws8{word-spacing:-0.270000px;}
.ws1d{word-spacing:-0.216000px;}
.ws76{word-spacing:-0.108000px;}
.ws1e{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.ws43{word-spacing:0.054000px;}
.ws1f{word-spacing:0.216000px;}
.ws45{word-spacing:0.270000px;}
.ws21{word-spacing:0.324000px;}
.ws1a{word-spacing:0.378000px;}
.wse{word-spacing:0.540000px;}
.ws85{word-spacing:0.648000px;}
.ws4d{word-spacing:0.702000px;}
.ws10{word-spacing:0.756000px;}
.ws13{word-spacing:0.810000px;}
.ws3d{word-spacing:0.864000px;}
.ws3c{word-spacing:0.918000px;}
.ws8b{word-spacing:0.972000px;}
.ws24{word-spacing:1.134000px;}
.ws6a{word-spacing:1.188000px;}
.ws4c{word-spacing:1.242000px;}
.ws44{word-spacing:1.296000px;}
.ws60{word-spacing:1.350000px;}
.ws7d{word-spacing:1.404000px;}
.ws46{word-spacing:1.458000px;}
.ws64{word-spacing:1.566000px;}
.ws6{word-spacing:1.674000px;}
.ws12{word-spacing:1.728000px;}
.ws6b{word-spacing:1.782000px;}
.ws63{word-spacing:1.890000px;}
.ws6d{word-spacing:1.944000px;}
.ws7a{word-spacing:2.106000px;}
.ws7e{word-spacing:2.322000px;}
.ws7{word-spacing:2.376000px;}
.ws39{word-spacing:2.484000px;}
.ws2c{word-spacing:2.538000px;}
.ws20{word-spacing:2.646000px;}
.ws78{word-spacing:2.754000px;}
.ws74{word-spacing:2.808000px;}
.ws82{word-spacing:2.862000px;}
.ws71{word-spacing:2.970000px;}
.ws75{word-spacing:3.024000px;}
.ws52{word-spacing:3.078000px;}
.ws58{word-spacing:3.240000px;}
.ws6c{word-spacing:3.294000px;}
.ws18{word-spacing:3.456000px;}
.ws3a{word-spacing:3.564000px;}
.ws51{word-spacing:3.618000px;}
.ws14{word-spacing:3.726000px;}
.ws37{word-spacing:3.780000px;}
.ws65{word-spacing:3.834000px;}
.ws35{word-spacing:3.888000px;}
.ws22{word-spacing:3.996000px;}
.ws15{word-spacing:4.104000px;}
.ws73{word-spacing:4.158000px;}
.ws7c{word-spacing:4.212000px;}
.ws4f{word-spacing:4.320000px;}
.ws4a{word-spacing:4.374000px;}
.ws62{word-spacing:4.536000px;}
.ws57{word-spacing:4.590000px;}
.ws72{word-spacing:4.968000px;}
.ws79{word-spacing:5.022000px;}
.ws23{word-spacing:5.076000px;}
.ws48{word-spacing:5.292000px;}
.ws2b{word-spacing:5.400000px;}
.ws31{word-spacing:5.454000px;}
.ws3e{word-spacing:5.670000px;}
.ws5b{word-spacing:5.940000px;}
.ws29{word-spacing:5.994000px;}
.ws19{word-spacing:6.156000px;}
.ws2a{word-spacing:6.210000px;}
.ws68{word-spacing:6.372000px;}
.ws54{word-spacing:6.426000px;}
.wsf{word-spacing:6.534000px;}
.ws56{word-spacing:6.588000px;}
.ws53{word-spacing:6.642000px;}
.ws17{word-spacing:6.696000px;}
.ws8c{word-spacing:6.804000px;}
.ws69{word-spacing:6.912000px;}
.ws32{word-spacing:7.020000px;}
.ws87{word-spacing:7.074000px;}
.ws81{word-spacing:7.182000px;}
.ws33{word-spacing:7.236000px;}
.ws2e{word-spacing:7.506000px;}
.ws4b{word-spacing:7.614000px;}
.ws3b{word-spacing:7.776000px;}
.ws11{word-spacing:8.154000px;}
.ws55{word-spacing:8.208000px;}
.ws7f{word-spacing:8.478000px;}
.ws6e{word-spacing:8.532000px;}
.ws67{word-spacing:8.640000px;}
.ws50{word-spacing:9.018000px;}
.ws16{word-spacing:9.180000px;}
.ws4e{word-spacing:9.396000px;}
.ws59{word-spacing:9.558000px;}
.ws66{word-spacing:10.854000px;}
.ws49{word-spacing:11.934000px;}
.ws6f{word-spacing:12.096000px;}
.ws2f{word-spacing:12.852000px;}
.ws83{word-spacing:13.554000px;}
.ws30{word-spacing:14.202000px;}
.ws38{word-spacing:15.768000px;}
.ws88{word-spacing:16.146000px;}
.ws86{word-spacing:25.218000px;}
.ws3f{word-spacing:379.962600px;}
._7{margin-left:-20.670600px;}
._5{margin-left:-8.136732px;}
._2{margin-left:-5.850252px;}
._3{margin-left:-4.131600px;}
._4{margin-left:-2.928000px;}
._0{margin-left:-1.872000px;}
._1{width:1.286400px;}
._6{width:2.808000px;}
._9{width:3.867252px;}
._b{width:6.831000px;}
._a{width:8.089800px;}
._c{width:56.430000px;}
._8{width:74.088000px;}
.fc1{color:rgb(48,88,159);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:31.482000px;}
.fs7{font-size:41.976000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:76.024800px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y39{bottom:56.847300px;}
.y1{bottom:56.848050px;}
.y2{bottom:60.119550px;}
.yd{bottom:79.330650px;}
.y75{bottom:105.980850px;}
.y36{bottom:108.717450px;}
.y74{bottom:123.980850px;}
.y35{bottom:126.717450px;}
.y73{bottom:141.980850px;}
.y34{bottom:144.717450px;}
.y72{bottom:159.980850px;}
.y37{bottom:162.717450px;}
.y71{bottom:177.980850px;}
.y33{bottom:180.717450px;}
.y70{bottom:195.980850px;}
.y32{bottom:198.717450px;}
.y6f{bottom:213.980850px;}
.y31{bottom:216.717450px;}
.y6e{bottom:231.980850px;}
.y30{bottom:234.717450px;}
.y6d{bottom:249.980850px;}
.y2f{bottom:252.717450px;}
.y6c{bottom:267.980850px;}
.y2e{bottom:270.717450px;}
.y6b{bottom:285.980850px;}
.y2d{bottom:288.717450px;}
.y6a{bottom:303.980850px;}
.y2c{bottom:306.717450px;}
.y69{bottom:321.980850px;}
.y2b{bottom:324.717450px;}
.y68{bottom:339.980850px;}
.y2a{bottom:342.717450px;}
.y67{bottom:357.980850px;}
.y29{bottom:360.717450px;}
.y66{bottom:375.980850px;}
.y28{bottom:378.717450px;}
.y65{bottom:393.980850px;}
.y27{bottom:396.717450px;}
.y64{bottom:411.980850px;}
.y26{bottom:414.717450px;}
.y63{bottom:429.980850px;}
.y25{bottom:432.717450px;}
.y62{bottom:447.980850px;}
.y24{bottom:450.717450px;}
.y61{bottom:465.980850px;}
.y23{bottom:468.717450px;}
.y81{bottom:483.400950px;}
.y60{bottom:483.980850px;}
.y22{bottom:486.717450px;}
.y5f{bottom:501.980850px;}
.y21{bottom:504.717450px;}
.y80{bottom:515.975250px;}
.y5e{bottom:519.980850px;}
.y20{bottom:522.717450px;}
.y7f{bottom:532.175250px;}
.y5d{bottom:537.980850px;}
.y1f{bottom:540.717450px;}
.y7e{bottom:548.375250px;}
.y5c{bottom:555.980850px;}
.y1e{bottom:558.717450px;}
.y7d{bottom:564.575250px;}
.y5b{bottom:573.980850px;}
.y1d{bottom:576.717450px;}
.y7c{bottom:580.775250px;}
.y5a{bottom:591.980850px;}
.y1c{bottom:594.717450px;}
.y7b{bottom:596.975250px;}
.y59{bottom:609.980850px;}
.y1b{bottom:612.717450px;}
.y7a{bottom:613.175250px;}
.y58{bottom:627.980850px;}
.y79{bottom:629.375250px;}
.y1a{bottom:630.717450px;}
.y78{bottom:645.575250px;}
.y57{bottom:645.980850px;}
.y19{bottom:648.717450px;}
.y77{bottom:661.775250px;}
.y56{bottom:663.980850px;}
.y76{bottom:677.975250px;}
.y55{bottom:681.980850px;}
.y18{bottom:691.237200px;}
.y54{bottom:699.980850px;}
.y53{bottom:717.980850px;}
.y17{bottom:724.395600px;}
.y52{bottom:735.980850px;}
.y16{bottom:740.595600px;}
.y51{bottom:753.980850px;}
.y15{bottom:756.795600px;}
.y50{bottom:771.980850px;}
.y95{bottom:772.193550px;}
.y14{bottom:772.995600px;}
.y94{bottom:788.693550px;}
.y13{bottom:789.195600px;}
.y4f{bottom:789.980850px;}
.y93{bottom:805.193550px;}
.y12{bottom:805.395600px;}
.y4e{bottom:807.980850px;}
.y11{bottom:821.595450px;}
.y4d{bottom:825.980850px;}
.y92{bottom:830.197500px;}
.y10{bottom:837.795600px;}
.y4c{bottom:843.980850px;}
.y91{bottom:846.697500px;}
.yf{bottom:853.995600px;}
.y4b{bottom:861.980850px;}
.ye{bottom:870.195600px;}
.y90{bottom:871.701450px;}
.y4a{bottom:879.980850px;}
.y8f{bottom:888.201450px;}
.y49{bottom:897.980850px;}
.y38{bottom:908.628600px;}
.y8e{bottom:913.205400px;}
.y48{bottom:915.980850px;}
.y8d{bottom:929.705400px;}
.y3{bottom:932.103750px;}
.y47{bottom:933.980850px;}
.y8c{bottom:946.205400px;}
.y46{bottom:951.980850px;}
.y45{bottom:969.980850px;}
.y8{bottom:970.389750px;}
.y8b{bottom:971.209350px;}
.y7{bottom:982.394100px;}
.y8a{bottom:987.709350px;}
.y44{bottom:987.980850px;}
.y6{bottom:1003.389750px;}
.y89{bottom:1004.209350px;}
.y43{bottom:1005.980850px;}
.y5{bottom:1015.394100px;}
.y42{bottom:1023.980850px;}
.y88{bottom:1029.213300px;}
.y4{bottom:1036.389750px;}
.y41{bottom:1041.980850px;}
.y87{bottom:1045.713300px;}
.y40{bottom:1059.980850px;}
.y86{bottom:1062.213300px;}
.yc{bottom:1069.005000px;}
.yb{bottom:1069.810500px;}
.y3f{bottom:1077.980850px;}
.y85{bottom:1087.217250px;}
.y3e{bottom:1095.980850px;}
.y84{bottom:1103.717250px;}
.ya{bottom:1113.010650px;}
.y3d{bottom:1113.980850px;}
.y83{bottom:1120.217250px;}
.y3c{bottom:1131.980850px;}
.y82{bottom:1145.221200px;}
.y9{bottom:1145.410650px;}
.y3b{bottom:1149.980850px;}
.y3a{bottom:1167.980850px;}
.h5{height:28.187400px;}
.hd{height:38.556000px;}
.h3{height:39.648000px;}
.hc{height:44.604000px;}
.he{height:45.684000px;}
.h6{height:46.170000px;}
.ha{height:50.670826px;}
.h4{height:51.300000px;}
.h2{height:56.430000px;}
.hb{height:59.472000px;}
.h8{height:60.912000px;}
.h7{height:77.112000px;}
.h9{height:97.096500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:97.510500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:70.157400px;}
.xc{left:89.291250px;}
.x3{left:93.543300px;}
.x13{left:97.795200px;}
.x12{left:98.982300px;}
.x4{left:102.047250px;}
.x7{left:103.547250px;}
.xd{left:110.551200px;}
.x8{left:114.803100px;}
.x11{left:130.752750px;}
.x2{left:163.473750px;}
.x5{left:212.041350px;}
.x6{left:418.886550px;}
.xf{left:461.338500px;}
.x9{left:465.590550px;}
.xe{left:482.598300px;}
.xa{left:486.850350px;}
.x10{left:509.598300px;}
.x1{left:788.740200px;}
@media print{
.v1{vertical-align:-15.984533pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:11.631467pt;}
.v2{vertical-align:21.312000pt;}
.ls5{letter-spacing:-2.240000pt;}
.ls4{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.720000pt;}
.ls3{letter-spacing:-0.559680pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.144000pt;}
.ls8{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.528000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.720000pt;}
.ws3{word-spacing:-12.416000pt;}
.ws0{word-spacing:-12.106667pt;}
.ws80{word-spacing:-11.424000pt;}
.ws89{word-spacing:-11.376000pt;}
.ws40{word-spacing:-11.040000pt;}
.ws42{word-spacing:-10.992000pt;}
.ws41{word-spacing:-10.944000pt;}
.ws4{word-spacing:-10.704000pt;}
.ws2{word-spacing:-8.171328pt;}
.ws1{word-spacing:-5.792688pt;}
.ws5c{word-spacing:-3.264000pt;}
.ws1b{word-spacing:-2.304000pt;}
.ws47{word-spacing:-2.256000pt;}
.ws61{word-spacing:-2.160000pt;}
.ws5d{word-spacing:-1.872000pt;}
.ws34{word-spacing:-1.776000pt;}
.wsb{word-spacing:-1.728000pt;}
.wsa{word-spacing:-1.680000pt;}
.wsc{word-spacing:-1.584000pt;}
.ws28{word-spacing:-1.536000pt;}
.ws7b{word-spacing:-1.440000pt;}
.ws70{word-spacing:-1.392000pt;}
.ws77{word-spacing:-1.296000pt;}
.ws26{word-spacing:-1.248000pt;}
.ws5f{word-spacing:-1.152000pt;}
.ws84{word-spacing:-1.104000pt;}
.ws8a{word-spacing:-1.008000pt;}
.ws9{word-spacing:-0.864000pt;}
.ws25{word-spacing:-0.768000pt;}
.wsd{word-spacing:-0.720000pt;}
.ws1c{word-spacing:-0.672000pt;}
.ws2d{word-spacing:-0.528000pt;}
.ws5e{word-spacing:-0.480000pt;}
.ws5a{word-spacing:-0.384000pt;}
.ws27{word-spacing:-0.336000pt;}
.ws36{word-spacing:-0.288000pt;}
.ws8{word-spacing:-0.240000pt;}
.ws1d{word-spacing:-0.192000pt;}
.ws76{word-spacing:-0.096000pt;}
.ws1e{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.ws43{word-spacing:0.048000pt;}
.ws1f{word-spacing:0.192000pt;}
.ws45{word-spacing:0.240000pt;}
.ws21{word-spacing:0.288000pt;}
.ws1a{word-spacing:0.336000pt;}
.wse{word-spacing:0.480000pt;}
.ws85{word-spacing:0.576000pt;}
.ws4d{word-spacing:0.624000pt;}
.ws10{word-spacing:0.672000pt;}
.ws13{word-spacing:0.720000pt;}
.ws3d{word-spacing:0.768000pt;}
.ws3c{word-spacing:0.816000pt;}
.ws8b{word-spacing:0.864000pt;}
.ws24{word-spacing:1.008000pt;}
.ws6a{word-spacing:1.056000pt;}
.ws4c{word-spacing:1.104000pt;}
.ws44{word-spacing:1.152000pt;}
.ws60{word-spacing:1.200000pt;}
.ws7d{word-spacing:1.248000pt;}
.ws46{word-spacing:1.296000pt;}
.ws64{word-spacing:1.392000pt;}
.ws6{word-spacing:1.488000pt;}
.ws12{word-spacing:1.536000pt;}
.ws6b{word-spacing:1.584000pt;}
.ws63{word-spacing:1.680000pt;}
.ws6d{word-spacing:1.728000pt;}
.ws7a{word-spacing:1.872000pt;}
.ws7e{word-spacing:2.064000pt;}
.ws7{word-spacing:2.112000pt;}
.ws39{word-spacing:2.208000pt;}
.ws2c{word-spacing:2.256000pt;}
.ws20{word-spacing:2.352000pt;}
.ws78{word-spacing:2.448000pt;}
.ws74{word-spacing:2.496000pt;}
.ws82{word-spacing:2.544000pt;}
.ws71{word-spacing:2.640000pt;}
.ws75{word-spacing:2.688000pt;}
.ws52{word-spacing:2.736000pt;}
.ws58{word-spacing:2.880000pt;}
.ws6c{word-spacing:2.928000pt;}
.ws18{word-spacing:3.072000pt;}
.ws3a{word-spacing:3.168000pt;}
.ws51{word-spacing:3.216000pt;}
.ws14{word-spacing:3.312000pt;}
.ws37{word-spacing:3.360000pt;}
.ws65{word-spacing:3.408000pt;}
.ws35{word-spacing:3.456000pt;}
.ws22{word-spacing:3.552000pt;}
.ws15{word-spacing:3.648000pt;}
.ws73{word-spacing:3.696000pt;}
.ws7c{word-spacing:3.744000pt;}
.ws4f{word-spacing:3.840000pt;}
.ws4a{word-spacing:3.888000pt;}
.ws62{word-spacing:4.032000pt;}
.ws57{word-spacing:4.080000pt;}
.ws72{word-spacing:4.416000pt;}
.ws79{word-spacing:4.464000pt;}
.ws23{word-spacing:4.512000pt;}
.ws48{word-spacing:4.704000pt;}
.ws2b{word-spacing:4.800000pt;}
.ws31{word-spacing:4.848000pt;}
.ws3e{word-spacing:5.040000pt;}
.ws5b{word-spacing:5.280000pt;}
.ws29{word-spacing:5.328000pt;}
.ws19{word-spacing:5.472000pt;}
.ws2a{word-spacing:5.520000pt;}
.ws68{word-spacing:5.664000pt;}
.ws54{word-spacing:5.712000pt;}
.wsf{word-spacing:5.808000pt;}
.ws56{word-spacing:5.856000pt;}
.ws53{word-spacing:5.904000pt;}
.ws17{word-spacing:5.952000pt;}
.ws8c{word-spacing:6.048000pt;}
.ws69{word-spacing:6.144000pt;}
.ws32{word-spacing:6.240000pt;}
.ws87{word-spacing:6.288000pt;}
.ws81{word-spacing:6.384000pt;}
.ws33{word-spacing:6.432000pt;}
.ws2e{word-spacing:6.672000pt;}
.ws4b{word-spacing:6.768000pt;}
.ws3b{word-spacing:6.912000pt;}
.ws11{word-spacing:7.248000pt;}
.ws55{word-spacing:7.296000pt;}
.ws7f{word-spacing:7.536000pt;}
.ws6e{word-spacing:7.584000pt;}
.ws67{word-spacing:7.680000pt;}
.ws50{word-spacing:8.016000pt;}
.ws16{word-spacing:8.160000pt;}
.ws4e{word-spacing:8.352000pt;}
.ws59{word-spacing:8.496000pt;}
.ws66{word-spacing:9.648000pt;}
.ws49{word-spacing:10.608000pt;}
.ws6f{word-spacing:10.752000pt;}
.ws2f{word-spacing:11.424000pt;}
.ws83{word-spacing:12.048000pt;}
.ws30{word-spacing:12.624000pt;}
.ws38{word-spacing:14.016000pt;}
.ws88{word-spacing:14.352000pt;}
.ws86{word-spacing:22.416000pt;}
.ws3f{word-spacing:337.744533pt;}
._7{margin-left:-18.373867pt;}
._5{margin-left:-7.232651pt;}
._2{margin-left:-5.200224pt;}
._3{margin-left:-3.672533pt;}
._4{margin-left:-2.602667pt;}
._0{margin-left:-1.664000pt;}
._1{width:1.143467pt;}
._6{width:2.496000pt;}
._9{width:3.437557pt;}
._b{width:6.072000pt;}
._a{width:7.190933pt;}
._c{width:50.160000pt;}
._8{width:65.856000pt;}
.fs3{font-size:27.984000pt;}
.fs7{font-size:37.312000pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:67.577600pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:50.530933pt;}
.y1{bottom:50.531600pt;}
.y2{bottom:53.439600pt;}
.yd{bottom:70.516133pt;}
.y75{bottom:94.205200pt;}
.y36{bottom:96.637733pt;}
.y74{bottom:110.205200pt;}
.y35{bottom:112.637733pt;}
.y73{bottom:126.205200pt;}
.y34{bottom:128.637733pt;}
.y72{bottom:142.205200pt;}
.y37{bottom:144.637733pt;}
.y71{bottom:158.205200pt;}
.y33{bottom:160.637733pt;}
.y70{bottom:174.205200pt;}
.y32{bottom:176.637733pt;}
.y6f{bottom:190.205200pt;}
.y31{bottom:192.637733pt;}
.y6e{bottom:206.205200pt;}
.y30{bottom:208.637733pt;}
.y6d{bottom:222.205200pt;}
.y2f{bottom:224.637733pt;}
.y6c{bottom:238.205200pt;}
.y2e{bottom:240.637733pt;}
.y6b{bottom:254.205200pt;}
.y2d{bottom:256.637733pt;}
.y6a{bottom:270.205200pt;}
.y2c{bottom:272.637733pt;}
.y69{bottom:286.205200pt;}
.y2b{bottom:288.637733pt;}
.y68{bottom:302.205200pt;}
.y2a{bottom:304.637733pt;}
.y67{bottom:318.205200pt;}
.y29{bottom:320.637733pt;}
.y66{bottom:334.205200pt;}
.y28{bottom:336.637733pt;}
.y65{bottom:350.205200pt;}
.y27{bottom:352.637733pt;}
.y64{bottom:366.205200pt;}
.y26{bottom:368.637733pt;}
.y63{bottom:382.205200pt;}
.y25{bottom:384.637733pt;}
.y62{bottom:398.205200pt;}
.y24{bottom:400.637733pt;}
.y61{bottom:414.205200pt;}
.y23{bottom:416.637733pt;}
.y81{bottom:429.689733pt;}
.y60{bottom:430.205200pt;}
.y22{bottom:432.637733pt;}
.y5f{bottom:446.205200pt;}
.y21{bottom:448.637733pt;}
.y80{bottom:458.644667pt;}
.y5e{bottom:462.205200pt;}
.y20{bottom:464.637733pt;}
.y7f{bottom:473.044667pt;}
.y5d{bottom:478.205200pt;}
.y1f{bottom:480.637733pt;}
.y7e{bottom:487.444667pt;}
.y5c{bottom:494.205200pt;}
.y1e{bottom:496.637733pt;}
.y7d{bottom:501.844667pt;}
.y5b{bottom:510.205200pt;}
.y1d{bottom:512.637733pt;}
.y7c{bottom:516.244667pt;}
.y5a{bottom:526.205200pt;}
.y1c{bottom:528.637733pt;}
.y7b{bottom:530.644667pt;}
.y59{bottom:542.205200pt;}
.y1b{bottom:544.637733pt;}
.y7a{bottom:545.044667pt;}
.y58{bottom:558.205200pt;}
.y79{bottom:559.444667pt;}
.y1a{bottom:560.637733pt;}
.y78{bottom:573.844667pt;}
.y57{bottom:574.205200pt;}
.y19{bottom:576.637733pt;}
.y77{bottom:588.244667pt;}
.y56{bottom:590.205200pt;}
.y76{bottom:602.644667pt;}
.y55{bottom:606.205200pt;}
.y18{bottom:614.433067pt;}
.y54{bottom:622.205200pt;}
.y53{bottom:638.205200pt;}
.y17{bottom:643.907200pt;}
.y52{bottom:654.205200pt;}
.y16{bottom:658.307200pt;}
.y51{bottom:670.205200pt;}
.y15{bottom:672.707200pt;}
.y50{bottom:686.205200pt;}
.y95{bottom:686.394267pt;}
.y14{bottom:687.107200pt;}
.y94{bottom:701.060933pt;}
.y13{bottom:701.507200pt;}
.y4f{bottom:702.205200pt;}
.y93{bottom:715.727600pt;}
.y12{bottom:715.907200pt;}
.y4e{bottom:718.205200pt;}
.y11{bottom:730.307067pt;}
.y4d{bottom:734.205200pt;}
.y92{bottom:737.953333pt;}
.y10{bottom:744.707200pt;}
.y4c{bottom:750.205200pt;}
.y91{bottom:752.620000pt;}
.yf{bottom:759.107200pt;}
.y4b{bottom:766.205200pt;}
.ye{bottom:773.507200pt;}
.y90{bottom:774.845733pt;}
.y4a{bottom:782.205200pt;}
.y8f{bottom:789.512400pt;}
.y49{bottom:798.205200pt;}
.y38{bottom:807.669867pt;}
.y8e{bottom:811.738133pt;}
.y48{bottom:814.205200pt;}
.y8d{bottom:826.404800pt;}
.y3{bottom:828.536667pt;}
.y47{bottom:830.205200pt;}
.y8c{bottom:841.071467pt;}
.y46{bottom:846.205200pt;}
.y45{bottom:862.205200pt;}
.y8{bottom:862.568667pt;}
.y8b{bottom:863.297200pt;}
.y7{bottom:873.239200pt;}
.y8a{bottom:877.963867pt;}
.y44{bottom:878.205200pt;}
.y6{bottom:891.902000pt;}
.y89{bottom:892.630533pt;}
.y43{bottom:894.205200pt;}
.y5{bottom:902.572533pt;}
.y42{bottom:910.205200pt;}
.y88{bottom:914.856267pt;}
.y4{bottom:921.235333pt;}
.y41{bottom:926.205200pt;}
.y87{bottom:929.522933pt;}
.y40{bottom:942.205200pt;}
.y86{bottom:944.189600pt;}
.yc{bottom:950.226667pt;}
.yb{bottom:950.942667pt;}
.y3f{bottom:958.205200pt;}
.y85{bottom:966.415333pt;}
.y3e{bottom:974.205200pt;}
.y84{bottom:981.082000pt;}
.ya{bottom:989.342800pt;}
.y3d{bottom:990.205200pt;}
.y83{bottom:995.748667pt;}
.y3c{bottom:1006.205200pt;}
.y82{bottom:1017.974400pt;}
.y9{bottom:1018.142800pt;}
.y3b{bottom:1022.205200pt;}
.y3a{bottom:1038.205200pt;}
.h5{height:25.055467pt;}
.hd{height:34.272000pt;}
.h3{height:35.242667pt;}
.hc{height:39.648000pt;}
.he{height:40.608000pt;}
.h6{height:41.040000pt;}
.ha{height:45.040734pt;}
.h4{height:45.600000pt;}
.h2{height:50.160000pt;}
.hb{height:52.864000pt;}
.h8{height:54.144000pt;}
.h7{height:68.544000pt;}
.h9{height:86.308000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:86.676000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:62.362133pt;}
.xc{left:79.370000pt;}
.x3{left:83.149600pt;}
.x13{left:86.929067pt;}
.x12{left:87.984267pt;}
.x4{left:90.708667pt;}
.x7{left:92.042000pt;}
.xd{left:98.267733pt;}
.x8{left:102.047200pt;}
.x11{left:116.224667pt;}
.x2{left:145.310000pt;}
.x5{left:188.481200pt;}
.x6{left:372.343600pt;}
.xf{left:410.078667pt;}
.x9{left:413.858267pt;}
.xe{left:428.976267pt;}
.xa{left:432.755867pt;}
.x10{left:452.976267pt;}
.x1{left:701.102400pt;}
}




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