
    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_c2333fcfdee6de733053b271.woff')format("woff");}.ff1{font-family:ff1;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_952955f526a31f9312d9ede8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_4edf265d49118ad4c97effdd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_09cc1855b3d6ada944c1cf39.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ea64a2ea4d3e03b7c0ea0642.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:103.752000px;}
.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;}
}
.ws6{word-spacing:-55.944000px;}
.ws88{word-spacing:-40.761647px;}
.ws55{word-spacing:-38.861100px;}
.ws2e{word-spacing:-38.799000px;}
.ws1d{word-spacing:-38.654100px;}
.ws42{word-spacing:-38.642700px;}
.ws2f{word-spacing:-38.589300px;}
.ws4c{word-spacing:-38.448000px;}
.wsa{word-spacing:-38.439000px;}
.ws41{word-spacing:-38.433600px;}
.ws9{word-spacing:-38.429100px;}
.ws29{word-spacing:-38.424600px;}
.wsb{word-spacing:-38.369400px;}
.ws54{word-spacing:-38.368800px;}
.ws52{word-spacing:-38.356200px;}
.ws3d{word-spacing:-38.310000px;}
.ws8{word-spacing:-38.304000px;}
.ws4{word-spacing:-38.297700px;}
.ws17{word-spacing:-38.294100px;}
.ws24{word-spacing:-38.292300px;}
.ws46{word-spacing:-38.289600px;}
.ws14{word-spacing:-38.285100px;}
.ws34{word-spacing:-38.281500px;}
.ws4b{word-spacing:-38.160000px;}
.ws53{word-spacing:-38.158200px;}
.ws50{word-spacing:-38.153700px;}
.ws30{word-spacing:-38.150700px;}
.wsc{word-spacing:-38.084400px;}
.ws2{word-spacing:-38.081700px;}
.ws7{word-spacing:-38.005500px;}
.ws4d{word-spacing:-37.997100px;}
.ws0{word-spacing:-37.944000px;}
.ws67{word-spacing:-37.936800px;}
.ws3{word-spacing:-37.935000px;}
.ws39{word-spacing:-37.932300px;}
.ws6a{word-spacing:-37.928400px;}
.ws5{word-spacing:-37.709100px;}
.ws63{word-spacing:-37.646100px;}
.ws5e{word-spacing:-37.583700px;}
.ws4f{word-spacing:-37.574100px;}
.ws51{word-spacing:-37.359900px;}
.ws82{word-spacing:-37.244000px;}
.ws7c{word-spacing:-37.238118px;}
.ws6f{word-spacing:-37.203300px;}
.ws66{word-spacing:-36.504000px;}
.ws8b{word-spacing:-36.179294px;}
.ws79{word-spacing:-36.149412px;}
.ws2d{word-spacing:-36.127500px;}
.ws85{word-spacing:-35.814588px;}
.ws72{word-spacing:-35.467529px;}
.ws7a{word-spacing:-35.455765px;}
.ws25{word-spacing:-35.422200px;}
.ws65{word-spacing:-35.068200px;}
.ws3c{word-spacing:-35.057700px;}
.ws64{word-spacing:-34.844400px;}
.ws18{word-spacing:-34.759800px;}
.ws84{word-spacing:-34.534353px;}
.ws68{word-spacing:-34.341300px;}
.ws32{word-spacing:-33.048000px;}
.ws71{word-spacing:-32.829176px;}
.ws6b{word-spacing:-32.186400px;}
.ws59{word-spacing:-31.966800px;}
.ws38{word-spacing:-31.886100px;}
.ws28{word-spacing:-31.669200px;}
.ws62{word-spacing:-30.732600px;}
.ws7f{word-spacing:-30.699765px;}
.ws33{word-spacing:-30.231000px;}
.ws16{word-spacing:-30.230700px;}
.ws15{word-spacing:-29.520000px;}
.ws78{word-spacing:-29.282118px;}
.ws8a{word-spacing:-29.102824px;}
.ws40{word-spacing:-28.281600px;}
.ws21{word-spacing:-28.224600px;}
.ws10{word-spacing:-27.855900px;}
.ws47{word-spacing:-27.639000px;}
.ws2b{word-spacing:-27.485400px;}
.ws69{word-spacing:-26.424000px;}
.ws1c{word-spacing:-26.133000px;}
.ws7b{word-spacing:-25.944000px;}
.ws83{word-spacing:-25.232235px;}
.ws43{word-spacing:-24.702000px;}
.ws77{word-spacing:-23.467529px;}
.ws89{word-spacing:-23.449412px;}
.ws76{word-spacing:-21.702824px;}
.ws35{word-spacing:-20.582100px;}
.ws37{word-spacing:-20.139300px;}
.ws31{word-spacing:-19.219500px;}
.ws5f{word-spacing:-19.218600px;}
.ws23{word-spacing:-18.856200px;}
.ws86{word-spacing:-18.173412px;}
.ws36{word-spacing:-17.847600px;}
.ws74{word-spacing:-17.293882px;}
.ws6e{word-spacing:-16.344000px;}
.ws80{word-spacing:-16.055765px;}
.ws58{word-spacing:-15.608700px;}
.ws6c{word-spacing:-14.904000px;}
.ws75{word-spacing:-13.932235px;}
.ws81{word-spacing:-13.567529px;}
.ws7e{word-spacing:-13.046824px;}
.wsf{word-spacing:-12.388200px;}
.ws7d{word-spacing:-11.120471px;}
.ws5d{word-spacing:-10.944000px;}
.ws4a{word-spacing:-10.932300px;}
.ws3a{word-spacing:-9.845100px;}
.ws73{word-spacing:-9.702824px;}
.ws3b{word-spacing:-8.848800px;}
.wse{word-spacing:-8.630100px;}
.ws2c{word-spacing:-8.625600px;}
.wsd{word-spacing:-7.920000px;}
.ws1b{word-spacing:-6.986400px;}
.ws48{word-spacing:-6.984000px;}
.ws20{word-spacing:-5.604000px;}
.ws1f{word-spacing:-4.318200px;}
.ws4e{word-spacing:-4.308000px;}
.ws22{word-spacing:-3.369000px;}
.ws87{word-spacing:-2.482118px;}
.ws12{word-spacing:-1.566900px;}
.ws5c{word-spacing:0.000000px;}
.ws49{word-spacing:0.592200px;}
.ws13{word-spacing:0.722100px;}
.ws61{word-spacing:4.176000px;}
.ws11{word-spacing:4.182000px;}
.ws6d{word-spacing:4.314000px;}
.ws3e{word-spacing:5.251800px;}
.ws56{word-spacing:5.627700px;}
.ws3f{word-spacing:6.065100px;}
.ws57{word-spacing:8.639400px;}
.ws5a{word-spacing:9.381300px;}
.ws45{word-spacing:9.873300px;}
.ws60{word-spacing:9.882900px;}
.ws2a{word-spacing:10.798500px;}
.ws19{word-spacing:12.822000px;}
.ws26{word-spacing:14.553000px;}
.ws70{word-spacing:14.997176px;}
.ws5b{word-spacing:15.918300px;}
.ws44{word-spacing:22.624200px;}
.ws27{word-spacing:35.496000px;}
.ws1e{word-spacing:69.849000px;}
.ws1a{word-spacing:86.491800px;}
.ws1{word-spacing:1037.484900px;}
._2{margin-left:-1.179000px;}
._0{width:1.076400px;}
._25{width:2.247529px;}
._26{width:3.609318px;}
._1f{width:17.407800px;}
._1{width:18.968400px;}
._16{width:20.975100px;}
._9{width:22.307400px;}
._17{width:24.123600px;}
._14{width:25.321800px;}
._23{width:26.963400px;}
._2a{width:28.526788px;}
._5{width:29.698200px;}
._d{width:30.960000px;}
._1c{width:32.688000px;}
._29{width:33.836165px;}
._18{width:36.426000px;}
._11{width:38.400600px;}
._27{width:40.236988px;}
._21{width:41.877000px;}
._28{width:43.541153px;}
._4{width:44.863800px;}
._2b{width:46.167318px;}
._19{width:47.376000px;}
._3{width:48.672000px;}
._c{width:50.546400px;}
._10{width:52.192200px;}
._f{width:53.280000px;}
._2c{width:55.003524px;}
._7{width:56.105100px;}
._8{width:57.672000px;}
._2d{width:59.315718px;}
._6{width:61.344000px;}
._1a{width:62.448600px;}
._1b{width:64.062900px;}
._20{width:65.664000px;}
._1e{width:66.878700px;}
._15{width:68.488800px;}
._a{width:70.440600px;}
._12{width:72.100200px;}
._22{width:73.152000px;}
._1d{width:79.626000px;}
._24{width:82.800000px;}
._13{width:92.671200px;}
._e{width:126.921600px;}
._b{width:143.650800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y46{bottom:104.836500px;}
.y2a{bottom:110.236500px;}
.y84{bottom:123.915000px;}
.y5d{bottom:128.775000px;}
.y29{bottom:130.936500px;}
.y83{bottom:144.615000px;}
.y45{bottom:146.415000px;}
.y5c{bottom:149.475000px;}
.y28{bottom:151.636500px;}
.y82{bottom:165.315000px;}
.y44{bottom:167.115000px;}
.y5b{bottom:170.175000px;}
.y81{bottom:186.015000px;}
.y43{bottom:187.815000px;}
.y80{bottom:206.715000px;}
.y42{bottom:208.515000px;}
.y5a{bottom:211.936500px;}
.y7f{bottom:227.236500px;}
.y27{bottom:234.975000px;}
.y7e{bottom:247.936500px;}
.y59{bottom:253.515000px;}
.y7d{bottom:268.636500px;}
.y58{bottom:274.215000px;}
.y26{bottom:276.736500px;}
.y7c{bottom:289.336500px;}
.y41{bottom:292.036500px;}
.y57{bottom:294.915000px;}
.y25{bottom:297.436500px;}
.y7b{bottom:310.036500px;}
.y40{bottom:312.736500px;}
.y56{bottom:315.615000px;}
.y24{bottom:318.136500px;}
.y7a{bottom:330.736500px;}
.y3f{bottom:333.436500px;}
.y23{bottom:338.836500px;}
.y79{bottom:351.436500px;}
.y3e{bottom:354.136500px;}
.y55{bottom:357.375000px;}
.y22{bottom:359.536500px;}
.y78{bottom:372.136500px;}
.y54{bottom:379.336500px;}
.y21{bottom:380.236500px;}
.y77{bottom:392.836500px;}
.y3d{bottom:395.715000px;}
.y20{bottom:400.936500px;}
.y53{bottom:401.295000px;}
.y76{bottom:413.536500px;}
.y52{bottom:423.436500px;}
.y75{bottom:434.236500px;}
.y3c{bottom:437.475000px;}
.y1f{bottom:442.696500px;}
.y51{bottom:445.396500px;}
.y74{bottom:454.936500px;}
.y1e{bottom:463.396500px;}
.y73{bottom:475.636500px;}
.y1d{bottom:484.096500px;}
.y50{bottom:488.415000px;}
.y72{bottom:496.336500px;}
.y1c{bottom:504.796500px;}
.y4f{bottom:509.115000px;}
.y71{bottom:517.036500px;}
.y1b{bottom:525.496500px;}
.y4e{bottom:529.815000px;}
.y70{bottom:537.736500px;}
.y1a{bottom:546.195000px;}
.y6f{bottom:558.436500px;}
.y4d{bottom:571.396500px;}
.y6e{bottom:579.136500px;}
.y19{bottom:587.775000px;}
.y6d{bottom:599.836500px;}
.y4c{bottom:613.155000px;}
.y6c{bottom:620.536500px;}
.y18{bottom:629.536500px;}
.y6b{bottom:641.236500px;}
.y17{bottom:650.236500px;}
.y4b{bottom:654.915000px;}
.y6a{bottom:661.936500px;}
.y69{bottom:682.636500px;}
.y16{bottom:691.996500px;}
.y3b{bottom:702.795000px;}
.y68{bottom:703.336500px;}
.y15{bottom:712.695000px;}
.y3a{bottom:723.496500px;}
.y67{bottom:724.036500px;}
.y14{bottom:733.395000px;}
.y39{bottom:744.195000px;}
.y66{bottom:744.736500px;}
.y13{bottom:754.096500px;}
.y38{bottom:764.895000px;}
.y65{bottom:765.436500px;}
.y12{bottom:774.795000px;}
.y37{bottom:785.596500px;}
.y64{bottom:786.136500px;}
.y11{bottom:795.496500px;}
.y63{bottom:806.836500px;}
.y10{bottom:816.195000px;}
.y36{bottom:827.175000px;}
.y62{bottom:827.536500px;}
.y35{bottom:847.875000px;}
.y61{bottom:848.236500px;}
.yf{bottom:857.775000px;}
.y34{bottom:868.575000px;}
.y60{bottom:868.936500px;}
.ye{bottom:878.475000px;}
.y33{bottom:889.275000px;}
.y5f{bottom:889.636500px;}
.yd{bottom:899.175000px;}
.y5e{bottom:910.336500px;}
.y32{bottom:931.036500px;}
.y4a{bottom:931.395000px;}
.y49{bottom:952.095000px;}
.y31{bottom:972.795000px;}
.yc{bottom:1005.015000px;}
.y30{bottom:1014.375000px;}
.yb{bottom:1027.155000px;}
.y2f{bottom:1035.075000px;}
.ya{bottom:1049.295000px;}
.y2e{bottom:1055.775000px;}
.y9{bottom:1071.255000px;}
.y2d{bottom:1076.475000px;}
.y8{bottom:1093.395000px;}
.y2c{bottom:1097.175000px;}
.y48{bottom:1097.536500px;}
.y7{bottom:1115.536500px;}
.y47{bottom:1118.236500px;}
.y6{bottom:1137.495000px;}
.y2b{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h4{height:50.027344px;}
.h2{height:62.261719px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xd{left:135.360000px;}
.xe{left:142.920000px;}
.xf{left:159.300000px;}
.x2{left:160.560000px;}
.xa{left:188.820000px;}
.x6{left:202.500000px;}
.xc{left:220.320000px;}
.xb{left:301.500000px;}
.x9{left:308.700000px;}
.x5{left:332.280000px;}
.x8{left:351.900000px;}
.x7{left:387.720000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:92.224000pt;}
.ws6{word-spacing:-49.728000pt;}
.ws88{word-spacing:-36.232575pt;}
.ws55{word-spacing:-34.543200pt;}
.ws2e{word-spacing:-34.488000pt;}
.ws1d{word-spacing:-34.359200pt;}
.ws42{word-spacing:-34.349067pt;}
.ws2f{word-spacing:-34.301600pt;}
.ws4c{word-spacing:-34.176000pt;}
.wsa{word-spacing:-34.168000pt;}
.ws41{word-spacing:-34.163200pt;}
.ws9{word-spacing:-34.159200pt;}
.ws29{word-spacing:-34.155200pt;}
.wsb{word-spacing:-34.106133pt;}
.ws54{word-spacing:-34.105600pt;}
.ws52{word-spacing:-34.094400pt;}
.ws3d{word-spacing:-34.053333pt;}
.ws8{word-spacing:-34.048000pt;}
.ws4{word-spacing:-34.042400pt;}
.ws17{word-spacing:-34.039200pt;}
.ws24{word-spacing:-34.037600pt;}
.ws46{word-spacing:-34.035200pt;}
.ws14{word-spacing:-34.031200pt;}
.ws34{word-spacing:-34.028000pt;}
.ws4b{word-spacing:-33.920000pt;}
.ws53{word-spacing:-33.918400pt;}
.ws50{word-spacing:-33.914400pt;}
.ws30{word-spacing:-33.911733pt;}
.wsc{word-spacing:-33.852800pt;}
.ws2{word-spacing:-33.850400pt;}
.ws7{word-spacing:-33.782667pt;}
.ws4d{word-spacing:-33.775200pt;}
.ws0{word-spacing:-33.728000pt;}
.ws67{word-spacing:-33.721600pt;}
.ws3{word-spacing:-33.720000pt;}
.ws39{word-spacing:-33.717600pt;}
.ws6a{word-spacing:-33.714133pt;}
.ws5{word-spacing:-33.519200pt;}
.ws63{word-spacing:-33.463200pt;}
.ws5e{word-spacing:-33.407733pt;}
.ws4f{word-spacing:-33.399200pt;}
.ws51{word-spacing:-33.208800pt;}
.ws82{word-spacing:-33.105778pt;}
.ws7c{word-spacing:-33.100549pt;}
.ws6f{word-spacing:-33.069600pt;}
.ws66{word-spacing:-32.448000pt;}
.ws8b{word-spacing:-32.159373pt;}
.ws79{word-spacing:-32.132810pt;}
.ws2d{word-spacing:-32.113333pt;}
.ws85{word-spacing:-31.835190pt;}
.ws72{word-spacing:-31.526693pt;}
.ws7a{word-spacing:-31.516235pt;}
.ws25{word-spacing:-31.486400pt;}
.ws65{word-spacing:-31.171733pt;}
.ws3c{word-spacing:-31.162400pt;}
.ws64{word-spacing:-30.972800pt;}
.ws18{word-spacing:-30.897600pt;}
.ws84{word-spacing:-30.697203pt;}
.ws68{word-spacing:-30.525600pt;}
.ws32{word-spacing:-29.376000pt;}
.ws71{word-spacing:-29.181490pt;}
.ws6b{word-spacing:-28.610133pt;}
.ws59{word-spacing:-28.414933pt;}
.ws38{word-spacing:-28.343200pt;}
.ws28{word-spacing:-28.150400pt;}
.ws62{word-spacing:-27.317867pt;}
.ws7f{word-spacing:-27.288680pt;}
.ws33{word-spacing:-26.872000pt;}
.ws16{word-spacing:-26.871733pt;}
.ws15{word-spacing:-26.240000pt;}
.ws78{word-spacing:-26.028549pt;}
.ws8a{word-spacing:-25.869176pt;}
.ws40{word-spacing:-25.139200pt;}
.ws21{word-spacing:-25.088533pt;}
.ws10{word-spacing:-24.760800pt;}
.ws47{word-spacing:-24.568000pt;}
.ws2b{word-spacing:-24.431467pt;}
.ws69{word-spacing:-23.488000pt;}
.ws1c{word-spacing:-23.229333pt;}
.ws7b{word-spacing:-23.061333pt;}
.ws83{word-spacing:-22.428654pt;}
.ws43{word-spacing:-21.957333pt;}
.ws77{word-spacing:-20.860026pt;}
.ws89{word-spacing:-20.843922pt;}
.ws76{word-spacing:-19.291399pt;}
.ws35{word-spacing:-18.295200pt;}
.ws37{word-spacing:-17.901600pt;}
.ws31{word-spacing:-17.084000pt;}
.ws5f{word-spacing:-17.083200pt;}
.ws23{word-spacing:-16.761067pt;}
.ws86{word-spacing:-16.154144pt;}
.ws36{word-spacing:-15.864533pt;}
.ws74{word-spacing:-15.372340pt;}
.ws6e{word-spacing:-14.528000pt;}
.ws80{word-spacing:-14.271791pt;}
.ws58{word-spacing:-13.874400pt;}
.ws6c{word-spacing:-13.248000pt;}
.ws75{word-spacing:-12.384209pt;}
.ws81{word-spacing:-12.060026pt;}
.ws7e{word-spacing:-11.597176pt;}
.wsf{word-spacing:-11.011733pt;}
.ws7d{word-spacing:-9.884863pt;}
.ws5d{word-spacing:-9.728000pt;}
.ws4a{word-spacing:-9.717600pt;}
.ws3a{word-spacing:-8.751200pt;}
.ws73{word-spacing:-8.624732pt;}
.ws3b{word-spacing:-7.865600pt;}
.wse{word-spacing:-7.671200pt;}
.ws2c{word-spacing:-7.667200pt;}
.wsd{word-spacing:-7.040000pt;}
.ws1b{word-spacing:-6.210133pt;}
.ws48{word-spacing:-6.208000pt;}
.ws20{word-spacing:-4.981333pt;}
.ws1f{word-spacing:-3.838400pt;}
.ws4e{word-spacing:-3.829333pt;}
.ws22{word-spacing:-2.994667pt;}
.ws87{word-spacing:-2.206327pt;}
.ws12{word-spacing:-1.392800pt;}
.ws5c{word-spacing:0.000000pt;}
.ws49{word-spacing:0.526400pt;}
.ws13{word-spacing:0.641867pt;}
.ws61{word-spacing:3.712000pt;}
.ws11{word-spacing:3.717333pt;}
.ws6d{word-spacing:3.834667pt;}
.ws3e{word-spacing:4.668267pt;}
.ws56{word-spacing:5.002400pt;}
.ws3f{word-spacing:5.391200pt;}
.ws57{word-spacing:7.679467pt;}
.ws5a{word-spacing:8.338933pt;}
.ws45{word-spacing:8.776267pt;}
.ws60{word-spacing:8.784800pt;}
.ws2a{word-spacing:9.598667pt;}
.ws19{word-spacing:11.397333pt;}
.ws26{word-spacing:12.936000pt;}
.ws70{word-spacing:13.330824pt;}
.ws5b{word-spacing:14.149600pt;}
.ws44{word-spacing:20.110400pt;}
.ws27{word-spacing:31.552000pt;}
.ws1e{word-spacing:62.088000pt;}
.ws1a{word-spacing:76.881600pt;}
.ws1{word-spacing:922.208800pt;}
._2{margin-left:-1.048000pt;}
._0{width:0.956800pt;}
._25{width:1.997804pt;}
._26{width:3.208282pt;}
._1f{width:15.473600pt;}
._1{width:16.860800pt;}
._16{width:18.644533pt;}
._9{width:19.828800pt;}
._17{width:21.443200pt;}
._14{width:22.508267pt;}
._23{width:23.967467pt;}
._2a{width:25.357145pt;}
._5{width:26.398400pt;}
._d{width:27.520000pt;}
._1c{width:29.056000pt;}
._29{width:30.076591pt;}
._18{width:32.378667pt;}
._11{width:34.133867pt;}
._27{width:35.766212pt;}
._21{width:37.224000pt;}
._28{width:38.703247pt;}
._4{width:39.878933pt;}
._2b{width:41.037616pt;}
._19{width:42.112000pt;}
._3{width:43.264000pt;}
._c{width:44.930133pt;}
._10{width:46.393067pt;}
._f{width:47.360000pt;}
._2c{width:48.892021pt;}
._7{width:49.871200pt;}
._8{width:51.264000pt;}
._2d{width:52.725082pt;}
._6{width:54.528000pt;}
._1a{width:55.509867pt;}
._1b{width:56.944800pt;}
._20{width:58.368000pt;}
._1e{width:59.447733pt;}
._15{width:60.878933pt;}
._a{width:62.613867pt;}
._12{width:64.089067pt;}
._22{width:65.024000pt;}
._1d{width:70.778667pt;}
._24{width:73.600000pt;}
._13{width:82.374400pt;}
._e{width:112.819200pt;}
._b{width:127.689600pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y46{bottom:93.188000pt;}
.y2a{bottom:97.988000pt;}
.y84{bottom:110.146667pt;}
.y5d{bottom:114.466667pt;}
.y29{bottom:116.388000pt;}
.y83{bottom:128.546667pt;}
.y45{bottom:130.146667pt;}
.y5c{bottom:132.866667pt;}
.y28{bottom:134.788000pt;}
.y82{bottom:146.946667pt;}
.y44{bottom:148.546667pt;}
.y5b{bottom:151.266667pt;}
.y81{bottom:165.346667pt;}
.y43{bottom:166.946667pt;}
.y80{bottom:183.746667pt;}
.y42{bottom:185.346667pt;}
.y5a{bottom:188.388000pt;}
.y7f{bottom:201.988000pt;}
.y27{bottom:208.866667pt;}
.y7e{bottom:220.388000pt;}
.y59{bottom:225.346667pt;}
.y7d{bottom:238.788000pt;}
.y58{bottom:243.746667pt;}
.y26{bottom:245.988000pt;}
.y7c{bottom:257.188000pt;}
.y41{bottom:259.588000pt;}
.y57{bottom:262.146667pt;}
.y25{bottom:264.388000pt;}
.y7b{bottom:275.588000pt;}
.y40{bottom:277.988000pt;}
.y56{bottom:280.546667pt;}
.y24{bottom:282.788000pt;}
.y7a{bottom:293.988000pt;}
.y3f{bottom:296.388000pt;}
.y23{bottom:301.188000pt;}
.y79{bottom:312.388000pt;}
.y3e{bottom:314.788000pt;}
.y55{bottom:317.666667pt;}
.y22{bottom:319.588000pt;}
.y78{bottom:330.788000pt;}
.y54{bottom:337.188000pt;}
.y21{bottom:337.988000pt;}
.y77{bottom:349.188000pt;}
.y3d{bottom:351.746667pt;}
.y20{bottom:356.388000pt;}
.y53{bottom:356.706667pt;}
.y76{bottom:367.588000pt;}
.y52{bottom:376.388000pt;}
.y75{bottom:385.988000pt;}
.y3c{bottom:388.866667pt;}
.y1f{bottom:393.508000pt;}
.y51{bottom:395.908000pt;}
.y74{bottom:404.388000pt;}
.y1e{bottom:411.908000pt;}
.y73{bottom:422.788000pt;}
.y1d{bottom:430.308000pt;}
.y50{bottom:434.146667pt;}
.y72{bottom:441.188000pt;}
.y1c{bottom:448.708000pt;}
.y4f{bottom:452.546667pt;}
.y71{bottom:459.588000pt;}
.y1b{bottom:467.108000pt;}
.y4e{bottom:470.946667pt;}
.y70{bottom:477.988000pt;}
.y1a{bottom:485.506667pt;}
.y6f{bottom:496.388000pt;}
.y4d{bottom:507.908000pt;}
.y6e{bottom:514.788000pt;}
.y19{bottom:522.466667pt;}
.y6d{bottom:533.188000pt;}
.y4c{bottom:545.026667pt;}
.y6c{bottom:551.588000pt;}
.y18{bottom:559.588000pt;}
.y6b{bottom:569.988000pt;}
.y17{bottom:577.988000pt;}
.y4b{bottom:582.146667pt;}
.y6a{bottom:588.388000pt;}
.y69{bottom:606.788000pt;}
.y16{bottom:615.108000pt;}
.y3b{bottom:624.706667pt;}
.y68{bottom:625.188000pt;}
.y15{bottom:633.506667pt;}
.y3a{bottom:643.108000pt;}
.y67{bottom:643.588000pt;}
.y14{bottom:651.906667pt;}
.y39{bottom:661.506667pt;}
.y66{bottom:661.988000pt;}
.y13{bottom:670.308000pt;}
.y38{bottom:679.906667pt;}
.y65{bottom:680.388000pt;}
.y12{bottom:688.706667pt;}
.y37{bottom:698.308000pt;}
.y64{bottom:698.788000pt;}
.y11{bottom:707.108000pt;}
.y63{bottom:717.188000pt;}
.y10{bottom:725.506667pt;}
.y36{bottom:735.266667pt;}
.y62{bottom:735.588000pt;}
.y35{bottom:753.666667pt;}
.y61{bottom:753.988000pt;}
.yf{bottom:762.466667pt;}
.y34{bottom:772.066667pt;}
.y60{bottom:772.388000pt;}
.ye{bottom:780.866667pt;}
.y33{bottom:790.466667pt;}
.y5f{bottom:790.788000pt;}
.yd{bottom:799.266667pt;}
.y5e{bottom:809.188000pt;}
.y32{bottom:827.588000pt;}
.y4a{bottom:827.906667pt;}
.y49{bottom:846.306667pt;}
.y31{bottom:864.706667pt;}
.yc{bottom:893.346667pt;}
.y30{bottom:901.666667pt;}
.yb{bottom:913.026667pt;}
.y2f{bottom:920.066667pt;}
.ya{bottom:932.706667pt;}
.y2e{bottom:938.466667pt;}
.y9{bottom:952.226667pt;}
.y2d{bottom:956.866667pt;}
.y8{bottom:971.906667pt;}
.y2c{bottom:975.266667pt;}
.y48{bottom:975.588000pt;}
.y7{bottom:991.588000pt;}
.y47{bottom:993.988000pt;}
.y6{bottom:1011.106667pt;}
.y2b{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h4{height:44.468750pt;}
.h2{height:55.343750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xd{left:120.320000pt;}
.xe{left:127.040000pt;}
.xf{left:141.600000pt;}
.x2{left:142.720000pt;}
.xa{left:167.840000pt;}
.x6{left:180.000000pt;}
.xc{left:195.840000pt;}
.xb{left:268.000000pt;}
.x9{left:274.400000pt;}
.x5{left:295.360000pt;}
.x8{left:312.800000pt;}
.x7{left:344.640000pt;}
}




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