
    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_13d0d54e7c5657e84ea40a5a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_0678cd4bb0684ec2c72966cf.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_c1c2862f493d4355ca9c6e7d.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_c097e7c9484c30f5c75c51ac.woff')format("woff");}.ff4{font-family:ff4;line-height:0.878906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.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;}
}
.ws72{word-spacing:-61.200000px;}
.ws3f{word-spacing:-58.899600px;}
.ws6{word-spacing:-55.944000px;}
.ws71{word-spacing:-44.640000px;}
.ws3e{word-spacing:-42.480000px;}
.ws5b{word-spacing:-38.879700px;}
.ws8a{word-spacing:-38.874600px;}
.ws66{word-spacing:-38.661300px;}
.ws27{word-spacing:-38.660400px;}
.ws86{word-spacing:-38.656800px;}
.ws3{word-spacing:-38.656500px;}
.wsa{word-spacing:-38.654100px;}
.ws63{word-spacing:-38.653200px;}
.ws82{word-spacing:-38.651400px;}
.ws2e{word-spacing:-38.648700px;}
.ws74{word-spacing:-38.642400px;}
.ws20{word-spacing:-38.594400px;}
.wsd{word-spacing:-38.584800px;}
.ws51{word-spacing:-38.439900px;}
.ws28{word-spacing:-38.433600px;}
.ws7{word-spacing:-38.373000px;}
.ws5{word-spacing:-38.166000px;}
.ws9{word-spacing:-38.160000px;}
.wsb{word-spacing:-38.159100px;}
.ws48{word-spacing:-38.158200px;}
.ws41{word-spacing:-38.156400px;}
.ws17{word-spacing:-38.152800px;}
.ws3b{word-spacing:-38.146200px;}
.ws78{word-spacing:-38.138400px;}
.wsc{word-spacing:-38.088000px;}
.ws2{word-spacing:-38.081700px;}
.ws7d{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.ws30{word-spacing:-37.943100px;}
.ws2d{word-spacing:-37.940400px;}
.ws2a{word-spacing:-37.939500px;}
.ws4{word-spacing:-37.933200px;}
.ws44{word-spacing:-37.931400px;}
.ws55{word-spacing:-37.868400px;}
.ws59{word-spacing:-37.864800px;}
.ws26{word-spacing:-37.725000px;}
.ws8{word-spacing:-37.648800px;}
.ws24{word-spacing:-37.442400px;}
.ws6d{word-spacing:-37.440600px;}
.ws1c{word-spacing:-37.440000px;}
.ws4b{word-spacing:-37.434300px;}
.ws1e{word-spacing:-37.432800px;}
.ws40{word-spacing:-37.425000px;}
.ws12{word-spacing:-37.368000px;}
.ws4a{word-spacing:-37.220400px;}
.ws50{word-spacing:-37.218600px;}
.ws38{word-spacing:-37.212900px;}
.ws36{word-spacing:-37.203300px;}
.ws80{word-spacing:-37.150800px;}
.ws2c{word-spacing:-37.006200px;}
.ws13{word-spacing:-36.720000px;}
.ws4e{word-spacing:-36.712800px;}
.ws77{word-spacing:-36.502800px;}
.ws7f{word-spacing:-36.502200px;}
.ws35{word-spacing:-36.500400px;}
.ws43{word-spacing:-36.498000px;}
.ws83{word-spacing:-36.496800px;}
.ws42{word-spacing:-36.491400px;}
.ws19{word-spacing:-36.000000px;}
.ws61{word-spacing:-35.772900px;}
.ws2f{word-spacing:-35.708400px;}
.ws46{word-spacing:-35.286000px;}
.ws7c{word-spacing:-35.274600px;}
.ws7a{word-spacing:-35.208000px;}
.ws49{word-spacing:-35.064000px;}
.ws14{word-spacing:-35.055900px;}
.ws85{word-spacing:-34.335000px;}
.ws89{word-spacing:-34.329900px;}
.ws6b{word-spacing:-33.840000px;}
.ws68{word-spacing:-33.838800px;}
.ws76{word-spacing:-33.835200px;}
.ws69{word-spacing:-33.832800px;}
.ws11{word-spacing:-33.622200px;}
.ws75{word-spacing:-33.621300px;}
.ws88{word-spacing:-33.402600px;}
.ws23{word-spacing:-33.054000px;}
.ws52{word-spacing:-32.900400px;}
.ws7b{word-spacing:-32.898600px;}
.ws4f{word-spacing:-32.895900px;}
.ws5d{word-spacing:-32.889000px;}
.ws67{word-spacing:-32.684400px;}
.ws53{word-spacing:-32.679900px;}
.ws84{word-spacing:-32.392800px;}
.ws8f{word-spacing:-32.183100px;}
.wsf{word-spacing:-32.181000px;}
.ws18{word-spacing:-32.173200px;}
.ws87{word-spacing:-31.680000px;}
.ws2b{word-spacing:-31.458600px;}
.ws57{word-spacing:-30.960000px;}
.ws7e{word-spacing:-30.954000px;}
.ws29{word-spacing:-30.740400px;}
.ws47{word-spacing:-30.727200px;}
.ws1b{word-spacing:-30.664800px;}
.ws25{word-spacing:-30.240000px;}
.ws60{word-spacing:-30.232800px;}
.ws33{word-spacing:-30.008700px;}
.ws39{word-spacing:-29.952000px;}
.ws64{word-spacing:-29.518800px;}
.ws8e{word-spacing:-29.304000px;}
.ws65{word-spacing:-29.300400px;}
.ws8d{word-spacing:-29.292600px;}
.ws34{word-spacing:-28.806000px;}
.ws79{word-spacing:-28.798800px;}
.wse{word-spacing:-28.080000px;}
.ws70{word-spacing:-27.856800px;}
.ws1a{word-spacing:-27.784800px;}
.ws16{word-spacing:-27.360000px;}
.ws73{word-spacing:-27.146400px;}
.ws81{word-spacing:-27.127800px;}
.ws32{word-spacing:-25.920000px;}
.ws31{word-spacing:-25.906800px;}
.ws6a{word-spacing:-25.707300px;}
.ws8b{word-spacing:-25.703100px;}
.ws22{word-spacing:-25.200000px;}
.ws15{word-spacing:-25.192800px;}
.ws3a{word-spacing:-24.981900px;}
.ws54{word-spacing:-24.251400px;}
.ws6c{word-spacing:-23.754000px;}
.ws62{word-spacing:-23.540400px;}
.ws3d{word-spacing:-22.316400px;}
.ws1f{word-spacing:-22.032000px;}
.ws37{word-spacing:-22.023600px;}
.ws21{word-spacing:-21.600000px;}
.ws4c{word-spacing:-21.374100px;}
.ws56{word-spacing:-20.877300px;}
.ws3c{word-spacing:-20.866800px;}
.ws5a{word-spacing:-19.446000px;}
.ws5e{word-spacing:-19.440000px;}
.ws8c{word-spacing:-19.224000px;}
.ws45{word-spacing:-18.504000px;}
.ws10{word-spacing:-18.493200px;}
.ws4d{word-spacing:-17.282400px;}
.ws5f{word-spacing:-17.280000px;}
.ws1d{word-spacing:-17.269200px;}
.ws6e{word-spacing:-15.618600px;}
.ws5c{word-spacing:-15.107400px;}
.ws6f{word-spacing:-14.907300px;}
.ws58{word-spacing:-14.829000px;}
.ws1{word-spacing:1037.484900px;}
._2{margin-left:-1.063800px;}
._0{width:1.076400px;}
._14{width:12.447000px;}
._11{width:14.333400px;}
._f{width:17.472600px;}
._1{width:18.968400px;}
._8{width:20.370000px;}
._10{width:21.391800px;}
._4{width:22.671000px;}
._7{width:23.988000px;}
._5{width:25.077600px;}
._c{width:26.974800px;}
._3{width:29.088000px;}
._b{width:30.247200px;}
._a{width:31.820400px;}
._9{width:33.325200px;}
._e{width:35.280000px;}
._d{width:37.191600px;}
._15{width:38.300400px;}
._6{width:39.373200px;}
._13{width:40.539600px;}
._12{width:42.549000px;}
.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;}
.y88{bottom:118.155000px;}
.y6a{bottom:118.696500px;}
.y44{bottom:120.136500px;}
.y22{bottom:134.536500px;}
.y87{bottom:138.855000px;}
.y69{bottom:139.396500px;}
.y43{bottom:140.836500px;}
.y21{bottom:155.236500px;}
.y42{bottom:161.536500px;}
.y20{bottom:175.936500px;}
.y86{bottom:180.615000px;}
.y68{bottom:181.155000px;}
.y41{bottom:182.236500px;}
.y1f{bottom:196.636500px;}
.y67{bottom:201.855000px;}
.y85{bottom:202.575000px;}
.y40{bottom:202.936500px;}
.y95{bottom:203.836500px;}
.y1e{bottom:217.336500px;}
.y66{bottom:222.555000px;}
.y3f{bottom:223.636500px;}
.y84{bottom:224.536500px;}
.y1d{bottom:238.036500px;}
.y65{bottom:243.255000px;}
.y3e{bottom:265.396500px;}
.y83{bottom:266.295000px;}
.y1c{bottom:279.615000px;}
.y64{bottom:285.015000px;}
.y3d{bottom:286.096500px;}
.y82{bottom:286.996500px;}
.y1b{bottom:300.315000px;}
.y63{bottom:305.715000px;}
.y81{bottom:307.696500px;}
.y1a{bottom:321.015000px;}
.y62{bottom:326.415000px;}
.y94{bottom:328.575000px;}
.y19{bottom:341.715000px;}
.y61{bottom:347.115000px;}
.y80{bottom:349.275000px;}
.y18{bottom:362.415000px;}
.y3c{bottom:369.436500px;}
.y93{bottom:369.975000px;}
.y17{bottom:383.115000px;}
.y60{bottom:388.696500px;}
.y7f{bottom:391.036500px;}
.y16{bottom:403.815000px;}
.y5f{bottom:409.396500px;}
.y3b{bottom:411.196500px;}
.y92{bottom:411.736500px;}
.y15{bottom:424.515000px;}
.y5e{bottom:430.096500px;}
.y3a{bottom:431.896500px;}
.y91{bottom:432.436500px;}
.y7e{bottom:432.795000px;}
.y5d{bottom:450.795000px;}
.y39{bottom:452.596500px;}
.y90{bottom:453.136500px;}
.y7d{bottom:453.496500px;}
.y14{bottom:466.275000px;}
.y38{bottom:473.295000px;}
.y5c{bottom:492.555000px;}
.y8f{bottom:494.896500px;}
.y7c{bottom:495.075000px;}
.y13{bottom:507.855000px;}
.y5b{bottom:513.255000px;}
.y37{bottom:514.875000px;}
.y7b{bottom:515.775000px;}
.y5a{bottom:533.955000px;}
.y36{bottom:535.575000px;}
.y7a{bottom:536.475000px;}
.y12{bottom:549.615000px;}
.y59{bottom:554.655000px;}
.y79{bottom:557.175000px;}
.y35{bottom:577.336500px;}
.y8e{bottom:577.875000px;}
.y11{bottom:591.375000px;}
.y58{bottom:596.415000px;}
.y8d{bottom:598.575000px;}
.y78{bottom:598.936500px;}
.y34{bottom:619.096500px;}
.y77{bottom:619.636500px;}
.y10{bottom:632.955000px;}
.y57{bottom:637.996500px;}
.y76{bottom:640.336500px;}
.y33{bottom:660.675000px;}
.y75{bottom:661.036500px;}
.yf{bottom:674.715000px;}
.y56{bottom:679.755000px;}
.y8c{bottom:681.736500px;}
.y55{bottom:700.455000px;}
.y32{bottom:702.436500px;}
.y74{bottom:702.795000px;}
.ye{bottom:716.475000px;}
.y31{bottom:723.136500px;}
.y73{bottom:723.496500px;}
.y54{bottom:742.215000px;}
.y72{bottom:744.195000px;}
.yd{bottom:758.055000px;}
.y53{bottom:762.915000px;}
.y30{bottom:764.895000px;}
.y52{bottom:783.615000px;}
.y2f{bottom:785.596500px;}
.yc{bottom:799.815000px;}
.y51{bottom:804.315000px;}
.y8b{bottom:806.295000px;}
.y71{bottom:806.475000px;}
.y8a{bottom:826.996500px;}
.y2e{bottom:827.175000px;}
.yb{bottom:841.575000px;}
.y50{bottom:845.895000px;}
.y2d{bottom:847.875000px;}
.y4f{bottom:866.596500px;}
.y70{bottom:868.575000px;}
.y4e{bottom:887.295000px;}
.y2c{bottom:889.636500px;}
.y4d{bottom:907.995000px;}
.y2b{bottom:910.336500px;}
.ya{bottom:924.915000px;}
.y6f{bottom:931.036500px;}
.y9{bottom:945.615000px;}
.y4c{bottom:949.575000px;}
.y6e{bottom:951.736500px;}
.y2a{bottom:952.095000px;}
.y4b{bottom:970.275000px;}
.y6d{bottom:972.436500px;}
.y29{bottom:972.795000px;}
.y4a{bottom:992.415000px;}
.y6c{bottom:993.136500px;}
.y28{bottom:993.495000px;}
.y27{bottom:1014.195000px;}
.y49{bottom:1014.375000px;}
.y8{bottom:1030.395000px;}
.y26{bottom:1034.895000px;}
.y48{bottom:1035.075000px;}
.y25{bottom:1055.595000px;}
.y89{bottom:1055.775000px;}
.y7{bottom:1073.415000px;}
.y6b{bottom:1076.475000px;}
.y47{bottom:1076.836500px;}
.y24{bottom:1097.175000px;}
.y46{bottom:1097.536500px;}
.y6{bottom:1116.615000px;}
.y45{bottom:1118.236500px;}
.y23{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h6{height:59.343750px;}
.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;}
.xb{left:129.600000px;}
.x9{left:143.100000px;}
.x2{left:160.560000px;}
.x6{left:260.280000px;}
.x7{left:277.380000px;}
.x5{left:313.560000px;}
.x8{left:333.180000px;}
.xa{left:350.100000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws72{word-spacing:-54.400000pt;}
.ws3f{word-spacing:-52.355200pt;}
.ws6{word-spacing:-49.728000pt;}
.ws71{word-spacing:-39.680000pt;}
.ws3e{word-spacing:-37.760000pt;}
.ws5b{word-spacing:-34.559733pt;}
.ws8a{word-spacing:-34.555200pt;}
.ws66{word-spacing:-34.365600pt;}
.ws27{word-spacing:-34.364800pt;}
.ws86{word-spacing:-34.361600pt;}
.ws3{word-spacing:-34.361333pt;}
.wsa{word-spacing:-34.359200pt;}
.ws63{word-spacing:-34.358400pt;}
.ws82{word-spacing:-34.356800pt;}
.ws2e{word-spacing:-34.354400pt;}
.ws74{word-spacing:-34.348800pt;}
.ws20{word-spacing:-34.306133pt;}
.wsd{word-spacing:-34.297600pt;}
.ws51{word-spacing:-34.168800pt;}
.ws28{word-spacing:-34.163200pt;}
.ws7{word-spacing:-34.109333pt;}
.ws5{word-spacing:-33.925333pt;}
.ws9{word-spacing:-33.920000pt;}
.wsb{word-spacing:-33.919200pt;}
.ws48{word-spacing:-33.918400pt;}
.ws41{word-spacing:-33.916800pt;}
.ws17{word-spacing:-33.913600pt;}
.ws3b{word-spacing:-33.907733pt;}
.ws78{word-spacing:-33.900800pt;}
.wsc{word-spacing:-33.856000pt;}
.ws2{word-spacing:-33.850400pt;}
.ws7d{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.ws30{word-spacing:-33.727200pt;}
.ws2d{word-spacing:-33.724800pt;}
.ws2a{word-spacing:-33.724000pt;}
.ws4{word-spacing:-33.718400pt;}
.ws44{word-spacing:-33.716800pt;}
.ws55{word-spacing:-33.660800pt;}
.ws59{word-spacing:-33.657600pt;}
.ws26{word-spacing:-33.533333pt;}
.ws8{word-spacing:-33.465600pt;}
.ws24{word-spacing:-33.282133pt;}
.ws6d{word-spacing:-33.280533pt;}
.ws1c{word-spacing:-33.280000pt;}
.ws4b{word-spacing:-33.274933pt;}
.ws1e{word-spacing:-33.273600pt;}
.ws40{word-spacing:-33.266667pt;}
.ws12{word-spacing:-33.216000pt;}
.ws4a{word-spacing:-33.084800pt;}
.ws50{word-spacing:-33.083200pt;}
.ws38{word-spacing:-33.078133pt;}
.ws36{word-spacing:-33.069600pt;}
.ws80{word-spacing:-33.022933pt;}
.ws2c{word-spacing:-32.894400pt;}
.ws13{word-spacing:-32.640000pt;}
.ws4e{word-spacing:-32.633600pt;}
.ws77{word-spacing:-32.446933pt;}
.ws7f{word-spacing:-32.446400pt;}
.ws35{word-spacing:-32.444800pt;}
.ws43{word-spacing:-32.442667pt;}
.ws83{word-spacing:-32.441600pt;}
.ws42{word-spacing:-32.436800pt;}
.ws19{word-spacing:-32.000000pt;}
.ws61{word-spacing:-31.798133pt;}
.ws2f{word-spacing:-31.740800pt;}
.ws46{word-spacing:-31.365333pt;}
.ws7c{word-spacing:-31.355200pt;}
.ws7a{word-spacing:-31.296000pt;}
.ws49{word-spacing:-31.168000pt;}
.ws14{word-spacing:-31.160800pt;}
.ws85{word-spacing:-30.520000pt;}
.ws89{word-spacing:-30.515467pt;}
.ws6b{word-spacing:-30.080000pt;}
.ws68{word-spacing:-30.078933pt;}
.ws76{word-spacing:-30.075733pt;}
.ws69{word-spacing:-30.073600pt;}
.ws11{word-spacing:-29.886400pt;}
.ws75{word-spacing:-29.885600pt;}
.ws88{word-spacing:-29.691200pt;}
.ws23{word-spacing:-29.381333pt;}
.ws52{word-spacing:-29.244800pt;}
.ws7b{word-spacing:-29.243200pt;}
.ws4f{word-spacing:-29.240800pt;}
.ws5d{word-spacing:-29.234667pt;}
.ws67{word-spacing:-29.052800pt;}
.ws53{word-spacing:-29.048800pt;}
.ws84{word-spacing:-28.793600pt;}
.ws8f{word-spacing:-28.607200pt;}
.wsf{word-spacing:-28.605333pt;}
.ws18{word-spacing:-28.598400pt;}
.ws87{word-spacing:-28.160000pt;}
.ws2b{word-spacing:-27.963200pt;}
.ws57{word-spacing:-27.520000pt;}
.ws7e{word-spacing:-27.514667pt;}
.ws29{word-spacing:-27.324800pt;}
.ws47{word-spacing:-27.313067pt;}
.ws1b{word-spacing:-27.257600pt;}
.ws25{word-spacing:-26.880000pt;}
.ws60{word-spacing:-26.873600pt;}
.ws33{word-spacing:-26.674400pt;}
.ws39{word-spacing:-26.624000pt;}
.ws64{word-spacing:-26.238933pt;}
.ws8e{word-spacing:-26.048000pt;}
.ws65{word-spacing:-26.044800pt;}
.ws8d{word-spacing:-26.037867pt;}
.ws34{word-spacing:-25.605333pt;}
.ws79{word-spacing:-25.598933pt;}
.wse{word-spacing:-24.960000pt;}
.ws70{word-spacing:-24.761600pt;}
.ws1a{word-spacing:-24.697600pt;}
.ws16{word-spacing:-24.320000pt;}
.ws73{word-spacing:-24.130133pt;}
.ws81{word-spacing:-24.113600pt;}
.ws32{word-spacing:-23.040000pt;}
.ws31{word-spacing:-23.028267pt;}
.ws6a{word-spacing:-22.850933pt;}
.ws8b{word-spacing:-22.847200pt;}
.ws22{word-spacing:-22.400000pt;}
.ws15{word-spacing:-22.393600pt;}
.ws3a{word-spacing:-22.206133pt;}
.ws54{word-spacing:-21.556800pt;}
.ws6c{word-spacing:-21.114667pt;}
.ws62{word-spacing:-20.924800pt;}
.ws3d{word-spacing:-19.836800pt;}
.ws1f{word-spacing:-19.584000pt;}
.ws37{word-spacing:-19.576533pt;}
.ws21{word-spacing:-19.200000pt;}
.ws4c{word-spacing:-18.999200pt;}
.ws56{word-spacing:-18.557600pt;}
.ws3c{word-spacing:-18.548267pt;}
.ws5a{word-spacing:-17.285333pt;}
.ws5e{word-spacing:-17.280000pt;}
.ws8c{word-spacing:-17.088000pt;}
.ws45{word-spacing:-16.448000pt;}
.ws10{word-spacing:-16.438400pt;}
.ws4d{word-spacing:-15.362133pt;}
.ws5f{word-spacing:-15.360000pt;}
.ws1d{word-spacing:-15.350400pt;}
.ws6e{word-spacing:-13.883200pt;}
.ws5c{word-spacing:-13.428800pt;}
.ws6f{word-spacing:-13.250933pt;}
.ws58{word-spacing:-13.181333pt;}
.ws1{word-spacing:922.208800pt;}
._2{margin-left:-0.945600pt;}
._0{width:0.956800pt;}
._14{width:11.064000pt;}
._11{width:12.740800pt;}
._f{width:15.531200pt;}
._1{width:16.860800pt;}
._8{width:18.106667pt;}
._10{width:19.014933pt;}
._4{width:20.152000pt;}
._7{width:21.322667pt;}
._5{width:22.291200pt;}
._c{width:23.977600pt;}
._3{width:25.856000pt;}
._b{width:26.886400pt;}
._a{width:28.284800pt;}
._9{width:29.622400pt;}
._e{width:31.360000pt;}
._d{width:33.059200pt;}
._15{width:34.044800pt;}
._6{width:34.998400pt;}
._13{width:36.035200pt;}
._12{width:37.821333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y88{bottom:105.026667pt;}
.y6a{bottom:105.508000pt;}
.y44{bottom:106.788000pt;}
.y22{bottom:119.588000pt;}
.y87{bottom:123.426667pt;}
.y69{bottom:123.908000pt;}
.y43{bottom:125.188000pt;}
.y21{bottom:137.988000pt;}
.y42{bottom:143.588000pt;}
.y20{bottom:156.388000pt;}
.y86{bottom:160.546667pt;}
.y68{bottom:161.026667pt;}
.y41{bottom:161.988000pt;}
.y1f{bottom:174.788000pt;}
.y67{bottom:179.426667pt;}
.y85{bottom:180.066667pt;}
.y40{bottom:180.388000pt;}
.y95{bottom:181.188000pt;}
.y1e{bottom:193.188000pt;}
.y66{bottom:197.826667pt;}
.y3f{bottom:198.788000pt;}
.y84{bottom:199.588000pt;}
.y1d{bottom:211.588000pt;}
.y65{bottom:216.226667pt;}
.y3e{bottom:235.908000pt;}
.y83{bottom:236.706667pt;}
.y1c{bottom:248.546667pt;}
.y64{bottom:253.346667pt;}
.y3d{bottom:254.308000pt;}
.y82{bottom:255.108000pt;}
.y1b{bottom:266.946667pt;}
.y63{bottom:271.746667pt;}
.y81{bottom:273.508000pt;}
.y1a{bottom:285.346667pt;}
.y62{bottom:290.146667pt;}
.y94{bottom:292.066667pt;}
.y19{bottom:303.746667pt;}
.y61{bottom:308.546667pt;}
.y80{bottom:310.466667pt;}
.y18{bottom:322.146667pt;}
.y3c{bottom:328.388000pt;}
.y93{bottom:328.866667pt;}
.y17{bottom:340.546667pt;}
.y60{bottom:345.508000pt;}
.y7f{bottom:347.588000pt;}
.y16{bottom:358.946667pt;}
.y5f{bottom:363.908000pt;}
.y3b{bottom:365.508000pt;}
.y92{bottom:365.988000pt;}
.y15{bottom:377.346667pt;}
.y5e{bottom:382.308000pt;}
.y3a{bottom:383.908000pt;}
.y91{bottom:384.388000pt;}
.y7e{bottom:384.706667pt;}
.y5d{bottom:400.706667pt;}
.y39{bottom:402.308000pt;}
.y90{bottom:402.788000pt;}
.y7d{bottom:403.108000pt;}
.y14{bottom:414.466667pt;}
.y38{bottom:420.706667pt;}
.y5c{bottom:437.826667pt;}
.y8f{bottom:439.908000pt;}
.y7c{bottom:440.066667pt;}
.y13{bottom:451.426667pt;}
.y5b{bottom:456.226667pt;}
.y37{bottom:457.666667pt;}
.y7b{bottom:458.466667pt;}
.y5a{bottom:474.626667pt;}
.y36{bottom:476.066667pt;}
.y7a{bottom:476.866667pt;}
.y12{bottom:488.546667pt;}
.y59{bottom:493.026667pt;}
.y79{bottom:495.266667pt;}
.y35{bottom:513.188000pt;}
.y8e{bottom:513.666667pt;}
.y11{bottom:525.666667pt;}
.y58{bottom:530.146667pt;}
.y8d{bottom:532.066667pt;}
.y78{bottom:532.388000pt;}
.y34{bottom:550.308000pt;}
.y77{bottom:550.788000pt;}
.y10{bottom:562.626667pt;}
.y57{bottom:567.108000pt;}
.y76{bottom:569.188000pt;}
.y33{bottom:587.266667pt;}
.y75{bottom:587.588000pt;}
.yf{bottom:599.746667pt;}
.y56{bottom:604.226667pt;}
.y8c{bottom:605.988000pt;}
.y55{bottom:622.626667pt;}
.y32{bottom:624.388000pt;}
.y74{bottom:624.706667pt;}
.ye{bottom:636.866667pt;}
.y31{bottom:642.788000pt;}
.y73{bottom:643.108000pt;}
.y54{bottom:659.746667pt;}
.y72{bottom:661.506667pt;}
.yd{bottom:673.826667pt;}
.y53{bottom:678.146667pt;}
.y30{bottom:679.906667pt;}
.y52{bottom:696.546667pt;}
.y2f{bottom:698.308000pt;}
.yc{bottom:710.946667pt;}
.y51{bottom:714.946667pt;}
.y8b{bottom:716.706667pt;}
.y71{bottom:716.866667pt;}
.y8a{bottom:735.108000pt;}
.y2e{bottom:735.266667pt;}
.yb{bottom:748.066667pt;}
.y50{bottom:751.906667pt;}
.y2d{bottom:753.666667pt;}
.y4f{bottom:770.308000pt;}
.y70{bottom:772.066667pt;}
.y4e{bottom:788.706667pt;}
.y2c{bottom:790.788000pt;}
.y4d{bottom:807.106667pt;}
.y2b{bottom:809.188000pt;}
.ya{bottom:822.146667pt;}
.y6f{bottom:827.588000pt;}
.y9{bottom:840.546667pt;}
.y4c{bottom:844.066667pt;}
.y6e{bottom:845.988000pt;}
.y2a{bottom:846.306667pt;}
.y4b{bottom:862.466667pt;}
.y6d{bottom:864.388000pt;}
.y29{bottom:864.706667pt;}
.y4a{bottom:882.146667pt;}
.y6c{bottom:882.788000pt;}
.y28{bottom:883.106667pt;}
.y27{bottom:901.506667pt;}
.y49{bottom:901.666667pt;}
.y8{bottom:915.906667pt;}
.y26{bottom:919.906667pt;}
.y48{bottom:920.066667pt;}
.y25{bottom:938.306667pt;}
.y89{bottom:938.466667pt;}
.y7{bottom:954.146667pt;}
.y6b{bottom:956.866667pt;}
.y47{bottom:957.188000pt;}
.y24{bottom:975.266667pt;}
.y46{bottom:975.588000pt;}
.y6{bottom:992.546667pt;}
.y45{bottom:993.988000pt;}
.y23{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h6{height:52.750000pt;}
.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;}
.xb{left:115.200000pt;}
.x9{left:127.200000pt;}
.x2{left:142.720000pt;}
.x6{left:231.360000pt;}
.x7{left:246.560000pt;}
.x5{left:278.720000pt;}
.x8{left:296.160000pt;}
.xa{left:311.200000pt;}
}




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