
    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_9444bac87872eaf1b3fb4350.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_65d47cb1c7aa25fac1f74fcb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_68a80d97229e3654044641e8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_56d5cc1ebcfd9b63ca3fa6d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_12c7c4f1ee83d73a68210f5e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.733000;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_68a80d97229e3654044641e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b4a9cf17b458d91750cd9027.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a6a8bc73b35664fe31ad6217.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.730000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a48681d392ee8148c2525ff7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_68a80d97229e3654044641e8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b4a9cf17b458d91750cd9027.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b989f23f90f16cc666778200.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.748000;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);}
.v1{vertical-align:-39.118200px;}
.v2{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.820000px;}
.ls3{letter-spacing:-2.940000px;}
.ls5{letter-spacing:-0.966000px;}
.ls13{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.264000px;}
.lsf{letter-spacing:-0.168000px;}
.ls6{letter-spacing:-0.132000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.269400px;}
.lsc{letter-spacing:0.270000px;}
.ls12{letter-spacing:0.295800px;}
.ls9{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.486000px;}
.lsb{letter-spacing:0.648000px;}
.ls17{letter-spacing:0.702000px;}
.lsd{letter-spacing:0.714000px;}
.ls18{letter-spacing:0.756000px;}
.lse{letter-spacing:0.798000px;}
.ls15{letter-spacing:0.810000px;}
.ls1{letter-spacing:0.885000px;}
.ls16{letter-spacing:0.918000px;}
.ls2{letter-spacing:7.149000px;}
.ls10{letter-spacing:8.624400px;}
.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;}
}
.ws33{word-spacing:-15.822000px;}
.ws34{word-spacing:-15.768000px;}
.ws6{word-spacing:-15.336000px;}
.ws4{word-spacing:-15.120000px;}
.ws5{word-spacing:-15.012000px;}
.ws1{word-spacing:-13.740000px;}
.ws7{word-spacing:-12.474000px;}
.wsa{word-spacing:-3.564000px;}
.wsb{word-spacing:-3.432000px;}
.ws3d{word-spacing:-3.024000px;}
.ws4b{word-spacing:-2.970000px;}
.ws12{word-spacing:-2.808000px;}
.ws51{word-spacing:-2.754000px;}
.ws47{word-spacing:-2.700000px;}
.ws3f{word-spacing:-2.646000px;}
.ws16{word-spacing:-2.484000px;}
.ws55{word-spacing:-2.322000px;}
.ws53{word-spacing:-2.268000px;}
.ws3a{word-spacing:-2.214000px;}
.ws2d{word-spacing:-2.160000px;}
.ws26{word-spacing:-1.998000px;}
.ws29{word-spacing:-1.944000px;}
.ws31{word-spacing:-1.890000px;}
.ws25{word-spacing:-1.836000px;}
.ws24{word-spacing:-1.782000px;}
.ws46{word-spacing:-1.728000px;}
.ws21{word-spacing:-1.620000px;}
.ws11{word-spacing:-1.512000px;}
.ws1a{word-spacing:-1.296000px;}
.ws2c{word-spacing:-1.188000px;}
.ws8{word-spacing:-1.176000px;}
.ws20{word-spacing:-1.134000px;}
.ws3c{word-spacing:-0.972000px;}
.ws2a{word-spacing:-0.918000px;}
.ws48{word-spacing:-0.864000px;}
.ws3b{word-spacing:-0.702000px;}
.wsd{word-spacing:-0.594000px;}
.ws37{word-spacing:-0.486000px;}
.ws3e{word-spacing:-0.378000px;}
.ws9{word-spacing:-0.210000px;}
.ws3{word-spacing:-0.042000px;}
.ws0{word-spacing:0.000000px;}
.ws32{word-spacing:0.168000px;}
.ws2{word-spacing:0.300000px;}
.ws50{word-spacing:0.540000px;}
.ws30{word-spacing:0.546000px;}
.ws45{word-spacing:0.648000px;}
.wse{word-spacing:0.702000px;}
.ws2e{word-spacing:0.810000px;}
.ws4c{word-spacing:0.918000px;}
.ws44{word-spacing:0.972000px;}
.ws10{word-spacing:1.080000px;}
.wsc{word-spacing:1.188000px;}
.ws18{word-spacing:1.242000px;}
.ws4d{word-spacing:1.296000px;}
.ws23{word-spacing:1.620000px;}
.ws42{word-spacing:1.890000px;}
.wsf{word-spacing:1.944000px;}
.ws41{word-spacing:2.376000px;}
.ws13{word-spacing:2.754000px;}
.ws43{word-spacing:2.808000px;}
.ws38{word-spacing:2.862000px;}
.ws49{word-spacing:2.970000px;}
.ws52{word-spacing:3.078000px;}
.ws22{word-spacing:3.186000px;}
.ws27{word-spacing:3.888000px;}
.ws2b{word-spacing:3.996000px;}
.ws40{word-spacing:4.104000px;}
.ws2f{word-spacing:4.158000px;}
.ws28{word-spacing:4.320000px;}
.ws15{word-spacing:4.374000px;}
.ws57{word-spacing:4.428000px;}
.ws14{word-spacing:4.482000px;}
.ws1c{word-spacing:4.968000px;}
.ws1b{word-spacing:5.076000px;}
.ws39{word-spacing:5.184000px;}
.ws4a{word-spacing:5.508000px;}
.ws19{word-spacing:5.724000px;}
.ws56{word-spacing:6.210000px;}
.ws1e{word-spacing:6.804000px;}
.ws17{word-spacing:6.858000px;}
.ws1d{word-spacing:7.128000px;}
.ws1f{word-spacing:7.182000px;}
.ws54{word-spacing:7.398000px;}
.ws35{word-spacing:8.910000px;}
.ws36{word-spacing:9.072000px;}
.ws4e{word-spacing:9.990000px;}
.ws4f{word-spacing:10.422000px;}
._9{margin-left:-5.648400px;}
._3{margin-left:-3.262800px;}
._8{margin-left:-2.197800px;}
._0{margin-left:-1.134000px;}
._2{width:1.116000px;}
._1{width:2.328000px;}
._4{width:3.470400px;}
._5{width:22.218000px;}
._6{width:57.540000px;}
._7{width:1862.110800px;}
.fc3{color:rgb(24,116,95);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:31.320000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:16.511850px;}
.y1e{bottom:29.763750px;}
.y81{bottom:95.244150px;}
.y4{bottom:97.125005px;}
.y4d{bottom:98.170800px;}
.y80{bottom:113.244150px;}
.y50{bottom:113.809950px;}
.y4c{bottom:119.111700px;}
.y7f{bottom:131.244150px;}
.y4f{bottom:131.809950px;}
.y4b{bottom:132.611700px;}
.y1d{bottom:139.264499px;}
.y4e{bottom:149.809950px;}
.y7e{bottom:167.244150px;}
.y4a{bottom:185.244000px;}
.y7d{bottom:185.244150px;}
.y14{bottom:196.933500px;}
.y49{bottom:203.244000px;}
.y7c{bottom:203.244150px;}
.y1c{bottom:209.518500px;}
.y13{bottom:209.533503px;}
.y7b{bottom:221.244150px;}
.y1b{bottom:222.118502px;}
.y12{bottom:222.133505px;}
.y1a{bottom:234.718504px;}
.y11{bottom:234.733496px;}
.y48{bottom:239.244000px;}
.y7a{bottom:239.244150px;}
.y47{bottom:257.244000px;}
.y79{bottom:257.244150px;}
.y19{bottom:259.918497px;}
.y10{bottom:259.933500px;}
.y18{bottom:272.518500px;}
.yf{bottom:272.533503px;}
.y46{bottom:275.244000px;}
.y78{bottom:275.244150px;}
.y17{bottom:285.118502px;}
.ye{bottom:285.133499px;}
.y45{bottom:293.244000px;}
.y77{bottom:293.244150px;}
.y16{bottom:310.318501px;}
.yd{bottom:310.333501px;}
.y44{bottom:311.244000px;}
.y76{bottom:311.244150px;}
.y15{bottom:322.918500px;}
.yc{bottom:322.933500px;}
.y75{bottom:329.244150px;}
.y43{bottom:347.244000px;}
.y74{bottom:347.244150px;}
.yb{bottom:348.133500px;}
.y42{bottom:365.244000px;}
.y73{bottom:365.244150px;}
.y41{bottom:383.244000px;}
.ya{bottom:386.785499px;}
.y40{bottom:401.244000px;}
.y72{bottom:401.244150px;}
.y9{bottom:408.044999px;}
.y71{bottom:419.244150px;}
.y3f{bottom:437.244000px;}
.y70{bottom:437.244150px;}
.y3e{bottom:455.244000px;}
.y6f{bottom:455.244150px;}
.y3d{bottom:473.244000px;}
.y6e{bottom:473.244150px;}
.y3c{bottom:491.244000px;}
.y6d{bottom:491.244150px;}
.y3b{bottom:509.244000px;}
.y8{bottom:520.864502px;}
.y3a{bottom:527.244000px;}
.y6c{bottom:527.244150px;}
.y7{bottom:538.864499px;}
.y39{bottom:545.244000px;}
.y6b{bottom:545.244150px;}
.y6{bottom:556.864499px;}
.y38{bottom:563.244000px;}
.y6a{bottom:563.244150px;}
.y69{bottom:581.244150px;}
.y37{bottom:599.244000px;}
.y68{bottom:599.244150px;}
.y36{bottom:617.244000px;}
.y67{bottom:617.244150px;}
.y35{bottom:635.244000px;}
.y34{bottom:653.244000px;}
.y66{bottom:653.244150px;}
.y33{bottom:671.244000px;}
.y65{bottom:671.244150px;}
.y32{bottom:689.244000px;}
.y64{bottom:689.244150px;}
.y31{bottom:707.244000px;}
.y63{bottom:707.244150px;}
.y30{bottom:725.244000px;}
.y62{bottom:725.244150px;}
.y5{bottom:726.298500px;}
.y2f{bottom:743.244000px;}
.y61{bottom:743.244150px;}
.y3{bottom:752.599495px;}
.y2e{bottom:761.244000px;}
.y60{bottom:761.244150px;}
.y5f{bottom:779.244150px;}
.y2d{bottom:797.244000px;}
.y5e{bottom:797.244150px;}
.y2c{bottom:815.244000px;}
.y5d{bottom:815.244150px;}
.y2b{bottom:833.244000px;}
.y5c{bottom:851.244150px;}
.y2a{bottom:869.244000px;}
.y5b{bottom:869.244150px;}
.y2{bottom:879.369000px;}
.y29{bottom:887.244000px;}
.y5a{bottom:887.244150px;}
.y28{bottom:905.244000px;}
.y59{bottom:905.244150px;}
.y27{bottom:923.244000px;}
.y58{bottom:923.244150px;}
.y26{bottom:941.244000px;}
.y57{bottom:941.244150px;}
.y25{bottom:959.244000px;}
.y56{bottom:959.244150px;}
.y1{bottom:966.726000px;}
.y55{bottom:977.244150px;}
.y54{bottom:995.244150px;}
.y24{bottom:1004.682450px;}
.y53{bottom:1013.244150px;}
.y52{bottom:1031.244150px;}
.y23{bottom:1043.682450px;}
.y51{bottom:1049.244150px;}
.y22{bottom:1098.236250px;}
.y21{bottom:1116.756000px;}
.y20{bottom:1143.779550px;}
.h7{height:32.130000px;}
.hc{height:33.012000px;}
.he{height:39.474000px;}
.ha{height:42.444000px;}
.hb{height:43.860000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.h5{height:78.030000px;}
.hd{height:96.492000px;}
.h4{height:119.055004px;}
.h9{height:1177.500000px;}
.h8{height:1177.795500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:34.015800px;}
.xe{left:51.874050px;}
.xc{left:63.779550px;}
.xa{left:97.795200px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xb{left:114.803100px;}
.x4{left:203.484001px;}
.xf{left:246.614250px;}
.x3{left:454.959000px;}
.x7{left:472.650000px;}
.x9{left:515.539050px;}
.x8{left:555.352950px;}
.x5{left:681.093900px;}
.xd{left:728.776500px;}
@media print{
.v1{vertical-align:-34.771733pt;}
.v2{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.840000pt;}
.ls3{letter-spacing:-2.613333pt;}
.ls5{letter-spacing:-0.858667pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.234667pt;}
.lsf{letter-spacing:-0.149333pt;}
.ls6{letter-spacing:-0.117333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.239467pt;}
.lsc{letter-spacing:0.240000pt;}
.ls12{letter-spacing:0.262933pt;}
.ls9{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.432000pt;}
.lsb{letter-spacing:0.576000pt;}
.ls17{letter-spacing:0.624000pt;}
.lsd{letter-spacing:0.634667pt;}
.ls18{letter-spacing:0.672000pt;}
.lse{letter-spacing:0.709333pt;}
.ls15{letter-spacing:0.720000pt;}
.ls1{letter-spacing:0.786667pt;}
.ls16{letter-spacing:0.816000pt;}
.ls2{letter-spacing:6.354667pt;}
.ls10{letter-spacing:7.666133pt;}
.ws33{word-spacing:-14.064000pt;}
.ws34{word-spacing:-14.016000pt;}
.ws6{word-spacing:-13.632000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.344000pt;}
.ws1{word-spacing:-12.213333pt;}
.ws7{word-spacing:-11.088000pt;}
.wsa{word-spacing:-3.168000pt;}
.wsb{word-spacing:-3.050667pt;}
.ws3d{word-spacing:-2.688000pt;}
.ws4b{word-spacing:-2.640000pt;}
.ws12{word-spacing:-2.496000pt;}
.ws51{word-spacing:-2.448000pt;}
.ws47{word-spacing:-2.400000pt;}
.ws3f{word-spacing:-2.352000pt;}
.ws16{word-spacing:-2.208000pt;}
.ws55{word-spacing:-2.064000pt;}
.ws53{word-spacing:-2.016000pt;}
.ws3a{word-spacing:-1.968000pt;}
.ws2d{word-spacing:-1.920000pt;}
.ws26{word-spacing:-1.776000pt;}
.ws29{word-spacing:-1.728000pt;}
.ws31{word-spacing:-1.680000pt;}
.ws25{word-spacing:-1.632000pt;}
.ws24{word-spacing:-1.584000pt;}
.ws46{word-spacing:-1.536000pt;}
.ws21{word-spacing:-1.440000pt;}
.ws11{word-spacing:-1.344000pt;}
.ws1a{word-spacing:-1.152000pt;}
.ws2c{word-spacing:-1.056000pt;}
.ws8{word-spacing:-1.045333pt;}
.ws20{word-spacing:-1.008000pt;}
.ws3c{word-spacing:-0.864000pt;}
.ws2a{word-spacing:-0.816000pt;}
.ws48{word-spacing:-0.768000pt;}
.ws3b{word-spacing:-0.624000pt;}
.wsd{word-spacing:-0.528000pt;}
.ws37{word-spacing:-0.432000pt;}
.ws3e{word-spacing:-0.336000pt;}
.ws9{word-spacing:-0.186667pt;}
.ws3{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.ws32{word-spacing:0.149333pt;}
.ws2{word-spacing:0.266667pt;}
.ws50{word-spacing:0.480000pt;}
.ws30{word-spacing:0.485333pt;}
.ws45{word-spacing:0.576000pt;}
.wse{word-spacing:0.624000pt;}
.ws2e{word-spacing:0.720000pt;}
.ws4c{word-spacing:0.816000pt;}
.ws44{word-spacing:0.864000pt;}
.ws10{word-spacing:0.960000pt;}
.wsc{word-spacing:1.056000pt;}
.ws18{word-spacing:1.104000pt;}
.ws4d{word-spacing:1.152000pt;}
.ws23{word-spacing:1.440000pt;}
.ws42{word-spacing:1.680000pt;}
.wsf{word-spacing:1.728000pt;}
.ws41{word-spacing:2.112000pt;}
.ws13{word-spacing:2.448000pt;}
.ws43{word-spacing:2.496000pt;}
.ws38{word-spacing:2.544000pt;}
.ws49{word-spacing:2.640000pt;}
.ws52{word-spacing:2.736000pt;}
.ws22{word-spacing:2.832000pt;}
.ws27{word-spacing:3.456000pt;}
.ws2b{word-spacing:3.552000pt;}
.ws40{word-spacing:3.648000pt;}
.ws2f{word-spacing:3.696000pt;}
.ws28{word-spacing:3.840000pt;}
.ws15{word-spacing:3.888000pt;}
.ws57{word-spacing:3.936000pt;}
.ws14{word-spacing:3.984000pt;}
.ws1c{word-spacing:4.416000pt;}
.ws1b{word-spacing:4.512000pt;}
.ws39{word-spacing:4.608000pt;}
.ws4a{word-spacing:4.896000pt;}
.ws19{word-spacing:5.088000pt;}
.ws56{word-spacing:5.520000pt;}
.ws1e{word-spacing:6.048000pt;}
.ws17{word-spacing:6.096000pt;}
.ws1d{word-spacing:6.336000pt;}
.ws1f{word-spacing:6.384000pt;}
.ws54{word-spacing:6.576000pt;}
.ws35{word-spacing:7.920000pt;}
.ws36{word-spacing:8.064000pt;}
.ws4e{word-spacing:8.880000pt;}
.ws4f{word-spacing:9.264000pt;}
._9{margin-left:-5.020800pt;}
._3{margin-left:-2.900267pt;}
._8{margin-left:-1.953600pt;}
._0{margin-left:-1.008000pt;}
._2{width:0.992000pt;}
._1{width:2.069333pt;}
._4{width:3.084800pt;}
._5{width:19.749333pt;}
._6{width:51.146667pt;}
._7{width:1655.209600pt;}
.fs7{font-size:27.840000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:14.677200pt;}
.y1e{bottom:26.456667pt;}
.y81{bottom:84.661467pt;}
.y4{bottom:86.333337pt;}
.y4d{bottom:87.262933pt;}
.y80{bottom:100.661467pt;}
.y50{bottom:101.164400pt;}
.y4c{bottom:105.877067pt;}
.y7f{bottom:116.661467pt;}
.y4f{bottom:117.164400pt;}
.y4b{bottom:117.877067pt;}
.y1d{bottom:123.790666pt;}
.y4e{bottom:133.164400pt;}
.y7e{bottom:148.661467pt;}
.y4a{bottom:164.661333pt;}
.y7d{bottom:164.661467pt;}
.y14{bottom:175.052000pt;}
.y49{bottom:180.661333pt;}
.y7c{bottom:180.661467pt;}
.y1c{bottom:186.238666pt;}
.y13{bottom:186.252002pt;}
.y7b{bottom:196.661467pt;}
.y1b{bottom:197.438668pt;}
.y12{bottom:197.452004pt;}
.y1a{bottom:208.638670pt;}
.y11{bottom:208.651996pt;}
.y48{bottom:212.661333pt;}
.y7a{bottom:212.661467pt;}
.y47{bottom:228.661333pt;}
.y79{bottom:228.661467pt;}
.y19{bottom:231.038664pt;}
.y10{bottom:231.052000pt;}
.y18{bottom:242.238666pt;}
.yf{bottom:242.252002pt;}
.y46{bottom:244.661333pt;}
.y78{bottom:244.661467pt;}
.y17{bottom:253.438668pt;}
.ye{bottom:253.451999pt;}
.y45{bottom:260.661333pt;}
.y77{bottom:260.661467pt;}
.y16{bottom:275.838667pt;}
.yd{bottom:275.852001pt;}
.y44{bottom:276.661333pt;}
.y76{bottom:276.661467pt;}
.y15{bottom:287.038667pt;}
.yc{bottom:287.052000pt;}
.y75{bottom:292.661467pt;}
.y43{bottom:308.661333pt;}
.y74{bottom:308.661467pt;}
.yb{bottom:309.452000pt;}
.y42{bottom:324.661333pt;}
.y73{bottom:324.661467pt;}
.y41{bottom:340.661333pt;}
.ya{bottom:343.809333pt;}
.y40{bottom:356.661333pt;}
.y72{bottom:356.661467pt;}
.y9{bottom:362.706666pt;}
.y71{bottom:372.661467pt;}
.y3f{bottom:388.661333pt;}
.y70{bottom:388.661467pt;}
.y3e{bottom:404.661333pt;}
.y6f{bottom:404.661467pt;}
.y3d{bottom:420.661333pt;}
.y6e{bottom:420.661467pt;}
.y3c{bottom:436.661333pt;}
.y6d{bottom:436.661467pt;}
.y3b{bottom:452.661333pt;}
.y8{bottom:462.990669pt;}
.y3a{bottom:468.661333pt;}
.y6c{bottom:468.661467pt;}
.y7{bottom:478.990666pt;}
.y39{bottom:484.661333pt;}
.y6b{bottom:484.661467pt;}
.y6{bottom:494.990666pt;}
.y38{bottom:500.661333pt;}
.y6a{bottom:500.661467pt;}
.y69{bottom:516.661467pt;}
.y37{bottom:532.661333pt;}
.y68{bottom:532.661467pt;}
.y36{bottom:548.661333pt;}
.y67{bottom:548.661467pt;}
.y35{bottom:564.661333pt;}
.y34{bottom:580.661333pt;}
.y66{bottom:580.661467pt;}
.y33{bottom:596.661333pt;}
.y65{bottom:596.661467pt;}
.y32{bottom:612.661333pt;}
.y64{bottom:612.661467pt;}
.y31{bottom:628.661333pt;}
.y63{bottom:628.661467pt;}
.y30{bottom:644.661333pt;}
.y62{bottom:644.661467pt;}
.y5{bottom:645.598667pt;}
.y2f{bottom:660.661333pt;}
.y61{bottom:660.661467pt;}
.y3{bottom:668.977329pt;}
.y2e{bottom:676.661333pt;}
.y60{bottom:676.661467pt;}
.y5f{bottom:692.661467pt;}
.y2d{bottom:708.661333pt;}
.y5e{bottom:708.661467pt;}
.y2c{bottom:724.661333pt;}
.y5d{bottom:724.661467pt;}
.y2b{bottom:740.661333pt;}
.y5c{bottom:756.661467pt;}
.y2a{bottom:772.661333pt;}
.y5b{bottom:772.661467pt;}
.y2{bottom:781.661334pt;}
.y29{bottom:788.661333pt;}
.y5a{bottom:788.661467pt;}
.y28{bottom:804.661333pt;}
.y59{bottom:804.661467pt;}
.y27{bottom:820.661333pt;}
.y58{bottom:820.661467pt;}
.y26{bottom:836.661333pt;}
.y57{bottom:836.661467pt;}
.y25{bottom:852.661333pt;}
.y56{bottom:852.661467pt;}
.y1{bottom:859.312000pt;}
.y55{bottom:868.661467pt;}
.y54{bottom:884.661467pt;}
.y24{bottom:893.051067pt;}
.y53{bottom:900.661467pt;}
.y52{bottom:916.661467pt;}
.y23{bottom:927.717733pt;}
.y51{bottom:932.661467pt;}
.y22{bottom:976.210000pt;}
.y21{bottom:992.672000pt;}
.y20{bottom:1016.692933pt;}
.h7{height:28.560000pt;}
.hc{height:29.344000pt;}
.he{height:35.088000pt;}
.ha{height:37.728000pt;}
.hb{height:38.986667pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.h5{height:69.360000pt;}
.hd{height:85.770667pt;}
.h4{height:105.826671pt;}
.h9{height:1046.666667pt;}
.h8{height:1046.929333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:30.236267pt;}
.xe{left:46.110267pt;}
.xc{left:56.692933pt;}
.xa{left:86.929067pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xb{left:102.047200pt;}
.x4{left:180.874667pt;}
.xf{left:219.212667pt;}
.x3{left:404.408000pt;}
.x7{left:420.133333pt;}
.x9{left:458.256933pt;}
.x8{left:493.647067pt;}
.x5{left:605.416800pt;}
.xd{left:647.801333pt;}
}




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