
    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_4cbfb12dd1899deb0833b1cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_9e2139bc3b58cd84062c346a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_ce5c4dff78c2e68a110a1525.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2ccd0aa9b317f49d1effaf32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_58d2768be36aec330888d8cb.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ac69de4e82d99b9e8418dacb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_290bd8a8b8aa86098a27b489.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-1.200000px;}
.ls9{letter-spacing:-1.176000px;}
.ls4{letter-spacing:-0.576000px;}
.ls7{letter-spacing:-0.504000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.024000px;}
.ls10{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.204000px;}
.lsc{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.384000px;}
.ls0{letter-spacing:0.408000px;}
.lsb{letter-spacing:0.432000px;}
.ls2{letter-spacing:1.200000px;}
.ls15{letter-spacing:2.460000px;}
.ls16{letter-spacing:6.000000px;}
.lse{letter-spacing:7.200000px;}
.ls12{letter-spacing:14.400000px;}
.lsf{letter-spacing:17.940000px;}
.ls17{letter-spacing:19.200000px;}
.ls11{letter-spacing:32.400000px;}
.ls14{letter-spacing:72.000000px;}
.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;}
}
.ws0{word-spacing:-19.776000px;}
.ws4{word-spacing:-18.432000px;}
.ws2{word-spacing:-18.384000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:0.000000px;}
._6f{margin-left:-5.898000px;}
._c{margin-left:-4.806000px;}
._b{margin-left:-3.528000px;}
._2{margin-left:-1.536000px;}
._3{width:1.152000px;}
._4{width:2.478000px;}
._5{width:3.768000px;}
._d{width:4.800000px;}
._37{width:6.240000px;}
._11{width:7.752000px;}
._7{width:9.240000px;}
._10{width:10.536000px;}
._6{width:11.664000px;}
._15{width:12.672000px;}
._31{width:13.680000px;}
._32{width:14.760000px;}
._3d{width:16.080000px;}
._9{width:19.728000px;}
._8{width:21.048000px;}
._5e{width:22.680000px;}
._27{width:23.976000px;}
._14{width:25.320000px;}
._82{width:26.358000px;}
._2f{width:27.504000px;}
._77{width:29.448000px;}
._3c{width:30.816000px;}
._13{width:31.968000px;}
._12{width:33.912000px;}
._2e{width:34.974000px;}
._a{width:37.008000px;}
._68{width:38.016000px;}
._60{width:39.048000px;}
._3e{width:40.608000px;}
._35{width:41.976000px;}
._58{width:43.500000px;}
._5a{width:45.432000px;}
._25{width:46.800000px;}
._75{width:48.672000px;}
._76{width:49.680000px;}
._45{width:51.768000px;}
._20{width:53.160000px;}
._55{width:55.104000px;}
._28{width:56.880000px;}
._21{width:58.248000px;}
._2d{width:60.624000px;}
._2c{width:61.632000px;}
._33{width:64.728000px;}
._1f{width:66.636000px;}
._30{width:69.480000px;}
._6e{width:71.160000px;}
._44{width:72.720000px;}
._53{width:73.968000px;}
._4e{width:77.688000px;}
._62{width:78.984000px;}
._4c{width:84.600000px;}
._24{width:86.784000px;}
._79{width:88.968000px;}
._2a{width:90.000000px;}
._48{width:91.512000px;}
._8b{width:94.752000px;}
._6a{width:95.760000px;}
._6d{width:97.128000px;}
._65{width:100.152000px;}
._5c{width:101.400000px;}
._87{width:103.464000px;}
._1d{width:106.236000px;}
._63{width:107.544000px;}
._56{width:109.032000px;}
._43{width:112.032000px;}
._89{width:114.840000px;}
._26{width:116.712000px;}
._1a{width:117.750000px;}
._73{width:120.408000px;}
._17{width:131.256000px;}
._18{width:132.696000px;}
._59{width:137.544000px;}
._41{width:140.544000px;}
._1e{width:141.876000px;}
._71{width:145.224000px;}
._84{width:147.528000px;}
._6b{width:149.520000px;}
._3b{width:151.818000px;}
._1c{width:153.510000px;}
._49{width:155.088000px;}
._22{width:156.168000px;}
._2b{width:158.184000px;}
._23{width:161.856000px;}
._3a{width:163.440000px;}
._8a{width:166.896000px;}
._51{width:169.920000px;}
._8d{width:171.288000px;}
._57{width:172.584000px;}
._64{width:173.688000px;}
._86{width:176.256000px;}
._61{width:177.840000px;}
._74{width:181.896000px;}
._42{width:185.052000px;}
._7f{width:192.312000px;}
._46{width:194.040000px;}
._4b{width:196.776000px;}
._4a{width:199.728000px;}
._72{width:203.040000px;}
._81{width:204.696000px;}
._80{width:205.944000px;}
._4f{width:209.232000px;}
._8e{width:211.500000px;}
._88{width:217.800000px;}
._1b{width:219.774000px;}
._52{width:220.968000px;}
._29{width:222.408000px;}
._47{width:224.856000px;}
._66{width:227.736000px;}
._6c{width:230.028000px;}
._7c{width:231.480000px;}
._67{width:254.112000px;}
._5f{width:260.904000px;}
._5b{width:262.320000px;}
._8f{width:263.376000px;}
._69{width:264.816000px;}
._50{width:265.920000px;}
._70{width:269.784000px;}
._40{width:277.200000px;}
._4d{width:284.652000px;}
._0{width:292.446000px;}
._85{width:297.648000px;}
._34{width:306.792000px;}
._54{width:308.592000px;}
._36{width:312.258000px;}
._19{width:313.422000px;}
._3f{width:322.920000px;}
._8c{width:362.808000px;}
._5d{width:376.548000px;}
._38{width:411.624000px;}
._7e{width:446.784000px;}
._78{width:460.296000px;}
._e{width:526.896000px;}
._f{width:528.000000px;}
._7a{width:968.472000px;}
._7b{width:969.696000px;}
._39{width:1072.800000px;}
._16{width:1148.328000px;}
._1{width:1423.116000px;}
._83{width:2300.040000px;}
._7d{width:2308.104000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,32,96);}
.fc2{color:rgb(51,51,204);}
.fc1{color:rgb(204,0,102);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.000000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:6.900000px;}
.y79{bottom:6.915000px;}
.y3c{bottom:7.185000px;}
.y40{bottom:7.200000px;}
.y7{bottom:19.537500px;}
.y90{bottom:30.600000px;}
.y70{bottom:30.885000px;}
.y6e{bottom:30.892500px;}
.y37{bottom:30.900000px;}
.y78{bottom:30.915000px;}
.y3b{bottom:30.930000px;}
.y66{bottom:30.945000px;}
.y6{bottom:43.537500px;}
.y86{bottom:54.592500px;}
.y61{bottom:54.600000px;}
.y93{bottom:54.615000px;}
.y3a{bottom:54.630000px;}
.y6d{bottom:54.637500px;}
.y36{bottom:54.645000px;}
.y9b{bottom:54.900000px;}
.y5{bottom:68.737500px;}
.y75{bottom:78.300000px;}
.y35{bottom:78.330000px;}
.y6c{bottom:78.337500px;}
.y8a{bottom:78.345000px;}
.y60{bottom:78.600000px;}
.y92{bottom:78.615000px;}
.y39{bottom:78.630000px;}
.y96{bottom:78.637500px;}
.y8c{bottom:78.645000px;}
.y5f{bottom:102.300000px;}
.y34{bottom:102.330000px;}
.y6b{bottom:102.337500px;}
.y65{bottom:102.345000px;}
.y85{bottom:106.537500px;}
.y83{bottom:110.437500px;}
.y57{bottom:111.937500px;}
.y8e{bottom:114.937500px;}
.y5e{bottom:126.000000px;}
.y33{bottom:126.030000px;}
.y6a{bottom:126.037500px;}
.y64{bottom:126.045000px;}
.y3f{bottom:126.330000px;}
.y9a{bottom:126.345000px;}
.y95{bottom:128.737500px;}
.y67{bottom:129.637500px;}
.y30{bottom:131.137500px;}
.y82{bottom:134.437500px;}
.y56{bottom:135.937500px;}
.y8d{bottom:138.937500px;}
.y77{bottom:149.715000px;}
.y98{bottom:149.730000px;}
.y69{bottom:149.737500px;}
.y89{bottom:149.745000px;}
.y5d{bottom:150.000000px;}
.y73{bottom:150.030000px;}
.y3e{bottom:150.045000px;}
.y81{bottom:158.130000px;}
.y55{bottom:159.630000px;}
.y2f{bottom:162.630000px;}
.y63{bottom:173.730000px;}
.y68{bottom:173.737500px;}
.y5c{bottom:173.745000px;}
.y80{bottom:181.875000px;}
.y54{bottom:183.375000px;}
.y2e{bottom:186.375000px;}
.y5b{bottom:197.430000px;}
.y72{bottom:197.460000px;}
.y7f{bottom:205.875000px;}
.y53{bottom:207.375000px;}
.y2d{bottom:210.375000px;}
.y5a{bottom:221.430000px;}
.y71{bottom:221.475000px;}
.y94{bottom:224.775000px;}
.y7e{bottom:229.575000px;}
.y52{bottom:231.075000px;}
.y2c{bottom:234.075000px;}
.y59{bottom:245.130000px;}
.y7d{bottom:253.275000px;}
.y51{bottom:254.775000px;}
.y2b{bottom:257.775000px;}
.y7c{bottom:277.275000px;}
.y50{bottom:278.775000px;}
.y2a{bottom:281.775000px;}
.y8b{bottom:294.675000px;}
.y84{bottom:297.675000px;}
.y7b{bottom:300.975000px;}
.y4f{bottom:302.475000px;}
.y29{bottom:305.475000px;}
.y62{bottom:320.775000px;}
.y7a{bottom:324.675000px;}
.y4e{bottom:326.175000px;}
.y28{bottom:329.175000px;}
.y76{bottom:342.405000px;}
.ya4{bottom:348.720000px;}
.y4d{bottom:350.205000px;}
.y27{bottom:353.205000px;}
.ya3{bottom:372.420000px;}
.y4c{bottom:373.905000px;}
.y26{bottom:376.905000px;}
.y91{bottom:392.205000px;}
.ya2{bottom:396.420000px;}
.y4b{bottom:397.905000px;}
.y25{bottom:400.905000px;}
.ya1{bottom:420.120000px;}
.y4a{bottom:421.620000px;}
.y24{bottom:424.620000px;}
.y88{bottom:438.405000px;}
.ya0{bottom:443.820000px;}
.y49{bottom:445.320000px;}
.y23{bottom:448.320000px;}
.y9f{bottom:467.820000px;}
.y48{bottom:469.320000px;}
.y22{bottom:472.320000px;}
.y9e{bottom:491.505000px;}
.y47{bottom:493.005000px;}
.y21{bottom:496.005000px;}
.y9d{bottom:508.950000px;}
.y74{bottom:509.850000px;}
.y58{bottom:511.950000px;}
.y46{bottom:516.750000px;}
.y20{bottom:519.750000px;}
.y8f{bottom:535.950000px;}
.y45{bottom:540.750000px;}
.y1f{bottom:543.750000px;}
.y44{bottom:564.450000px;}
.y1e{bottom:567.450000px;}
.y43{bottom:588.150000px;}
.y1d{bottom:591.150000px;}
.y42{bottom:612.150000px;}
.y1c{bottom:615.150000px;}
.y9c{bottom:628.950000px;}
.y87{bottom:629.550000px;}
.y41{bottom:635.850000px;}
.y1b{bottom:638.850000px;}
.y3d{bottom:653.250000px;}
.y1a{bottom:662.550000px;}
.y19{bottom:686.595000px;}
.y18{bottom:710.280000px;}
.y99{bottom:724.680000px;}
.y17{bottom:733.995000px;}
.y16{bottom:757.980000px;}
.y15{bottom:781.695000px;}
.y14{bottom:805.380000px;}
.y38{bottom:820.695000px;}
.y13{bottom:829.380000px;}
.y12{bottom:853.125000px;}
.y97{bottom:868.425000px;}
.y11{bottom:876.825000px;}
.y10{bottom:900.825000px;}
.yf{bottom:924.525000px;}
.ye{bottom:948.225000px;}
.y32{bottom:964.425000px;}
.yd{bottom:972.225000px;}
.yc{bottom:995.925000px;}
.yb{bottom:1019.670000px;}
.ya{bottom:1043.655000px;}
.y6f{bottom:1059.570000px;}
.y9{bottom:1067.355000px;}
.y8{bottom:1091.070000px;}
.y4{bottom:1127.955000px;}
.y3{bottom:1151.955000px;}
.y2{bottom:1176.870000px;}
.y1{bottom:1207.800000px;}
.h9{height:23.700000px;}
.h10{height:47.700000px;}
.h8{height:50.273438px;}
.h4{height:66.978516px;}
.h7{height:70.664062px;}
.h16{height:71.400000px;}
.h14{height:71.437500px;}
.h6{height:72.562500px;}
.h2{height:76.546875px;}
.h5{height:82.441406px;}
.h3{height:86.115234px;}
.h1a{height:95.137500px;}
.h18{height:95.437500px;}
.h1b{height:119.100000px;}
.h12{height:142.800000px;}
.hb{height:142.822500px;}
.ha{height:142.837500px;}
.h19{height:143.137500px;}
.h13{height:166.545000px;}
.h17{height:166.830000px;}
.hc{height:166.845000px;}
.hf{height:190.530000px;}
.h15{height:190.545000px;}
.he{height:190.575000px;}
.h11{height:238.260000px;}
.hd{height:261.945000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w5{width:73.200000px;}
.w11{width:104.437500px;}
.w6{width:116.122500px;}
.w12{width:135.637500px;}
.wf{width:135.675000px;}
.w7{width:137.437500px;}
.w10{width:140.437500px;}
.wc{width:157.230000px;}
.wd{width:161.475000px;}
.w9{width:168.975000px;}
.w3{width:174.645000px;}
.w4{width:174.675000px;}
.wa{width:177.330000px;}
.w8{width:201.345000px;}
.we{width:202.245000px;}
.wb{width:223.275000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.800000px;}
.x5{left:42.299987px;}
.x4{left:84.937487px;}
.x1{left:106.537487px;}
.x6{left:127.237487px;}
.x10{left:159.945000px;}
.xa{left:210.674987px;}
.xe{left:261.075000px;}
.x14{left:263.775000px;}
.x11{left:276.975000px;}
.x17{left:288.975000px;}
.x8{left:303.119987px;}
.x9{left:316.004987px;}
.xb{left:337.319987px;}
.xc{left:411.404987px;}
.x12{left:415.050000px;}
.x18{left:425.550000px;}
.xf{left:436.350000px;}
.x7{left:446.249987px;}
.x15{left:487.950000px;}
.x2{left:546.494987px;}
.x19{left:566.595000px;}
.x13{left:617.280000px;}
.x3{left:637.694987px;}
.x16{left:646.095000px;}
.x1a{left:671.625000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls9{letter-spacing:-1.045333pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.021333pt;}
.ls10{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.181333pt;}
.lsc{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.341333pt;}
.ls0{letter-spacing:0.362667pt;}
.lsb{letter-spacing:0.384000pt;}
.ls2{letter-spacing:1.066667pt;}
.ls15{letter-spacing:2.186667pt;}
.ls16{letter-spacing:5.333333pt;}
.lse{letter-spacing:6.400000pt;}
.ls12{letter-spacing:12.800000pt;}
.lsf{letter-spacing:15.946667pt;}
.ls17{letter-spacing:17.066667pt;}
.ls11{letter-spacing:28.800000pt;}
.ls14{letter-spacing:64.000000pt;}
.ws0{word-spacing:-17.578667pt;}
.ws4{word-spacing:-16.384000pt;}
.ws2{word-spacing:-16.341333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:0.000000pt;}
._6f{margin-left:-5.242667pt;}
._c{margin-left:-4.272000pt;}
._b{margin-left:-3.136000pt;}
._2{margin-left:-1.365333pt;}
._3{width:1.024000pt;}
._4{width:2.202667pt;}
._5{width:3.349333pt;}
._d{width:4.266667pt;}
._37{width:5.546667pt;}
._11{width:6.890667pt;}
._7{width:8.213333pt;}
._10{width:9.365333pt;}
._6{width:10.368000pt;}
._15{width:11.264000pt;}
._31{width:12.160000pt;}
._32{width:13.120000pt;}
._3d{width:14.293333pt;}
._9{width:17.536000pt;}
._8{width:18.709333pt;}
._5e{width:20.160000pt;}
._27{width:21.312000pt;}
._14{width:22.506667pt;}
._82{width:23.429333pt;}
._2f{width:24.448000pt;}
._77{width:26.176000pt;}
._3c{width:27.392000pt;}
._13{width:28.416000pt;}
._12{width:30.144000pt;}
._2e{width:31.088000pt;}
._a{width:32.896000pt;}
._68{width:33.792000pt;}
._60{width:34.709333pt;}
._3e{width:36.096000pt;}
._35{width:37.312000pt;}
._58{width:38.666667pt;}
._5a{width:40.384000pt;}
._25{width:41.600000pt;}
._75{width:43.264000pt;}
._76{width:44.160000pt;}
._45{width:46.016000pt;}
._20{width:47.253333pt;}
._55{width:48.981333pt;}
._28{width:50.560000pt;}
._21{width:51.776000pt;}
._2d{width:53.888000pt;}
._2c{width:54.784000pt;}
._33{width:57.536000pt;}
._1f{width:59.232000pt;}
._30{width:61.760000pt;}
._6e{width:63.253333pt;}
._44{width:64.640000pt;}
._53{width:65.749333pt;}
._4e{width:69.056000pt;}
._62{width:70.208000pt;}
._4c{width:75.200000pt;}
._24{width:77.141333pt;}
._79{width:79.082667pt;}
._2a{width:80.000000pt;}
._48{width:81.344000pt;}
._8b{width:84.224000pt;}
._6a{width:85.120000pt;}
._6d{width:86.336000pt;}
._65{width:89.024000pt;}
._5c{width:90.133333pt;}
._87{width:91.968000pt;}
._1d{width:94.432000pt;}
._63{width:95.594667pt;}
._56{width:96.917333pt;}
._43{width:99.584000pt;}
._89{width:102.080000pt;}
._26{width:103.744000pt;}
._1a{width:104.666667pt;}
._73{width:107.029333pt;}
._17{width:116.672000pt;}
._18{width:117.952000pt;}
._59{width:122.261333pt;}
._41{width:124.928000pt;}
._1e{width:126.112000pt;}
._71{width:129.088000pt;}
._84{width:131.136000pt;}
._6b{width:132.906667pt;}
._3b{width:134.949333pt;}
._1c{width:136.453333pt;}
._49{width:137.856000pt;}
._22{width:138.816000pt;}
._2b{width:140.608000pt;}
._23{width:143.872000pt;}
._3a{width:145.280000pt;}
._8a{width:148.352000pt;}
._51{width:151.040000pt;}
._8d{width:152.256000pt;}
._57{width:153.408000pt;}
._64{width:154.389333pt;}
._86{width:156.672000pt;}
._61{width:158.080000pt;}
._74{width:161.685333pt;}
._42{width:164.490667pt;}
._7f{width:170.944000pt;}
._46{width:172.480000pt;}
._4b{width:174.912000pt;}
._4a{width:177.536000pt;}
._72{width:180.480000pt;}
._81{width:181.952000pt;}
._80{width:183.061333pt;}
._4f{width:185.984000pt;}
._8e{width:188.000000pt;}
._88{width:193.600000pt;}
._1b{width:195.354667pt;}
._52{width:196.416000pt;}
._29{width:197.696000pt;}
._47{width:199.872000pt;}
._66{width:202.432000pt;}
._6c{width:204.469333pt;}
._7c{width:205.760000pt;}
._67{width:225.877333pt;}
._5f{width:231.914667pt;}
._5b{width:233.173333pt;}
._8f{width:234.112000pt;}
._69{width:235.392000pt;}
._50{width:236.373333pt;}
._70{width:239.808000pt;}
._40{width:246.400000pt;}
._4d{width:253.024000pt;}
._0{width:259.952000pt;}
._85{width:264.576000pt;}
._34{width:272.704000pt;}
._54{width:274.304000pt;}
._36{width:277.562667pt;}
._19{width:278.597333pt;}
._3f{width:287.040000pt;}
._8c{width:322.496000pt;}
._5d{width:334.709333pt;}
._38{width:365.888000pt;}
._7e{width:397.141333pt;}
._78{width:409.152000pt;}
._e{width:468.352000pt;}
._f{width:469.333333pt;}
._7a{width:860.864000pt;}
._7b{width:861.952000pt;}
._39{width:953.600000pt;}
._16{width:1020.736000pt;}
._1{width:1264.992000pt;}
._83{width:2044.480000pt;}
._7d{width:2051.648000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:6.133333pt;}
.y79{bottom:6.146667pt;}
.y3c{bottom:6.386667pt;}
.y40{bottom:6.400000pt;}
.y7{bottom:17.366667pt;}
.y90{bottom:27.200000pt;}
.y70{bottom:27.453333pt;}
.y6e{bottom:27.460000pt;}
.y37{bottom:27.466667pt;}
.y78{bottom:27.480000pt;}
.y3b{bottom:27.493333pt;}
.y66{bottom:27.506667pt;}
.y6{bottom:38.700000pt;}
.y86{bottom:48.526667pt;}
.y61{bottom:48.533333pt;}
.y93{bottom:48.546667pt;}
.y3a{bottom:48.560000pt;}
.y6d{bottom:48.566667pt;}
.y36{bottom:48.573333pt;}
.y9b{bottom:48.800000pt;}
.y5{bottom:61.100000pt;}
.y75{bottom:69.600000pt;}
.y35{bottom:69.626667pt;}
.y6c{bottom:69.633333pt;}
.y8a{bottom:69.640000pt;}
.y60{bottom:69.866667pt;}
.y92{bottom:69.880000pt;}
.y39{bottom:69.893333pt;}
.y96{bottom:69.900000pt;}
.y8c{bottom:69.906667pt;}
.y5f{bottom:90.933333pt;}
.y34{bottom:90.960000pt;}
.y6b{bottom:90.966667pt;}
.y65{bottom:90.973333pt;}
.y85{bottom:94.700000pt;}
.y83{bottom:98.166667pt;}
.y57{bottom:99.500000pt;}
.y8e{bottom:102.166667pt;}
.y5e{bottom:112.000000pt;}
.y33{bottom:112.026667pt;}
.y6a{bottom:112.033333pt;}
.y64{bottom:112.040000pt;}
.y3f{bottom:112.293333pt;}
.y9a{bottom:112.306667pt;}
.y95{bottom:114.433333pt;}
.y67{bottom:115.233333pt;}
.y30{bottom:116.566667pt;}
.y82{bottom:119.500000pt;}
.y56{bottom:120.833333pt;}
.y8d{bottom:123.500000pt;}
.y77{bottom:133.080000pt;}
.y98{bottom:133.093333pt;}
.y69{bottom:133.100000pt;}
.y89{bottom:133.106667pt;}
.y5d{bottom:133.333333pt;}
.y73{bottom:133.360000pt;}
.y3e{bottom:133.373333pt;}
.y81{bottom:140.560000pt;}
.y55{bottom:141.893333pt;}
.y2f{bottom:144.560000pt;}
.y63{bottom:154.426667pt;}
.y68{bottom:154.433333pt;}
.y5c{bottom:154.440000pt;}
.y80{bottom:161.666667pt;}
.y54{bottom:163.000000pt;}
.y2e{bottom:165.666667pt;}
.y5b{bottom:175.493333pt;}
.y72{bottom:175.520000pt;}
.y7f{bottom:183.000000pt;}
.y53{bottom:184.333333pt;}
.y2d{bottom:187.000000pt;}
.y5a{bottom:196.826667pt;}
.y71{bottom:196.866667pt;}
.y94{bottom:199.800000pt;}
.y7e{bottom:204.066667pt;}
.y52{bottom:205.400000pt;}
.y2c{bottom:208.066667pt;}
.y59{bottom:217.893333pt;}
.y7d{bottom:225.133333pt;}
.y51{bottom:226.466667pt;}
.y2b{bottom:229.133333pt;}
.y7c{bottom:246.466667pt;}
.y50{bottom:247.800000pt;}
.y2a{bottom:250.466667pt;}
.y8b{bottom:261.933333pt;}
.y84{bottom:264.600000pt;}
.y7b{bottom:267.533333pt;}
.y4f{bottom:268.866667pt;}
.y29{bottom:271.533333pt;}
.y62{bottom:285.133333pt;}
.y7a{bottom:288.600000pt;}
.y4e{bottom:289.933333pt;}
.y28{bottom:292.600000pt;}
.y76{bottom:304.360000pt;}
.ya4{bottom:309.973333pt;}
.y4d{bottom:311.293333pt;}
.y27{bottom:313.960000pt;}
.ya3{bottom:331.040000pt;}
.y4c{bottom:332.360000pt;}
.y26{bottom:335.026667pt;}
.y91{bottom:348.626667pt;}
.ya2{bottom:352.373333pt;}
.y4b{bottom:353.693333pt;}
.y25{bottom:356.360000pt;}
.ya1{bottom:373.440000pt;}
.y4a{bottom:374.773333pt;}
.y24{bottom:377.440000pt;}
.y88{bottom:389.693333pt;}
.ya0{bottom:394.506667pt;}
.y49{bottom:395.840000pt;}
.y23{bottom:398.506667pt;}
.y9f{bottom:415.840000pt;}
.y48{bottom:417.173333pt;}
.y22{bottom:419.840000pt;}
.y9e{bottom:436.893333pt;}
.y47{bottom:438.226667pt;}
.y21{bottom:440.893333pt;}
.y9d{bottom:452.400000pt;}
.y74{bottom:453.200000pt;}
.y58{bottom:455.066667pt;}
.y46{bottom:459.333333pt;}
.y20{bottom:462.000000pt;}
.y8f{bottom:476.400000pt;}
.y45{bottom:480.666667pt;}
.y1f{bottom:483.333333pt;}
.y44{bottom:501.733333pt;}
.y1e{bottom:504.400000pt;}
.y43{bottom:522.800000pt;}
.y1d{bottom:525.466667pt;}
.y42{bottom:544.133333pt;}
.y1c{bottom:546.800000pt;}
.y9c{bottom:559.066667pt;}
.y87{bottom:559.600000pt;}
.y41{bottom:565.200000pt;}
.y1b{bottom:567.866667pt;}
.y3d{bottom:580.666667pt;}
.y1a{bottom:588.933333pt;}
.y19{bottom:610.306667pt;}
.y18{bottom:631.360000pt;}
.y99{bottom:644.160000pt;}
.y17{bottom:652.440000pt;}
.y16{bottom:673.760000pt;}
.y15{bottom:694.840000pt;}
.y14{bottom:715.893333pt;}
.y38{bottom:729.506667pt;}
.y13{bottom:737.226667pt;}
.y12{bottom:758.333333pt;}
.y97{bottom:771.933333pt;}
.y11{bottom:779.400000pt;}
.y10{bottom:800.733333pt;}
.yf{bottom:821.800000pt;}
.ye{bottom:842.866667pt;}
.y32{bottom:857.266667pt;}
.yd{bottom:864.200000pt;}
.yc{bottom:885.266667pt;}
.yb{bottom:906.373333pt;}
.ya{bottom:927.693333pt;}
.y6f{bottom:941.840000pt;}
.y9{bottom:948.760000pt;}
.y8{bottom:969.840000pt;}
.y4{bottom:1002.626667pt;}
.y3{bottom:1023.960000pt;}
.y2{bottom:1046.106667pt;}
.y1{bottom:1073.600000pt;}
.h9{height:21.066667pt;}
.h10{height:42.400000pt;}
.h8{height:44.687500pt;}
.h4{height:59.536458pt;}
.h7{height:62.812500pt;}
.h16{height:63.466667pt;}
.h14{height:63.500000pt;}
.h6{height:64.500000pt;}
.h2{height:68.041667pt;}
.h5{height:73.281250pt;}
.h3{height:76.546875pt;}
.h1a{height:84.566667pt;}
.h18{height:84.833333pt;}
.h1b{height:105.866667pt;}
.h12{height:126.933333pt;}
.hb{height:126.953333pt;}
.ha{height:126.966667pt;}
.h19{height:127.233333pt;}
.h13{height:148.040000pt;}
.h17{height:148.293333pt;}
.hc{height:148.306667pt;}
.hf{height:169.360000pt;}
.h15{height:169.373333pt;}
.he{height:169.400000pt;}
.h11{height:211.786667pt;}
.hd{height:232.840000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w5{width:65.066667pt;}
.w11{width:92.833333pt;}
.w6{width:103.220000pt;}
.w12{width:120.566667pt;}
.wf{width:120.600000pt;}
.w7{width:122.166667pt;}
.w10{width:124.833333pt;}
.wc{width:139.760000pt;}
.wd{width:143.533333pt;}
.w9{width:150.200000pt;}
.w3{width:155.240000pt;}
.w4{width:155.266667pt;}
.wa{width:157.626667pt;}
.w8{width:178.973333pt;}
.we{width:179.773333pt;}
.wb{width:198.466667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.933333pt;}
.x5{left:37.599988pt;}
.x4{left:75.499988pt;}
.x1{left:94.699988pt;}
.x6{left:113.099988pt;}
.x10{left:142.173333pt;}
.xa{left:187.266655pt;}
.xe{left:232.066667pt;}
.x14{left:234.466667pt;}
.x11{left:246.200000pt;}
.x17{left:256.866667pt;}
.x8{left:269.439988pt;}
.x9{left:280.893322pt;}
.xb{left:299.839988pt;}
.xc{left:365.693322pt;}
.x12{left:368.933333pt;}
.x18{left:378.266667pt;}
.xf{left:387.866667pt;}
.x7{left:396.666655pt;}
.x15{left:433.733333pt;}
.x2{left:485.773322pt;}
.x19{left:503.640000pt;}
.x13{left:548.693333pt;}
.x3{left:566.839988pt;}
.x16{left:574.306667pt;}
.x1a{left:597.000000pt;}
}




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